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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  background: #080706;
  color: #fff;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:       #080706;
  --bg-1:     #100f0d;
  --bg-2:     #1a1815;
  --surface:  #252220;
  --cream:    #f5f2eb;
  --cream-2:  #eceae2;
  --gold:     #c49a4a;
  --gold-2:   #d4af72;
  --text:     #f2efe6;
  --text-2:   rgba(242, 239, 230, 0.55);
  --text-3:   rgba(242, 239, 230, 0.25);
  --ink:      #1a1815;
  --ink-2:    #3a3730;
  --ink-muted: rgba(26, 24, 21, 0.5);
  --header-h: 76px;
  --max-w:    1300px;
  --gutter:   clamp(24px, 5vw, 80px);
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features-grid {
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.reveal-3d {
  opacity: 0;
  transform: rotateX(-22deg) translate3d(0, 80px, -180px);
  transform-origin: 50% 100%;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-3d.is-visible {
  opacity: 1;
  transform: rotateX(0) translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-3d { opacity: 1; transform: none; transition: none; }
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 24px rgba(0, 0, 0, 0.12);
  opacity: var(--glass-opacity, 0);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  will-change: opacity, transform;
}

.header-logo img {
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.header--light .header-logo img {
  filter: brightness(0);
}

.header--light .btn-login {
  color: var(--ink);
  border-color: rgba(26, 24, 21, 0.35);
}

.header--light .btn-login:hover {
  border-color: var(--ink);
  background: rgba(26, 24, 21, 0.06);
}

.btn-login {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.2s, color 0.3s,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-login:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

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

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 1;
  will-change: border-radius;
}

.about,
.features,
.targets,
.partners,
.contact {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  border: 0;
}
iframe.hero-video {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 7, 6, 0.35) 0%,
    rgba(8, 7, 6, 0.5) 50%,
    rgba(8, 7, 6, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 0;
  will-change: opacity, transform;
}

.hero-logo-wrap {
  margin-bottom: 40px;
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-title--in {
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

.hero-sub--in {
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

.hero-logo-wrap svg {
  max-width: 420px;
  width: 82vw;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(196, 154, 74, 0.15));
}

.hero-title {
  color: var(--text);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-2);
  font-weight: 700;
}

.hero-sub {
  color: var(--text-2);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-hero {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 12px 40px rgba(196, 154, 74, 0.25);
}

.btn-hero:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(212, 175, 114, 0.35);
}

.btn-hero--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.hero-cta--in {
  animation: heroIn 1.1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  cursor: pointer;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(242, 239, 230, 0.4));
}

.hero-scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ── About / Manifesto ──────────────────────────────────────── */
.about {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text {
  width: 100%;
}

.scroll-fill.scroll-fill {
  --fill: 0;
  color: color-mix(in srgb, var(--ink) calc(var(--fill) * 100%), rgba(26, 24, 21, 0.18));
  transition: color 0.1s linear;
}

.scroll-fill em,
.scroll-fill strong {
  color: inherit;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.section-label--dark {
  color: var(--ink-2);
  opacity: 0.5;
}

.about-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.about-headline em {
  font-style: normal;
  color: var(--ink-2);
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

.about-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--ink-2);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}

.about-body strong {
  font-weight: 600;
  color: var(--ink);
}

/* ── Features ───────────────────────────────────────────────── */
.features {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-label {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.features-headline {
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 64px;
}

.features-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

@media (max-width: 900px) {
  .features-headline {
    margin-bottom: 48px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.feature-card {
  background: var(--bg-1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.feature-card-media img,
.feature-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-card-media img,
.feature-card:hover .feature-card-media video {
  transform: scale(1.05);
}

.feature-card-body {
  padding: clamp(24px, 2.5vw, 36px);
  flex: 1;
}

.feature-num {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text-3);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.feature-title {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: clamp(0.85rem, 1.1vw, 0.9rem);
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 300;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ── Targets ────────────────────────────────────────────────── */
.targets {
  background: var(--bg-1);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.targets-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.targets-label {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.targets-headline {
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 64px;
}

.targets-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

@media (max-width: 900px) {
  .targets-headline {
    margin-bottom: 48px;
  }
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.target-card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s, background 0.3s;
}

.target-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 74, 0.4);
  background: var(--surface);
}

.target-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.target-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.target-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

.target-body {
  font-size: clamp(0.85rem, 1.1vw, 0.92rem);
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}

.target-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 154, 74, 0.4);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.target-cta:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold-2);
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .targets-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ── Partners ───────────────────────────────────────────────── */
.partners {
  background: var(--cream);
  padding: clamp(64px, 10vw, 120px) var(--gutter);
}

.partners-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

.partners-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 96px);
  flex-wrap: nowrap;
}

.partners-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.3s;
  display: block;
}

.partners-logo:hover {
  opacity: 0.85;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 48px;
}

.contact-headline em {
  font-style: normal;
  color: var(--gold-2);
}

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

.contact-item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
  font-weight: 300;
}

.contact-form-wrap {
  padding: 48px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.form-success {
  color: var(--text-2);
  font-size: 0.95rem;
  padding: 24px 0;
  line-height: 1.6;
}

.partner-form {
  display: flex;
  flex-direction: column;
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 4px;
  transition: border-color 0.2s;
}

.form-field:focus-within {
  border-bottom-color: var(--gold);
}

.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
}

.partner-form input::placeholder {
  color: var(--text-3);
}

.partner-form select {
  appearance: none;
  cursor: pointer;
  color: var(--text-3);
}

.partner-form select option {
  background: var(--bg-2);
  color: var(--text);
}

.select-wrap {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  font-size: 0.8rem;
  pointer-events: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-2);
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.btn-send {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-send:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px var(--gutter);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  color: var(--text-2);
  font-size: 0.82rem;
  line-height: 1.75;
  font-weight: 300;
}

.footer-col--brand svg {
  max-width: 180px;
  height: auto;
  opacity: 0.75;
}

.footer-vat {
  margin-top: 12px;
  font-size: 0.72rem;
  opacity: 0.35;
}

.footer-heading {
  color: var(--text);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-col--right {
  text-align: right;
}

.btn-top {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0;
}

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

.footer-bottom {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px var(--gutter);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-3);
  font-size: 0.72rem;
  gap: 16px;
  font-weight: 300;
}

.footer-bottom a {
  color: rgba(242, 239, 230, 0.35);
  transition: color 0.2s;
}

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

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col--right {
    text-align: left;
  }
}

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ── Mobile optimizations ───────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }

  .hero-logo-wrap {
    margin-bottom: 28px;
  }
  .hero-logo-wrap svg {
    width: 70vw;
    max-width: 320px;
  }
  .hero-title {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero-scroll-hint {
    bottom: 24px;
  }
  .hero-scroll-line {
    height: 32px;
  }

  .about,
  .features,
  .partners,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-headline {
    font-size: clamp(1.4rem, 7vw, 2rem);
    line-height: 1.25;
  }
  .about-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .features-label {
    margin-bottom: 32px;
  }
  .features-grid {
    gap: 16px;
  }
  .feature-card-body {
    padding: 22px 22px 26px;
  }
  .feature-num {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .feature-rule {
    margin-bottom: 14px;
  }
  .feature-title {
    font-size: 1.1rem;
  }
  .feature-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .reveal-3d {
    transform: translate3d(0, 40px, 0);
  }
  .reveal-3d.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .partners-logos {
    gap: 32px;
  }
  .partners-logo {
    max-width: 120px;
  }

  .contact-headline {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1.2;
  }
  .contact-form-wrap {
    padding: 24px 20px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px; /* iOS: prevents zoom on focus */
  }

  .footer {
    padding: 48px 20px 32px;
  }

  /* avoid heavy parallax/transitions on small screens */
  .feature-card {
    transition: border-color 0.3s;
  }
  .feature-card:hover {
    transform: none;
  }
  .feature-card:hover .feature-card-media img {
    transform: none;
  }
}
