@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:        #121820;
  --navy2:       #1a2332;
  --navy3:       #0d1219;
  --teal:        #1D9E75;
  --teal-mid:    #22b587;
  --teal-light:  #5DCAA5;
  --teal-pale:   #E1F5EE;
  --teal-glow:   rgba(29,158,117,0.15);
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --gray:        #64748b;
  --gray-light:  #e2e8f0;
  --gray-mid:    #94a3b8;
  --text:        #0f172a;
  --font:        'Plus Jakarta Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-teal: 0 8px 32px rgba(29,158,117,0.20);
  --transition:  all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(42px, 6vw, 80px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p { font-weight: 400; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── UTILITY ── */
.teal { color: var(--teal-light); }
.teal-dark { color: var(--teal); }
.white { color: var(--white); }
.gray { color: var(--gray); }
.text-center { text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.badge-teal { background: rgba(29,158,117,0.12); color: var(--teal-light); border: 1px solid rgba(93,202,165,0.25); }
.badge-dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}
.section-label.white { color: var(--teal-light); }

.section-head { margin-bottom: 64px; }
.section-head p { font-size: 18px; color: var(--gray); max-width: 560px; margin-top: 16px; font-weight: 400; line-height: 1.7; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 16px auto 0; }
.section-head.white h2 { color: var(--white); }
.section-head.white p { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(29,158,117,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,18,25,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(29,158,117,0.12);
  transition: var(--transition);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-wordmark { font-size: 21px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-wordmark span { color: var(--teal-light); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy3); border-bottom: 1px solid rgba(29,158,117,0.15); padding: 20px 5% 28px; gap: 18px; z-index: 999; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.75); font-size: 16px; font-weight: 500; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy3);
  position: relative; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,158,117,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,158,117,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-glow-1 { position: absolute; top: -15%; right: -10%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(29,158,117,0.14) 0%, transparent 65%); pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -10%; left: -5%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(93,202,165,0.07) 0%, transparent 65%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-content { }
.hero-content .badge { margin-bottom: 24px; }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content h1 em { color: var(--teal-light); font-style: normal; display: block; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 500px; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-metrics { display: flex; gap: 36px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.metric-num { font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; }
.metric-num span { color: var(--teal-light); }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: linear-gradient(135deg, var(--navy2) 0%, #1e2d3d 100%);
  border: 1px solid rgba(29,158,117,0.2); border-radius: var(--radius-xl);
  padding: 32px; position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.hc-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.hc-platforms { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.hc-platform {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 10px; text-align: center;
  transition: var(--transition);
}
.hc-platform:hover { border-color: rgba(29,158,117,0.4); background: rgba(29,158,117,0.06); transform: translateY(-2px); }
.hc-platform-icon { font-size: 22px; margin-bottom: 6px; }
.hc-platform-name { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.hc-stat-row { display: flex; gap: 12px; }
.hc-stat {
  flex: 1; background: rgba(29,158,117,0.08); border: 1px solid rgba(29,158,117,0.2);
  border-radius: 10px; padding: 14px;
}
.hc-stat-val { font-size: 22px; font-weight: 800; color: var(--teal-light); }
.hc-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.hero-card-float {
  position: absolute; right: -20px; bottom: -20px;
  background: var(--navy2); border: 1px solid rgba(29,158,117,0.25);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hcf-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(29,158,117,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hcf-text strong { display: block; font-size: 14px; color: var(--white); font-weight: 700; }
.hcf-text span { font-size: 12px; color: var(--teal-light); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--teal); padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker-item { font-size: 13px; font-weight: 700; color: var(--white); padding: 0 28px; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SERVICES ── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--gray-light);
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); border-color: rgba(29,158,117,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card:hover .service-icon svg path[fill="#1D9E75"] { fill: var(--white); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 400; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--teal-pale); color: var(--teal); }

/* ── INFOGRAPHIC / PROCESS ── */
.process-section { background: var(--navy); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(29,158,117,0.12) 0%, transparent 60%); }
.process-inner { position: relative; }
.process-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 60px; }
.process-flow::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal-light), var(--teal), transparent);
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.process-step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--navy); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--teal-light);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(29,158,117,0.1);
  transition: var(--transition);
}
.process-step:hover .process-step-num { background: var(--teal); color: var(--white); box-shadow: 0 0 0 10px rgba(29,158,117,0.15), var(--shadow-teal); }
.process-step h4 { font-size: 16px; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── STATS BAND ── */
.stats-band { background: linear-gradient(135deg, var(--teal) 0%, #0d7a5a 100%); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-big { font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-big span { color: rgba(255,255,255,0.7); font-size: 32px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 500; }

/* ── WHY US ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--gray-light); transition: var(--transition); }
.why-item:hover { border-color: var(--teal-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-item-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.why-visual {
  background: var(--navy); border-radius: var(--radius-xl); padding: 36px;
  position: relative; overflow: hidden;
}
.why-visual::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%); }
.comparison-table { position: relative; }
.ct-header { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.ct-header span { font-size: 12px; font-weight: 700; text-align: center; padding: 8px; }
.ct-header .th-us { background: var(--teal); color: var(--white); border-radius: 8px; }
.ct-header .th-other { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); border-radius: 8px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.ct-cell { padding: 10px 8px; border-radius: 8px; text-align: center; font-size: 12px; }
.ct-label { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); font-weight: 500; display: flex; align-items: center; justify-content: center; }
.ct-yes { background: rgba(29,158,117,0.12); color: var(--teal-light); font-size: 16px; }
.ct-no { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.2); font-size: 16px; }

/* ── PACKAGES ── */
.packages-section { background: var(--off-white); }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pkg {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1.5px solid var(--gray-light);
  position: relative; transition: var(--transition);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: var(--teal); background: var(--navy); }
.pkg-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.pkg-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pkg.featured .pkg-tier { color: var(--teal-light); }
.pkg-name { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.pkg.featured .pkg-name { color: var(--white); }
.pkg-note { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.pkg.featured .pkg-note { color: rgba(255,255,255,0.45); }
.pkg-divider { height: 1px; background: var(--gray-light); margin-bottom: 24px; }
.pkg.featured .pkg-divider { background: rgba(255,255,255,0.1); }
.pkg-feat { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; font-weight: 500; align-items: flex-start; line-height: 1.5; }
.pkg.featured .pkg-feat { color: rgba(255,255,255,0.8); }
.pkg-check { color: var(--teal); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pkg.featured .pkg-check { color: var(--teal-light); }
.pkg-cta { display: block; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; margin-top: 28px; transition: var(--transition); border: 1.5px solid var(--gray-light); color: var(--text); }
.pkg-cta:hover { border-color: var(--teal); color: var(--teal); }
.pkg.featured .pkg-cta { background: var(--teal); border-color: var(--teal); color: var(--white); }
.pkg.featured .pkg-cta:hover { background: var(--teal-mid); }

/* ── MERMAID SECTION ── */
.flow-section { background: var(--navy3); padding: 100px 0; }
.mermaid-wrap {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(29,158,117,0.15);
  border-radius: var(--radius-xl); padding: 48px; margin-top: 48px; overflow-x: auto;
}
.mermaid { min-width: 600px; }
.mermaid svg { max-width: 100%; margin: 0 auto; display: block; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--gray-light); transition: var(--transition); position: relative;
}
.testi-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.testi-quote { font-size: 48px; color: var(--teal-pale); line-height: 1; font-weight: 800; margin-bottom: -8px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; font-weight: 400; }
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: var(--white); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gray); }
.testi-cta {
  border: 2px dashed rgba(29,158,117,0.3); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center; background: var(--teal-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.testi-cta p { font-size: 15px; font-weight: 700; color: var(--teal); }
.testi-cta span { font-size: 13px; color: var(--gray); }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 16px; transition: color 0.2s; }
.faq-btn:hover, .faq-item.open .faq-btn { color: var(--teal); }
.faq-btn span { font-size: 16px; font-weight: 600; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--teal); transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 14px; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy3); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(29,158,117,0.12) 0%, transparent 65%); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--navy3); border-top: 1px solid rgba(255,255,255,0.06); padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px; transition: color 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social:hover { background: var(--teal); border-color: var(--teal); }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--navy3); padding: 140px 0 80px; }
.about-hero h1 { color: var(--white); margin-bottom: 20px; }
.about-hero h1 em { color: var(--teal-light); font-style: normal; }
.about-hero p { font-size: 19px; color: rgba(255,255,255,0.5); max-width: 560px; line-height: 1.7; font-weight: 300; }
.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.founder-card { background: var(--off-white); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--gray-light); position: sticky; top: 90px; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 18px; }
.founder-card h3 { font-size: 24px; margin-bottom: 4px; }
.founder-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 18px; }
.founder-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.f-stat { background: var(--white); border-radius: 12px; padding: 16px; text-align: center; border: 1px solid var(--gray-light); }
.f-stat-num { font-size: 24px; font-weight: 800; color: var(--teal); }
.f-stat-lbl { font-size: 11px; color: var(--gray); margin-top: 2px; }
.founder-cta { display: block; text-align: center; padding: 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-light); font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 20px; transition: var(--transition); }
.founder-cta:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.values-section { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--gray-light); transition: var(--transition); }
.value-card:hover { border-color: var(--teal-light); transform: translateY(-4px); box-shadow: var(--shadow-teal); }
.value-num { font-size: 48px; font-weight: 800; color: var(--teal-pale); line-height: 1; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-hero { background: var(--navy3); padding: 140px 0 80px; }
.contact-hero h1 { color: var(--white); margin-bottom: 20px; }
.contact-hero h1 em { color: var(--teal-light); font-style: normal; }
.contact-hero p { font-size: 19px; color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.7; font-weight: 300; }
.contact-content { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-item a, .contact-item span { font-size: 14px; color: var(--gray); font-weight: 400; }
.contact-item a:hover { color: var(--teal); }
.form-card { background: var(--off-white); border-radius: var(--radius-xl); padding: 44px; border: 1px solid var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-light); font-family: var(--font);
  font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none; font-weight: 400;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(29,158,117,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; border-radius: var(--radius-sm); background: var(--teal); color: var(--white); border: none; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.form-success { display: none; text-align: center; padding: 18px; background: var(--teal-pale); border-radius: 10px; margin-top: 14px; font-size: 14px; color: var(--teal); font-weight: 600; border: 1px solid rgba(29,158,117,0.2); }

/* ── SERVICE DETAIL PAGES ── */
.svc-back { margin-bottom: 24px; }
.svc-back a { font-size: 14px; font-weight: 600; color: var(--teal-light); transition: color 0.2s; }
.svc-back a:hover { color: var(--white); }
.svc-hero-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-detail { background: var(--white); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.svc-detail h2 { margin-bottom: 32px; }
.svc-features { display: flex; flex-direction: column; gap: 24px; }
.svc-feat {
  display: flex; gap: 14px; padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.svc-feat:hover { border-color: var(--teal-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.svc-feat h4 { margin-bottom: 4px; }
.svc-feat p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.svc-sidebar-card {
  background: var(--off-white); border-radius: var(--radius-xl);
  padding: 36px; border: 1px solid var(--gray-light);
  position: sticky; top: 90px;
}
.svc-sidebar-card h3 { font-size: 22px; margin-bottom: 12px; }
.svc-sidebar-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.svc-sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── ANIMATIONS ── */
/* Content visible by default; JS adds .reveal-ready to enable animation */
.reveal { transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.reveal-ready { opacity: 0; transform: translateY(28px); }
.reveal.reveal-ready.up { transform: translateY(28px); }
.reveal.reveal-ready.left { transform: translateX(-28px); }
.reveal.reveal-ready.right { transform: translateX(28px); }
.reveal.visible { opacity: 1 !important; transform: translate(0) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .founder-card { position: static; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-sidebar-card { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(2,1fr); }
  .process-flow::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .packages-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ct-header, .ct-row { grid-template-columns: 1fr 1fr; }
  .ct-label { display: none; }
  .hero-metrics { gap: 20px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .process-flow { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
