/* =========================================
   GASOLU SUWEZI — MAIN STYLESHEET
   Concept: Elevated Cards | Mood: organized, tactile, polished
   ========================================= */


:root {
  --color-canvas: #f4f2ef;
  --color-surface: #faf9f7;
  --color-surface-tinted: #edeae4;
  --color-accent: #2a6ef5;
  --color-accent-dark: #1a52c4;
  --color-accent-light: #d9e5ff;
  --color-text-primary: #1a1a2e;
  --color-text-secondary: #4a4a68;
  --color-text-muted: #7a7a9a;
  --color-border: #dddbd6;
  --color-white: #ffffff;
  --color-success: #1a8a5a;
  --color-warning: #c47a00;
  --color-error: #c43a1a;

  --shadow-low: 0 1px 3px rgba(26,26,46,0.06), 0 4px 12px rgba(26,26,46,0.08);
  --shadow-mid: 0 2px 6px rgba(26,26,46,0.06), 0 8px 24px rgba(26,26,46,0.12), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-high: 0 4px 12px rgba(26,26,46,0.08), 0 16px 40px rgba(26,26,46,0.16), 0 2px 4px rgba(26,26,46,0.04);
  --shadow-hover: 0 8px 24px rgba(26,26,46,0.12), 0 24px 56px rgba(26,26,46,0.20), 0 2px 6px rgba(26,26,46,0.06);

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

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

  --nav-height: 72px;
  --transition-fast: 200ms ease;
  --transition-mid: 350ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 600ms cubic-bezier(0.4,0,0.2,1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Sora', sans-serif;
  background-color: var(--color-canvas);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }


h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.75; color: var(--color-text-secondary); }
small { font-size: 0.8rem; color: var(--color-text-muted); }


.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.canvas-section { padding: var(--space-xl) 0; }
.canvas-section--tinted { background-color: var(--color-surface-tinted); }
.canvas-section--accent { background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%); color: var(--color-white); }
.canvas-section--accent p { color: rgba(255,255,255,0.75); }


.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(255,255,255,0.6); }


.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section-desc {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 900;
  transition: transform var(--transition-slow), box-shadow var(--transition-mid);
}
.nav-header.nav-visible {
  transform: translateY(0);
  box-shadow: var(--shadow-low);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--color-text-primary); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--color-accent); font-weight: 600; }


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--color-accent-light); }
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-mid), opacity var(--transition-fast);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   MOBILE DRAWER (Diagonal Reveal)
   ========================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  pointer-events: none;
}
.drawer[aria-hidden="false"] { pointer-events: all; }

.drawer-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 60%, #2a6ef5 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.175,1);
}
.drawer[aria-hidden="false"] .drawer-curtain {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.drawer-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}
.drawer[aria-hidden="false"] .drawer-nav { opacity: 1; }
.drawer-nav ul { display: flex; flex-direction: column; gap: var(--space-md); }
.drawer-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}
.drawer-nav a:hover,
.drawer-nav a[aria-current="page"] { color: var(--color-white); }

/* =========================================
   BOTTOM NAV (Mobile Only)
   ========================================= */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(26,26,46,0.08);
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  min-height: 44px;
  transition: color var(--transition-fast);
}
.bottom-nav-item i { font-size: 1.1rem; }
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--color-accent); }

/* =========================================
   HERO / STAGE
   ========================================= */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,26,46,0.88) 0%,
    rgba(26,26,46,0.65) 55%,
    rgba(42,110,245,0.25) 100%
  );
}
.stage-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  max-width: 680px;
  padding-left: max(var(--space-md), calc((100vw - 1180px)/2 + var(--space-md)));
  padding-right: var(--space-md);
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42,110,245,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(42,110,245,0.4);
  color: #a8c4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.stage-headline {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.stage-headline em {
  font-style: normal;
  color: #7aabff;
}
.stage-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.stage-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px rgba(42,110,245,0.35);
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,110,245,0.45);
}
.btn-primary--large { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-surface);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent);
  transition: background var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
}
.btn-secondary:hover { background: var(--color-accent-light); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   CARDS (.shelf)
   ========================================= */
.shelf {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.shelf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* =========================================
   INTRO SECTION
   ========================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.intro-text h2 { margin-bottom: var(--space-sm); }
.intro-text p { margin-bottom: var(--space-sm); }
.intro-spotlight {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.intro-spotlight:hover .intro-img { transform: scale(1.04); }

/* =========================================
   BENEFITS GALLERY
   ========================================= */
.benefits-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.benefit-card {
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-card hgroup { margin-bottom: 0.5rem; }
.benefit-card hgroup h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.benefit-card hgroup p { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); }
.benefit-card > p { font-size: 0.95rem; }
.benefit-check {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--color-success);
  font-size: 1rem;
  background: rgba(26,138,90,0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.how-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-high);
}
.how-img { width: 100%; height: 100%; object-fit: cover; }
.how-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  max-width: 240px;
  z-index: 2;
}
.how-float-card i { font-size: 1.5rem; color: var(--color-accent); flex-shrink: 0; }
.how-float-card strong { font-size: 0.9rem; display: block; color: var(--color-text-primary); }
.how-float-card p { font-size: 0.8rem; margin: 0; line-height: 1.4; }
.how-text h2 { margin-bottom: var(--space-sm); }
.how-text > p { margin-bottom: var(--space-sm); }
.how-checklist { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.75rem; }
.how-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
}
.how-checklist li i { color: var(--color-success); font-size: 1.1rem; flex-shrink: 0; }
.how-visual { position: relative; }

