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

/* ── VARIABLES ── */
:root {
  --navy:    #0d1b2a;
  --navy2:   #112236;
  --navy3:   #0a1520;
  --blue:    #3d85c8;
  --blue-h:  #2d72b8;
  --blue-lt: #5a9fd4;
  --white:   #ffffff;
  --light:   #f0f5fa;
  --light2:  #e4eef7;
  --text:    #1a2535;
  --text-2:  #4a5c6a;
}

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── FLOAT CTA ── */
#float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(61,133,200,.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
}

#float-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

#float-cta:hover {
  background: var(--blue-h);
}

#float-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 80px;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  transition: height .3s, box-shadow .3s;
}

nav.scrolled {
  height: 64px;
  box-shadow: 0 4px 28px rgba(0,0,0,.5);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 58px;
  display: block;
  transition: height .3s;
}

nav.scrolled .nav-logo img {
  height: 46px;
}

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

.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
}

.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
  box-shadow: 0 3px 12px rgba(61,133,200,.4);
}

.btn-nav:hover {
  background: var(--blue-h) !important;
  transform: translateY(-1px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  pointer-events: none;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy2);
  padding: 24px 48px;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.mobile-menu a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112438 55%, #163050 100%);
  padding: 88px 52px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(61,133,200,.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,133,200,.15);
  border: 1px solid rgba(61,133,200,.35);
  color: var(--blue-lt);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.hero-note svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-lt);
  fill: none;
  stroke-width: 2;
}

/* ── SECTION BASE ── */
section {
  padding: 96px 52px;
}

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

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 56px;
}

/* ── PRICING SECTION ── */
.pricing {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ── PRICING CARD ── */
.price-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--light2);
  padding: 40px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .3s;
  box-shadow: 0 4px 24px rgba(13,27,42,.07);
  display: flex;
  flex-direction: column;
}

.price-card .btn-card {
  margin-top: auto;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(13,27,42,.12);
  border-color: rgba(61,133,200,.3);
}

/* featured card */
.price-card.featured {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 12px 48px rgba(61,133,200,.25);
}

.price-card.featured:hover {
  box-shadow: 0 24px 64px rgba(61,133,200,.35);
  border-color: var(--blue-lt);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(61,133,200,.45);
  white-space: nowrap;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.price-card.featured .card-icon {
  background: rgba(61,133,200,.15);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.card-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.price-card.featured .card-name {
  color: var(--blue-lt);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.price-card.featured .card-title {
  color: var(--white);
}

.card-desc {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}

.price-card.featured .card-desc {
  color: rgba(255,255,255,.5);
}

.card-divider {
  border: none;
  border-top: 1px solid var(--light2);
  margin-bottom: 24px;
}

.price-card.featured .card-divider {
  border-color: rgba(255,255,255,.1);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: .9rem;
  color: var(--text-2);
  font-weight: 500;
}

.price-card.featured .price-period {
  color: rgba(255,255,255,.5);
}

.price-setup {
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: 28px;
  font-weight: 500;
}

.price-card.featured .price-setup {
  color: rgba(255,255,255,.4);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}

.price-card.featured .feature-list li {
  color: rgba(255,255,255,.65);
}

.feat-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(61,133,200,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.price-card.featured .feat-check {
  background: rgba(61,133,200,.25);
}

.feat-check svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.8;
}

.price-card.featured .feat-check svg {
  stroke: var(--blue-lt);
}

.btn-card {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-card-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-card-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-card-solid {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(61,133,200,.4);
}

.btn-card-solid:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,133,200,.5);
}

/* ── BUNDLE BANNER ── */
.bundle {
  background: var(--white);
}

.bundle-box {
  background: linear-gradient(135deg, var(--navy) 0%, #112438 60%, #163050 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 56px;
  border: 1px solid rgba(61,133,200,.2);
  box-shadow: 0 16px 56px rgba(13,27,42,.18);
  position: relative;
  overflow: hidden;
}

.bundle-box::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,133,200,.1) 0%, transparent 65%);
  pointer-events: none;
}

.bundle-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.bundle-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 14px;
}

