:root {
  color-scheme: light;
  --bg-primary: #f7f7f5;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #0a0a0a;
  --text-secondary: #555555;
  --text-muted: #777777;
  --border: #e5e5e5;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
  --radius: 8px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-card: #121212;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #858585;
  --border: #242424;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: Alexandria, Arial, sans-serif;
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
p { color: var(--text-secondary); }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-primary) 92%, transparent);
  backdrop-filter: blur(18px);
}

.brand-logo { width: 96px; display: block; }
.logo-light,
html[data-theme="dark"] .logo-dark { display: none; }
html[data-theme="dark"] .logo-light { display: block; }

.site-nav { display: flex; justify-content: center; gap: 0.35rem; }
.nav-link {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1;
}
.flag-icon {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--text-primary) 18%, transparent);
}
.nav-link:hover,
.nav-link.is-active,
.language-switch:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.header-actions { display: flex; align-items: center; gap: 0.55rem; }
.button,
.theme-toggle,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.05rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.button:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.button.ghost,
.theme-toggle { background: transparent; color: var(--text-primary); border-color: var(--border); }
.button-small { padding: 0.55rem 0.8rem; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  padding: 0;
  background: transparent;
  border-color: var(--border);
}
.menu-toggle span { width: 18px; height: 2px; background: var(--text-primary); }

main { overflow: hidden; }
.hero,
.page-hero,
.section,
.contact-layout,
.legal {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

main > .hero,
main > .page-hero,
main > .section,
main > .contact-layout,
main > .legal {
  background: var(--section-bg, transparent);
  box-shadow: 0 0 0 100vmax var(--section-bg, transparent);
  clip-path: inset(0 -100vmax);
}

main > :nth-child(odd) {
  --section-bg: var(--bg-primary);
}

main > :nth-child(even) {
  --section-bg: color-mix(in srgb, var(--bg-secondary) 72%, var(--bg-primary));
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.25rem 0 1.25rem;
  font-size: clamp(1.45rem, 3vw, 2.75rem);
  line-height: 1.16;
  white-space: nowrap;
}

.page-hero h1 {
  margin: 0.25rem 0 1.25rem;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.hero p,
.page-hero p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2rem 0 1rem; }
.supporting { color: var(--text-primary); font-weight: 700; }

.hero-visual { position: relative; min-height: 480px; }
.screen {
  position: absolute;
  inset: 9% 5% 5% 4%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  box-shadow: var(--shadow);
}
.screen-top { display: flex; gap: 0.4rem; }
.screen-top span { width: 0.65rem; height: 0.65rem; border-radius: 50%; background: var(--border); }
.screen-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; margin-top: 2rem; }
.screen-grid i {
  min-height: 86px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
}
.screen-grid i:first-child {
  grid-row: span 2;
  min-height: 188px;
  background: linear-gradient(135deg, var(--accent), transparent);
}
.signal {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 34%;
  height: 34%;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.metric-card {
  position: absolute;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.metric-card strong { display: block; font-size: 2rem; }
.metric-card span { color: var(--text-secondary); font-weight: 700; }
.metric-card.one { inset: 0 auto auto 0; }
.metric-card.two { inset: auto 0 0 auto; }

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.section-heading { max-width: 760px; margin-bottom: 1.35rem; }
.section-heading h2,
.split h2,
.final-cta h2,
.legal h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  line-height: 1.18;
}

.card-grid,
.package-grid,
.portfolio-grid,
.process-grid { display: grid; gap: 1rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four,
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.info-card,
.service-card,
.package-card,
.portfolio-card,
.process-grid article,
.notice,
.contact-form {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.service-card h3,
.info-card h3,
.package-card h3,
.portfolio-card h3 {
  margin: 0.4rem 0;
  font-size: 1.42rem;
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-primary));
  color: var(--accent);
}
.service-mark svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.text-link { color: var(--accent); font-weight: 700; }
.section-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin: 1.4rem auto 0;
  padding: 0.55rem 0.82rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}
.section-link:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.process-grid span { color: var(--accent); font-weight: 700; }

