/* ============================================================
   GAME CHANGERS – main.css
   ============================================================ */

:root {
  --black:        #0a0a0a;
  --green:        #1a7a2e;
  --green-bright: #22a83c;
  --white:        #f5f5f0;
  --cream:        #e8e4d8;
  --accent:       #c8f53a;
  --nav-h:        70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #0a0a0a !important; }

/* Force dark background everywhere – override Storefront */
html,
body,
body.woocommerce,
body.home,
body.page,
body.storefront,
#page,
#content,
#primary,
#main,
.site,
.site-content,
.site-main,
.entry-content,
.storefront-full-width-content,
.storefront-full-width-content .entry-content,
main,
main#main,
main.site-main,
.hentry,
article,
.page,
.woocommerce-page {
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  color: var(--white) !important;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* Storefront often adds white wrappers */
.storefront-hero,
.site-header,
.col-full,
#masthead,
.storefront-product-section,
.hentry,
.entry-content,
article {
  background: transparent !important;
  color: var(--white) !important;
}

/* Kill any white sections Storefront injects */
.storefront-homepage-content > section,
.storefront-homepage-content > div {
  background: transparent !important;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.accent { color: var(--accent); }

.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 1rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  transition: transform 0.2s, background 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: #deff50; transform: translateY(-2px); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 1rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── NAV ─────────────────────────────────────────────────── */
.gc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}

/* WP nav_menu output */
.gc-nav .nav-links,
.gc-nav ul.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.gc-nav .nav-links li {
  position: relative;
}

.gc-nav .nav-links li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.6);
  padding: 0.5rem 1.2rem;
  display: block;
  transition: color 0.2s;
  position: relative;
}

.gc-nav .nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.2rem; right: 1.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.gc-nav .nav-links li a:hover {
  color: var(--white);
}
.gc-nav .nav-links li a:hover::after {
  transform: scaleX(1);
}

/* CTA button — last nav item */
.gc-nav .nav-links li:last-child a,
.gc-nav .nav-links .nav-cta a,
.gc-nav .nav-links li a.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 0.5rem 1.4rem;
  margin-left: 0.8rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-weight: 800;
  letter-spacing: 0.15em;
}
.gc-nav .nav-links li:last-child a::after,
.gc-nav .nav-links li a.nav-cta::after { display: none; }
.gc-nav .nav-links li:last-child a:hover,
.gc-nav .nav-links li a.nav-cta:hover {
  background: #deff50;
  color: var(--black) !important;
}

.nav-cart {
  position: relative;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-left: 1.5rem;
}
.nav-cart:hover { opacity: 1; }
.nav-cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: var(--nav-h) 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,122,46,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -0.1em; left: -0.02em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none; user-select: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-tag::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--accent); }

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-content h1 span { color: var(--accent); display: block; }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,245,240,0.65);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-side {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.hero-product-frame {
  position: relative;
  width: 420px; height: 420px;
}

.hero-circle {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,46,0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.05); opacity: 0.7; }
}

.hero-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(200,245,58,0.2);
  animation: spin 20s linear infinite;
}
.hero-ring-2 {
  position: absolute; inset: -50px;
  border-radius: 50%;
  border: 1px dashed rgba(200,245,58,0.1);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-product-img {
  position: absolute; inset: 30px;
  width: calc(100% - 60px); height: calc(100% - 60px);
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(26,122,46,0.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  bottom: 40px; right: -20px;
  background: var(--accent);
  color: var(--black);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  animation: float 4s ease-in-out infinite 1s;
  box-shadow: 0 0 30px rgba(200,245,58,0.3);
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  background: rgba(200,245,58,0.04);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,245,58,0.5);
  white-space: nowrap;
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 2rem 3rem;
  background: rgba(255,255,255,0.02);
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.gc-section { padding: 6rem 3rem; }
.gc-section-inner { max-width: 1400px; margin: 0 auto; }

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--accent); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.feature-card {
  background: var(--black);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.feature-card:hover { background: rgba(255,255,255,0.03); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 1rem;
}
.feature-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.8rem;
}
.feature-text { font-size: 0.9rem; line-height: 1.65; color: rgba(245,245,240,0.55); }

/* ── PRODUCTS ────────────────────────────────────────────── */
.products-section {
  padding: 6rem 3rem;
  background: rgba(255,255,255,0.015);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
  align-items: stretch;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.5rem;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
  min-height: 380px;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.product-card .product-img,
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  flex-shrink: 0;
}
.product-img-placeholder {
  font-size: 4rem;
  text-align: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  flex-grow: 1;
}
.product-price,
.product-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--accent) !important;
  margin-top: auto;
}
/* WooCommerce price HTML reset */
.product-card .price del { color: rgba(255,255,255,0.3) !important; font-size: 1rem; }

.product-badge-new {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}

.products-cta { text-align: center; margin-top: 3rem; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,122,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.95; margin-bottom: 1.5rem;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.6);
  max-width: 480px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.gc-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.15em; color: var(--accent);
}
.footer-links {
  display: flex; gap: 2rem; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.08em;
}

