/* =========================================================
   NextGenStudio — Shared Stylesheet
   Dark navy + white, electric-blue accent
   ========================================================= */

:root {
  --navy:        #0A1628;
  --navy-2:      #0F1F38;
  --navy-3:      #142844;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --grey:        #64748B;
  --grey-light:  #94A3B8;
  --line:        #E2E8F0;
  --accent:      #3B82F6;
  --accent-2:    #60A5FA;
  --accent-dark: #2563EB;
  --success:     #22C55E;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow:      0 10px 30px rgba(10, 22, 40, 0.10);
  --shadow-lg:   0 20px 50px rgba(10, 22, 40, 0.16);
  --shadow-navy: 0 20px 50px rgba(59, 130, 246, 0.25);

  --maxw:        1180px;
  --ease:        0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }

p { color: var(--grey); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

/* ---------- Section variants ---------- */
.sec-dark {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: var(--white); }
.sec-dark p { color: var(--grey-light); }

.sec-light { background: var(--white); }
.sec-muted { background: var(--off-white); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.sec-dark .eyebrow { color: var(--accent-2); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 16px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 12px 30px rgba(59, 130, 246, 0.45); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-3); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.sec-dark .btn-outline,
.hero .btn-outline,
.page-head .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.sec-dark .btn-outline:hover,
.hero .btn-outline:hover,
.page-head .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { box-shadow: var(--shadow-lg); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(59,130,246,0.4);
}
.brand .accent { color: var(--accent-2); }

/* ---- NextWeb Studio logo lockup ---- */
.logo-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}
.logo-word {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.045em;
  color: #fff;
}
.logo-word b { font-weight: 800; }
.logo-sub {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-top: 4px;
  margin-left: 2px;
}
/* footer logo a touch larger */
.footer .logo-word { font-size: 1.55rem; }
.footer .logo-sub { color: rgba(148,163,184,0.95); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--grey-light);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 9px 15px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* Language switcher */
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
}
.lang button {
  border: none;
  background: transparent;
  color: var(--grey-light);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.lang button:hover { color: var(--white); }
.lang button.active { background: var(--accent); color: #fff; }

.nav-cta { display: inline-flex; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-2);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }
  .nav-mobile-open .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-mobile-open .nav-cta { display: flex; margin-top: 8px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(59,130,246,0.28) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(96,165,250,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 80%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 860px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-2), #A5C8FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--grey-light);
  max-width: 640px;
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-light);
  margin-bottom: 28px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stats .stat span { font-size: 0.92rem; color: var(--grey-light); }

/* =========================================================
   Feature grid / cards
   ========================================================= */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cdd9e8; }

.card .ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(59,130,246,0.14), rgba(96,165,250,0.18));
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

.sec-dark .card {
  background: var(--navy-2);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.sec-dark .card:hover { border-color: rgba(96,165,250,0.4); background: var(--navy-3); }
.sec-dark .card .ico { background: rgba(59,130,246,0.18); color: var(--accent-2); }

/* SVG icon sizing */
.ico svg { width: 26px; height: 26px; stroke-width: 2; }

/* =========================================================
   Steps / timeline
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .num {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.97rem; }

/* Vertical timeline (concept page) */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(59,130,246,0.15));
}
.tl-item { display: flex; gap: 28px; padding-bottom: 44px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(10,22,40,0.18);
}
.tl-body { padding-top: 4px; }
.tl-body h3 { margin-bottom: 8px; }

