/* DHO DEY — fresh design system */
:root {
  --ink: #071a22;
  --ink-soft: #14303c;
  --brand: rgb(19, 192, 226);
  --brand-deep: rgb(12, 155, 185);
  --brand-glow: rgba(19, 192, 226, 0.16);
  --sea: var(--brand);
  --sea-deep: var(--brand-deep);
  --sea-glow: var(--brand-glow);
  --mist: #eef8fb;
  --foam: #ffffff;
  --line: rgba(7, 26, 34, 0.1);
  --muted: #5a727a;
  --star: #e8a317;
  --brand-soft: #7adcf0;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --radius: 1.25rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(19, 192, 226, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(7, 26, 34, 0.06), transparent 50%),
    var(--mist);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sea-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--sea);
}

/* Promo ticker */
.promo-ticker {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
  line-height: 2.4;
}

.promo-ticker__track {
  display: inline-flex;
  gap: 1.25rem;
  animation: ticker 32s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(238, 246, 244, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 26, 34, 0.06);
}

.navbar {
  min-height: var(--header-h);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.brand-logo--footer {
  height: 52px;
  filter: brightness(0) invert(1);
}

.nav-link {
  font-weight: 600;
  color: var(--ink-soft) !important;
  padding: 0.55rem 0.85rem !important;
  font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--sea) !important;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23071a22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega dropdown */
.site-header .navbar-nav {
  position: relative;
}

.nav-link--mega {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-caret {
  font-size: 0.7rem;
  transition: transform 0.25s var(--ease);
}

.nav-item--mega:hover .nav-caret,
.nav-item--mega:focus-within .nav-caret,
.nav-item--mega.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: 100%;
  right: 0;
  width: min(820px, 94vw);
  padding-top: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  z-index: 1060;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}

.nav-item--mega:hover .nav-mega,
.nav-item--mega:focus-within .nav-mega,
.nav-item--mega.is-open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mega__panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: 0 28px 60px rgba(7, 26, 34, 0.16);
  overflow: hidden;
}

.nav-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.75rem;
  padding: 1.35rem 1.5rem 1.1rem;
}

.nav-mega__heading {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-deep);
}

.nav-mega__heading--alt {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.nav-mega__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.85rem;
  color: var(--ink);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-mega__item:hover {
  background: var(--brand-glow);
  color: var(--ink);
  transform: translateX(3px);
}

.nav-mega__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 0.7rem;
  background: var(--mist);
  display: grid;
  place-items: center;
  padding: 0.4rem;
  border: 1px solid var(--line);
}

.nav-mega__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-mega__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.nav-mega__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}

.nav-mega__top strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.nav-mega__meta small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
}

.nav-mega__price {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sea-deep);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  white-space: nowrap;
}

.nav-mega__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  border: none;
  letter-spacing: 0.01em;
}

.btn-shine {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff !important;
  border: none;
  box-shadow: 0 12px 32px rgba(19, 192, 226, 0.35);
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn-shine:hover {
  background: var(--brand-deep);
  color: #fff !important;
}

.btn-shine:hover::after {
  transform: translateX(120%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.text-link:hover {
  color: var(--brand);
  gap: 0.65rem;
}

.text-link i {
  transition: transform 0.25s var(--ease);
}

.text-link:hover i {
  transform: translateX(3px);
}

.btn-order {
  background: var(--sea);
  color: #fff !important;
  padding: 0.7rem 1.35rem;
}

.btn-order:hover {
  background: var(--sea-deep);
  color: #fff !important;
}

.btn-order--block {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
}

.btn-primary-solid {
  background: var(--sea);
  color: #fff !important;
}

/* Shared hero action buttons row */
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-primary-solid:hover {
  background: var(--sea-deep);
  color: #fff !important;
}

.btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.btn-app {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.btn-app:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

.btn-app--light {
  background: rgba(255, 255, 255, 0.14);
}

.app-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.app-soon--footer {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 26, 34, 0.88) 0%, rgba(7, 26, 34, 0.55) 48%, rgba(19, 192, 226, 0.38) 100%),
    linear-gradient(to top, rgba(7, 26, 34, 0.75) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.15rem;
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.96);
}

.hero__lead {
  font-size: 1.08rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.75rem;
}

/* Services — interaction-light blocks, not heavy cards */
.services {
  background: var(--foam);
}

.service-block {
  height: 100%;
  padding: 0.25rem 0.25rem 0.5rem;
}

.service-block__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  background: var(--sea-glow);
  border-radius: 1.1rem;
  overflow: hidden;
}

.service-block__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-block__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.service-block__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* How it works — process steps */
.how {
  background:
    linear-gradient(180deg, #e8f6fb 0%, #f4fbfd 100%);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(19, 192, 226, 0.55), transparent);
}

.process__step {
  position: relative;
  padding-top: 0.25rem;
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #e8f6fb;
}

.process__icon {
  width: 88px;
  height: 88px;
  margin-bottom: 0.85rem;
}

.process__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.process__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

  .process::before {
    display: none;
  }
}

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

/* How It Works page — keep hero & steps as separate areas */
.page-how-it-works .page-hero {
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(19, 192, 226, 0.18), transparent 55%),
    linear-gradient(180deg, #e8f6fb, #dff3f7);
  border-bottom: 1px solid var(--line);
}

.how-page {
  background: #fff;
}

.how-page .process__num {
  box-shadow: 0 0 0 6px #fff;
}

.why-page {
  background: var(--foam);
  border-top: 1px solid var(--line);
}

/* Legacy step-block aliases */
.step-block {
  position: relative;
  padding-top: 0.5rem;
  height: 100%;
}

.step-block__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(19, 192, 226, 0.28);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.75rem;
}

