/* ============================================================
   MORANTE GURU — Main Stylesheet
   Dark Premium Design System
   ============================================================ */


:root {
  --color-base: #0a0c14;
  --color-base-tint: #10131f;
  --color-surface: #151929;
  --color-surface-raised: #1c2235;
  --color-surface-high: #232b42;

  --color-gold: #c9a84c;
  --color-gold-light: color-mix(in oklch, #c9a84c, white 30%);
  --color-gold-dim: color-mix(in oklch, #c9a84c, black 30%);
  --color-gold-subtle: color-mix(in oklch, #c9a84c, transparent 80%);
  --color-gold-glow: color-mix(in oklch, #c9a84c, transparent 70%);

  --color-teal: #2dd4bf;
  --color-teal-light: color-mix(in oklch, #2dd4bf, white 30%);
  --color-teal-dim: color-mix(in oklch, #2dd4bf, black 30%);
  --color-teal-subtle: color-mix(in oklch, #2dd4bf, transparent 85%);

  --color-text-primary: #f0eeea;
  --color-text-secondary: #b8b4ae;
  --color-text-muted: #7a7671;
  --color-text-on-dark: color-mix(in oklch, #f0eeea, transparent 10%);

  --color-border: color-mix(in oklch, #c9a84c, transparent 80%);
  --color-border-subtle: color-mix(in oklch, #f0eeea, transparent 90%);

  --color-danger: #e05555;
  --color-success: #4ade80;

  
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  --gradient-teal: linear-gradient(135deg, #2dd4bf 0%, #5eead4 100%);
  --gradient-hero-bg: radial-gradient(ellipse at 70% 50%, color-mix(in oklch, #c9a84c, transparent 85%) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, color-mix(in oklch, #2dd4bf, transparent 90%) 0%, transparent 50%), #0a0c14;
  --gradient-surface: linear-gradient(180deg, var(--color-surface) 0%, var(--color-base-tint) 100%);
  --gradient-text-gold: linear-gradient(135deg, #c9a84c 0%, #f0d080 40%, #c9a84c 80%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-gold: 0 0 24px color-mix(in oklch, #c9a84c, transparent 60%), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-teal: 0 0 24px color-mix(in oklch, #2dd4bf, transparent 65%), 0 4px 12px rgba(0,0,0,0.3);

  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--color-base);
  color: var(--color-text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.inner-page { padding-top: 80px; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition-base); }

ul { list-style: none; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text-primary);
}

p { color: var(--color-text-secondary); line-height: 1.75; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-navigation {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 2rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.main-navigation.nav-solid {
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}

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

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
}

.nav-logo-text span { color: var(--color-gold); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-primary);
  background: color-mix(in oklch, #f0eeea, transparent 93%);
}

.nav-link.active { color: var(--color-gold); }

.nav-chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-base);
  margin-left: 0.25rem;
}

.nav-has-mega { position: relative; }

.nav-has-mega:hover .nav-chevron { transform: rotate(180deg); }

.nav-cta-button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--gradient-gold);
  color: #1a1200;
  font-weight: 700; font-size: 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  white-space: nowrap; flex-shrink: 0;
}

.nav-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px color-mix(in oklch, #c9a84c, transparent 50%), 0 6px 20px rgba(0,0,0,0.4);
  color: #1a1200;
}


.mega-menu-panel {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 680px; max-width: 95vw;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border-subtle);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 200;
}

.nav-has-mega:hover .mega-menu-panel {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; padding: var(--space-md);
}

.mega-column { padding: var(--space-sm); }

.mega-column-label {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.mega-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
  margin-bottom: 0.25rem;
}

.mega-item:hover { background: color-mix(in oklch, #f0eeea, transparent 93%); }

.mega-item-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  font-size: 0.9rem; flex-shrink: 0;
  transition: background var(--transition-base);
}

.mega-item:hover .mega-item-icon { background: var(--color-gold-glow); }

.mega-item-title {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: var(--color-text-primary);
}

.mega-item-desc {
  display: block; font-size: 0.78rem;
  color: var(--color-text-muted);
}

.mega-highlight-col { border-left: 1px solid var(--color-border-subtle); }

.mega-highlight-card {
  background: linear-gradient(135deg, color-mix(in oklch, #c9a84c, transparent 85%) 0%, color-mix(in oklch, #2dd4bf, transparent 90%) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  height: 100%;
}

.mega-highlight-icon {
  font-size: 1.5rem; color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.mega-highlight-text {
  font-size: 0.83rem; line-height: 1.55;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.mega-highlight-link {
  font-size: 0.83rem; font-weight: 600;
  color: var(--color-gold);
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition-base);
}

.mega-highlight-link:hover { gap: 0.7rem; }


.mobile-menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}

.mobile-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.mobile-tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10, 12, 20, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  justify-content: space-around;
}

.mobile-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.65rem; font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
  min-width: 44px; text-align: center;
}

.mobile-tab i { font-size: 1.1rem; }

.mobile-tab.active { color: var(--color-gold); }

.mobile-tab:hover { color: var(--color-text-secondary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.button-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gradient-gold);
  color: #1a1200;
  font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: none; cursor: pointer;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px color-mix(in oklch, #c9a84c, transparent 45%), 0 8px 24px rgba(0,0,0,0.4);
  color: #1a1200;
}

.button-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1.5px solid color-mix(in oklch, #f0eeea, transparent 65%);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.button-ghost:hover {
  border-color: var(--color-gold);
  background: color-mix(in oklch, #c9a84c, transparent 90%);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

.button-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1.5px;
  background: var(--color-gold);
}

.section-eyebrow-light { color: var(--color-teal); }
.section-eyebrow-light::before { background: var(--color-teal); }

.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-heading-light { color: var(--color-text-primary); }


.glass-card {
  background: color-mix(in oklch, #f0eeea, transparent 92%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in oklch, #f0eeea, transparent 85%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.glass-card-dark {
  background: color-mix(in oklch, #0a0c14, transparent 20%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--gradient-hero-bg);
  position: relative; overflow: hidden;
}

.hero-background-shapes { position: absolute; inset: 0; pointer-events: none; }

.hero-shape {
  position: absolute; border-radius: var(--radius-full);
  filter: blur(80px);
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: color-mix(in oklch, #c9a84c, transparent 80%);
  top: -200px; right: -100px;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: color-mix(in oklch, #2dd4bf, transparent 85%);
  bottom: -100px; left: -100px;
}

.hero-shape-3 {
  width: 200px; height: 200px;
  background: color-mix(in oklch, #c9a84c, transparent 88%);
  top: 40%; left: 35%;
}

.hero-content-wrapper {
  padding: 8rem 4rem 4rem;
  max-width: 680px;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-teal); margin-bottom: var(--space-md);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-teal);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: var(--font-display);
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.hero-headline-gradient {
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex; align-items: center; gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image-panel {
  position: relative; height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--color-base) 0%, transparent 40%),
              linear-gradient(to top, var(--color-base) 0%, transparent 30%);
}

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 4rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-muted);
  z-index: 2;
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--color-text-muted);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { width: 20px; opacity: 0.5; }
  50% { width: 50px; opacity: 1; }
  100% { width: 20px; opacity: 0.5; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  position: relative; z-index: 1;
}

.problem-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: start;
}

.problem-text-block { padding-top: var(--space-lg); }

.problem-lead {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.problem-body { margin-bottom: var(--space-sm); }

.problem-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.problem-card:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  font-size: 1.1rem; margin-bottom: var(--space-sm);
}

.problem-card-title {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.problem-card p { font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  position: relative; z-index: 2;
}

.services-container { max-width: 1280px; margin: 0 auto; }

.services-header {
  text-align: center; margin-bottom: var(--space-2xl);
  max-width: 640px; margin-left: auto; margin-right: auto;
}

.services-intro {
  font-size: 1rem; color: var(--color-text-secondary);
  margin-top: var(--space-sm);
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  display: flex; flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
}

.service-card-featured {
  background: linear-gradient(135deg, color-mix(in oklch, #c9a84c, transparent 88%) 0%, var(--color-surface-raised) 60%);
  border-color: var(--color-border);
}

.service-card-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  font-size: 1.3rem; margin-bottom: var(--space-md);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover .service-card-icon-wrap {
  background: var(--color-gold-glow);
  box-shadow: var(--shadow-gold);
}

.service-card-title {
  font-size: 1.05rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.65rem;
  color: var(--color-text-primary);
}

.service-card-text {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--color-text-secondary);
  flex: 1; margin-bottom: var(--space-md);
}

.service-card-footer { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; }

.service-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--color-teal-subtle);
  border: 1px solid color-mix(in oklch, #2dd4bf, transparent 75%);
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600;
  color: var(--color-teal);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  position: relative; z-index: 1;
}

.how-container { max-width: 1280px; margin: 0 auto; }

.how-header { text-align: center; margin-bottom: var(--space-2xl); }

.how-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg); position: relative;
}

.how-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.how-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
}

.how-step-number {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: color-mix(in oklch, #c9a84c, transparent 70%);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.how-step-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  font-size: 1.4rem; margin-bottom: var(--space-md);
}

.how-step-title {
  font-size: 1.15rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.how-step-text { font-size: 0.9rem; line-height: 1.75; }

.how-step-connector {
  display: none;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base);
  position: relative; z-index: 2;
}

.about-preview-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.about-preview-image-block { position: relative; }

.about-preview-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-preview-image-frame {
  position: absolute; inset: -12px;
  border: 1.5px solid var(--color-border);
  border-radius: calc(var(--radius-xl) + 12px);
  pointer-events: none;
}

.about-preview-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  padding: var(--space-sm) var(--space-md);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.83rem; font-weight: 600;
  color: var(--color-text-primary);
}

.about-preview-badge i { color: var(--color-gold); font-size: 1.1rem; }

.about-preview-text-block { padding: var(--space-md) 0; }

.about-preview-text-block p {
  margin-bottom: var(--space-sm);
  font-size: 0.98rem; line-height: 1.8;
}

.about-preview-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin: var(--space-lg) 0;
}

.about-feature {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 500;
  color: var(--color-text-primary);
}

.about-feature i { color: var(--color-teal); font-size: 0.9rem; }

/* ============================================================
   DIFFERENCE SECTION
   ============================================================ */
.difference-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}

.difference-container { max-width: 1280px; margin: 0 auto; }

.difference-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.difference-intro { max-width: 560px; margin: 0 auto; }

.difference-table {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-md); max-width: 900px; margin: 0 auto;
}

.difference-col {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid;
}

.difference-col-ours {
  background: color-mix(in oklch, #2dd4bf, transparent 92%);
  border-color: color-mix(in oklch, #2dd4bf, transparent 70%);
}

.difference-col-theirs {
  background: color-mix(in oklch, #e05555, transparent 94%);
  border-color: color-mix(in oklch, #e05555, transparent 80%);
}

.difference-col-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.difference-col-header i {
  font-size: 1.4rem;
}

.difference-col-ours .difference-col-header i { color: var(--color-teal); }
.difference-col-theirs .difference-col-header i { color: var(--color-danger); }

.difference-col-header h3 {
  font-size: 1.05rem; font-family: var(--font-body);
  font-weight: 700;
}

.difference-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--color-text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.difference-list li:last-child { border-bottom: none; }

.difference-col-ours .difference-list li i { color: var(--color-teal); }
.difference-col-theirs .difference-list li i { color: var(--color-danger); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base);
  position: relative; overflow: hidden;
}

.cta-background-shapes { position: absolute; inset: 0; pointer-events: none; }

.cta-shape {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
}

.cta-shape-1 {
  width: 500px; height: 500px;
  background: color-mix(in oklch, #c9a84c, transparent 82%);
  top: -200px; right: -100px;
}

.cta-shape-2 {
  width: 350px; height: 350px;
  background: color-mix(in oklch, #2dd4bf, transparent 88%);
  bottom: -100px; left: -50px;
}

.cta-container {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 2;
}

.cta-content {
  padding: var(--space-2xl);
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1rem; max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-sm); flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-contact-info {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-lg); flex-wrap: wrap;
}

.cta-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.cta-contact-item:hover { color: var(--color-gold); }

.cta-contact-item i { color: var(--color-gold); }

/* ============================================================
   REPORT SECTION
   ============================================================ */
.report-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.report-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.report-text-block p {
  margin-bottom: var(--space-sm); font-size: 0.98rem;
}

.report-items { margin-top: var(--space-lg); }

.report-item {
  display: flex; gap: var(--space-md); align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.report-item:last-child { border-bottom: none; }

.report-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold); font-size: 1rem;
}

.report-item h4 {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.3rem;
}

.report-item p { font-size: 0.85rem; }

.report-image-block { position: relative; }

.report-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.report-image-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 80%; height: 80%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero-inner {
  min-height: 55vh;
  display: flex; align-items: center;
  background: var(--gradient-hero-bg);
  position: relative; overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.page-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.page-hero-content {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 580px;
}

/* ============================================================
   ABOUT MISSION
   ============================================================ */
.about-mission-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
}

.about-mission-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.about-mission-text p { margin-bottom: var(--space-sm); }

.about-mission-visual { position: relative; }

.about-mission-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-mission-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  padding: var(--space-md) var(--space-lg);
  display: flex; align-items: center; gap: var(--space-sm);
  max-width: 300px;
}

.about-mission-card i {
  font-size: 1.5rem; color: var(--color-gold); flex-shrink: 0;
}

.about-mission-card p {
  font-size: 0.83rem; line-height: 1.5;
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.methodology-container { max-width: 1280px; margin: 0 auto; }

.methodology-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.methodology-intro { max-width: 600px; margin: 0 auto; }

.methodology-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.methodology-card {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.methodology-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border);
}

.methodology-step-num {
  position: absolute; top: var(--space-sm); right: var(--space-md);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: color-mix(in oklch, #c9a84c, transparent 75%);
  line-height: 1;
}

.methodology-icon {
  font-size: 1.5rem; color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.methodology-card h3 {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.65rem;
}

.methodology-card p { font-size: 0.85rem; line-height: 1.7; }

/* ============================================================
   PRINCIPLES
   ============================================================ */
.principles-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base);
}

.principles-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.principles-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.principles-list { margin-top: var(--space-md); }

.principle-item {
  display: flex; gap: var(--space-md); align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.principle-item:last-child { border-bottom: none; }

.principle-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold); font-size: 1rem;
}

.principle-content h4 {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.3rem;
}

.principle-content p { font-size: 0.85rem; line-height: 1.65; }

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.team-members-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.team-container { max-width: 1280px; margin: 0 auto; }

.team-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.team-intro { max-width: 580px; margin: 0 auto; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-member-card {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.team-member-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
}

.team-member-image-wrap {
  overflow: hidden; aspect-ratio: 1/1;
}

.team-member-image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image { transform: scale(1.04); }

.team-member-info { padding: var(--space-md); }

.team-member-name {
  font-size: 1.05rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.3rem;
}

.team-member-role {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--color-gold); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.65rem;
}

.team-member-bio { font-size: 0.85rem; line-height: 1.65; }

/* ============================================================
   DIFFERENCE DETAIL
   ============================================================ */
.difference-detail-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
}

.difference-detail-container { max-width: 1280px; margin: 0 auto; }

.difference-detail-header {
  max-width: 680px; margin-bottom: var(--space-2xl);
}

.difference-detail-header p { font-size: 0.98rem; }

.difference-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.difference-detail-card {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid;
}

.difference-yes {
  background: color-mix(in oklch, #2dd4bf, transparent 93%);
  border-color: color-mix(in oklch, #2dd4bf, transparent 72%);
}

.difference-no {
  background: color-mix(in oklch, #e05555, transparent 94%);
  border-color: color-mix(in oklch, #e05555, transparent 80%);
}

.difference-detail-card h3 {
  font-size: 1rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: var(--space-md);
  display: flex; align-items: center; gap: 0.5rem;
}

.difference-yes h3 i { color: var(--color-teal); }
.difference-no h3 i { color: var(--color-danger); }

.difference-detail-card ul { list-style: none; }
.difference-detail-card ul li {
  font-size: 0.9rem; color: var(--color-text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.difference-detail-card ul li:last-child { border-bottom: none; }

/* ============================================================
   INNER CTA
   ============================================================ */
.inner-cta-section {
  padding: var(--space-2xl) 2rem;
  background: var(--color-base);
}

.inner-cta-container { max-width: 720px; margin: 0 auto; }

.inner-cta-content {
  padding: var(--space-2xl);
  text-align: center;
}

.inner-cta-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

.inner-cta-content p {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-intro-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
}

.training-intro-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.training-intro-text p { margin-bottom: var(--space-sm); }

.training-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.training-programs-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.training-programs-container { max-width: 1280px; margin: 0 auto; }

.training-programs-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.training-programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.training-program-card {
  padding: var(--space-lg);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.training-program-card:hover { transform: translateY(-3px); }

.training-program-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-md);
  color: var(--color-gold); font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.training-program-title {
  font-size: 1rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.training-program-desc {
  font-size: 0.88rem; line-height: 1.7;
  margin-bottom: var(--space-md);
}

.training-program-details {
  display: flex; gap: var(--space-md);
  font-size: 0.8rem; color: var(--color-text-muted);
}

.training-program-details span {
  display: flex; align-items: center; gap: 0.4rem;
}

.training-program-details i { color: var(--color-teal); }

.training-approach-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base);
}

.training-approach-container { max-width: 1280px; margin: 0 auto; }

.training-approach-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.training-approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.training-approach-item {
  text-align: center; padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.training-approach-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-border);
}

.training-approach-item > i {
  font-size: 2rem; color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.training-approach-item h4 {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.5rem;
}

.training-approach-item p { font-size: 0.85rem; line-height: 1.65; }

/* ============================================================
   CFO PAGE
   ============================================================ */
.cfo-intro-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
}

.cfo-intro-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.cfo-intro-content p { margin-bottom: var(--space-sm); }

.cfo-image {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.cfo-scenarios-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.cfo-scenarios-container { max-width: 1280px; margin: 0 auto; }

.cfo-scenarios-header {
  text-align: center; margin-bottom: var(--space-2xl);
}

.cfo-scenarios-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.cfo-scenario-card {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.cfo-scenario-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.cfo-scenario-num {
  position: absolute; top: var(--space-sm); right: var(--space-md);
  font-family: var(--font-display); font-size: 2.5rem;
  color: color-mix(in oklch, #c9a84c, transparent 75%);
}

.cfo-scenario-icon {
  font-size: 1.5rem; color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.cfo-scenario-card h3 {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.65rem;
}

.cfo-scenario-card p { font-size: 0.87rem; line-height: 1.7; }

.cfo-format-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base);
}

.cfo-format-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
}

.cfo-format-img {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.cfo-format-text p { margin-bottom: var(--space-md); }

.cfo-format-list { margin: var(--space-md) 0 var(--space-lg); }

.cfo-format-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--color-text-secondary);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.cfo-format-item:last-child { border-bottom: none; }

.cfo-format-item i { color: var(--color-teal); margin-top: 0.1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
}

.contact-main-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: start;
}

.contact-form-title {
  font-size: 1.75rem; margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.9rem; margin-bottom: var(--space-lg);
}

.inquiry-form { display: flex; flex-direction: column; gap: var(--space-md); }

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

.form-field-label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--color-text-primary);
}

.field-required { color: var(--color-gold); }

.form-field-input, .form-field-textarea {
  background: var(--color-surface-raised);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-field-input:focus, .form-field-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-subtle);
}

.form-field-input::placeholder, .form-field-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.form-privacy-check { display: flex; align-items: flex-start; gap: 0.75rem; }

.privacy-checkbox-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer;
}

.privacy-checkbox-label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.privacy-checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--color-surface-raised);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: 4px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}

.privacy-checkbox-label input:checked + .privacy-checkbox-custom {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.privacy-checkbox-label input:checked + .privacy-checkbox-custom::after {
  content: '✓'; font-size: 0.75rem; color: #1a1200; font-weight: 700;
}

.privacy-checkbox-text {
  font-size: 0.83rem; color: var(--color-text-secondary);
  line-height: 1.5;
}

.privacy-checkbox-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.form-error-message {
  background: color-mix(in oklch, #e05555, transparent 88%);
  border: 1px solid color-mix(in oklch, #e05555, transparent 70%);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.85rem; color: #fca5a5;
}

.form-submit-button { align-self: flex-start; }


.iti { width: 100%; }
.iti__tel-input { background: var(--color-surface-raised) !important; }
.iti__country-list {
  background: var(--color-surface) !important;
  border-color: var(--color-border) !important;
  color: var(--color-text-primary) !important;
}
.iti__country.iti__highlight { background: var(--color-surface-raised) !important; }
.iti__dial-code { color: var(--color-text-muted) !important; }

.contact-info-card { padding: var(--space-lg); margin-bottom: var(--space-md); }

.contact-info-title {
  font-size: 1.15rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: var(--space-md);
}

.contact-info-items { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-info-item {
  display: flex; align-items: flex-start; gap: var(--space-sm);
}

.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold); font-size: 0.9rem;
}

.contact-info-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9rem; color: var(--color-text-primary);
  transition: color var(--transition-base);
}

a.contact-info-value:hover { color: var(--color-gold); }

.contact-tips-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.tips-title {
  font-size: 1rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}

.tips-title i { color: var(--color-gold); }

.tips-intro { font-size: 0.85rem; margin-bottom: var(--space-md); }

.tips-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.tip-item {
  display: flex; gap: var(--space-sm); align-items: flex-start;
}

.tip-num {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 700;
  color: var(--color-gold);
}

.tip-content h4 {
  font-size: 0.88rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: 0.2rem;
}

.tip-content p { font-size: 0.82rem; line-height: 1.55; }


.map-section {
  padding: var(--space-2xl) 2rem var(--space-3xl);
  background: var(--color-base);
}

.map-container { max-width: 1280px; margin: 0 auto; }

.map-header { margin-bottom: var(--space-lg); }

.map-header p { font-size: 0.9rem; }

.map-embed-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-md);
}

.map-embed-wrap iframe { display: block; }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page { background: var(--color-base); }

.thanks-main-area {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f1a2e 0%, #0a0c14 40%, #1a1200 100%);
  position: relative; overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.thanks-background-shapes { position: absolute; inset: 0; pointer-events: none; }

.thanks-shape {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
}

.thanks-shape-1 {
  width: 600px; height: 600px;
  background: color-mix(in oklch, #c9a84c, transparent 80%);
  top: -200px; right: -100px;
}

.thanks-shape-2 {
  width: 400px; height: 400px;
  background: color-mix(in oklch, #2dd4bf, transparent 87%);
  bottom: -150px; left: -100px;
}

.thanks-content {
  text-align: center; max-width: 600px;
  position: relative; z-index: 2;
}

.thanks-icon-wrap {
  font-size: 4rem; color: var(--color-teal);
  margin-bottom: var(--space-md);
  text-shadow: var(--shadow-teal);
}

.thanks-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.thanks-text {
  font-size: 1.1rem; color: var(--color-text-secondary);
  margin-bottom: var(--space-sm); line-height: 1.75;
}

.thanks-subtext {
  font-size: 0.95rem; color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.thanks-phone {
  color: var(--color-gold);
  transition: color var(--transition-base);
}

.thanks-phone:hover { color: var(--color-gold-light); }

.thanks-home-button { border-color: rgba(240,238,234,0.4); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content-area {
  padding: var(--space-3xl) 2rem;
  background: var(--color-base-tint);
  min-height: 80vh;
}

.legal-container {
  max-width: 820px; margin: 0 auto;
}

.legal-header { margin-bottom: var(--space-2xl); }

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.83rem; color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.legal-intro {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
}

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section h2 {
  font-size: 1.2rem; font-family: var(--font-body);
  font-weight: 700; margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-section p {
  font-size: 0.92rem; line-height: 1.8; margin-bottom: var(--space-sm);
}

.legal-list {
  list-style: disc; padding-left: 1.5rem;
  margin: var(--space-sm) 0;
}

.legal-list li {
  font-size: 0.92rem; color: var(--color-text-secondary);
  line-height: 1.75; margin-bottom: 0.3rem;
  list-style: disc;
}

.legal-link {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.legal-link:hover { color: var(--color-gold-light); }

.legal-lead-text {
  font-size: 1rem; line-height: 1.8;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border-subtle);
}

.cookies-header { text-align: center; }

.cookies-icon-header {
  font-size: 3rem; color: var(--color-gold);
  margin-bottom: var(--space-sm);
}


.cookie-category-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.cookie-category-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.cookie-category-header i { font-size: 1.2rem; }

.cookie-category-header.essential i { color: var(--color-teal); }
.cookie-category-header.analytics i { color: var(--color-gold); }
.cookie-category-header.marketing i { color: #a78bfa; }

.cookie-always-on {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: color-mix(in oklch, #2dd4bf, transparent 80%);
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700;
  color: var(--color-teal); margin-left: 0.5rem;
}

.cookie-optional {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: color-mix(in oklch, #c9a84c, transparent 80%);
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700;
  color: var(--color-gold); margin-left: 0.5rem;
}

.cookie-table {
  width: 100%; border-collapse: collapse;
  margin-top: var(--space-sm); font-size: 0.83rem;
}

.cookie-table th {
  text-align: left; padding: 0.5rem 0.75rem;
  background: var(--color-surface-raised);
  color: var(--color-text-muted);
  font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.cookie-table td {
  padding: 0.5rem 0.75rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}

.cookie-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.page-footer {
  background: #060810;
  border-top: 1px solid var(--color-border-subtle);
  padding: 0;
}

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; margin-bottom: var(--space-md);
}

.footer-logo-text {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--color-text-primary);
}

.footer-logo-text span { color: var(--color-gold); }

.footer-tagline {
  font-size: 0.85rem; line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.footer-contact-block {
  display: flex; flex-direction: column; gap: 0.5rem;
}

.footer-contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.83rem; color: var(--color-text-muted);
  transition: color var(--transition-base);
}

a.footer-contact-link:hover { color: var(--color-gold); }

.footer-contact
-link i { color: var(--color-gold); font-size: 0.8rem; }

.footer-col-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-md);
  font-family: var(--font-body);
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav-list a {
  font-size: 0.87rem; color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-nav-list a:hover { color: var(--color-text-primary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-md) 0;
  flex-wrap: wrap; gap: var(--space-sm);
}

.footer-copyright {
  font-size: 0.78rem; color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex; gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.78rem; color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================================
   COOKIE CONSENT PANEL
   ============================================================ */
.cookie-consent-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-consent-overlay.visible {
  opacity: 1; visibility: visible;
}

.cookie-consent-panel {
  position: fixed; top: 0; right: -320px; bottom: 0;
  width: 300px; z-index: 9999;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.cookie-consent-panel.panel-open { right: 0; }

.cookie-panel-header {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex; align-items: center; gap: 0.75rem;
}

.cookie-panel-shield {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-gold); font-size: 1.1rem; flex-shrink: 0;
}

.cookie-panel-title {
  font-size: 0.95rem; font-family: var(--font-body);
  font-weight: 700; color: var(--color-text-primary);
  margin-bottom: 0.1rem;
}

.cookie-panel-subtitle {
  font-size: 0.72rem; color: var(--color-text-muted);
}

.cookie-panel-body {
  padding: var(--space-md); flex: 1;
}

.cookie-panel-desc {
  font-size: 0.82rem; line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.cookie-category-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.cookie-category-toggle:last-child { border-bottom: none; }

.cookie-cat-info { flex: 1; }

.cookie-cat-name {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--color-text-primary); margin-bottom: 0.2rem;
}

.cookie-cat-desc {
  font-size: 0.72rem; color: var(--color-text-muted);
  line-height: 1.4;
}

.cookie-toggle-switch {
  position: relative; width: 40px; height: 22px;
  flex-shrink: 0; margin-left: 0.75rem;
}

.cookie-toggle-switch input {
  opacity: 0; width: 0; height: 0;
}

.cookie-toggle-slider {
  position: absolute; inset: 0;
  background: var(--color-surface-high);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: transform var(--transition-base), background var(--transition-base);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: var(--color-gold);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: #1a1200;
}

.cookie-toggle-switch input:disabled + .cookie-toggle-slider {
  opacity: 0.5; cursor: not-allowed;
}

.cookie-panel-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
  display: flex; flex-direction: column; gap: 0.6rem;
}

.cookie-btn-accept {
  display: block; width: 100%;
  padding: 0.75rem; text-align: center;
  background: var(--gradient-gold);
  color: #1a1200; font-weight: 700; font-size: 0.88rem;
  border-radius: var(--radius-full);
  border: none; cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px color-mix(in oklch, #c9a84c, transparent 50%);
}

.cookie-btn-save {
  display: block; width: 100%;
  padding: 0.65rem; text-align: center;
  background: transparent;
  color: var(--color-text-secondary); font-weight: 600; font-size: 0.83rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-subtle);
  cursor: pointer;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.cookie-btn-save:hover {
  border-color: var(--color-border);
  color: var(--color-text-primary);
}

.cookie-btn-reject {
  display: block; width: 100%;
  padding: 0.55rem; text-align: center;
  background: transparent;
  color: var(--color-text-muted); font-size: 0.78rem;
  border: none; cursor: pointer;
  transition: color var(--transition-base);
}

.cookie-btn-reject:hover { color: var(--color-danger); }

.cookie-policy-link {
  display: block; text-align: center;
  font-size: 0.72rem; color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.cookie-policy-link a {
  color: var(--color-gold);
  text-decoration: underline;
}


.cookie-settings-trigger {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  z-index: 800;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-gold); font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  opacity: 0; visibility: hidden;
}

.cookie-settings-trigger.visible {
  opacity: 1; visibility: visible;
}

.cookie-settings-trigger:hover {
  transform: scale(1.1);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content-wrapper {
    padding: 8rem 2rem 3rem;
    max-width: 100%;
  }

  .hero-image-panel {
    min-height: 50vh;
    height: 50vh;
  }

  .hero-scroll-indicator { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .methodology-grid { grid-template-columns: repeat(2, 1fr); }

  .training-approach-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

  .footer-brand-col { grid-column: 1 / -1; }

  .mega-menu-panel { width: 560px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  body.inner-page { padding-top: 70px; }

  
  .nav-links, .nav-cta-button { display: none; }

  .mobile-menu-toggle { display: flex; }

  .mobile-tab-bar { display: flex; }

  body { padding-bottom: 70px; }

  
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-content-wrapper {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-image-panel {
    height: 45vw; min-height: 240px;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  
  .problem-container { grid-template-columns: 1fr; gap: var(--space-lg); }

  .problem-cards-grid { grid-template-columns: 1fr 1fr; }

  
  .services-section, .how-it-works-section, .about-preview-section,
  .difference-section, .report-section, .about-mission-section,
  .methodology-section, .principles-section, .team-members-section,
  .difference-detail-section, .training-intro-section, .training-programs-section,
  .training-approach-section, .cfo-intro-section, .cfo-scenarios-section,
  .cfo-format-section, .contact-main-section {
    clip-path: none;
  }

  .services-grid { grid-template-columns: 1fr; }

  .how-steps-grid { grid-template-columns: 1fr; }

  .about-preview-container { grid-template-columns: 1fr; }

  .about-preview-image-frame { display: none; }

  .about-preview-badge { position: static; margin-top: var(--space-sm); }

  .difference-table { grid-template-columns: 1fr; }

  .report-container { grid-template-columns: 1fr; }

  .report-image-block { order: -1; }

  .about-mission-container { grid-template-columns: 1fr; }

  .about-mission-card { position: static; margin-top: var(--space-sm); }

  .methodology-grid { grid-template-columns: 1fr; }

  .principles-container { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .difference-detail-grid { grid-template-columns: 1fr; }

  .training-intro-container { grid-template-columns: 1fr; }

  .training-programs-grid { grid-template-columns: 1fr; }

  .training-approach-grid { grid-template-columns: 1fr 1fr; }

  .cfo-intro-container { grid-template-columns: 1fr; }

  .cfo-scenarios-grid { grid-template-columns: 1fr; }

  .cfo-format-container { grid-template-columns: 1fr; }

  .contact-main-container { grid-template-columns: 1fr; }

  .about-preview-features { grid-template-columns: 1fr; }

  
  .footer-top { grid-template-columns: 1fr; gap: var(--space-lg); }

  .footer-brand-col { grid-column: auto; }

  .footer-bottom { flex-direction: column; text-align: center; }

  
  .cta-content { padding: var(--space-lg); }

  .cta-actions { flex-direction: column; align-items: center; }

  .cta-contact-info { flex-direction: column; gap: var(--space-sm); }

  
  .mega-menu-panel { display: none; }

  
  .cookie-consent-panel {
    width: 100%; right: -100%;
    border-left: none;
    border-top: 1px solid var(--color-border);
    top: auto; bottom: -100%;
    right: 0;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
  }

  .cookie-consent-panel.panel-open {
    bottom: 0; right: 0;
  }

  .cookie-settings-trigger { bottom: 5.5rem; }

  
  .legal-container { padding: 0; }

  
  .problem-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }

  .training-approach-grid { grid-template-columns: 1fr; }

  .nav-inner { padding: 0; }

  .main-navigation { padding: 1rem 1.25rem; }
}