@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat_regular.woff2') format('woff2'),
  url('../fonts/montserrat_regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat_medium.woff2') format('woff2'),
  url('../fonts/montserrat_medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat_semibold.woff2') format('woff2'),
  url('../fonts/montserrat_semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat_bold.woff2') format('woff2'),
  url('../fonts/montserrat_bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat Arabic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat_arabic_regular.woff2') format('woff2'),
  url('../fonts/montserrat_arabic_regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat Arabic';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat_arabic_medium.woff2') format('woff2'),
  url('../fonts/montserrat_arabic_medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat Arabic';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat_arabic_semibold.woff2') format('woff2'),
  url('../fonts/montserrat_arabic_semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat Arabic';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat_arabic_bold.woff2') format('woff2'),
  url('../fonts/montserrat_arabic_bold.ttf') format('truetype');
}

:root {
  --brand-primary: #6b5bff;
  --brand-primary-dark: #3c6090;
  --brand-secondary: #1ccad3;
  --brand-surface: #ffffff;
  --brand-surface-muted: #f4f5fb;
  --brand-bg: #f2f3fb;
  --brand-text: #1b1f2b;
  --brand-text-muted: #5b6273;
  --brand-border: #dfe2ef;
  --brand-radius-lg: 32px;
  --brand-radius-md: 18px;
  --brand-radius-pill: 999px;
  --shadow-soft: 0 30px 60px rgba(20, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

offerlash-header,
offerlash-footer,
offerlash-back-to-top,
offerlash-cookie-banner {
  display: block;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat Arabic', 'Montserrat', sans-serif;
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

body {
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  inset-inline-start: 16px;
  padding: 10px 16px;
  background: #fff;
  color: var(--brand-text);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

.shell {
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #080c23;
}

.hero .logo {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-links a {
  padding: 10px 18px;
  border-radius: var(--brand-radius-pill);
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  border-radius: var(--brand-radius-pill);
  border: none;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: #fff;
  background-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(107, 91, 255, 0.35);
}

.hero .btn-primary {
  background-color: #fff;
  color: var(--brand-primary);
  box-shadow: 0 18px 32px rgba(27, 31, 43, 0.2);
}

.hero .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.92);
}

.btn-outline {
  color: var(--brand-text);
  background: transparent;
  border: 1px solid rgba(27, 31, 43, 0.2);
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  background-color: var(--brand-primary);
  color: #fff;
  padding-bottom: 80px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-illustration {
  min-height: 320px;
  border-radius: var(--brand-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-illustration img {
  width: min(380px, 100%);
  height: auto;
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(8, 12, 35, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: block;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cta-center {
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 20px;
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--brand-radius-pill);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--brand-text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  padding: 32px;
  border-radius: var(--brand-radius-lg);
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(107, 91, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--brand-primary);
}

.card h3 {
  margin: 0 0 12px;
}

.card p {
  color: var(--brand-text-muted);
}



.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.split-panel {
  padding: 40px;
  border-radius: var(--brand-radius-lg);
  background: var(--brand-surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--brand-border);
}

.split-panel p {
  color: var(--brand-text-muted);
}

.split-gutter {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(28, 202, 211, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-secondary);
}

.timeline {
  --timeline-border-width: 3px;
  --timeline-padding: 28px;
  --timeline-dot-size: 14px;

  border-left: var(--timeline-border-width) solid var(--brand-border);
  margin-top: 32px;
  padding-left: var(--timeline-padding);
  display: grid;
  gap: 28px;
}

.timeline-point {
  position: relative;
}

.timeline-point::before {
  content: '';
  position: absolute;
  /* Align marker center with the vertical line's center (border-left). */
  left: calc(-1 * (var(--timeline-padding) + (var(--timeline-border-width) / 2)));
  top: 6px;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(107, 91, 255, 0.15);
  transform: translateX(-50%);
}

.cta-block {
  padding: 80px;
  border-radius: var(--brand-radius-lg);
  background-color: var(--brand-primary);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-block p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 540px;
  margin: 0 auto 28px;
}

.proof-card {
  background: var(--brand-primary);
  color: var(--brand-surface);
  border-radius: var(--brand-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.split-panel .proof-card h3,
.split-panel .proof-card p,
.split-panel .proof-card li,
.split-panel .proof-card div,
.split-panel .proof-card strong {
  color: #fff;
}

.proof-card blockquote {
  margin: 16px 0 0;
  font-style: italic;
}

.proof-card-total {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.proof-card-note {
  display: block;
  margin-top: 1rem;
  color: #fff;
  opacity: 1;
}

.cta-block-contact {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-block-contact a {
  color: #fff;
  text-decoration: underline;
}

.inline-links {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--brand-text-muted);
}

.inline-links a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.inline-links--inverse {
  color: rgba(255, 255, 255, 0.85);
}

.inline-links--inverse a {
  color: #fff;
}

/* ==========================================
   APP DOWNLOAD PAGE
   ========================================== */

.app-page {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.app-page .download-card {
  width: 100%;
  max-width: 540px;
  padding: 48px;
  border-radius: var(--brand-radius-lg);
  background-color: var(--brand-primary);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.app-page .download-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.app-page .download-card > * {
  position: relative;
  z-index: 1;
}

.app-page .download-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 16px;
  color: #fff;
  font-weight: 700;
}

.app-page .download-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 32px;
  font-size: 1.05rem;
}

.app-page .store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-page .store-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--brand-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.app-page .store-buttons a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.app-page .store-buttons a:active {
  transform: translateY(0);
}

.app-page .store-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

@media (max-width: 480px) {
  .app-page .download-card {
    padding: 32px 24px;
  }

  .app-page .download-card h1 {
    font-size: 1.5rem;
  }

  .app-page .download-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .app-page .store-buttons a {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

.plan-price {
  margin: 18px 0;
  font-size: 1.8rem;
  font-weight: 700;
}

footer {
  padding: 60px 0 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: #0f1116;
  margin-top: 90px;
}

footer .logo {
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 32px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-primary);
}

.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-links span {
  color: rgba(255, 255, 255, 0.4);
}

.nav-link-style {
  margin: 0;
  color: #555;
  text-decoration: none;
  padding: 0.6rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link-style:hover {
  color: #111;
  border-bottom-color: #007bff;
}

footer small {
  display: block;
  margin-top: 18px;
}

.cookie-pref-link {
  margin: 0 0.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  padding: 0;
}

.cookie-pref-link:hover {
  color: #fff;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 1000;
}

.cookie-banner.is-visible {
  display: block;
}

.recaptcha-landmark {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  pointer-events: none;
}

.recaptcha-landmark .grecaptcha-badge {
  /* The required reCAPTCHA legal text is shown inline in the form. */
  visibility: hidden;
  pointer-events: auto;
}

.cookie-banner--alt {
  background: #222;
}

.cookie-banner p {
  margin: 0 0 1rem 0;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  padding: 0.65rem 1.2rem;
  border-radius: 5px;
  border: 1px solid #fff;
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  min-width: 100px;
  background: #fff;
  color: #111;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner-actions #accept-cookies {
  min-width: 132px;
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.cookie-banner-actions #reject-cookies {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  min-width: 86px;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
}

.cookie-banner-actions #accept-cookies:hover {
  background: #0068d9;
  border-color: #0068d9;
}

.cookie-banner-actions #reject-cookies:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}

.cookie-banner-actions #accept-cookies:focus-visible,
.cookie-banner-actions #reject-cookies:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.referral-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(107, 91, 255, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Legal pages */
.legal-page {
  text-align: left;
}

.legal-page .section {
  padding: 0;
}

.legal-header {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.legal-header .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.legal-header__logo {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 1.25rem;
}

.legal-header .header-nav {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
}

.legal-content {
  padding: 2.5rem 0;
  line-height: 1.75;
  font-size: 1rem;
  color: #222;
  max-width: 920px;
  margin: 0 auto;
}

.legal-page .notice {
  padding: 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-md);
  background: var(--brand-surface-muted);
  margin-top: 1.5rem;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content ul ul {
  margin-top: 8px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.6;
}

.legal-content a {
  color: #0b57d0;
  text-decoration: underline;
}

.legal-content strong {
  font-weight: 700;
}

.legal-footer {
  background: var(--brand-surface);
  color: var(--brand-text-muted);
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #dfe2ef;
  margin-top: 4rem;
}

.legal-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: #4b5563;
  font-size: 0.95rem;
  margin-top: 0;
}

.legal-footer .footer-links a {
  color: #374151;
}

.legal-footer .footer-links span {
  color: #6b7280;
}

.legal-footer .footer-links a,
.legal-footer .footer-links button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
}

.legal-footer small {
  display: block;
  margin-top: 1rem;
  color: #4b5563;
}

.legal-footer .cookie-pref-link {
  margin: 0;
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  padding: 0.35rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.legal-footer .cookie-pref-link:hover {
  color: #111827;
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background-color: var(--brand-primary);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(107, 91, 255, 0.4);
  z-index: 100;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.back-to-top.is-visible {
  display: inline-flex;
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 768px) {
  .legal-header .header-nav {
    flex-basis: auto;
  }

  .legal-content {
    padding: 4rem 0;
    font-size: 1.1rem;
  }

  .legal-content ul {
    padding-left: 2rem;
  }
}

@media (max-width: 640px) {
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions button {
    width: 100%;
  }

  .legal-header .header-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link-style {
    width: 100%;
  }
}

/* Mobile phones (portrait) */
@media (max-width: 480px) {
  .shell {
    width: calc(100% - 24px);
  }

  .top-nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    align-items: stretch;
  }

  .nav-links a {
    padding: 12px 16px;
    text-align: center;
    width: 100%;
  }

  .hero {
    border-radius: 0 0 24px 24px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-illustration {
    min-height: 240px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
  }

  .hero-illustration img {
    width: 100%;
    max-width: 320px;
    border-radius: 22px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px;
  }

  .split {
    gap: 24px;
  }

  .split-panel {
    padding: 24px;
  }

  .timeline {
    --timeline-padding: 20px;
  }

  .cta-block {
    padding: 40px 24px;
    border-radius: var(--brand-radius-md);
  }

  .cta-block h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .plan-price {
    font-size: 1.75rem;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    bottom: 20px;
    left: 20px;
  }
}

/* Mobile phones (landscape) and small tablets */
@media (min-width: 481px) and (max-width: 767px) {
  .shell {
    width: calc(100% - 32px);
  }

  .top-nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  .hero {
    border-radius: 0 0 32px 32px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-row {
    gap: 10px;
  }

  .section {
    padding: 60px 0;
  }

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

  .split-panel,
  .card,
  .cta-block {
    padding: 32px;
  }

  .cta-block {
    padding: 48px 32px;
  }
}

/* Tablets (portrait) */
@media (min-width: 768px) and (max-width: 1023px) {
  .shell {
    width: calc(100% - 48px);
  }

  .top-nav {
    padding: 24px 0;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-grid {
    gap: 32px;
    padding: 32px 0 48px;
  }

  .section {
    padding: 70px 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-panel {
    padding: 36px;
  }

  .cta-block {
    padding: 64px 48px;
  }

}

/* Tablets (landscape) and small laptops */
@media (min-width: 1024px) and (max-width: 1279px) {
  .shell {
    width: min(1000px, 100% - 48px);
  }

  .nav-links a {
    padding: 10px 16px;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
  }

  .section {
    padding: 80px 0;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .split {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* Large desktops */
@media (min-width: 1280px) {
  .shell {
    width: min(1200px, 100% - 64px);
  }

  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
  }

  .section {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 70px;
  }

  .card-grid {
    gap: 32px;
  }

  .split {
    gap: 48px;
  }

  .split-panel {
    padding: 48px;
  }

  .cta-block {
    padding: 96px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================
   UNIFIED NAVIGATION SYSTEM
   Version: 1.0.0 (2026-01-06)
   ========================================== */

/* Enhanced active state for navigation */
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.25);
  border-bottom: 2px solid var(--brand-secondary);
  font-weight: 600;
}

/* Navigation CTA button */
.nav-cta {
  margin-right: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated hamburger to X */
.hamburger-icon.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-icon.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu (hidden on desktop) */
.mobile-menu {
  display: none;
}

/* ==========================================
   MOBILE RESPONSIVE NAVIGATION (≤768px)
   ========================================== */

@media (max-width: 768px) {
  /* Hide desktop navigation elements */
  .nav-links {
    display: none !important;
  }
  
  .nav-cta {
    display: none !important;
  }
  
  /* Show mobile toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Mobile menu overlay */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-menu[hidden] {
    transform: translateX(100%);
    pointer-events: none;
  }
  
  .mobile-menu:not([hidden]) {
    transform: translateX(0);
  }
  
  /* Mobile menu content panel */
  .mobile-menu-content {
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 80px 24px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--brand-text);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--brand-border);
    text-decoration: none;
  }
  
  .mobile-menu a.is-active {
    color: var(--brand-primary);
    font-weight: 600;
    border-bottom-color: var(--brand-primary);
  }
  
  .mobile-menu a:hover {
    color: var(--brand-primary);
  }
  
  .mobile-menu hr {
    border: none;
    border-top: 2px solid var(--brand-border);
    margin: 16px 0;
  }
  
.mobile-menu-cta {
    display: block;
    margin-top: 24px;
    padding: 16px;
    text-align: center;
  background-color: var(--brand-primary);
  color: #fff !important;
    border-radius: var(--brand-radius-pill);
    border: none !important;
    font-weight: 700;
    text-decoration: none;
  }
  
  /* Prevent background scroll when menu open */
  body:has(.mobile-menu:not([hidden])) {
    overflow: hidden;
  }
  
  /* Minimal navigation adjustments */
  .top-nav--minimal {
    padding: 16px 0;
  }
  
}

/* ==========================================
   TABLET BREAKPOINT (≤1024px)
   ========================================== */

@media (max-width: 1024px) {
  .top-nav {
    gap: 16px;
  }
  
  .nav-links {
    gap: 6px;
  }
  
  .nav-link {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}

/* ==========================================
   SMALL MOBILE (≤480px)
   ========================================== */

@media (max-width: 480px) {
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-content {
    padding: 60px 20px 20px;
  }
  
  .mobile-menu a {
    font-size: 1rem;
    padding: 14px 0;
  }
}
