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

:root {
  --navy: #0b2540;
  --navy-mid: #133a5e;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --radius: 14px;
  --shadow: 0 4px 32px rgba(11,37,64,0.10);
  --shadow-lg: 0 12px 48px rgba(11,37,64,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  letter-spacing: -0.1px;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(13,148,136,0.35);
}
.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: white; transform: translateY(-1px); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,37,64,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.nav__links a:hover { color: white; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

/* layered gradient */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13,148,136,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(245,158,11,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0b2540 0%, #133a5e 50%, #0d4a52 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  flex: 1;
  padding: 140px 0 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero__headline span { color: var(--gold); }

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  max-width: 460px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* OUTCOME CARD */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.outcome-card__header {
  margin-bottom: 28px;
}
.outcome-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
}

.outcome-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outcome-card__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.outcome-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.outcome-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-card__list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.outcome-card__list p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.hero__wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: auto;
}
.hero__wave svg { width: 100%; height: 70px; display: block; }

/* ── TRUST BAR ── */
.trust {
  background: var(--gray-50);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.trust__icon { font-size: 18px; }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 110px 0;
  background: white;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
  background: white;
}
.service-card__icon { font-size: 36px; margin-bottom: 18px; display: block; text-align: center; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ── INDUSTRIES ── */
.industries {
  padding: 90px 0;
  background: var(--navy);
}
.industries .section-eyebrow { color: var(--gold); }
.industries .section-header h2 { color: white; }
.industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.industry-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
}
.industry-pill:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* ── ABOUT ── */
.about {
  padding: 110px 0;
  background: var(--gray-50);
}
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}
.about__visual { display: flex; justify-content: center; }
.about__visual {
  position: relative;
}
.about__visual::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  background: var(--teal);
  border-radius: 20px;
  opacity: 0.15;
  z-index: 0;
}
.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about__text .section-eyebrow { text-align: left; }
.about__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.about__text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about__creds {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__creds li {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}

/* ── PRICING ── */
.pricing {
  padding: 110px 0;
  background: white;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow); border-color: var(--gray-400); }
.pricing-card--featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, #f0fdfa 0%, white 50%);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  z-index: 1;
}
.pricing-card--featured:hover { transform: scale(1.05); }
.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.pricing-card__price {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0;
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing-card ul li {
  font-size: 14px;
  color: var(--gray-700, #374151);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
}
.pricing-card__cancel {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}

.pricing__note {
  text-align: center;
  margin-top: 44px;
  font-size: 15px;
  color: var(--gray-600);
}
.pricing__note a { color: var(--teal); font-weight: 600; text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

/* BILLING TOGGLE */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  transition: color 0.2s;
}
.toggle__label.active { color: var(--navy); }
.toggle__save {
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.toggle__switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}
.toggle__switch input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 100px;
  transition: background 0.2s;
}
.toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle__switch input:checked + .toggle__slider { background: var(--teal); }
.toggle__switch input:checked + .toggle__slider::before { transform: translateX(22px); }

/* FAQ */
.pricing__faq {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}
.pricing__faq h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.faq__item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq__item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact {
  padding: 110px 0;
  background: var(--gray-50);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.contact__text .section-eyebrow { text-align: left; }
.contact__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 44px);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.contact__text > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-700, #374151);
  font-weight: 500;
}
.contact__form {
  background: white;
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--gray-50);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}
.form-group textarea { resize: vertical; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 52px 0 36px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}
.footer__links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__links a:hover { color: white; }
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__copy a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer__copy a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 120px 0 80px; }
  .hero__cta { justify-content: center; }
  .hero__badge { justify-content: center; }
  .hero__sub { margin: 0 auto 44px; }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .nav__links { display: none; }
  .nav__burger { display: none; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .trust__inner { gap: 24px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .container { padding: 0 20px; }
  .contact__form { padding: 28px 24px; }
}