.packages-panel {
  max-width: none;
  border-block: 1px solid var(--border);
  --section-bg: var(--bg-secondary);
  background: var(--bg-secondary);
}
.packages-panel > .section-heading,
.packages-panel > .currency-panel,
.packages-panel > .package-grid { max-width: 1180px; margin-inline: auto; }
.currency-panel { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.currency-panel select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
}
.currency-panel select { width: auto; min-width: 150px; }
body[data-lang="ar"] .contact-form input[type="tel"] {
  direction: rtl;
  text-align: right;
}
.package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.package-card { display: flex; flex-direction: column; gap: 1rem; }
.package-name { color: var(--text-primary); font-weight: 700; }
.package-card .button { margin-top: auto; align-self: flex-start; }
.package-card[data-package-card] .button {
  min-height: 36px;
  padding: 0.55rem 0.78rem;
  font-size: 0.84rem;
}
.package-card:not([data-package-card]) .button {
  min-height: 32px;
  margin-inline: 0;
  padding: 0.4rem 0.65rem;
  border-color: var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 0.8rem;
}
.package-card:not([data-package-card]) .button:hover {
  border-color: var(--accent);
  background: var(--bg-secondary);
  color: var(--accent);
}
.price { margin: 0; color: var(--text-primary); font-size: 2.2rem; font-weight: 700; }
.package-card ul { margin: 0; padding-inline-start: 1.2rem; color: var(--text-secondary); }
.duration,
.note { font-size: 0.92rem; }

.portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-preview {
  --preview-height: 300px;
  position: relative;
  height: var(--preview-height);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  cursor: pointer;
}
.portfolio-preview::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg-card) 92%, transparent), transparent);
  pointer-events: none;
}
.portfolio-shot {
  display: block;
  width: 100%;
  height: auto;
  min-height: var(--preview-height);
  transition: transform 11s linear;
  will-change: transform;
}
.portfolio-card.is-preview-active .portfolio-shot {
  transform: translateY(calc(-100% + var(--preview-height)));
}
@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover .portfolio-shot {
    transform: translateY(calc(-100% + var(--preview-height)));
  }
}
.portfolio-body { padding: 1.35rem; }
.badge {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}
.sector { color: var(--text-primary); font-weight: 700; }