.step-block__visual {
  width: 88px;
  height: 88px;
  margin-bottom: 1rem;
}

.step-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-block__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.step-block__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Why */
.why {
  background: var(--foam);
}

.why-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  height: 100%;
}

.why-block__icon {
  font-size: 1.55rem;
  color: var(--sea);
  display: block;
  margin-bottom: 0.85rem;
}

.why-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.why-block__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* About */
.about-strip {
  background:
    linear-gradient(120deg, #053848 0%, #0a6f8a 50%, rgb(19, 192, 226) 100%);
  color: #fff;
  padding: 4.5rem 0;
}

.about-strip .section-title {
  color: #fff;
}

.about-strip .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.about-strip__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin-bottom: 1rem;
}

/* Stats */
.stats {
  padding: 3.25rem 0;
  background: var(--ink);
  color: #fff;
}

.stat-block__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-soft);
  line-height: 1.1;
}

.stat-block__label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: var(--mist);
}

.review-block {
  margin: 0;
  padding: 0.25rem 0 1rem;
  border-bottom: 1px solid var(--line);
  height: 100%;
}

.review-block__stars {
  color: var(--star);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.review-block__text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.review-block__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sea-deep);
}

/* Pricing */
.pricing {
  background: var(--foam);
}

.price-block {
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-block__actions {
  margin-top: auto;
  padding-top: 1.25rem;
}

.price-block__actions .text-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.price-block__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.price-block__amount {
  margin: 0 0 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-block__currency {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.price-block__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-block__unit {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.price-block__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* App CTA */
.app-cta {
  background: var(--mist);
  padding-top: 2rem;
}

.app-cta__panel {
  background:
    radial-gradient(700px 300px at 85% 20%, rgba(19, 192, 226, 0.22), transparent 55%),
    linear-gradient(135deg, #071a22 0%, #053848 50%, rgb(12, 155, 185) 100%);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 2.75rem 2rem;
  color: #fff;
  overflow: hidden;
}

.app-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.app-cta__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.35rem;
  max-width: 34rem;
}

.app-cta__phone {
  max-width: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  box-shadow: none !important;
  padding: 1.15rem 0;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--sea-deep);
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 0 0 1.2rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.5rem 0 1.75rem;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--brand-soft);
}

.footer-contact li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--brand-soft);
  margin-top: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-social a:hover {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal a:hover {
  color: var(--brand-soft);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff !important;
}

/* Inner page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(19, 192, 226, 0.18), transparent 55%),
    linear-gradient(180deg, #e8f6fb, var(--mist));
  border-bottom: 1px solid var(--line);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.page-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Order form */
.order-section {
  padding-top: 2.5rem;
  background: var(--foam);
}

.order-panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.75rem 1.5rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.req {
  color: #d64545;
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--foam);
  color: var(--ink);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(19, 192, 226, 0.22);
}

.order-note {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Thank you page */
.thanks-section {
  background: var(--foam);
  padding-top: 2rem;
}

.thanks-panel {
  padding: 1rem 0 2rem;
}

.thanks-panel__icon {
  font-size: 3.5rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 1rem;
}

.thanks-panel__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-deep);
  margin: 0 0 0.35rem;
}

.thanks-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.thanks-panel__text {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.thanks-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.thanks-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.thanks-meta strong {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.thanks-meta span {
  font-weight: 700;
  color: var(--ink);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: #fff !important;
}

.pricing--alt {
  background: var(--mist);
}

/* Contact */
.contact-section {
  background: var(--foam);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list i {
  font-size: 1.35rem;
  color: var(--sea);
  margin-top: 0.2rem;
}

.contact-list__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-list a:hover {
  color: var(--sea);
}

.contact-art {
  max-width: 420px;
  margin: 0 auto;
}

/* Content / legal pages */
.content-section {
  background: var(--foam);
}

.content-page {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--ink-soft);
}

.content-page p {
  margin: 0 0 1.1rem;
}

.content-page h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  padding-top: 0.4rem;
}

.content-page ul {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}

.content-page li {
  margin-bottom: 0.4rem;
}

.content-page a {
  color: var(--sea-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-page a:hover {
  color: var(--sea);
}

/* GSAP initial states */
[data-animate],
[data-animate="hero"] {
  opacity: 0;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  .hero__content {
    padding-bottom: 3.25rem;
  }

  .navbar-collapse {
    background: var(--foam);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid var(--line);
    max-height: calc(100dvh - 7.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-item--mega {
    position: static;
  }

  .nav-mega {
    display: grid;
    grid-template-rows: 0fr;
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    transition: grid-template-rows 0.35s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .nav-item--mega.is-open .nav-mega {
    grid-template-rows: 1fr;
  }

  .nav-mega__panel {
    min-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: none;
    transition: border-color 0.3s var(--ease);
  }

  .nav-item--mega.is-open .nav-mega__panel {
    border-color: var(--line);
  }

  .nav-mega__grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem;
  }

  .nav-mega__heading--alt {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .nav-mega__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .navbar-nav .nav-item:last-child .btn-order {
    width: 100%;
  }

  .app-cta__panel {
    padding: 2rem 1.25rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .nav-mega__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    animation: none;
  }

  [data-animate],
  [data-animate="hero"] {
    opacity: 1;
  }
}
