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

:root {
  --navy: #07241B;
  --navy-mid: #0B5C40;
  --teal: #0B5C40;
  --teal-light: #2FD49A;
  --teal-pale: #E3F5EC;
  --gold: #6BAE92;
  --gold-light: #C0EDD8;
  --cream: #faf8f4;
  --gray-100: #f4f2ee;
  --gray-200: #e8e5de;
  --gray-400: #9a9486;
  --gray-600: #5a5650;
  --text: #0E1512;
  --text-muted: #6b6760;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--gray-600);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: 0.3s; }
.mobile-menu { display: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute; right: -80px; top: 60px;
  width: 55vw; height: 80vh;
  background: var(--teal-pale);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  opacity: 0.6;
  z-index: 0;
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  background: rgba(11,92,64,0.1);
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content h1 em {
  font-style: italic; color: var(--teal);
}

.hero-content p {
  font-size: 18px; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 40px; max-width: 480px;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--navy); text-decoration: none;
  font-weight: 500;
}
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-stats {
  display: flex; gap: 36px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid var(--gray-200);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 32px; color: var(--navy); line-height: 1;
}
.hero-stat-label {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: flex-end; }

.hero-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}
.hero-card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero-card-icon {
  width: 44px; height: 44px; background: var(--teal-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--teal); }
.hero-card-title { font-size: 15px; font-weight: 500; color: var(--navy); }
.hero-card-sub { font-size: 12px; color: var(--text-muted); }

.card-metric-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px;
}
.card-metric-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.card-metric-val {
  font-family: var(--font-display); font-size: 28px; color: var(--navy);
}
.card-metric-badge {
  font-size: 12px; font-weight: 500; color: var(--teal);
  background: rgba(11,92,64,0.1); padding: 4px 10px; border-radius: 20px;
}

.card-bars { display: flex; flex-direction: column; gap: 10px; }
.card-bar-row { display: flex; align-items: center; gap: 10px; }
.card-bar-label { font-size: 12px; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.card-bar-track { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.card-bar-fill { height: 100%; border-radius: 3px; background: var(--teal); transition: width 1s ease; }

/* ── SECTION COMMONS ── */
section { padding: 96px 5%; }
.section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--navy); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); font-weight: 300;
  max-width: 560px; line-height: 1.7;
}

/* ── TRUST BAR ── */
#trust {
  background: var(--navy);
  padding: 24px 5%;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-label {
  font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase;
  padding-right: 28px; margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-items { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-item { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold-light); }

/* ── SERVICES ── */
#services { background: #fff; }
.services-header { max-width: 600px; margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: 36px 32px;
  background: #fff;
  transition: background 0.2s;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.service-card:hover { background: var(--cream); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--teal); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px; color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── WHY US ── */
#why {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  background: var(--cream);
}
.why-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.why-item {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-display); font-size: 36px;
  color: var(--gray-200); line-height: 1; flex-shrink: 0; width: 44px;
}
.why-item h3 { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.why-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(47,212,154,0.2);
  border-radius: 50%;
}
.why-visual-quote {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.3;
  font-style: italic;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.why-pillars { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.why-pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.why-pillar-icon { font-size: 20px; }
.why-pillar-title { font-size: 14px; font-weight: 500; color: #fff; }
.why-pillar-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── PRICING ── */
#pricing { background: #fff; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 32px;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(11,92,64,0.1);
}
.pricing-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 12px 48px rgba(11,92,64,0.15);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.pricing-plan { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px; color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: var(--text-muted); }
.pricing-billing { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-600);
}
.pricing-features li::before {
  content: ''; display: block; width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e8f5f2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%231a8f78' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C%2Fsvg%3E");
  margin-top: 2px;
}
.pricing-cta {
  display: block; text-align: center;
  padding: 12px 24px; border-radius: 40px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
.pricing-cta-outline {
  border: 1.5px solid var(--gray-200); color: var(--navy);
}
.pricing-cta-outline:hover { border-color: var(--teal); color: var(--teal); }
.pricing-cta-fill { background: var(--teal); color: #fff; border: 1.5px solid var(--teal); }
.pricing-cta-fill:hover { background: var(--teal-light); border-color: var(--teal-light); }

/* ── PRICING GUARANTEE ── */
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--teal-pale);
  border: 1px solid rgba(11,92,64,0.2);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 960px;
  margin: 0 auto 48px;
}
.pricing-guarantee-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.pricing-guarantee-title { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.pricing-guarantee-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── INDUSTRIES ── */
#industries { background: var(--cream); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-top: 48px;
}
.industry-tag {
  padding: 16px 20px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 10px; text-align: center;
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.industry-tag:hover { border-color: var(--teal); color: var(--teal); }
.industry-icon { font-size: 22px; margin-bottom: 8px; display: block; }

/* ── CTA BAND ── */
#cta-band {
  background: var(--navy);
  padding: 96px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
#cta-band::before, #cta-band::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(47,212,154,0.15);
}
#cta-band::before { width: 400px; height: 400px; top: -200px; left: -100px; }
#cta-band::after { width: 300px; height: 300px; bottom: -150px; right: -50px; }
#cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff; line-height: 1.15;
  margin-bottom: 20px; position: relative; z-index: 1;
}
#cta-band p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 500px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  background: #fff; color: var(--navy);
  padding: 14px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: 0.2s;
}
.btn-white:hover { background: var(--gold-light); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
  padding: 14px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: 0.2s;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }

.contact-email-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.contact-email-icon {
  width: 56px; height: 56px; background: var(--teal-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.contact-email-icon svg { width: 26px; height: 26px; color: var(--teal); }
.contact-email-card h3 {
  font-family: var(--font-display); font-size: 26px; color: var(--navy);
  margin-bottom: 12px;
}
.contact-email-card p {
  font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px;
}
.contact-email-address { margin-top: 16px; font-size: 13px; color: var(--text-muted); }
.contact-info h3 {
  font-family: var(--font-display); font-size: 28px; color: var(--navy);
  margin-bottom: 20px;
}
.contact-info p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 40px; height: 40px; background: var(--teal-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--teal); }
.contact-item-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item-val { font-size: 14px; color: var(--navy); font-weight: 500; }
.contact-item-val a { color: var(--navy); text-decoration: none; }
.contact-item-val a:hover { color: var(--teal); }


/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 5% 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 18px; color: #fff;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,0.45); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 12px; transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--teal-light); color: var(--teal-light); }
.footer-col h4 {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-visual { display: none; }
  #why { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  #trust { flex-direction: column; align-items: center; }
  .trust-label { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }
