/* =========================================================
   00. Self-hosted Fonts
========================================================= */

@font-face { font-family: 'Outfit'; src: url('fonts/outfit-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('fonts/outfit-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

@font-face { font-family: 'Inter'; src: url('fonts/inter-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-300i.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* =========================================================
   01. Design Tokens
========================================================= */

:root {
  /* Core palette — emerald × deep dark slate */
  --bg:              #050e0a;
  --bg-deep:         #020705;
  --surface:         #0c1a12;
  --surface-lift:    #152a20;

  /* Text */
  --text:            #ecfdf5;
  --muted:           #6db88a;
  --muted-soft:      #4e9470;

  /* Brand — emerald primary, cyan accent */
  --primary:         #10b981;
  --primary-soft:    rgba(16, 185, 129, 0.14);
  --primary-glow:    rgba(16, 185, 129, 0.28);
  --secondary:       #06b6d4;

  /* Utility */
  --line:            rgba(236, 253, 245, 0.09);
  --line-strong:     rgba(236, 253, 245, 0.16);
  --shadow:          0 20px 48px rgba(0, 0, 0, 0.38);
  --shadow-sm:       0 8px 24px rgba(0, 0, 0, 0.22);
  --radius:          20px;
  --radius-xl:       36px;

  /* Footer */
  --footer-bg:       #020705;
  --footer-text:     #ecfdf5;
  --footer-muted:    #6db88a;
  --footer-link-hover: #10b981;

  /* Typography */
  --font-display:    'Outfit', system-ui, sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;
}

/* =========================================================
   02. Reset & Base
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background:
    radial-gradient(ellipse 60% 40% at 5% 0%,  rgba(16, 185, 129, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 35% at 95% 5%, rgba(6, 182, 212, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100dvh;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

p, li, dd, .faq-answer {
  color: var(--muted);
  font-weight: 400;
}

li::marker {
  color: var(--primary);
}

/* =========================================================
   03. Accessibility & Layout Primitives
========================================================= */
.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus-visible {
  position: fixed !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 9999 !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  border-radius: 12px !important;
  background: var(--primary) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
}

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.button:focus-visible {
  outline-offset: 4px;
}

.layout-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.layout-container--narrow {
  width: min(860px, calc(100% - 40px));
}

.section-block {
  padding: 56px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.flow > * + * {
  margin-top: 1.1rem;
}

/* =========================================================
   04. Typography
========================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem);  font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

.section-heading h2,
.section-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-text::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.text-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}

/* =========================================================
   05. Shared Components
========================================================= */

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.button:hover  { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #050e0a;
  box-shadow: 0 8px 28px var(--primary-glow);
}

.button--primary:hover {
  box-shadow: 0 14px 40px var(--primary-glow);
  background: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(16, 185, 129, 0.5);
  background: var(--primary-soft);
  color: var(--primary);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Cards --- */
.section-card,
.feature-card,
.faq-item {
  background: rgba(10, 26, 18, 0.90);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-card {
  padding: 36px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
  border-color: rgba(16, 185, 129, 0.16);
  background:
    radial-gradient(ellipse 62% 52% at right top, rgba(16, 185, 129, 0.12), transparent 56%),
    radial-gradient(ellipse 42% 38% at left bottom, rgba(16, 185, 129, 0.045), transparent 60%),
    linear-gradient(160deg, rgba(12, 26, 18, 0.98), rgba(10, 26, 18, 0.96));
}

.section-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.035) 52%, transparent);
  pointer-events: none;
}

.section-card > * {
  position: relative;
  z-index: 1;
}

/* --- Process / ordered list --- */
.process-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.process-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.05);
  color: var(--muted);
  line-height: 1.6;
}

.process-list li::before {
  content: counter(step);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #050e0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Action row --- */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* --- Inline links --- */
main a:not(.button):not(.site-brand) {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

main a:not(.button):not(.site-brand):hover {
  color: var(--secondary);
}

/* =========================================================
   06. Breadcrumb
========================================================= */
.section-breadcrumb {
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted-soft);
  font-size: 0.875rem;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* =========================================================
   07. Header & Navigation
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-layout {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.site-brand__logo {
  width: auto;
  height: 70px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.site-nav a:not(.button) {
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:not(.button):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.site-nav__cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: none;
  place-items: center;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: var(--primary-soft);
  border-color: rgba(16, 185, 129, 0.4);
}

/* =========================================================
   08. Home Hero
========================================================= */
.home-hero {
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 62% at 14% 18%, rgba(16, 185, 129, 0.18), transparent 60%),
    radial-gradient(ellipse 46% 52% at 86% 15%, rgba(6, 182, 212, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(16, 185, 129, 0.045), transparent 72%);
  pointer-events: none;
}

.home-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.home-hero__content {
  padding: 40px;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 76% 64% at 12% 0%, rgba(16, 185, 129, 0.18), transparent 58%),
    radial-gradient(ellipse 54% 46% at 94% 12%, rgba(6, 182, 212, 0.13), transparent 56%),
    linear-gradient(150deg, rgba(14, 32, 22, 0.98), rgba(10, 26, 18, 0.94));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(16, 185, 129, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-hero__content h1 {
  margin: 6px 0 18px;
  max-width: 680px;
}

/* Banner slider */
.home-banner-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: var(--radius-xl);
  background: var(--bg-deep);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 50px rgba(16, 185, 129, 0.13);
}

.home-banner-slider__track,
.home-banner-slide {
  position: absolute;
  inset: 0;
}

.home-banner-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.home-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-slider__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.home-banner-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-banner-dot::before {
  content: '';
  position: absolute;
  inset: -19px;
}

.home-banner-dot.is-active {
  width: 28px;
  background: var(--primary);
}

/* =========================================================
   09. Content Cards & FAQ
========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 1.1rem;
  align-items: stretch;
}

.card-grid > article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.feature-card {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.24);
  transform: translateY(-2px);
}

.feature-card > span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.feature-card .action-row {
  margin-top: auto;
}

/* Static section banner */
.section-banner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.section-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow: var(--shadow-sm);
}

.section-banner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* FAQ */
:root { interpolate-size: allow-keywords; }

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: rgba(10, 26, 18, 0.90);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-question { list-style: none; }
.faq-question::-webkit-details-marker { display: none; }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  border-radius: inherit;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: rgba(16, 185, 129, 0.06);
}

.faq-question span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 24px 22px;
  font-weight: 400;
  line-height: 1.7;
  overflow: hidden;
  transition: height 0.32s ease;
}

details.faq-item[open] > .faq-answer {
  height: auto;
}

/* =========================================================
   10. Footer
========================================================= */
.site-footer {
  margin-top: 56px;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 56px 0 42px;
}

.footer-top__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.footer-side-groups {
  display: grid;
  gap: 32px;
}

.footer-media-group h3,
.footer-links h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: var(--footer-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer-image-grid {
  display: grid;
  align-items: center;
  gap: 12px;
}

.footer-image-grid--payment {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-image-grid--license,
.footer-image-grid--responsible {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-image-grid img {
  width: 100%;
  height: 52px;
  padding: 10px 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-image-grid img:hover {
  background: var(--primary-soft);
  border-color: rgba(16, 185, 129, 0.3);
}

.footer-mid {
  padding: 44px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-mid__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 44px;
}

.site-footer p,
.site-footer a {
  color: var(--footer-muted);
  font-weight: 400;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-links a:hover {
  padding-left: 4px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  padding: 20px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  color: var(--footer-muted);
  font-size: 0.875rem;
}

/* =========================================================
   11. Floating Actions
========================================================= */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-download {
  box-shadow: 0 12px 32px var(--primary-glow);
}

.floating-top {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--surface-lift);
  color: var(--text);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.floating-top:hover {
  background: var(--primary);
  border-color: transparent;
  color: #000;
}

/* =========================================================
   12. Responsive
========================================================= */
@media (max-width: 1024px) {
  .footer-top__grid {
    grid-template-columns: 1fr;
  }

  .footer-mid__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 44px;
  }

  .footer-side-groups {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
  }

  .header-actions {
    display: none;
  }

  .site-nav__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .home-hero__layout,
  .section-banner-layout {
    grid-template-columns: 1fr;
  }

  .home-banner-slider {
    width: min(100%, 500px);
    margin: 0 auto;
  }

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

  .card-grid > article:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-mid__grid {
    grid-template-columns: 1fr;
  }

  .layout-container,
  .layout-container--narrow {
    width: calc(100% - 24px);
  }

  .header-layout {
    position: relative;
  }

  .home-hero {
    padding: 36px 0 28px;
  }

  .home-hero__content {
    padding: 26px;
    border-radius: 22px;
  }

  .home-banner-slider {
    border-radius: 22px;
  }

  .section-block {
    padding: 40px 0;
  }

  .section-card {
    padding: 24px;
  }

  .action-row,
  .action-row .button {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.875rem;
  }

  .footer-image-grid--payment,
  .footer-image-grid--license,
  .footer-image-grid--responsible {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-image-grid img {
    height: 46px;
    padding: 8px 10px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 46px;
  }

  .floating-download {
    width: 100%;
  }
}

/* =========================================================
   13. Reduced Motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   14. Page Hero — No Banner
========================================================= */
.page-hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(16, 185, 129, 0.12), transparent 58%),
    radial-gradient(ellipse 45% 40% at 90% 10%, rgba(6, 182, 212, 0.08), transparent 52%);
  pointer-events: none;
}

.page-hero__card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.18);
  background:
    linear-gradient(145deg, rgba(12, 28, 20, 0.96), rgba(10, 26, 18, 0.94));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(16, 185, 129, 0.08);
  overflow: hidden;
}

.page-hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.10), transparent 38%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero__content h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
}

.page-hero__content .text-lead {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.page-hero__badge strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 36px 0 24px;
  }

  .page-hero__card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .page-hero__content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-hero__badge {
    width: 100%;
    justify-content: center;
  }
}