/* =========================================
   FOR WHOM SECTION
   ========================================= */
.forwhom-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.forwhom-card {
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
}
.forwhom-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.forwhom-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.forwhom-card:hover .forwhom-img { transform: scale(1.05); }
.forwhom-body { padding: var(--space-md) var(--space-md) var(--space-lg); }
.forwhom-body h3 { color: var(--color-white); margin-bottom: 0.5rem; }
.forwhom-body p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  box-shadow: var(--shadow-high);
  overflow: hidden;
  align-items: center;
}
.cta-content .eyebrow { color: rgba(255,255,255,0.7); }
.cta-content h2 { color: var(--color-white); margin-bottom: var(--space-sm); }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-lg); }
.cta-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-mid); aspect-ratio: 4/3; object-fit: cover; }

.cta-simple {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-mid);
}
.cta-simple h2 { margin-bottom: var(--space-sm); }
.cta-simple p { max-width: 540px; margin: 0 auto var(--space-lg); }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #252540 100%);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}
.page-hero-content { max-width: 640px; }
.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; }

/* =========================================
   PHILOSOPHY SECTION
   ========================================= */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.philosophy-text h2 { margin-bottom: var(--space-sm); }
.philosophy-text p { margin-bottom: var(--space-sm); }
.philosophy-cards { display: flex; flex-direction: column; gap: var(--space-sm); }
.philosophy-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
}
.philosophy-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.philosophy-icon--yes { background: rgba(26,138,90,0.12); color: var(--color-success); }
.philosophy-icon--no { background: rgba(196,58,26,0.12); color: var(--color-error); }
.philosophy-card strong { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; color: var(--color-text-primary); }
.philosophy-card p { font-size: 0.88rem; margin: 0; }

/* =========================================
   TEAM SECTION
   ========================================= */
.team-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.team-card { overflow: hidden; }
.team-card-face { padding: var(--space-lg); }
.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}
.team-card hgroup h3 { margin-bottom: 0.2rem; }
.team-card hgroup p { font-size: 0.85rem; color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.bio-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: var(--space-md);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  transition: background var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
}
.bio-toggle:hover { background: rgba(42,110,245,0.15); }
.bio-toggle i { transition: transform var(--transition-mid); }
.bio-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.bio-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-mid);
  padding: 0 var(--space-lg);
}
.bio-expand[aria-hidden="false"] {
  max-height: 600px;
  padding: 0 var(--space-lg) var(--space-lg);
}
.bio-expand p { margin-bottom: var(--space-sm); font-size: 0.95rem; }

/* =========================================
   VALUES
   ========================================= */
.values-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.value-card { padding: var(--space-lg); }
.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-card h3 { margin-bottom: 0.5rem; }

/* =========================================
   PRICING
   ========================================= */
.pricing-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card { padding: var(--space-xl); position: relative; overflow: hidden; }
.pricing-card--featured {
  background: linear-gradient(160deg, #1a1a2e 0%, #2a2a4e 100%);
  border: 1px solid rgba(42,110,245,0.3);
  box-shadow: var(--shadow-high);
}
.pricing-card--featured .pricing-header hgroup h2,
.pricing-card--featured .pricing-price .price-amount { color: var(--color-white); }
.pricing-card--featured .pricing-price .price-note { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card--featured .pricing-features li i { color: #7aabff; }
.pricing-card--featured .feature-no { color: rgba(255,255,255,0.35); }
.pricing-card--featured .feature-no i { color: rgba(255,255,255,0.3); }
.pricing-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.pricing-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.pricing-card--featured .pricing-header { border-bottom-color: rgba(255,255,255,0.1); }
.pricing-header hgroup h2 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.pricing-header hgroup p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }
.price-amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text-primary); }
.price-note { font-size: 0.85rem; color: var(--color-text-muted); margin-left: 0.3rem; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: var(--space-lg);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.pricing-features li i { color: var(--color-success); flex-shrink: 0; }
.feature-no { opacity: 0.55; }
.feature-no i { color: var(--color-text-muted) !important; }
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: none;
}
.pricing-note:hover { transform: none; box-shadow: none; }
.pricing-note > i { color: var(--color-accent); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-note strong { display: block; font-size: 0.9rem; color: var(--color-text-primary); margin-bottom: 0.3rem; }
.pricing-note p { font-size: 0.88rem; margin: 0; }


.modules-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.module-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
}
.module-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.5;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.module-body h3 { margin-bottom: 0.3rem; }
.module-body p { font-size: 0.9rem; margin: 0; }