.bundle-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bundle-text p {
  font-size: .97rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

.bundle-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.bundle-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.bundle-price span {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.bundle-savings {
  display: inline-block;
  background: rgba(61,133,200,.2);
  border: 1px solid rgba(61,133,200,.4);
  color: var(--blue-lt);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 10px 0 22px;
}

.btn-bundle {
  display: block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(61,133,200,.45);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-bundle:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,133,200,.55);
}

/* ── FAQ ── */
.faq {
  background: var(--light);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-intro p {
  font-size: .97rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,27,42,.06);
  border-left: 3px solid transparent;
  transition: border-color .2s;
}

.faq-item.open {
  border-left-color: var(--blue);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-q svg {
  min-width: 20px;
  transition: transform .3s;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .91rem;
  color: var(--text-2);
  line-height: 1.75;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 80px 52px;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(61,133,200,.45);
}

.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61,133,200,.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.18);
  transition: all .2s;
}

.btn-ghost:hover {
  border-color: rgba(61,133,200,.6);
  color: var(--white);
  background: rgba(61,133,200,.1);
}

/* ── CONTACT PAGE STYLES ── */
main {
  flex: 1;
}

.contact-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 72px 52px;
  align-items: start;
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

.form-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-card .sub {
  font-size: .9rem;
  color: #6a7d8e;
  margin-bottom: 32px;
  line-height: 1.6;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a5c6a;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  border: 1.5px solid #dde3ea;
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: var(--white);
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61,133,200,.14);
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a7d8e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  accent-color: var(--blue);
  cursor: pointer;
  border: none;
  padding: 0;
  border-radius: 3px;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
}

/* success message */
.success-msg {
  display: none;
  background: #f0faf4;
  border: 1.5px solid #34d399;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: .92rem;
  color: #065f46;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
}

/* ── SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 32px 28px;
  color: var(--white);
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9px;
  background: rgba(61,133,200,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue-lt);
  fill: none;
  stroke-width: 1.8;
}

.info-item-text strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.info-item-text a,
.info-item-text span {
  color: var(--white);
  font-size: .92rem;
  text-decoration: none;
}

.info-item-text a:hover {
  color: var(--blue-lt);
}

.booking-card {
  background: var(--blue);
  border-radius: 14px;
  padding: 28px;
  color: var(--white);
  text-align: center;
}

.booking-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.booking-card p {
  font-size: .85rem;
  opacity: .85;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-book {
  display: block;
  background: var(--white);
  color: var(--blue);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}

.btn-book:hover {
  opacity: .9;
}

/* ── FOOTER ── */
footer {
  background: var(--navy3);
  border-top: 1px solid rgba(61,133,200,.1);
  padding: 28px 52px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

footer a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover {
  color: var(--blue-lt);
}

body.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--light);
}

.page-hero {
  background: var(--navy);
  padding: 64px 52px 56px;
  text-align: center;
}

.page-hero .eyebrow {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ABOUT PAGE STYLES ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112438 55%, #163050 100%);
  padding: 88px 52px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(61,133,200,.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.about-section {
  padding: 96px 52px;
}

.about-section.alt {
  background: var(--light);
}

.about-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
  object-fit: cover;
  aspect-ratio: 1;
}

.team-member h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--text-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13,27,42,.06);
  transition: transform .25s, box-shadow .25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,27,42,.12);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 0 24px;
    height: 68px;
  }

  nav.scrolled {
    height: 56px;
  }

  .nav-logo img {
    height: 46px;
  }

  .mobile-menu {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 72px 24px;
  }

  .page-hero, .about-hero {
    padding: 64px 24px 56px;
  }

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

  .bundle-box {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 40px 28px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-strip {
    padding: 64px 24px;
  }

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

  footer {
    padding: 24px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 36px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 30px 22px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .price-card {
    padding: 28px 20px;
  }

  .bundle-price {
    font-size: 2.4rem;
  }
}

/* ── HOME PAGE SPECIFIC STYLES ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112438 55%, #163050 100%);
  padding: 120px 52px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(61,133,200,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-top {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-top h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-top p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 42px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about {
  padding: 96px 52px;
}

.about p:last-child {
  margin-bottom: 0;
}

.services {
  padding: 96px 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(13,27,42,.07);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,42,.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-link {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color .2s;
}

.service-link:hover {
  color: var(--blue-h);
}

@media (max-width: 960px) {
  .hero {
    padding: 80px 24px 64px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

/* ── FOUNDER LAYOUT ── */
.founder-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.founder-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.founder-bio h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.founder-bio p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}

@media (max-width: 700px) {
  .founder-wrap {
    grid-template-columns: 1fr;
  }
  .founder-img {
    max-width: 220px;
    aspect-ratio: 1/1;
  }
}

/* ── PROCESS / HOW IT WORKS ── */
.process {
  padding: 100px 24px;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--light);
  border-radius: 12px;
  text-align: center;
}

.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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