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

:root {
  --color-bg: #0a0f0d;
  --color-bg-elevated: #111916;
  --color-bg-card: #151f1a;
  --color-surface: #1a2820;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.16);
  --color-text: #e8f0ec;
  --color-text-muted: #8fa89a;
  --color-accent: #3ecf8e;
  --color-accent-dim: rgba(62, 207, 142, 0.15);
  --color-accent-glow: rgba(62, 207, 142, 0.25);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  /* Display face — used ONLY for the italic accent in the hero headline.
     Deliberately not used for product names, headings or body copy. */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  /* DM Sans is loaded as a variable font with an optical-size axis. Left to
     itself the browser swaps in the display cut at large sizes, which has
     higher stroke contrast and flared stems — it reads as a different,
     semi-serif face next to the buttons and body copy. Pinning the axis keeps
     one set of letterforms across every size on the site. */
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 14;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.15rem;
}

.logo-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.logo-croc {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.logo-croc-emoji {
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  flex-shrink: 0;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover { color: var(--color-text); }

.lang-btn.active {
  background: var(--color-accent);
  color: var(--color-bg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--color-text); }

.nav-cta {
  background: var(--color-accent);
  color: var(--color-bg) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-overlay {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 993px) {
  .nav-toggle,
  .nav-overlay {
    display: none !important;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    padding: 0;
    gap: 32px;
    border: none;
    background: transparent;
    overflow: visible;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: auto;
  }

  .nav-links a:not(.nav-cta) {
    display: inline;
    padding: 0;
    font-size: 0.925rem;
  }

  .nav-links a.nav-cta {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.925rem;
    white-space: nowrap;
  }

  .lang-switcher {
    order: 0;
    flex-wrap: nowrap;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .nav-links {
    order: 0;
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
  }
}

@media (min-width: 993px) {
  .hero-content {
    max-width: 1140px;
  }

  .hero-title {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    max-width: 1000px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 720px;
  }

  .hero-stats {
    max-width: 100%;
    gap: 48px;
  }

  .stat-value {
    font-size: 1.15rem;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-hover);
}

.btn-secondary:hover {
  background: var(--color-surface);
  border-color: var(--color-text-muted);
}

.btn-light {
  background: #fff;
  color: var(--color-bg);
}

.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(62, 207, 142, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(62, 207, 142, 0.06) 0%, transparent 50%),
    var(--color-bg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--color-accent-dim);
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 142, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: normal;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  max-width: 100%;
}

.stat {
  flex: 1;
  min-width: 0;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* ── Sections ── */
section { padding: 100px 0; }

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

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ── Services ── */
.services { background: var(--color-bg-elevated); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(62, 207, 142, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border-radius: var(--radius);
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Products ── */
.products { background: var(--color-bg); }

.products-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.askra-card {
  --askra-gold: #D4AF7A;
  --askra-gold-soft: #E8C9A0;
  --askra-bg: #0F0E1A;
  --askra-surface: #1A1828;
  border: 1px solid rgba(212, 175, 122, 0.2);
  background: var(--askra-bg);
}

.fotopost-card {
  --fotopost-peach: #E8C9A0;
  --fotopost-warm: #A89888;
  --fotopost-bg: #141210;
  border: 1px solid rgba(232, 201, 160, 0.2);
  background: var(--fotopost-bg);
}

.cleanfotos-card {
  --cleanfotos-violet: #8E87FF;
  --cleanfotos-bg: #11101C;
  border: 1px solid rgba(108, 99, 255, 0.22);
  background: var(--cleanfotos-bg);
}

.cleanfotos-card .product-card-glow {
  background: radial-gradient(circle, rgba(108, 99, 255, 0.14) 0%, transparent 70%);
}

.cleanfotos-card .product-name {
  color: var(--cleanfotos-violet);
}

.cleanfotos-card .product-features li::before {
  color: var(--cleanfotos-violet);
}

.cleanfotos-card .product-legal a {
  color: var(--cleanfotos-violet);
}

.btn-cleanfotos {
  background: #6C63FF;
  color: #ffffff;
}

.btn-cleanfotos:hover {
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.35);
}

.appswipe-card {
  --appswipe-violet: #928CFF;
  --appswipe-bg: #100F1E;
  border: 1px solid rgba(112, 104, 251, 0.22);
  background: var(--appswipe-bg);
}

.appswipe-card .product-card-glow {
  background: radial-gradient(circle, rgba(112, 104, 251, 0.14) 0%, transparent 70%);
}

.appswipe-card .product-name {
  color: var(--appswipe-violet);
}

.appswipe-card .product-features li::before {
  color: var(--appswipe-violet);
}

.appswipe-card .product-legal a {
  color: var(--appswipe-violet);
}

.fotopost-card .product-card-glow {
  background: radial-gradient(circle, rgba(232, 201, 160, 0.1) 0%, transparent 70%);
}

.fotopost-card .product-name {
  color: var(--fotopost-peach);
}

.fotopost-card .product-features li::before {
  color: var(--fotopost-peach);
}

.product-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
}

.product-badge-testing {
  background: rgba(108, 99, 255, 0.14) !important;
  color: #8E87FF !important;
  border-color: rgba(108, 99, 255, 0.3) !important;
}

.product-badge-live {
  background: var(--color-accent-dim) !important;
  color: var(--color-accent) !important;
  border-color: rgba(62, 207, 142, 0.3) !important;
}

.btn-fotopost {
  background: #E8C9A0;
  color: #1a1814;
}

.btn-fotopost:hover {
  box-shadow: 0 8px 30px rgba(232, 201, 160, 0.3);
}

.btn-sm {
  padding: 14px 20px;
  font-size: 0.875rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.fotopost-card .product-legal a {
  color: #E8C9A0;
}

.askra-card .product-legal a {
  color: var(--askra-gold-soft);
}

.product-card-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-card-inner {
  position: relative;
  padding: 40px;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-glyph {
  font-size: 2rem;
  color: var(--askra-gold);
  text-shadow: 0 0 24px rgba(212, 175, 122, 0.4);
}

.product-name {
  /* Match the button and tagline exactly: same family, same weight, same
     optical size. Only the scale differs. */
  font-family: var(--font-sans);
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 14;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--askra-gold);
}

.product-tagline {
  color: #9B95B8;
  font-size: 0.95rem;
  margin-top: 2px;
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 122, 0.12);
  color: var(--askra-gold-soft);
  border: 1px solid rgba(212, 175, 122, 0.25);
  white-space: nowrap;
}

.product-desc {
  color: #9B95B8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.product-features li {
  position: relative;
  padding-left: 22px;
  color: #9B95B8;
  font-size: 0.9rem;
}

.product-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--askra-gold);
  font-size: 0.7rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.product-stack,
.product-platforms {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9B95B8;
}

.btn-askra {
  background: var(--askra-gold);
  color: var(--askra-bg);
}

.btn-askra:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 122, 0.3);
}

.product-legal-block {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.product-legal-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.product-legal {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.product-legal a {
  font-weight: 500;
  transition: opacity var(--transition);
}

.product-legal a:hover { opacity: 0.8; }

.product-disclaimer {
  font-size: 0.8rem;
  color: #6b6580;
  font-style: italic;
}

/* ── Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
  padding: 32px;
  border-left: 2px solid var(--color-border);
  transition: border-color var(--transition);
}

.process-step:hover { border-color: var(--color-accent); }

.step-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text strong { color: var(--color-text); }

.about-list {
  list-style: none;
  margin-top: 24px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.about-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-card) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-card-inner {
  background: var(--color-bg-card);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 40px;
  position: relative;
}

.about-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

.about-card-detail {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.about-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-card-tags span {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 142, 0.2);
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(62, 207, 142, 0.15) 0%, rgba(62, 207, 142, 0.05) 100%);
  border-top: 1px solid rgba(62, 207, 142, 0.15);
  border-bottom: 1px solid rgba(62, 207, 142, 0.15);
}

.cta-banner-inner {
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ── Contact ── */
.contact { background: var(--color-bg-elevated); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.contact-item a:hover { opacity: 0.8; }

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.optional { color: var(--color-text-muted); font-weight: 400; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); opacity: 0.6; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-dim);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ── Footer ── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-text); }

.footer-legal {
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-note { margin-top: 4px; opacity: 0.7; }

/* ── Form success ── */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .process-steps { grid-template-columns: 1fr; gap: 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links { justify-content: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    max-height: 100vh;
    background: var(--color-bg-elevated);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 28px 32px;
    gap: 28px;
    border-left: 1px solid var(--color-border);
    z-index: 115;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition);
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .lang-switcher {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }

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

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.05rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .product-card-inner { padding: 28px; }
  .product-card-header { flex-direction: column; }
  .product-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }

  .stat-divider { display: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  section { padding: 72px 0; }
  .hero { padding: 100px 0 60px; }

  .stat {
    flex: 1 1 100%;
  }
}

/* SEO: FAQ & store links */
.service-card h3 .service-link {
  color: inherit;
  text-decoration: none;
}
.service-card h3 .service-link:hover {
  color: var(--color-accent);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 20px 0; }
.faq-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.faq-item a { color: var(--color-accent); }
.seo-summary { max-width: 720px; margin: 0 auto 48px; padding: 24px 28px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.seo-summary p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.75; margin: 0; }
.store-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.store-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--color-border); color: var(--color-text); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.store-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.store-soon { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--color-border); color: var(--color-text-muted); font-size: 0.9rem; font-weight: 500; }
.section-header-link { display: inline-block; margin-top: 12px; color: var(--color-accent); font-size: 0.9rem; }