/* ── SCROLL ANIMATION ────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── WOOCOMMERCE OVERRIDES ───────────────────────────────── */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--accent) !important;
  background: rgba(255,255,255,0.04) !important;
  color: var(--white) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-product-frame { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .gc-nav { padding: 0 1.5rem; }
  .nav-menu-wrap {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(200,245,58,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .nav-menu-wrap.open { display: block; }
  .nav-burger { display: flex; }

  .gc-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .gc-nav .nav-links li a {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(245,245,240,0.7);
  }
  .gc-nav .nav-links li a::after { display: none; }
  .gc-nav .nav-links li a:hover { color: var(--accent); background: rgba(200,245,58,0.04); }

  .gc-nav .nav-links li:last-child a,
  .gc-nav .nav-links li a.nav-cta {
    margin: 1rem 1.5rem 0;
    text-align: center;
    clip-path: none;
    border-bottom: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
    min-height: auto;
  }
  .hero-tag { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-image-side { height: 50vw; margin-top: 2rem; }
  .hero-product-frame { width: 260px; height: 260px; }
  .hero-bg-text { display: none; }

  .stats-bar { padding: 2rem 1.5rem; }
  .gc-section, .products-section { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 5rem 1.5rem; }
  .gc-footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
}

/* ── STARK OVERRIDE AV STOREFRONT ────────────────────────── */

/* Nollställ Storefront-specifika element */
.storefront-full-width-content .entry-content,
.storefront-full-width-content #primary,
.storefront-full-width-content #main,
.site-main > article,
.site-main > .page,
.entry-header,
.entry-footer,
.site-header,
.site-header-cart,
.storefront-handheld-footer-bar {
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  color: var(--white) !important;
}

/* Dölj Storefonts egna header/footer helt */
.site-header { display: none !important; }
.storefront-handheld-footer-bar { display: none !important; }

/* Sektioner */
.gc-section,
.products-section,
.cta-section,
.gc-footer,
.hero,
.stats-bar,
.marquee-wrap {
  background-color: inherit !important;
}
.gc-section { background: #0a0a0a !important; }
.products-section { background: #0f0f0f !important; }
.cta-section { background: #0a0a0a !important; }
.gc-footer { background: #0a0a0a !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
.hero { background: #0a0a0a !important; }
.stats-bar { background: rgba(255,255,255,0.02) !important; }
.marquee-wrap { background: rgba(200,245,58,0.04) !important; }

/* Produktkort */
.product-card { background: rgba(255,255,255,0.04) !important; }

/* Text som blivit mörk pga Storefront */
h1, h2, h3, h4, h5, h6 { color: var(--white) !important; }
.section-title { color: var(--white) !important; }
.hero-content h1 { color: var(--white) !important; }
.hero-content h1 span { color: var(--accent) !important; }
.cta-section h2 { color: var(--white) !important; }
.cta-section h2 .accent { color: var(--accent) !important; }
.stat-number { color: var(--accent) !important; }
.section-tag { color: var(--accent) !important; }
.hero-tag { color: var(--accent) !important; }
.product-price, .product-card .price { color: var(--accent) !important; }
.feature-title { color: var(--white) !important; }
.product-name { color: var(--white) !important; }
.nav-logo { color: var(--accent) !important; }
.footer-logo a { color: var(--accent) !important; }

/* Padding/margin Storefront lägger in */
.entry-content { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.site-content { padding: 0 !important; }
#primary { padding: 0 !important; float: none !important; width: 100% !important; }
.hentry { margin: 0 !important; padding: 0 !important; }


/* ── CONTACT PAGE ────────────────────────────────────────── */

.contact-faq {
  background: #0a0a0a;
}

/* FAQ — single column, full width */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.75);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--white); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(245,245,240,0.6);
  transition: transform 0.3s ease, background 0.2s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-question[aria-expanded="true"] {
  color: var(--accent);
}
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--accent);
  background: rgba(200,245,58,0.08);
}
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--accent); }
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--accent);
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.5);
}

/* CONTACT SECTION */
.contact-section {
  background: #080808;
  padding: 6rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245,245,240,0.45);
  margin-bottom: 2rem;
}

.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(245,245,240,0.45);
}
.contact-info-item svg { color: var(--accent); flex-shrink: 0; }

/* Form fields — dark styled, no white */
.gc-form { display: flex; flex-direction: column; gap: 1.2rem; }

.gc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.gc-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.35);
}
.gc-label-optional { font-weight: 400; opacity: 0.6; }

.gc-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.gc-input::placeholder { color: rgba(245,245,240,0.18); }
.gc-input:focus {
  border-color: var(--accent);
  background: rgba(200,245,58,0.04);
}

.gc-textarea { resize: vertical; min-height: 120px; }

/* Image side */
.contact-right {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255,255,255,0.07);
}

.contact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}
.contact-img-wrap:hover img { transform: scale(1.03); }

.contact-img-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 100%);
  pointer-events: none;
}

/* Offset accent border */
.contact-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(200,245,58,0.08);
  pointer-events: none;
}

.contact-promise {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(200,245,58,0.04);
  border-left: 2px solid var(--accent);
}

.promise-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
}

.promise-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.promise-text {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.4);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-right { position: static; }
  .contact-img-wrap { aspect-ratio: 16 / 8; }
  .contact-img-wrap img { object-position: center 30%; }
}

@media (max-width: 768px) {
  .contact-section { padding: 4rem 1.5rem; }
  .gc-form-row { grid-template-columns: 1fr; }
  .contact-img-wrap { aspect-ratio: 4 / 3; }
}