.faq-list { display: grid; gap: 0.7rem; }
.faq-list details {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.faq-list summary { cursor: pointer; font-weight: 700; }

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  --section-bg: color-mix(in srgb, var(--accent) 9%, var(--bg-secondary));
  padding-block: clamp(2.5rem, 5vw, 4.4rem);
  border-block: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
  color: var(--text-primary);
}
main > .final-cta {
  --section-bg: color-mix(in srgb, var(--accent) 9%, var(--bg-secondary));
  background: var(--section-bg);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, color-mix(in srgb, var(--accent) 15%, transparent) 42% 43%, transparent 43%),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 42%);
  pointer-events: none;
}
.final-cta > * {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}
.final-cta p {
  margin: 0;
  max-width: 620px;
  color: var(--text-secondary);
}
.final-cta .button {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-primary);
}
.final-cta .button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
html[data-theme="dark"] .final-cta {
  --section-bg: #111;
  border-block-color: color-mix(in srgb, var(--accent) 36%, #222);
  color: #fff;
}
html[data-theme="dark"] main > .final-cta {
  --section-bg: #111;
  background: #111;
}
html[data-theme="dark"] .final-cta::after {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42% 43%, transparent 43%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 42%);
}
html[data-theme="dark"] .final-cta h2 { color: #fff; }
html[data-theme="dark"] .final-cta p { color: rgba(255, 255, 255, 0.76); }
html[data-theme="dark"] .final-cta .button {
  border-color: #fff;
  background: #fff;
  color: #111;
}
html[data-theme="dark"] .final-cta .button:hover {
  border-color: color-mix(in srgb, #fff 88%, var(--accent));
  background: color-mix(in srgb, #fff 88%, var(--accent));
  color: #111;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem clamp(1rem, 4vw, 2rem) 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tag-list span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  font-weight: 700;
}

.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-links { display: grid; gap: 0.6rem; margin-top: 1.5rem; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { color: var(--text-primary); font-weight: 700; }
.contact-form label > * { margin-top: 0.4rem; }
.form-errors p { margin: 0.2rem 0; color: #d03030; }
.legal { max-width: 900px; }
.legal h2 { margin-top: 2rem; }

.footer {
  padding: 2.2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer h2 {
  margin: 0 0 0.7rem;
  font-size: 1.42rem;
  line-height: 1.3;
  font-weight: 700;
}
.footer a { display: block; margin: 0.35rem 0; color: var(--text-secondary); }
.footer a:hover { color: var(--text-primary); }
.footer-logo { width: 88px; }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--social-color, var(--accent));
  color: var(--social-ink, #fff);
  transition: transform 160ms ease, filter 160ms ease;
}
.social-icon-link:hover {
  color: var(--social-ink, #fff);
  filter: saturate(1.05);
  transform: translateY(-2px);
}
.social-icon-link[aria-label="Facebook"] { --social-color: #1877f2; }
.social-icon-link[aria-label="Instagram"] { --social-color: #e4405f; }
.social-icon-link[aria-label="TikTok"] { --social-color: #111; }
.social-icon-link[aria-label="YouTube"] { --social-color: #ff0033; }
.social-icon-link[aria-label="X"] { --social-color: #f5f5f5; --social-ink: #111; }
.social-icon-link[aria-label="Snapchat"] { --social-color: #fffc00; --social-ink: #111; }
.social-icon-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.social-icon-link.is-disabled:hover {
  border-color: var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
}
.social-icon-link svg { width: 20px; height: 20px; fill: currentColor; }
.footer .social-icon-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--social-ink, #fff);
}
.footer .social-icons {
  flex-wrap: nowrap;
  gap: 0.4rem;
}
.footer .social-icon-link svg { width: 17px; height: 17px; }
.footer .social-icon-link:hover { color: var(--social-ink, #fff); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom a {
  display: inline-flex;
  margin: 0;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 9;
  bottom: 1.2rem;
  inset-inline-end: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  background: #128c7e;
  color: #fff;
  box-shadow: var(--shadow);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }
html[dir="ltr"] .whatsapp-float { inset-inline-end: auto; inset-inline-start: 1.2rem; }

.cookie-banner {
  position: fixed;
  z-index: 12;
  inset: auto 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: auto;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0; font-size: 1.1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.not-found { min-height: 100vh; display: grid; place-content: center; padding: 2rem; text-align: center; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 0.55rem; }
  .brand { grid-column: 2; justify-self: center; }
  .menu-toggle { grid-column: 1; grid-row: 1; justify-self: start; display: inline-flex; }
  .header-actions { grid-column: 3; grid-row: 1; justify-content: end; }
  .header-actions .button { display: none; }
  .site-nav {
    position: fixed;
    inset: 70px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow);
  }
  .menu-open .site-nav { display: flex; }
  .hero,
  .split,
  .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 300px; }
  .card-grid.two,
  .card-grid.four,
  .process-grid,
  .package-grid,
  .portfolio-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner { display: block; }
  .cookie-actions { margin-top: 1rem; }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 56px;
    padding: 0.55rem 0.75rem;
  }
  .brand {
    display: flex;
    width: 58px;
    justify-content: center;
  }
  .brand-logo { width: 58px; }
  .footer-logo { width: 72px; }
  .language-switch { width: 36px; min-height: 36px; font-size: 1rem; }
  .flag-icon { width: 22px; height: 15px; }
  .theme-toggle,
  .menu-toggle {
    width: 36px;
    min-height: 36px;
    padding: 0;
  }
  .menu-toggle span { width: 16px; }
  .header-actions { gap: 0.35rem; }
  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 0.85rem;
    inset-inline-end: 0.85rem;
  }
  html[dir="ltr"] .whatsapp-float { inset-inline-start: 0.85rem; }
  .whatsapp-float svg { width: 23px; height: 23px; }
  .hero,
  .page-hero,
  .section,
  .contact-layout,
  .legal { padding: 2rem 1rem; }
  .hero h1 { font-size: clamp(1.15rem, 7vw, 1.55rem); }
  .button {
    display: flex;
    width: fit-content;
    min-height: 38px;
    margin-inline: auto;
    padding: 0.58rem 0.78rem;
    font-size: 0.84rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1.2rem 0 0.75rem;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 38px;
    margin-inline: 0;
    padding: 0.6rem 0.45rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .package-card:not([data-package-card]) .button {
    width: fit-content;
    min-height: 32px;
    margin-inline: 0;
    padding: 0.38rem 0.62rem;
    font-size: 0.78rem;
  }
  .page-hero h1 { font-size: 1.55rem; }
  .card-grid.two,
  .card-grid.four,
  .process-grid,
  .package-grid,
  .portfolio-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .portfolio-preview { --preview-height: 260px; }
  .footer,
  .footer-grid,
  .footer-bottom {
    text-align: center;
    justify-items: center;
    justify-content: center;
  }
  .footer h2 { font-size: 1.12rem; }
  .footer-legal-links { justify-content: center; }
  .footer-logo { margin-inline: auto; }
  .social-icons { justify-content: center; }
  .faq-list summary { font-size: 0.86rem; }
  .faq-list details p { font-size: 0.82rem; }
  .final-cta {
    display: block;
    padding-block: 2.4rem;
    text-align: center;
  }
  .final-cta .button { margin: 1rem auto 0; }
  .price { font-size: 1.8rem; }
  .hero-visual { min-height: 240px; }
  .metric-card strong { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