/* =========================================
   CHALLENGES
   ========================================= */
.challenges-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.challenge-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  align-items: start;
}
.challenge-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.18;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.challenge-body h2 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: var(--space-sm); }
.challenge-body p { margin-bottom: var(--space-sm); }
.challenge-body p:last-child { margin-bottom: 0; }

/* =========================================
   FAQ
   ========================================= */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  min-height: 44px;
}
.faq-question:hover { background: var(--color-accent-light); color: var(--color-accent); }
.faq-question i { flex-shrink: 0; transition: transform var(--transition-mid); color: var(--color-accent); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-mid);
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: 2px;
}
.faq-answer[aria-hidden="false"] {
  max-height: 400px;
  padding: var(--space-md) var(--space-lg);
}
.faq-answer p { font-size: 0.95rem; margin: 0; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page { padding-top: calc(var(--nav-height) + var(--space-xl)); }
.contact-container { max-width: 1100px; }
.contact-header { margin-bottom: var(--space-xl); }
.contact-header h1 { margin-bottom: var(--space-sm); }
.contact-header p { max-width: 560px; font-size: 1.05rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.contact-form {
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-high);
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-md); }
.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.form-field input,
.form-field textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--color-canvas);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(42,110,245,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.field-helper { font-size: 0.8rem; color: var(--color-text-muted); }
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-accent); }
.checkbox-label .checkbox-custom { display: none; }
.checkbox-label a { color: var(--color-accent); text-decoration: underline; }
#form-status {
  display: block;
  min-height: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-success);
}
#form-status.error { color: var(--color-error); }
.btn-submit { margin-top: 0.5rem; }
.contact-info { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-info-card,
.contact-directions-card {
  padding: var(--space-lg);
}
.contact-info-card h2,
.contact-directions-card h2 { font-size: 1.2rem; margin-bottom: var(--space-md); }
.contact-details { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-details li i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; margin-top: 0.25rem; }
.contact-details li strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.contact-details li a { color: var(--color-accent); font-size: 0.95rem; }
.contact-details li address { font-size: 0.95rem; color: var(--color-text-secondary); }
.directions-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.directions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.directions-list li i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; margin-top: 0.25rem; }
.directions-list li strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.directions-list li p { font-size: 0.88rem; margin: 0; }
.map-wrap { margin-top: var(--space-xl); }
.map-title { font-size: 1.2rem; margin-bottom: var(--space-md); }
.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid var(--color-border);
}

/* =========================================
   THANKS PAGE
   ========================================= */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-xl));
}
.thanks-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-checkmark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.thanks-svg {
  width: 100px;
  height: 100px;
}
.thanks-circle {
  stroke: var(--color-accent);
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  animation: drawCircle 0.7s ease forwards;
}
.thanks-check {
  stroke: var(--color-accent);
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease 0.65s forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.thanks-heading {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s ease 1.1s forwards;
  margin-bottom: var(--space-sm);
}
.thanks-wrap p {
  opacity: 0;
  animation: fadeUp 0.5s ease 1.3s forwards;
  margin-bottom: var(--space-lg);
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.5s forwards;
}
.thanks-actions .btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-page { padding-top: calc(var(--nav-height) + var(--space-xl)); }
.legal-container { max-width: 820px; }
.legal-header { margin-bottom: var(--space-xl); }
.legal-header h1 { margin-bottom: 0.5rem; }
.legal-meta { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 0.3rem; }
.legal-intro {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-low);
}
.legal-intro p { margin: 0; font-size: 0.95rem; }
.legal-section { margin-bottom: var(--space-xl); }
.legal-summary-box {
  background: var(--color-accent-light);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.legal-summary-box strong { color: var(--color-accent); font-size: 1rem; display: block; margin-bottom: 0.3rem; }
.legal-summary-box p { font-size: 0.9rem; margin: 0; color: var(--color-text-secondary); }
.legal-detail {
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
  border-top: none;
  box-shadow: var(--shadow-low);
}
.legal-detail p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.legal-detail p:last-child { margin-bottom: 0; }
.legal-detail ul { margin-top: 0.5rem; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-detail ul li { font-size: 0.93rem; color: var(--color-text-secondary); list-style: disc; }


.terms-section { margin-bottom: var(--space-lg); }
.terms-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-surface-tinted);
  padding: 0.75rem var(--space-md);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid var(--color-border);
  border-bottom: none;
  margin: 0;
}
.terms-summary {
  background: var(--color-accent-light);
  padding: 0.6rem var(--space-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  border-right: 1px solid var(--color-border);
}


.cookies-header { margin-bottom: var(--space-xl); }
.cookies-intro-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-low);
}
.cookies-intro-box i { color: var(--color-accent); font-size: 1.3rem; flex-shrink: 0; margin-top: 0.2rem; }
.cookies-intro-box p { font-size: 0.95rem; margin: 0; }
.cookies-grid { display: flex; flex-direction: column; gap: var(--space-xl); }
.cookies-section h2 { font-size: 1.15rem; margin-bottom: var(--space-sm); }
.cookies-section p { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.cookie-category-card { padding: var(--space-md) var(--space-lg); margin-bottom: var(--space-md); }
.cookie-cat-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.cookie-cat-header h3 { font-size: 1rem; margin: 0; }
.cookie-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.cookie-cat-badge--required { background: rgba(26,138,90,0.12); color: var(--color-success); }
.cookie-cat-badge--analytics { background: rgba(42,110,245,0.1); color: var(--color-accent); }
.cookie-cat-badge--marketing { background: rgba(196,122,0,0.1); color: var(--color-warning); }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.cookie-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: var(--color-surface-tinted);
  font-weight: 600;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.cookie-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}