/* =========================================================
   Pricing
   ========================================================= */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--white);
}
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}
.compare thead th {
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare thead th.us {
  background: var(--navy);
  color: var(--white);
}
.compare tbody td.us {
  background: rgba(59,130,246,0.05);
  font-weight: 700;
  color: var(--navy);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare td.feat { font-weight: 700; color: var(--navy); }
.compare .yes { color: var(--success); font-weight: 700; }
.compare .no  { color: #EF4444; font-weight: 700; }

.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
}
.price-card.featured p, .price-card.featured li { color: var(--grey-light); }
.price-card.featured h3 { color: #fff; }
.badge-pop {
  position: absolute; top: 22px; right: 22px;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.price-card .plan-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.price-card .price { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-card .price small { font-size: 1rem; font-weight: 600; color: var(--grey); }
.price-card.featured .price small { color: var(--grey-light); }
.price-card .price-desc { margin: 14px 0 24px; font-size: 0.95rem; }
.feat-list { list-style: none; margin: 0 0 28px; flex-grow: 1; }
.feat-list li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 9px 0;
  font-size: 0.96rem;
  color: var(--navy);
}
.price-card.featured .feat-list li { color: #E2E8F0; }
.feat-list li svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.price-card.featured .feat-list li svg { color: var(--accent-2); }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.addon {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex; flex-direction: column;
}
.addon:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.addon .ico { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, rgba(59,130,246,0.14), rgba(96,165,250,0.18)); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.addon h3 { font-size: 1.12rem; margin-bottom: 6px; }
.addon p { font-size: 0.92rem; margin-bottom: 18px; flex-grow: 1; }
.addon .addon-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform var(--ease); flex: 0 0 auto; color: var(--accent); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 0.98rem; }

/* =========================================================
   Testimonials / logos
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px;
}
.testi .stars { color: #FBBF24; letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.testi p { color: #E2E8F0; font-size: 1.02rem; margin-bottom: 22px; }
.testi .who { display: flex; align-items: center; gap: 13px; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; font-weight: 800; color: #fff;
}
.testi .who strong { color: #fff; display: block; font-size: 0.95rem; }
.testi .who span { color: var(--grey-light); font-size: 0.85rem; }

.logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 18px 44px;
}
.logos .logo-item {
  font-weight: 800; font-size: 1.2rem; color: var(--grey-light);
  opacity: 0.7; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
  transition: opacity var(--ease);
}
.logos .logo-item:hover { opacity: 1; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(59,130,246,0.3), transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: var(--grey-light); max-width: 560px; margin: 0 auto 32px; font-size: 1.12rem; }
.cta-banner .hero-cta { justify-content: center; }

/* =========================================================
   Two-column "split" content
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: 18px;
  min-height: 360px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  padding: 30px;
}
.split-media .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}
.list-check { list-style: none; margin-top: 24px; }
.list-check li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 11px 0;
  font-size: 1.02rem; color: var(--navy);
  font-weight: 500;
}
.sec-dark .list-check li { color: #E2E8F0; }
.list-check li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.sec-dark .list-check li svg { color: var(--accent-2); }

/* Glass card used inside hero/split media */
.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 320px;
  color: #fff;
}
.glass-card .row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; }
.glass-card .row:last-child { border-bottom: none; }
.glass-card .row span:first-child { color: var(--grey-light); }
.glass-card .row span:last-child { font-weight: 700; }
.glass-card .ok { color: var(--success); }

/* =========================================================
   Trust / badges
   ========================================================= */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.trust-badge svg { width: 22px; height: 22px; color: var(--accent); }
.sec-dark .trust-badge { background: var(--navy-2); border-color: rgba(255,255,255,0.1); color: #fff; }
.sec-dark .trust-badge svg { color: var(--accent-2); }

/* =========================================================
   Forms (contact)
   ========================================================= */
.form-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; color: var(--navy); }
.field label .opt { color: var(--grey-light); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--navy);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: var(--grey);
  margin-bottom: 24px;
}
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex: 0 0 auto; }
.check a { color: var(--accent); font-weight: 600; }

.form-note {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803D;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-note.show { display: block; }
.form-note.error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #B91C1C;
}

.contact-aside .info-card {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.contact-aside .info-card h3 { color: #fff; margin-bottom: 20px; }
.info-line { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.info-line:last-child { border-bottom: none; }
.info-line .ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; background: rgba(59,130,246,0.2); color: var(--accent-2); display: grid; place-items: center; }
.info-line strong { display: block; font-size: 0.95rem; }
.info-line span { color: var(--grey-light); font-size: 0.9rem; }

.booking-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-navy);
}
.booking-card h3 { color: #fff; margin-bottom: 10px; }
.booking-card p { color: rgba(255,255,255,0.9); margin-bottom: 22px; font-size: 0.96rem; }

/* =========================================================
   Page header (interior pages)
   ========================================================= */
.page-head {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-head .hero-bg, .page-head .hero-grid { position: absolute; inset: 0; }
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { color: #fff; max-width: 760px; }
.page-head p { color: var(--grey-light); font-size: 1.2rem; max-width: 600px; margin-top: 18px; }
.breadcrumb { font-size: 0.85rem; color: var(--grey-light); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #060E1C;
  color: var(--grey-light);
  padding: 72px 0 32px;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand { margin-bottom: 16px; }
.footer-about { font-size: 0.96rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.94rem; transition: color var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 28px;
  font-size: 0.86rem;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: #fff; }

/* =========================================================
   Prose / legal documents
   ========================================================= */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--grey); font-size: 1.02rem; margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--navy); font-weight: 700; }
.prose .lead { font-size: 1.12rem; color: var(--navy); }
.prose .note {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.95rem;
  margin: 20px 0;
}
.prose table.kv { width: 100%; border-collapse: collapse; margin: 8px 0 22px; }
.prose table.kv td { padding: 9px 12px; border-bottom: 1px solid var(--line); font-size: 0.96rem; vertical-align: top; }
.prose table.kv td:first-child { font-weight: 600; color: var(--navy); width: 38%; }

/* =========================================================
   Reveal-on-scroll animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4, .steps, .price-cards, .addon-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 26px; }
  .hero { padding: 80px 0 90px; }
  .hero-stats { gap: 28px; }
  .hero-stats .stat strong { font-size: 1.7rem; }
  .tl-item { gap: 18px; }
  .form-card { padding: 26px; }
}
