@font-face {
  font-family: "Arkadia Figtree";
  src: url("../fonts/figtree-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ark-bg: #0b0818;
  --ark-bg-soft: #15102a;
  --ark-surface: #1e173d;
  --ark-surface-2: #2a1e51;
  --ark-violet: #9b62ff;
  --ark-violet-bright: #b98cff;
  --ark-cyan: #61d9ff;
  --ark-magenta: #f047d8;
  --ark-white: #f7f4ff;
  --ark-muted: #b9b2ca;
  --ark-line: rgba(255, 255, 255, 0.14);
  --ark-page: min(100% - 48px, 1280px);
  --ark-radius: 28px;
  --ark-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ark-bg);
  color: var(--ark-white);
  font-family: "Arkadia Figtree", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.elementor-editor-active { overflow-x: hidden; }
::selection { background: var(--ark-violet); color: #fff; }
.elementor-location-header, .elementor-location-footer { display: none; }
.elementor-widget:not(:last-child) { margin-block-end: 0; }
.elementor-element :where(h1,h2,h3,h4,p) { margin-block: 0; }
.elementor-element a { color: inherit; }
.elementor-element img { display: block; }
.ark-section { position: relative; width: 100%; }
.ark-shell { width: var(--ark-page); margin-inline: auto; }
.ark-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.ark-reveal.is-visible, .elementor-editor-active .ark-reveal { opacity: 1; transform: none; }

/* Header */
.ark-header {
  position: fixed !important;
  display: block !important;
  inset: 0 0 auto;
  z-index: 100;
  padding: 10px 0;
  transition: padding .3s ease;
  pointer-events: none;
}
.ark-header.is-scrolled, .ark-menu-open .ark-header {
  padding: 7px 0;
  background: transparent;
}
.ark-header-inner {
  --flex-direction: row;
  width: min(calc(100% - 28px), 1320px);
  min-height: 70px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px !important;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: #1f1842;
  box-shadow: 0 16px 45px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height .3s ease, background .3s ease, box-shadow .3s ease;
}
.ark-header.is-scrolled .ark-header-inner { min-height: 64px; background: #1f1842; box-shadow: 0 18px 55px rgba(0,0,0,.38); }
.ark-brand { width: 176px; flex: 0 0 auto; }
.ark-brand .elementor-widget-container { line-height: 0; }
.ark-brand img { width: 100%; height: 44px; object-fit: contain; object-position: center; mix-blend-mode: normal; }
.ark-nav { margin-left: auto; }
.ark-nav .elementor-widget-container { display: flex; align-items: center; gap: 2px; }
.ark-nav p { display: contents; }
.ark-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: -.01em;
  transition: color .2s ease, background .2s ease;
}
.ark-nav a:hover, .ark-nav a:focus-visible { color: #fff; background: rgba(255,255,255,.08); }
.ark-header-cta { flex: 0 0 auto; }
.ark-header-cta .elementor-button { min-height: 46px; padding-inline: 18px; box-shadow: none; }
.ark-header-cta .elementor-button::before { content: ""; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 13px rgba(255,255,255,.85); }
.ark-menu-toggle { display: none; }
.ark-menu-toggle .elementor-widget-container { line-height: 0; }
.ark-menu-toggle button { appearance: none; border: 1px solid var(--ark-line); color: #fff; background: rgba(255,255,255,.06); border-radius: 999px; width: 46px; height: 46px; font-size: 0; cursor: pointer; }
.ark-menu-toggle button::before, .ark-menu-toggle button::after { content: ""; display: block; width: 18px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .25s ease; }
.ark-menu-open .ark-menu-toggle button::before { transform: translateY(3.5px) rotate(45deg); }
.ark-menu-open .ark-menu-toggle button::after { transform: translateY(-3.5px) rotate(-45deg); }

/* Elementor buttons */
.ark-button .elementor-button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1px solid transparent;
  background: linear-gradient(110deg, var(--ark-violet), #7b43e6);
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
  box-shadow: 0 12px 35px rgba(155,98,255,.26);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.ark-button .elementor-button:hover, .ark-button .elementor-button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(155,98,255,.4); }
.ark-button-secondary .elementor-button { background: rgba(255,255,255,.04); border-color: var(--ark-line); box-shadow: none; }
.ark-button-secondary .elementor-button:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.ark-button-small .elementor-button { min-height: 44px; padding: 11px 18px; font-size: 13px; }

/* Hero */
.ark-hero { min-height: 100svh; display: grid; place-items: center; padding: 128px 0 48px; overflow: hidden; }
.ark-hero::before {
  content: ""; position: absolute; inset: -20%; pointer-events: none;
  background: radial-gradient(circle at 75% 28%, rgba(155,98,255,.30), transparent 25%), radial-gradient(circle at 25% 85%, rgba(97,217,255,.12), transparent 25%);
}
.ark-hero-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: clamp(44px, 7vw, 100px); }
.ark-hero-copy { z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.ark-eyebrow .elementor-widget-container { color: var(--ark-violet-bright); font-size: 12px; font-weight: 780; letter-spacing: .18em; text-transform: uppercase; }
.ark-hero-title h1 { margin-top: 22px; max-width: 760px; font-size: clamp(56px, 6.1vw, 96px); line-height: .94; letter-spacing: -.065em; font-weight: 760; text-wrap: balance; }
.ark-hero-title h1 strong { color: var(--ark-violet-bright); font-weight: inherit; }
.ark-hero-lead .elementor-widget-container { margin-top: 28px; max-width: 610px; color: var(--ark-muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.ark-hero-actions { --flex-direction: row; margin-top: 34px; display: flex; flex-direction: row !important; gap: 12px; flex-wrap: wrap; }
.ark-hero-proof { margin-top: 38px; }
.ark-hero-proof .elementor-widget-container { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.ark-hero-media { position: relative; min-height: min(72vh, 760px); }
.ark-hero-media::before { content: ""; position: absolute; inset: 11% -9% -6% 16%; background: linear-gradient(145deg, rgba(155,98,255,.55), rgba(240,71,216,.18)); filter: blur(42px); border-radius: 50%; opacity: .6; }
.ark-hero-image, .ark-hero-image .elementor-widget-container { height: 100%; min-height: inherit; }
.ark-hero-image img { width: 100%; height: min(72vh, 760px); object-fit: cover; object-position: 58% center; border-radius: 36px 36px 140px 36px; box-shadow: var(--ark-shadow); filter: saturate(1.05) contrast(1.04); }
.ark-hero-image::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; border-radius: 0 0 140px 36px; background: linear-gradient(transparent, rgba(11,8,24,.55)); pointer-events: none; }
.ark-float-note { position: absolute !important; left: -42px; bottom: 48px; width: 220px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(21,16,42,.72); backdrop-filter: blur(18px); box-shadow: var(--ark-shadow); }
.ark-float-note .elementor-widget-container { font-size: 13px; line-height: 1.4; font-weight: 680; }
.ark-scroll-note { position: absolute !important; right: 25px; bottom: 24px; writing-mode: vertical-rl; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }

/* Shared sections */
.ark-content-section { padding: clamp(88px, 10vw, 150px) 0; }
.ark-section-head { width: var(--ark-page); margin: 0 auto clamp(44px, 6vw, 76px); display: grid; grid-template-columns: minmax(0, .8fr) minmax(340px, .4fr); gap: 48px; align-items: end; }
.ark-kicker .elementor-widget-container { color: var(--ark-violet-bright); font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; margin-bottom: 15px; }
.ark-section-title h2 { font-size: clamp(43px, 5vw, 75px); line-height: .98; letter-spacing: -.055em; font-weight: 730; text-wrap: balance; }
.ark-section-intro .elementor-widget-container { color: var(--ark-muted); font-size: 17px; line-height: 1.65; }

/* Solutions */
.ark-solutions { background: linear-gradient(180deg, var(--ark-bg) 0%, #110c23 100%); }
.ark-solutions-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.ark-solution-card { min-height: 560px; position: relative; overflow: hidden; border: 1px solid var(--ark-line); border-radius: var(--ark-radius); background: var(--ark-surface); box-shadow: 0 18px 55px rgba(0,0,0,.18); }
.ark-solution-card:nth-child(1), .ark-solution-card:nth-child(4) { grid-column: span 7; }
.ark-solution-card:nth-child(2), .ark-solution-card:nth-child(3) { grid-column: span 5; }
.ark-card-image { position: absolute !important; inset: 0; }
.ark-card-image, .ark-card-image .elementor-widget-container { height: 100%; }
.ark-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease; filter: saturate(.92) brightness(.77); }
.ark-solution-card:hover .ark-card-image img { transform: scale(1.04); filter: saturate(1.08) brightness(.84); }
.ark-solution-card::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(8,5,20,.96)); pointer-events: none; }
.ark-card-copy { position: relative; z-index: 2; margin-top: auto; padding: 34px; min-height: 215px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.ark-card-index .elementor-widget-container { color: var(--ark-violet-bright); font-size: 11px; letter-spacing: .18em; font-weight: 750; }
.ark-card-title h3 { margin-top: 10px; font-size: clamp(31px, 3vw, 45px); line-height: 1; letter-spacing: -.04em; font-weight: 730; }
.ark-card-text .elementor-widget-container { margin-top: 15px; max-width: 590px; color: rgba(255,255,255,.7); line-height: 1.55; font-size: 15px; }

/* Turnkey */
.ark-turnkey { padding: clamp(100px, 11vw, 170px) 0; background: #080611; overflow: hidden; }
.ark-turnkey::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; right: -250px; top: -280px; background: rgba(155,98,255,.24); filter: blur(100px); }
.ark-turnkey-intro { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: minmax(0, .85fr) minmax(390px, .65fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.ark-turnkey-title h2 { font-size: clamp(54px, 7vw, 106px); line-height: .88; letter-spacing: -.068em; font-weight: 760; }
.ark-turnkey-title h2 strong { display: block; color: var(--ark-violet-bright); font-weight: inherit; }
.ark-turnkey-copy .elementor-widget-container { color: var(--ark-muted); font-size: 18px; line-height: 1.65; }
.ark-turnkey-visual { width: var(--ark-page); margin: 70px auto 0; min-height: 680px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.ark-turnkey-main, .ark-turnkey-side { position: relative; overflow: hidden; border-radius: var(--ark-radius); min-height: 100%; }
.ark-turnkey-main img, .ark-turnkey-side img { width: 100%; height: 100%; object-fit: cover; }
.ark-turnkey-main img { object-position: center 34%; }
.ark-turnkey-side img { object-position: center; }
.ark-turnkey-visual::after { content: "VOS JEUX · VOTRE UNIVERS · PRÊT À JOUER"; position: absolute; left: 28px; bottom: 26px; z-index: 3; padding: 13px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(11,8,24,.72); backdrop-filter: blur(12px); font-size: 11px; font-weight: 760; letter-spacing: .14em; }
.ark-steps { width: var(--ark-page); margin: 20px auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ark-step { min-height: 210px; padding: 25px; border: 1px solid var(--ark-line); border-radius: 20px; background: rgba(255,255,255,.035); transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.ark-step:hover { transform: translateY(-6px); background: rgba(155,98,255,.10); border-color: rgba(185,140,255,.4); }
.ark-step-number .elementor-widget-container { color: var(--ark-violet-bright); font-size: 12px; font-weight: 780; letter-spacing: .12em; }
.ark-step-title h3 { margin-top: 46px; font-size: 22px; letter-spacing: -.025em; }
.ark-step-text .elementor-widget-container { margin-top: 10px; color: var(--ark-muted); font-size: 14px; line-height: 1.5; }
.ark-turnkey-action { --flex-direction: row; width: var(--ark-page); margin: 34px auto 0; display: flex; flex-direction: row !important; align-items: center; justify-content: space-between; gap: 24px; }
.ark-turnkey-signature .elementor-widget-container { color: rgba(255,255,255,.7); font-size: 18px; }

/* Expertise */
.ark-expertise { background: var(--ark-white); color: #171226; }
.ark-expertise-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.ark-year { position: sticky; top: 130px; }
.ark-year h2 { font-size: clamp(100px, 16vw, 220px); line-height: .74; letter-spacing: -.09em; color: var(--ark-violet); font-weight: 800; }
.ark-year-caption .elementor-widget-container { margin-top: 26px; max-width: 440px; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.15; letter-spacing: -.03em; font-weight: 680; }
.ark-expertise-intro .elementor-widget-container { color: #625b70; font-size: 18px; line-height: 1.7; }
.ark-pillars { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(23,18,38,.15); }
.ark-pillar { padding: 30px 24px 34px 0; border-bottom: 1px solid rgba(23,18,38,.15); }
.ark-pillar:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(23,18,38,.15); }
.ark-pillar h3 { font-size: 23px; letter-spacing: -.03em; }
.ark-pillar-text .elementor-widget-container { margin-top: 10px; color: #6f687a; line-height: 1.55; font-size: 15px; }

/* Founders */
.ark-founders { background: #100b22; }
.ark-founders-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 8vw, 110px); }
.ark-founders-copy .elementor-widget-container { margin-top: 26px; color: var(--ark-muted); font-size: 17px; line-height: 1.7; }
.ark-founder-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ark-founder-card { min-height: 410px; padding: 28px; border-radius: var(--ark-radius); border: 1px solid var(--ark-line); background: linear-gradient(150deg, rgba(155,98,255,.18), rgba(255,255,255,.025)); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.ark-founder-card::before { content: attr(data-initial); position: absolute; right: -18px; top: -45px; color: rgba(185,140,255,.13); font-size: 220px; line-height: 1; font-weight: 800; letter-spacing: -.1em; }
.ark-founder-mark h3 { color: var(--ark-violet-bright); font-size: 72px; letter-spacing: -.08em; }
.ark-founder-name h3 { font-size: 30px; line-height: 1.02; letter-spacing: -.04em; }
.ark-founder-role .elementor-widget-container { margin-top: 10px; color: var(--ark-muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* Distributor */
.ark-distributor { padding: clamp(100px, 12vw, 180px) 0; overflow: hidden; background: linear-gradient(130deg, #271653 0%, #7d43e8 55%, #a765ff 100%); }
.ark-distributor::after { content: "FRANCE"; position: absolute; right: -40px; bottom: -55px; font-size: min(22vw, 340px); font-weight: 850; letter-spacing: -.08em; color: rgba(255,255,255,.055); pointer-events: none; }
.ark-distributor-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(350px, .9fr); gap: 70px; align-items: center; }
.ark-distributor-label .elementor-widget-container { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 780; letter-spacing: .18em; text-transform: uppercase; }
.ark-distributor-title h2 { margin-top: 22px; max-width: 900px; font-size: clamp(50px, 6vw, 91px); line-height: .92; letter-spacing: -.06em; font-weight: 760; }
.ark-distributor-text .elementor-widget-container { margin-top: 26px; max-width: 650px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.65; }
.ark-distributor .ark-button .elementor-button { margin-top: 32px; color: #201338; background: #fff; box-shadow: 0 16px 40px rgba(27,9,64,.25); }
.ark-distributor-image { height: 600px; border-radius: 220px 220px 28px 28px; overflow: hidden; transform: rotate(3deg); box-shadow: var(--ark-shadow); }
.ark-distributor-image img { width: 100%; height: 100%; object-fit: cover; }

/* Contact */
.ark-contact { background: var(--ark-bg); }
.ark-contact-grid { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.ark-contact-title h2 { margin-top: 18px; font-size: clamp(48px, 5.7vw, 86px); line-height: .93; letter-spacing: -.06em; }
.ark-contact-copy .elementor-widget-container { margin-top: 25px; color: var(--ark-muted); font-size: 17px; line-height: 1.65; }
.ark-contact-note .elementor-widget-container { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--ark-line); color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.5; }
.ark-contact-form { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--ark-line); border-radius: var(--ark-radius); background: rgba(255,255,255,.045); box-shadow: var(--ark-shadow); }
.ark-contact-form .ff-el-group { margin-bottom: 22px; }
.ark-contact-form .ff-el-input--label label { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 680; letter-spacing: .04em; }
.ark-contact-form :is(input, select, textarea).ff-el-form-control { min-height: 54px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; background: rgba(255,255,255,.06); color: #fff; box-shadow: none; transition: border-color .2s ease, background .2s ease; }
.ark-contact-form textarea.ff-el-form-control { min-height: 140px; resize: vertical; }
.ark-contact-form :is(input, select, textarea).ff-el-form-control:focus { border-color: var(--ark-violet-bright); background: rgba(255,255,255,.09); }
.ark-contact-form select option { color: #1b1530; background: #fff; }
.ark-contact-form .ff-btn-submit { min-height: 54px; padding: 15px 24px; border: 0; border-radius: 999px; background: linear-gradient(110deg, var(--ark-violet), #7b43e6); color: #fff; font-weight: 760; }
.ark-contact-form .ff-message-success { border: 1px solid rgba(97,217,255,.4); border-radius: 14px; background: rgba(97,217,255,.10); color: #fff; }

/* Footer */
.ark-footer { padding: 34px 0 24px; border-top: 1px solid var(--ark-line); background: #080611; }
.ark-footer-inner { width: var(--ark-page); margin-inline: auto; display: grid; grid-template-columns: 210px 1fr auto; gap: 38px; align-items: center; }
.ark-footer-logo img { width: 190px; height: 60px; object-fit: contain; mix-blend-mode: screen; }
.ark-footer-nav .elementor-widget-container { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,.58); font-size: 12px; }
.ark-footer-nav p { display: contents; }
.ark-footer-nav a { text-decoration: none; }
.ark-copyright .elementor-widget-container { color: rgba(255,255,255,.44); font-size: 11px; white-space: nowrap; }

@media (max-width: 1080px) {
  :root { --ark-page: min(100% - 36px, 980px); }
  .ark-nav .elementor-widget-container { gap: 0; }
  .ark-nav a:nth-child(4), .ark-nav a:nth-child(6) { display: none; }
  .ark-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 42px; }
  .ark-steps { grid-template-columns: repeat(3, 1fr); }
  .ark-step:nth-child(n+4) { grid-column: span 1; }
  .ark-turnkey-visual { min-height: 560px; }
  .ark-distributor-grid { grid-template-columns: 1fr .7fr; gap: 45px; }
  .ark-distributor-image { height: 520px; }
}

@media (max-width: 820px) {
  :root { --ark-page: min(100% - 30px, 720px); --ark-radius: 22px; }
  html { scroll-padding-top: 80px; }
  .ark-header, .ark-header.is-scrolled, .ark-menu-open .ark-header { padding: 7px 0; background: transparent; }
  .ark-header-inner { width: calc(100% - 18px); min-height: 64px; padding: 7px 8px 7px 14px !important; gap: 8px; border-radius: 17px; }
  .ark-header.is-scrolled .ark-header-inner { min-height: 60px; }
  .ark-brand { width: 150px; }
  .ark-brand img { height: 40px; }
  .ark-header-cta { margin-left: auto; }
  .ark-header-cta .elementor-button { font-size: 0; width: 44px; min-height: 44px; padding: 0; }
  .ark-header-cta .elementor-button::before { content: "↗"; width: auto; height: auto; margin: 0; background: none; box-shadow: none; font-size: 18px; }
  .ark-menu-toggle { display: block; }
  .ark-nav { position: fixed !important; top: 78px; left: 9px; right: 9px; margin: 0; padding: 10px; border: 1px solid var(--ark-line); border-radius: 18px; background: #171132; box-shadow: var(--ark-shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .ark-menu-open .ark-nav { opacity: 1; visibility: visible; transform: none; }
  .ark-nav .elementor-widget-container { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .ark-nav a, .ark-nav a:nth-child(4), .ark-nav a:nth-child(6) { display: flex; min-height: 48px; padding: 12px; border-bottom: 1px solid var(--ark-line); border-radius: 10px; font-size: 15px; }
  .ark-nav a:last-child { border: 0; }
  .ark-hero { padding-top: 110px; align-items: start; }
  .ark-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .ark-hero-title h1 { max-width: 660px; }
  .ark-hero-media { min-height: 520px; }
  .ark-hero-image img { height: 520px; border-radius: 26px 26px 90px 26px; }
  .ark-float-note { left: 14px; bottom: 20px; }
  .ark-scroll-note { display: none; }
  .ark-section-head { grid-template-columns: 1fr; gap: 24px; }
  .ark-solutions-grid { gap: 14px; }
  .ark-solution-card, .ark-solution-card:nth-child(n) { grid-column: span 6; min-height: 500px; }
  .ark-card-copy { padding: 25px; }
  .ark-turnkey-intro { grid-template-columns: 1fr; }
  .ark-turnkey-visual { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .ark-steps { grid-template-columns: 1fr 1fr; }
  .ark-step:last-child { grid-column: 1 / -1; }
  .ark-expertise-grid { grid-template-columns: 1fr; }
  .ark-year { position: static; }
  .ark-founders-grid { grid-template-columns: 1fr; }
  .ark-distributor-grid { grid-template-columns: 1fr; }
  .ark-distributor-image { height: 440px; width: min(100%, 500px); justify-self: end; }
  .ark-contact-grid { grid-template-columns: 1fr; }
  .ark-footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; }
}

@media (max-width: 560px) {
  :root { --ark-page: calc(100% - 24px); }
  .ark-brand { width: 136px; }
  .ark-hero { min-height: auto; padding-bottom: 24px; }
  .ark-hero-title h1 { font-size: clamp(49px, 15vw, 68px); }
  .ark-hero-lead .elementor-widget-container { font-size: 17px; }
  .ark-hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .ark-hero-actions .elementor-widget-button, .ark-hero-actions .elementor-button { width: 100%; }
  .ark-hero-proof .elementor-widget-container { line-height: 1.6; }
  .ark-hero-media { min-height: 410px; }
  .ark-hero-image img { height: 410px; object-position: 62% center; }
  .ark-float-note { width: 185px; }
  .ark-section-title h2 { font-size: 43px; }
  .ark-solutions-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-right: 32px; scrollbar-width: none; }
  .ark-solution-card, .ark-solution-card:nth-child(n) { min-width: 84vw; min-height: 470px; scroll-snap-align: start; }
  .ark-turnkey-title h2 { font-size: 58px; }
  .ark-turnkey-visual { grid-template-columns: 1fr; min-height: 0; }
  .ark-turnkey-main { height: 430px; }
  .ark-turnkey-side { height: 280px; }
  .ark-turnkey-visual::after { left: 14px; right: 14px; bottom: 14px; text-align: center; line-height: 1.45; }
  .ark-steps { grid-template-columns: 1fr; }
  .ark-step:last-child { grid-column: auto; }
  .ark-step { min-height: 170px; }
  .ark-step-title h3 { margin-top: 28px; }
  .ark-turnkey-action { --flex-direction: column; align-items: stretch; flex-direction: column !important; }
  .ark-year h2 { font-size: 32vw; }
  .ark-pillars { grid-template-columns: 1fr; }
  .ark-pillar:nth-child(even) { padding-left: 0; border-left: 0; }
  .ark-founder-cards { grid-template-columns: 1fr; }
  .ark-founder-card { min-height: 330px; }
  .ark-distributor-title h2 { font-size: 52px; }
  .ark-distributor-image { height: 360px; border-radius: 160px 160px 24px 24px; }
  .ark-contact-form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .ark-reveal { opacity: 1; transform: none; }
}