.cookie-table code {
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
}
.browser-list { padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; margin: 0.5rem 0; }
.browser-list li { list-style: disc; font-size: 0.93rem; color: var(--color-text-secondary); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.footer-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 20%, #2a6ef5 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, #2a6ef5 0%, transparent 50%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}
.footer-brand p { font-size: 0.9rem; margin: var(--space-sm) 0; line-height: 1.6; }
.footer-brand address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255,255,255,0.6);
}
.footer-brand address p i { color: var(--color-accent); }
.footer-brand address a { color: rgba(255,255,255,0.75); transition: color var(--transition-fast); }
.footer-brand address a:hover { color: var(--color-white); }
.footer-links h4 { color: var(--color-white); margin-bottom: var(--space-sm); font-size: 0.9rem; letter-spacing: 0.05em; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}
.footer-bottom small { color: rgba(255,255,255,0.4); }

/* =========================================
   COOKIE CONSENT PANEL (Right side)
   ========================================= */
.cookie-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  z-index: 9900;
  opacity: 0;
  transition: opacity var(--transition-mid);
  pointer-events: none;
}
.cookie-panel-overlay.active { opacity: 1; pointer-events: all; }
.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--color-surface);
  z-index: 9999;
  box-shadow: -8px 0 40px rgba(26,26,46,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.cookie-panel.active { transform: translateX(0); }
.cookie-panel-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.cookie-panel-header i { color: var(--color-accent); font-size: 1.5rem; flex-shrink: 0; }
.cookie-panel-header h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.cookie-panel-header p { font-size: 0.82rem; color: var(--color-text-muted); margin: 0; }
.cookie-panel-body { padding: var(--space-md) var(--space-lg); flex: 1; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-cat-info h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.cookie-cat-info p { font-size: 0.78rem; color: var(--color-text-muted); margin: 0; }
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-panel-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.cookie-accept-all {
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition-fast);
  min-height: 44px;
}
.cookie-accept-all:hover { background: var(--color-accent-dark); }
.cookie-save {
  background: var(--color-surface-tinted);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition-fast);
  min-height: 44px;
}
.cookie-save:hover { background: var(--color-border); }
.cookie-reject-all {
  background: none;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  padding: 0.5rem;
  text-align: center;
  text-decoration: underline;
  transition: color var(--transition-fast);
  min-height: 44px;
}
.cookie-reject-all:hover { color: var(--color-text-secondary); }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   SPOTLIGHT
   ========================================= */
.spotlight {
  position: relative;
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (min-width: 640px) {
  .benefits-gallery { grid-template-columns: 1fr 1fr; }
  .forwhom-gallery { grid-template-columns: 1fr 1fr; }
  .values-gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .pricing-gallery { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   RESPONSIVE — DESKTOP
   ========================================= */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }

  .intro-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .team-gallery { grid-template-columns: 1fr 1fr; }
  .benefits-gallery { grid-template-columns: repeat(3, 1fr); }
  .forwhom-gallery { grid-template-columns: repeat(3, 1fr); }
  .values-gallery { grid-template-columns: repeat(4, 1fr); }
  .contact-layout { grid-template-columns: 1.4fr 1fr; }

  .challenge-item { gap: var(--space-xl); }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}


@media (max-width: 1023px) {
  body { padding-bottom: 64px; }
  .stage-content {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}