/* ============================================================
   GoCoreVantage — Main Stylesheet
   Fonts: Outfit (headings) + DM Sans (body) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --hero-bg:      #041a38;
  --navy-deep:    #041a38;
  --navy:         #0b2c5a;
  --navy-light:   #1c4072;
  --gold:         #d1a637;
  --gold-light:   #e4c067;
  --bg-light:     #eef2f6;
  --bg-white:     #f4f7f9;
  --white:        #ffffff;
  --border:       #cfd8e2;
  --text-dark:    #061a36;
  --text-muted:   #476084;
  --text-light:   #eef2f6;

  --gradient-hero: linear-gradient(135deg, #041a38 0%, #0b2c5a 60%, #1c4072 100%);
  --gradient-gold: linear-gradient(135deg, #d1a637, #e4c067);
  --shadow-card:  0 4px 24px -4px rgba(11,44,90,0.12);
  --shadow-gold:  0 4px 20px -4px rgba(209,166,55,0.4);

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:       10px;
  --radius-lg:    16px;
  --transition:   0.2s ease;
  --max-w:        1200px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-muted); margin-top: 0.75rem; font-size: 1.05rem; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #041a38;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(238,242,246,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-heading);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--navy-deep) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  white-space: nowrap;
  transition: opacity var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover { opacity: 0.9; box-shadow: var(--shadow-gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 1.5rem;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a {
  color: rgba(238,242,246,0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

.nav-mobile .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy-deep); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover { box-shadow: 0 8px 40px -8px rgba(11,44,90,0.18); transform: translateY(-2px); }

.card-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-timeline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── ACCORDION (FAQ) ─────────────────────────────────────── */
.accordion-list { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--bg-light); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.accordion-item.open .accordion-body { display: block; }

/* ── HERO (dark sections) ────────────────────────────────── */
.section-dark {
  background: var(--gradient-hero);
  color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(238,242,246,0.85); }

.section-navy {
  background: var(--navy-deep);
  color: var(--text-light);
}

.section-navy h2 { color: var(--white); }
.section-navy p { color: rgba(238,242,246,0.8); }

.section-white { background: var(--white); }

/* ── CORE METHOD LETTERS ─────────────────────────────────── */
.core-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.core-c { background: #0ea5a0; }
.core-o { background: #3b6fd4; }
.core-r { background: #e06830; }
.core-e { background: #2da655; }

.core-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.core-content h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.core-content p {
  font-size: 0.95rem;
  color: rgba(238, 242, 246, 0.88);
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(238,242,246,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; max-width: 260px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(238,242,246,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(209,166,55,0.1);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,242,246,0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(238,242,246,0.75);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(238,242,246,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SERVICE CARDS (services page) ──────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.service-card-header { margin-bottom: 1.5rem; }
.service-number { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.4rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

.service-leak {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

.service-leak strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.service-guarantee {
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.service-guarantee strong {
  color: var(--navy);
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  gap: 1rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}

.price-box {
  flex: 1;
  min-width: 120px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  text-align: center;
}

.price-box .price-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}

.price-box .price-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.price-box .price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── BUNDLE CARDS ────────────────────────────────────────── */
.bundle-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.bundle-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.bundle-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.bundle-tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.bundle-card h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }

.bundle-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.bundle-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.bundle-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.bundle-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.bundle-price-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── STAT BLOCKS ─────────────────────────────────────────── */
.stat-block { text-align: center; }
.stat-block .stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-block .stat-label { font-size: 0.875rem; color: rgba(238,242,246,0.7); margin-top: 0.5rem; }

/* ── STEP LIST (how to start) ────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 1rem; }

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.step-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HERO PAGE SPECIFIC ──────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
}

.hero-content { position: relative; z-index: 1; max-width: 740px; }

.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--gold); display: block; }
.hero p { color: rgba(238,242,246,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 580px; }

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

/* ── SERVICES GRID (home page) ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Pin timeline text to bottom of each service card */
.services-grid .card {
  display: flex;
  flex-direction: column;
}

.services-grid .card .card-timeline {
  margin-top: auto;
  padding-top: 1rem;
}

.services-grid .card:nth-child(4),
.services-grid .card:nth-child(5) {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .card:nth-child(4),
  .services-grid .card:nth-child(5) { grid-column: span 1; }
}

/* ── BUNDLES GRID ────────────────────────────────────────── */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .bundles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ── QUIZ CTA SECTION ────────────────────────────────────── */
.quiz-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-cta h2 { color: var(--white); margin-bottom: 1rem; }
.quiz-cta p  { color: rgba(238,242,246,0.8); margin-bottom: 2rem; }

/* ── CONTACT FORM SECTION ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── QUIZ FEATURE GRID ───────────────────────────────────── */
.quiz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.quiz-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.quiz-feature h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.quiz-feature p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

@media (max-width: 680px) {
  .quiz-features { grid-template-columns: 1fr; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(238,242,246,0.8); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2rem; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.about-stat {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.about-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-stat .stat-label {
  font-size: 0.875rem;
  color: rgba(238,242,246,0.7);
  margin-top: 0.5rem;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── RESPONSIVE HELPERS ──────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero { padding: 7rem 0 4rem; }
  .page-hero { padding: 6.5rem 0 3rem; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── COOKIE CONSENT ──────────────────────────────────────── */

/* Bottom bar */
#gcv-consent-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #041a38;
  border-top: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}

.gcv-cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gcv-cb-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}

.gcv-cb-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gcv-cb-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Consent buttons */
.gcv-btn {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  transition: opacity 0.18s ease, background 0.18s ease;
}
.gcv-btn:hover { opacity: 0.85; }

.gcv-btn-solid {
  background: var(--gold);
  color: #041a38;
}

.gcv-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.gcv-btn-outline:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

.gcv-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.gcv-btn-ghost:hover { color: #fff; opacity: 1; }

/* Preferences modal */
#gcv-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,26,56,0.75);
  backdrop-filter: blur(3px);
}

.gcv-modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.gcv-modal-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep, #041a38);
  margin: 0 0 0.5rem;
}

.gcv-modal-intro {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

/* Preference rows */
.gcv-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid #eee;
}

.gcv-pref-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gcv-pref-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.gcv-pref-desc {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.45;
}

/* Toggle switch */
.gcv-toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  cursor: pointer;
  border-radius: 13px;
  background: #ddd;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
}

.gcv-toggle input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.gcv-toggle-knob {
  position: absolute;
  left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.gcv-toggle input:checked ~ .gcv-toggle-knob { transform: translateX(18px); }
.gcv-toggle:has(input:checked) { background: var(--gold, #d1a637); }

/* Always-on (locked) toggle */
.gcv-toggle-locked {
  background: var(--gold, #d1a637);
  cursor: not-allowed;
  opacity: 0.65;
}
.gcv-toggle-locked .gcv-toggle-knob { transform: translateX(18px); }

/* Modal footer */
.gcv-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.gcv-modal-footer .gcv-btn-ghost { color: #888; }
.gcv-modal-footer .gcv-btn-ghost:hover { color: #333; }

/* Mobile adjustments */
@media (max-width: 600px) {
  .gcv-cb-inner { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .gcv-cb-actions { width: 100%; justify-content: flex-end; }
  .gcv-modal-card { padding: 1.5rem; }
}
