:root {
      --bg: #111318;
      --bg-soft: #181b22;
      --card: rgba(255,255,255,0.055);
      --text: #F4F1EA;
      --muted: #B8B2A7;
      --muted-2: #817B70;
      --gold: #18A558;
      --emerald: #18A558;
      --line: rgba(24,165,88,0.34);
      --glass: rgba(255,255,255,0.045);
      --name-warm: #EAFCE9;
      --name-soft: #EDF2EF;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    ::selection {
      color: #0F1516;
      background: rgba(99,212,113,0.88);
    }

    
/* ======================== Base ======================== */
body {
      min-height: 100vh;
      font-family: Inter, Manrope, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 75% 18%, rgba(24,165,88,0.14), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(14,124,67,0.12), transparent 34%),
        linear-gradient(135deg, #0f1116 0%, #151820 45%, #0d0f13 100%);
      overflow-x: hidden;
    }

    
/* ======================== Hero ======================== */
.hero {
      position: relative;
      min-height: 100vh;
      padding: 32px clamp(22px, 5vw, 72px);
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 86%);
      z-index: -2;
    }

    .hero::after {
      content: "АР";
      position: absolute;
      right: -4vw;
      top: 13vh;
      font-size: clamp(170px, 24vw, 360px);
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.025);
      z-index: -1;
      line-height: 1;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 10px 0;
      position: relative;
      z-index: 5;
    }

    .brand { display: flex; align-items: center; gap: 14px; white-space: nowrap; }

    .monogram {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: -0.04em;
      background: rgba(255,255,255,0.035);
      box-shadow: 0 0 0 7px rgba(24,165,88,0.06);
    }

    .brand-text {
      font-size: 14px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--text);
    }

    .menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); color: var(--muted); font-size: 14px; }
    .menu a { color: inherit; text-decoration: none; transition: color .2s ease; }
    .menu a:hover { color: var(--text); }

    .nav-cta {
      padding: 12px 18px;
      border: 1px solid rgba(24,165,88,0.55);
      color: var(--text);
      border-radius: 999px;
      text-decoration: none;
      font-size: 14px;
      background: rgba(24,165,88,0.10);
      transition: transform .2s ease, background .2s ease;
      white-space: nowrap;
    }
    .nav-cta:hover { transform: translateY(-2px); background: rgba(24,165,88,0.18); }

    .floating-cards-strip {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      margin-bottom: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-content {
      flex: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
      gap: clamp(36px, 6vw, 92px);
      align-items: center;
      padding: 56px 0 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,0.095);
      border-radius: 999px;
      background: rgba(255,255,255,0.045);
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 26px;
      backdrop-filter: blur(8px);
    }
    .eyebrow span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 18px rgba(47,191,143,0.72);
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(48px, 6.7vw, 88px);
      line-height: 0.98;
      letter-spacing: -0.045em;
      max-width: 760px;
      margin-bottom: 26px;
      font-weight: 500;
      color: var(--name-soft);
      text-wrap: balance;
    }

    .name-first {
      color: var(--name-soft);
      text-shadow: 0 18px 54px rgba(244,241,234,0.08);
    }

    .name-last {
      display: inline-block;
      color: var(--name-warm);
      background: linear-gradient(92deg, #F3FFF4 0%, #8EEA7B 24%, #39C56A 50%, #18A558 72%, #0E7C43 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      position: relative;
    }

    .name-last::after {
      content: "";
      position: absolute;
      left: 0.08em;
      right: 0.04em;
      bottom: -0.06em;
      height: 1px;
      background: linear-gradient(90deg, rgba(24,165,88,0.08), rgba(57,197,106,0.86), rgba(142,234,123,0.22));
    }

    .positioning {
      font-size: clamp(23px, 2.8vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.045em;
      color: #46C468;
      max-width: 760px;
      margin-bottom: 24px;
      font-weight: 600;
    }

    .lead {
      max-width: 720px;
      color: var(--muted);
      font-size: clamp(17px, 1.5vw, 21px);
      line-height: 1.55;
      margin-bottom: 34px;
    }

    .actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 15px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .btn.primary { color: #0F1516; background: linear-gradient(90deg, #63D471 0%, #18A558 54%, #0E7C43 100%); font-weight: 700; box-shadow: 0 18px 48px rgba(24,165,88,0.26); }
    .btn.secondary { color: var(--text); border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.045); }
    .btn:hover { transform: translateY(-2px); }

    .proof-strip { display: grid; grid-template-columns: repeat(5, minmax(112px, 1fr)); gap: 12px; max-width: 880px; }
    .proof-item { padding: 16px 18px; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; background: var(--glass); backdrop-filter: blur(8px); }
    .proof-number { display: block; color: var(--text); font-size: 25px; line-height: 1; font-weight: 750; letter-spacing: -0.05em; margin-bottom: 7px; }
    .proof-label { display: block; color: var(--muted); font-size: 13px; line-height: 1.25; }

    .visual-zone { position: relative; min-height: 620px; display: grid; align-items: center; }

    .photo-card {
      position: relative;
      width: min(100%, 470px);
      min-height: 560px;
      justify-self: center;
      border: 1px solid rgba(24,165,88,0.34);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(244,241,234,0.08), rgba(244,241,234,0.015)),
        radial-gradient(circle at 50% 25%, rgba(24,165,88,0.18), transparent 38%),
        rgba(255,255,255,0.035);
      box-shadow: 0 32px 90px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08);
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .photo-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(217,246,236,0.22);
      border-radius: 26px;
      pointer-events: none;
    }

    .photo-placeholder {
      position: absolute;
      inset: 38px 38px 126px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(24,165,88,0.08), rgba(47,191,143,0.07)), rgba(0,0,0,0.18);
      display: block;
      overflow: hidden;
      padding: 0;
      color: var(--muted);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -30px 40px rgba(0,0,0,0.18),
        0 18px 36px rgba(0,0,0,0.22);
    }

    .photo-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(8,14,12,0.04) 0%, rgba(8,14,12,0.18) 42%, rgba(8,14,12,0.35) 100%),
        radial-gradient(circle at top, rgba(24,165,88,0.10), transparent 30%),
        linear-gradient(135deg, rgba(24,165,88,0.06), transparent 40%);
      mix-blend-mode: screen;
      opacity: 0.60;
      z-index: 1;
      pointer-events: none;
    }

    .photo-placeholder img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 18%;
      filter: none;
      transform: scale(1.02);
      border-radius: inherit;
      position: relative;
      z-index: 0;
    }
    .photo-placeholder .circle {
      width: 168px;
      height: 168px;
      border-radius: 50%;
      border: 1px solid rgba(24,165,88,0.32);
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      background: radial-gradient(circle at 42% 34%, rgba(244,241,234,0.15), transparent 36%), rgba(255,255,255,0.035);
      color: rgba(244,241,234,0.78);
      font-size: 54px;
      font-weight: 700;
      letter-spacing: -0.07em;
    }
    .photo-placeholder strong { display: block; color: var(--text); font-size: 17px; margin-bottom: 8px; letter-spacing: -0.02em; }
    .photo-placeholder small { display: block; font-size: 13px; line-height: 1.4; color: var(--muted); }

    .model-chain {
      position: absolute;
      left: 34px;
      right: 34px;
      bottom: 32px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      align-items: stretch;
    }
    .step {
      min-height: 58px;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(17,19,24,0.58);
      border-radius: 14px;
      padding: 10px 8px;
      font-size: 11px;
      color: var(--muted);
      display: grid;
      align-content: center;
      text-align: center;
      line-height: 1.15;
    }
    .step:nth-child(2), .step:nth-child(4) { border-color: rgba(24,165,88,0.26); }
    .step:nth-child(5) { color: var(--text); border-color: rgba(47,191,143,0.38); }

    .floating-card {
      border: 1px solid rgba(255,255,255,0.095);
      border-radius: 20px;
      background: rgba(17,19,24,0.72);
      backdrop-filter: blur(8px);
      box-shadow: 0 22px 60px rgba(0,0,0,0.26);
      padding: 18px 18px;
    }
    .floating-card h3 { font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 9px; }
    .floating-card p { color: var(--muted); font-size: 13px; line-height: 1.35; max-width: 190px; }
    .card-a { }
    .card-b { }

    .signal { will-change: transform; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 8px rgba(47,191,143,0.08), 0 0 26px rgba(47,191,143,0.68); }
    .signal.one { left: 54px; top: 57px; }
    .signal.two { right: 72px; top: 104px; background: #55C86A; box-shadow: 0 0 0 8px rgba(24,165,88,0.08), 0 0 26px rgba(24,165,88,0.6); }
    .signal.three { right: 44px; bottom: 80px; }

    .scroll-hint {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      color: var(--muted-2);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold), transparent); }

    

    .bg-pattern {
      position: absolute;
      inset: 0;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }

    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(28px);
      opacity: 0.22;
    }

    .bg-orb.one {
      width: 420px;
      height: 420px;
      right: 12%;
      top: 8%;
      background: radial-gradient(circle, rgba(24,165,88,0.20) 0%, rgba(24,165,88,0.07) 42%, transparent 72%);
    }

    .bg-orb.two {
      width: 340px;
      height: 340px;
      left: -90px;
      bottom: 6%;
      background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(24,165,88,0.04) 42%, transparent 70%);
      opacity: 0.14;
    }

    .bg-orb.three {
      width: 260px;
      height: 260px;
      right: 34%;
      bottom: 18%;
      background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(24,165,88,0.03) 45%, transparent 72%);
      opacity: 0.12;
    }

    .bg-soft,
    .bg-contours {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .bg-soft { opacity: 0.15; }
    .bg-contours { opacity: 0.35; }

    .bg-caption {
      position: absolute;
      right: clamp(26px, 5vw, 72px);
      bottom: 92px;
      display: flex;
      gap: 10px;
      align-items: center;
      color: rgba(184,178,167,0.82);
      font-size: 11px;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(17,19,24,0.36);
      backdrop-filter: blur(8px);
    }

    .bg-caption::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #55C86A;
      box-shadow: 0 0 14px rgba(85,200,106,0.5);
    }



    /* ===== Screen 2: Где я даю максимальный эффект ===== */
    .effect-section {
      position: relative;
      min-height: 100vh;
      padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 72px) clamp(70px, 7vw, 104px);
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 12%, rgba(24,165,88,0.12), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(99,212,113,0.09), transparent 30%),
        linear-gradient(180deg, rgba(13,15,19,0.96) 0%, #111318 48%, #0d0f13 100%);
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .effect-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 48% 42%, rgba(0,0,0,0.8), transparent 78%);
      z-index: -3;
    }

    .effect-section::after {
      content: "02";
      position: absolute;
      right: clamp(16px, 5vw, 72px);
      top: clamp(36px, 6vw, 78px);
      font-size: clamp(92px, 13vw, 205px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.025);
      z-index: -1;
    }

    .section-shell {
      width: min(100%, 1440px);
      margin: 0 auto;
      position: relative;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,0.095);
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 22px;
      backdrop-filter: blur(8px);
    }

    .section-kicker span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 18px rgba(47,191,143,0.72);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
      gap: clamp(26px, 5vw, 74px);
      align-items: end;
      margin-bottom: clamp(34px, 5vw, 62px);
    }

    .section-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5.2vw, 76px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 500;
      color: var(--name-soft);
      text-wrap: balance;
      max-width: 900px;
    }

    .section-title .accent {
      display: inline-block;
      background: linear-gradient(92deg, #F3FFF4 0%, #8EEA7B 26%, #39C56A 55%, #18A558 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-lead {
      color: var(--muted);
      font-size: clamp(16px, 1.3vw, 19px);
      line-height: 1.58;
      max-width: 560px;
      margin-bottom: 0;
    }

    .effect-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.86fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: stretch;
    }

    .effect-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .effect-card {
      position: relative;
      min-height: 198px;
      padding: 22px 22px 20px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.058), rgba(255,255,255,0.020)),
        rgba(255,255,255,0.035);
      box-shadow: 0 22px 62px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.055);
      overflow: hidden;
      backdrop-filter: blur(8px);
      transition: transform .24s ease, border-color .24s ease, background .24s ease;
    }

    .effect-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(24,165,88,0), rgba(99,212,113,0.76), rgba(24,165,88,0));
      opacity: 0;
      transition: opacity .24s ease;
    }

    .effect-card:hover {
      transform: translateY(-5px);
      border-color: rgba(24,165,88,0.28);
      background:
        linear-gradient(135deg, rgba(24,165,88,0.095), rgba(255,255,255,0.026)),
        rgba(255,255,255,0.04);
    }

    .effect-card:hover::before { opacity: 1; }

    .effect-number {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      border-radius: 16px;
      border: 1px solid rgba(24,165,88,0.34);
      color: #63D471;
      background: rgba(24,165,88,0.08);
      box-shadow: 0 0 0 7px rgba(24,165,88,0.045);
    }

    .effect-number svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .effect-card h3 {
      font-size: clamp(19px, 1.6vw, 24px);
      line-height: 1.14;
      letter-spacing: -0.04em;
      font-weight: 650;
      color: var(--text);
      margin-bottom: 10px;
      max-width: 410px;
    }

    .effect-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      max-width: 430px;
    }

    .result-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .result-chip {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
      color: rgba(244,241,234,0.78);
      font-size: 13px;
      line-height: 1.1;
    }

    .result-chip::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #55C86A;
      box-shadow: 0 0 12px rgba(85,200,106,0.45);
    }

    .decision-panel {
      position: relative;
      min-height: 100%;
      border: 1px solid rgba(24,165,88,0.25);
      border-radius: 34px;
      padding: clamp(24px, 3vw, 34px);
      background:
        radial-gradient(circle at 82% 18%, rgba(99,212,113,0.13), transparent 30%),
        radial-gradient(circle at 16% 86%, rgba(24,165,88,0.10), transparent 32%),
        linear-gradient(135deg, rgba(244,241,234,0.070), rgba(244,241,234,0.018)),
        rgba(255,255,255,0.034);
      box-shadow: 0 32px 88px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
      overflow: hidden;
      backdrop-filter: blur(8px);
    }

    .decision-panel::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(217,246,236,0.16);
      border-radius: 26px;
      pointer-events: none;
    }

    .decision-panel::after {
      content: "Decision cockpit";
      position: absolute;
      right: 28px;
      top: 28px;
      color: rgba(244,241,234,0.055);
      font-size: clamp(44px, 5.8vw, 82px);
      line-height: 0.9;
      font-weight: 800;
      letter-spacing: -0.08em;
      text-align: right;
      max-width: 360px;
      pointer-events: none;
    }

    .panel-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--gold);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      position: relative;
      z-index: 2;
    }

    .panel-label::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #63D471;
      box-shadow: 0 0 18px rgba(99,212,113,0.54);
    }

    .panel-title {
      position: relative;
      z-index: 2;
      max-width: 560px;
      margin-bottom: 12px;
      color: var(--text);
      font-size: clamp(30px, 3.1vw, 46px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 680;
    }

    .panel-subtitle {
      position: relative;
      z-index: 2;
      max-width: 520px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 26px;
    }

    .decision-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 16px;
    }

    .decision-card {
      min-height: 154px;
      padding: 16px 16px 15px;
      border: 1px solid rgba(255,255,255,0.085);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(17,19,24,0.66), rgba(17,19,24,0.34)),
        rgba(255,255,255,0.038);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 16px 38px rgba(0,0,0,0.18);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .decision-card:hover {
      transform: translateY(-4px);
      border-color: rgba(24,165,88,0.30);
      background:
        linear-gradient(135deg, rgba(24,165,88,0.105), rgba(17,19,24,0.38)),
        rgba(255,255,255,0.04);
    }

    .decision-index {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin-bottom: 14px;
      border: 1px solid rgba(24,165,88,0.34);
      border-radius: 15px;
      color: #63D471;
      background: rgba(24,165,88,0.08);
      box-shadow: 0 0 0 6px rgba(24,165,88,0.04);
    }

    .decision-index svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .decision-card h3 {
      color: var(--text);
      font-size: 17px;
      line-height: 1.14;
      letter-spacing: -0.035em;
      margin-bottom: 8px;
      font-weight: 680;
    }

    .decision-card p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.38;
    }

    .decision-output {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
      gap: 14px;
      align-items: center;
      padding: 16px 18px;
      border: 1px solid rgba(24,165,88,0.22);
      border-radius: 22px;
      background:
        radial-gradient(circle at 100% 20%, rgba(99,212,113,0.11), transparent 32%),
        rgba(24,165,88,0.060);
    }

    .output-label {
      color: #63D471;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 700;
    }

    .output-text {
      color: rgba(244,241,234,0.88);
      font-size: 13.5px;
      line-height: 1.4;
    }

    .panel-chips {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .panel-chips span {
      padding: 8px 10px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
      color: rgba(244,241,234,0.72);
      font-size: 11.5px;
      line-height: 1;
    }

    .effect-note {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(250px, 0.28fr);
      gap: 16px;
      align-items: center;
      padding: 20px 22px;
      border: 1px solid rgba(24,165,88,0.20);
      border-radius: 24px;
      background: rgba(24,165,88,0.055);
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }

    .effect-note strong {
      color: var(--text);
      font-weight: 650;
    }

    .note-cta {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      text-decoration: none;
      color: #0F1516;
      background: linear-gradient(90deg, #63D471 0%, #18A558 58%, #0E7C43 100%);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 18px 42px rgba(24,165,88,0.20);
      transition: transform .2s ease;
    }

    .note-cta:hover { transform: translateY(-2px); }



    /* ===== Screen 3: Опыт, подтвержденный цифрами ===== */
    .proof-section-full {
      position: relative;
      min-height: 100vh;
      padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 72px) clamp(76px, 7vw, 108px);
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 14%, rgba(24,165,88,0.12), transparent 32%),
        radial-gradient(circle at 16% 72%, rgba(99,212,113,0.07), transparent 34%),
        linear-gradient(180deg, #0d0f13 0%, #12151b 52%, #0d0f13 100%);
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .proof-section-full::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 54% 42%, rgba(0,0,0,0.78), transparent 76%);
      z-index: -3;
    }

    .proof-section-full::after {
      content: "03";
      position: absolute;
      right: clamp(16px, 5vw, 72px);
      top: clamp(36px, 6vw, 78px);
      font-size: clamp(92px, 13vw, 205px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.025);
      z-index: -1;
    }

    .proof-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.02fr);
      gap: clamp(32px, 5vw, 76px);
      align-items: stretch;
    }

    .proof-story {
      display: grid;
      align-content: space-between;
      gap: 24px;
      min-height: 620px;
    }

    .proof-main-card {
      position: relative;
      border: 1px solid rgba(24,165,88,0.23);
      border-radius: 34px;
      padding: clamp(28px, 3.5vw, 42px);
      background:
        radial-gradient(circle at 85% 18%, rgba(99,212,113,0.11), transparent 32%),
        linear-gradient(135deg, rgba(244,241,234,0.070), rgba(244,241,234,0.018)),
        rgba(255,255,255,0.035);
      box-shadow: 0 32px 88px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.06);
      overflow: hidden;
      backdrop-filter: blur(8px);
    }

    .proof-main-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(217,246,236,0.15);
      border-radius: 26px;
      pointer-events: none;
    }

    .proof-card-label {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--gold);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .proof-card-label::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #63D471;
      box-shadow: 0 0 18px rgba(99,212,113,0.54);
    }

    .proof-big-number {
      position: relative;
      z-index: 2;
      display: block;
      margin-bottom: 12px;
      font-size: clamp(72px, 8.2vw, 126px);
      line-height: 0.88;
      font-weight: 800;
      letter-spacing: -0.08em;
      background: linear-gradient(92deg, #F3FFF4 0%, #8EEA7B 28%, #39C56A 58%, #18A558 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .proof-main-card h3 {
      position: relative;
      z-index: 2;
      color: var(--text);
      font-size: clamp(25px, 2.6vw, 38px);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 680;
      margin-bottom: 16px;
      max-width: 520px;
    }

    .proof-main-card p {
      position: relative;
      z-index: 2;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
      max-width: 520px;
    }

    .company-panel {
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 28px;
      padding: 22px;
      background: rgba(255,255,255,0.035);
      box-shadow: 0 20px 58px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.045);
      backdrop-filter: blur(8px);
    }

    .company-panel h3 {
      color: var(--text);
      font-size: 19px;
      line-height: 1.14;
      letter-spacing: -0.035em;
      margin-bottom: 16px;
      font-weight: 650;
    }

    .company-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .company-cloud span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,0.085);
      border-radius: 999px;
      background: rgba(17,19,24,0.42);
      color: rgba(244,241,234,0.78);
      font-size: 13px;
      line-height: 1;
      white-space: nowrap;
    }

    .proof-mosaic {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .metric-tile {
      position: relative;
      min-height: 176px;
      padding: 20px 18px 18px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 26px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.058), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.033);
      box-shadow: 0 22px 62px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.052);
      overflow: hidden;
      backdrop-filter: blur(8px);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .metric-tile::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(24,165,88,0), rgba(99,212,113,0.70), rgba(24,165,88,0));
      opacity: 0;
      transition: opacity .22s ease;
    }

    .metric-tile:hover {
      transform: translateY(-4px);
      border-color: rgba(24,165,88,0.28);
      background:
        linear-gradient(135deg, rgba(24,165,88,0.090), rgba(255,255,255,0.024)),
        rgba(255,255,255,0.038);
    }

    .metric-tile:hover::before { opacity: 1; }

    .metric-icon {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin-bottom: 20px;
      border-radius: 15px;
      border: 1px solid rgba(24,165,88,0.32);
      background: rgba(24,165,88,0.075);
      color: #63D471;
      box-shadow: 0 0 0 6px rgba(24,165,88,0.04);
    }

    .metric-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .metric-value {
      display: block;
      color: var(--text);
      font-size: clamp(28px, 2.8vw, 42px);
      line-height: 0.98;
      font-weight: 780;
      letter-spacing: -0.065em;
      margin-bottom: 8px;
    }

    .metric-label {
      display: block;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.32;
    }

    .metric-tile.featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-height: 150px;
      background:
        radial-gradient(circle at 90% 18%, rgba(99,212,113,0.10), transparent 32%),
        rgba(24,165,88,0.055);
      border-color: rgba(24,165,88,0.21);
    }

    .geo-line {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .geo-line span {
      padding: 8px 10px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
      color: rgba(244,241,234,0.72);
      font-size: 12px;
      line-height: 1;
    }

    
    .title-note {
      color: rgba(184,178,167,0.84);
      font-size: 0.72em;
      font-weight: 560;
      letter-spacing: -0.01em;
    }

@media (max-width: 1100px) {
      .hero-content { grid-template-columns: 1fr; }
      .visual-zone { min-height: 520px; }
      .photo-card { min-height: 500px; }
      .card-a { left: max(0px, 4vw); }
      .card-b { right: max(0px, 4vw); }
      .section-head, .effect-layout, .proof-layout { grid-template-columns: 1fr; }
      .decision-panel { min-height: 640px; }
      .proof-story { min-height: auto; }
      .proof-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .map-core { min-height: 430px; }
    }

        @media (max-width: 760px) {
      .bg-caption { display: none; }

      
/* ======================== Hero ======================== */
.hero { padding: 22px 18px 42px; }
      .menu { display: none; }
      .brand-text { display: none; }
      .nav-cta { padding: 10px 14px; }
      .hero-content { padding-top: 38px; }
      .proof-strip { grid-template-columns: repeat(2, 1fr); }
      .photo-card { min-height: 520px; }
      .floating-card { display: none; }
      .model-chain { grid-template-columns: 1fr; }
      .step { min-height: 40px; }
      .photo-placeholder { bottom: 250px; }
      .scroll-hint { display: none; }

      .effect-section { padding: 68px 18px 72px; }
      .section-head { gap: 20px; margin-bottom: 30px; }
      .effect-grid { grid-template-columns: 1fr; }
      .effect-card { min-height: auto; padding: 22px 20px; }
      .result-strip { margin-top: 14px; }
      .decision-panel { min-height: auto; padding: 22px 18px; border-radius: 28px; }
      .decision-grid { grid-template-columns: 1fr; }
      .decision-output { grid-template-columns: 1fr; }
      .map-core { min-height: 560px; }
      .core-orbit { inset: 96px 18px 92px; }
      .core-orbit.two { inset: 136px 46px 132px; }
      .core-center { width: min(72%, 250px); padding: 26px; }
      .map-node { width: min(58%, 190px); font-size: 12px; }
      .map-node.n1 { left: 0; top: 42px; }
      .map-node.n2 { right: 0; top: 142px; }
      .map-node.n3 { right: 0; bottom: 132px; }
      .map-node.n4 { left: 0; bottom: 42px; }
      .map-footer { grid-template-columns: 1fr; }
      .effect-note { grid-template-columns: 1fr; }
      .proof-section-full { padding: 68px 18px 72px; }
      .proof-mosaic { grid-template-columns: 1fr; }
      .metric-tile, .metric-tile.featured { min-height: auto; grid-column: auto; grid-template-columns: 1fr; }
      .company-cloud span { white-space: normal; }
      .note-cta { justify-self: start; }
    }
  
    /* ===== Screen 4: Форматы работы ===== */
    .formats-section {
      position: relative;
      min-height: 100vh;
      padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 72px) clamp(76px, 7vw, 108px);
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 16%, rgba(24,165,88,0.12), transparent 34%),
        radial-gradient(circle at 12% 82%, rgba(99,212,113,0.08), transparent 30%),
        linear-gradient(180deg, #0d0f13 0%, #111318 46%, #0e1115 100%);
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .formats-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 50% 42%, rgba(0,0,0,0.82), transparent 78%);
      z-index: -3;
    }

    .formats-section::after {
      content: "04";
      position: absolute;
      right: clamp(16px, 5vw, 72px);
      top: clamp(36px, 6vw, 78px);
      font-size: clamp(92px, 13vw, 205px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.025);
      z-index: -1;
    }

    .formats-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
      gap: clamp(32px, 6vw, 86px);
      align-items: start;
      margin-top: clamp(34px, 5vw, 58px);
    }

    .formats-intro {
      position: sticky;
      top: 34px;
      padding: clamp(24px, 3vw, 34px);
      border: 1px solid rgba(24,165,88,0.22);
      border-radius: 32px;
      background:
        radial-gradient(circle at 84% 18%, rgba(99,212,113,0.11), transparent 32%),
        linear-gradient(135deg, rgba(244,241,234,0.066), rgba(244,241,234,0.018)),
        rgba(255,255,255,0.034);
      box-shadow: 0 28px 78px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.055);
      backdrop-filter: blur(8px);
      overflow: hidden;
    }

    .formats-intro::after {
      content: "Work modes";
      position: absolute;
      right: 24px;
      bottom: 20px;
      font-size: clamp(42px, 5vw, 76px);
      line-height: 0.85;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(244,241,234,0.045);
      pointer-events: none;
    }

    .formats-intro h3 {
      position: relative;
      z-index: 2;
      color: var(--text);
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      font-weight: 680;
      margin-bottom: 16px;
      max-width: 520px;
    }

    .formats-intro p {
      position: relative;
      z-index: 2;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.52;
      max-width: 520px;
      margin-bottom: 24px;
    }

    .formats-pills {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .formats-pills span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 13px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
      color: rgba(244,241,234,0.76);
      font-size: 12.5px;
      line-height: 1;
    }

    .pill-icon,
    .feature-icon,
    .result-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .formats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .format-card {
      position: relative;
      min-height: 244px;
      height: 100%;
      padding: 24px 22px 22px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 26px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.060), rgba(255,255,255,0.020)),
        rgba(255,255,255,0.035);
      box-shadow: 0 22px 62px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.055);
      overflow: hidden;
      backdrop-filter: blur(8px);
      transition: transform .24s ease, border-color .24s ease, background .24s ease;
      display: flex;
      flex-direction: column;
    }

    .format-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(24,165,88,0), rgba(99,212,113,0.78), rgba(24,165,88,0));
      opacity: 0;
      transition: opacity .24s ease;
    }

    .format-card:hover {
      transform: translateY(-5px);
      border-color: rgba(24,165,88,0.28);
      background:
        linear-gradient(135deg, rgba(24,165,88,0.095), rgba(255,255,255,0.026)),
        rgba(255,255,255,0.04);
    }

    .format-card:hover::before { opacity: 1; }

    .format-card.accent {
      background:
        radial-gradient(circle at 84% 16%, rgba(99,212,113,0.12), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022)),
        rgba(255,255,255,0.036);
    }

    .format-card.compact { min-height: 220px; }

    .format-topline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--gold);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      opacity: 0.92;
    }

    .format-topline::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #63D471;
      box-shadow: 0 0 12px rgba(99,212,113,0.45);
    }

    .format-icon {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 18px;
      border-radius: 17px;
      border: 1px solid rgba(24,165,88,0.34);
      color: #63D471;
      background: rgba(24,165,88,0.08);
      box-shadow: 0 0 0 7px rgba(24,165,88,0.045);
    }

    .format-icon svg {
      width: 21px;
      height: 21px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .format-card h3 {
      color: var(--text);
      font-size: clamp(20px, 1.65vw, 25px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      font-weight: 660;
      margin-bottom: 10px;
    }

    .format-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.44;
      margin-bottom: 16px;
      max-width: 420px;
    }

    .format-result {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      margin-top: auto;
      padding: 9px 11px;
      border: 1px solid rgba(24,165,88,0.18);
      border-radius: 999px;
      background: rgba(24,165,88,0.055);
      color: rgba(244,241,234,0.82);
      font-size: 12px;
      line-height: 1;
    }

    .format-card.featured {
      grid-column: 1 / -1;
      min-height: 210px;
      display: grid;
      grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
      gap: 24px;
      align-items: center;
      background:
        radial-gradient(circle at 88% 24%, rgba(99,212,113,0.14), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.020)),
        rgba(255,255,255,0.035);
    }

    .featured-list {
      display: grid;
      gap: 10px;
      position: relative;
      z-index: 2;
    }

    .featured-list span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.25;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      background: rgba(17,19,24,0.34);
    }


    .hands-on-strip {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr;
      min-height: 270px;
      padding: 26px 26px 24px;
      border: 1px solid rgba(24,165,88,0.24);
      border-radius: 26px;
      background:
        radial-gradient(circle at 88% 22%, rgba(99,212,113,0.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.030);
      box-shadow: 0 22px 62px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.045);
      backdrop-filter: blur(8px);
      overflow: hidden;
    }

    .hands-on-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .hands-on-header .format-icon {
      margin-bottom: 0;
      flex: 0 0 auto;
    }

    .hands-on-title {
      color: var(--text);
      font-size: clamp(32px, 4.2vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 680;
      margin: 0;
      width: 100%;
      max-width: 100%;
      text-wrap: balance;
    }

    .hands-on-bottom {
      align-self: end;
      display: grid;
      grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
      gap: 22px;
      align-items: end;
      margin-top: 24px;
    }

    .hands-on-bottom p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      max-width: 680px;
      margin: 0;
    }

    .hands-on-points {
      display: grid;
      gap: 10px;
    }

    .hands-on-points span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(244,241,234,0.78);
      font-size: 13px;
      line-height: 1.22;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      background: rgba(17,19,24,0.30);
    }


    .hands-on-strip.format-card-like {
      grid-column: 1 / -1;
      min-height: 222px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 24px 22px 22px;
      border: 1px solid rgba(24,165,88,0.24);
      border-radius: 26px;
      background:
        radial-gradient(circle at 88% 22%, rgba(99,212,113,0.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.030);
      box-shadow: 0 22px 62px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.045);
      backdrop-filter: blur(8px);
    }

    .hands-on-strip.format-card-like h3 {
      color: var(--text);
      font-size: clamp(19px, 1.65vw, 25px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      font-weight: 660;
      margin-bottom: 10px;
      max-width: 620px;
    }

    .hands-on-strip.format-card-like p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.44;
      max-width: 760px;
      margin-bottom: 16px;
    }

    .hands-on-points.compact {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 16px;
    }

    .hands-on-points.compact span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(244,241,234,0.76);
      font-size: 12.5px;
      line-height: 1;
      padding: 9px 11px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      background: rgba(17,19,24,0.30);
    }

    .hands-on-strip.format-card-like .format-result {
      margin-top: auto;
    }

    @media (max-width: 1100px) {
      .formats-layout { grid-template-columns: 1fr; }
      .formats-intro { position: relative; top: 0; }
    }

    @media (max-width: 760px) {
      .formats-section { padding: 68px 18px 74px; }
      .formats-grid { grid-template-columns: 1fr; }
      .format-card { min-height: auto; padding: 22px 20px; }
      .format-card.featured { grid-template-columns: 1fr; }
      .hands-on-strip { min-height: auto; padding: 22px 20px; }
      .hands-on-header { align-items: flex-start; }
      .hands-on-bottom { grid-template-columns: 1fr; margin-top: 18px; }
      .formats-intro { border-radius: 28px; }
    }

  
    /* ===== Sticky contact ribbon + Screen 5: Contacts ===== */
    .sticky-contact-ribbon {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 40;
      width: min(calc(100% - 36px), 1040px);
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 10px 12px 10px 16px;
      border: 1px solid rgba(24,165,88,0.24);
      border-radius: 999px;
      background: rgba(17,19,24,0.78);
      box-shadow: 0 18px 56px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
      backdrop-filter: blur(8px);
    }

    .ribbon-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #63D471;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      white-space: nowrap;
      font-weight: 700;
    }

    .ribbon-label::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #63D471;
      box-shadow: 0 0 14px rgba(99,212,113,0.58);
    }

    .ribbon-text {
      color: rgba(244,241,234,0.78);
      font-size: 13px;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ribbon-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .ribbon-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.042);
      color: rgba(244,241,234,0.86);
      text-decoration: none;
      font-size: 12.5px;
      line-height: 1;
      white-space: nowrap;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .ribbon-link:hover {
      transform: translateY(-2px);
      border-color: rgba(24,165,88,0.32);
      background: rgba(24,165,88,0.09);
    }

    .ribbon-link.primary {
      color: #0F1516;
      border-color: transparent;
      background: linear-gradient(90deg, #63D471 0%, #18A558 58%, #0E7C43 100%);
      font-weight: 750;
    }

    .hero-mini-footer {
      position: absolute;
      left: clamp(22px, 5vw, 72px);
      right: clamp(22px, 5vw, 72px);
      bottom: 22px;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(184,178,167,0.72);
      font-size: 12px;
      letter-spacing: 0.02em;
      pointer-events: none;
    }

    .hero-mini-footer a {
      color: rgba(244,241,234,0.78);
      text-decoration: none;
      pointer-events: auto;
      transition: color .2s ease;
    }

    .hero-mini-footer a:hover { color: #63D471; }

    .hero-mini-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .contacts-section {
      position: relative;
      min-height: 92vh;
      padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 72px) clamp(120px, 10vw, 150px);
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 18%, rgba(24,165,88,0.12), transparent 34%),
        radial-gradient(circle at 86% 76%, rgba(99,212,113,0.10), transparent 30%),
        linear-gradient(180deg, #0e1115 0%, #111318 48%, #0d0f13 100%);
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .contacts-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 50% 44%, rgba(0,0,0,0.78), transparent 78%);
      z-index: -3;
    }

    .contacts-section::after {
      content: "05";
      position: absolute;
      right: clamp(16px, 5vw, 72px);
      top: clamp(36px, 6vw, 78px);
      font-size: clamp(92px, 13vw, 205px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.025);
      z-index: -1;
    }

    .contacts-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
      gap: clamp(34px, 6vw, 88px);
      align-items: stretch;
      margin-top: clamp(34px, 5vw, 58px);
    }

    .contact-cta-card {
      position: relative;
      padding: clamp(26px, 3.2vw, 42px);
      border: 1px solid rgba(24,165,88,0.24);
      border-radius: 34px;
      background:
        radial-gradient(circle at 86% 20%, rgba(99,212,113,0.12), transparent 32%),
        linear-gradient(135deg, rgba(244,241,234,0.066), rgba(244,241,234,0.018)),
        rgba(255,255,255,0.034);
      box-shadow: 0 30px 84px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.055);
      backdrop-filter: blur(8px);
      overflow: hidden;
    }

    .contact-cta-card::after {
      content: "Let’s talk";
      position: absolute;
      right: 26px;
      bottom: 22px;
      font-size: clamp(46px, 6vw, 94px);
      line-height: 0.82;
      font-weight: 800;
      letter-spacing: -0.08em;
      color: rgba(244,241,234,0.043);
      pointer-events: none;
    }

    .contact-cta-card h3 {
      position: relative;
      z-index: 2;
      color: var(--text);
      font-size: clamp(30px, 3.7vw, 56px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 680;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .contact-cta-card p {
      position: relative;
      z-index: 2;
      color: var(--muted);
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.55;
      max-width: 760px;
      margin-bottom: 28px;
    }

    .contact-actions {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 18px;
      border-radius: 999px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(244,241,234,0.88);
      background: rgba(255,255,255,0.045);
      font-size: 14px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .contact-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(24,165,88,0.34);
      background: rgba(24,165,88,0.09);
    }

    .contact-btn.primary {
      color: #0F1516;
      border-color: transparent;
      background: linear-gradient(90deg, #63D471 0%, #18A558 58%, #0E7C43 100%);
      font-weight: 750;
      box-shadow: 0 18px 48px rgba(24,165,88,0.24);
    }

    .contact-icon {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .contact-detail-list {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 10px;
      max-width: 680px;
    }

    .contact-detail-list a {
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 13px 14px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      background: rgba(17,19,24,0.36);
      text-decoration: none;
      color: rgba(244,241,234,0.86);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .contact-detail-list a:hover {
      transform: translateY(-2px);
      border-color: rgba(24,165,88,0.28);
      background: rgba(24,165,88,0.075);
    }

    .contact-detail-list span:first-child {
      color: #63D471;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 760;
    }

    .contact-detail-list span:last-child {
      overflow-wrap: anywhere;
      font-size: 14px;
    }

    .contact-task-card {
      padding: clamp(24px, 3vw, 34px);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.032);
      box-shadow: 0 26px 74px rgba(0,0,0,0.23), inset 0 1px 0 rgba(255,255,255,0.045);
      backdrop-filter: blur(8px);
    }

    .contact-task-card h3 {
      color: var(--text);
      font-size: clamp(23px, 2.2vw, 34px);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 680;
      margin-bottom: 18px;
    }

    .contact-task-list {
      display: grid;
      gap: 12px;
    }

    .contact-task-list div {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 13px 13px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 17px;
      background: rgba(17,19,24,0.34);
      color: var(--muted);
      font-size: 14px;
      line-height: 1.32;
    }

    .task-icon {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 14px;
      border: 1px solid rgba(24,165,88,0.28);
      color: #63D471;
      background: rgba(24,165,88,0.075);
    }

    .task-icon svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    
/* ======================== Footer ======================== */
.site-footer {
      position: relative;
      padding: 26px clamp(22px, 5vw, 72px) 90px;
      border-top: 1px solid rgba(255,255,255,0.055);
      background: #0d0f13;
      color: rgba(184,178,167,0.78);
    }

    .footer-shell {
      width: min(100%, 1440px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(244,241,234,0.86);
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-monogram {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(24,165,88,0.34);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #63D471;
      background: rgba(24,165,88,0.06);
      font-weight: 750;
      letter-spacing: -0.05em;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
      font-size: 13px;
    }

    .footer-links a {
      color: rgba(244,241,234,0.78);
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer-links a:hover { color: #63D471; }

    @media (max-width: 920px) {
      .sticky-contact-ribbon {
        grid-template-columns: 1fr;
        border-radius: 24px;
        width: min(calc(100% - 24px), 560px);
      }

      .ribbon-text { white-space: normal; }
      .ribbon-actions { flex-wrap: wrap; }
      .contacts-layout { grid-template-columns: 1fr; }
      .hero-mini-footer { display: none; }
    }

    @media (max-width: 760px) {
      .contacts-section { padding: 68px 18px 128px; }
      .contact-detail-list a { grid-template-columns: 1fr; gap: 6px; }
      .footer-shell { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }
      
/* ======================== Footer ======================== */
.site-footer { padding-bottom: 150px; }
      .sticky-contact-ribbon { bottom: 10px; }
      .ribbon-link { min-height: 34px; padding: 0 11px; }
    }

  
    /* ===== Refinements: no sticky ribbon, clearer nav, modern name, focus tiles, photo panels, form ===== */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    .sticky-contact-ribbon { display: none !important; }

    h1,
    .name-first,
    .name-last {
      font-family: Inter, Manrope, Arial, sans-serif;
      font-weight: 620;
      letter-spacing: -0.065em;
    }

    .name-last {
      background: linear-gradient(92deg, #F3FFF4 0%, #8EEA7B 24%, #39C56A 52%, #18A558 78%, #0E7C43 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .menu a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,0.075);
      border-radius: 999px;
      background: rgba(255,255,255,0.020);
      color: rgba(244,241,234,0.76);
      transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
    }

    .menu a:hover,
    .menu a:focus-visible {
      color: #0F1516;
      background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(24,165,88,0.22);
      outline: none;
    }

    .nav-cta {
      border-width: 1.5px;
      transition: background .16s ease, color .16s ease, box-shadow .16s ease, border-color .16s ease;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      transform: none;
      color: #0F1516;
      border-color: transparent;
      background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
      box-shadow: 0 16px 36px rgba(24,165,88,0.24);
      outline: none;
    }

    .focus-strip .proof-item {
      min-height: 88px;
      display: grid;
      align-content: center;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .focus-strip .proof-item:hover {
      transform: translateY(-3px);
      border-color: rgba(24,165,88,0.30);
      background: rgba(24,165,88,0.060);
    }

    .focus-strip .proof-number {
      font-size: 17px;
      letter-spacing: -0.035em;
      color: #F4F1EA;
    }

    .focus-strip .proof-label {
      font-size: 12.5px;
      color: rgba(184,178,167,0.78);
    }

    .visual-zone {
      min-height: 720px;
      align-items: center;
      justify-items: center;
      gap: 14px;
    }

    .photo-card {
      order: 2;
      z-index: 2;
    }

    .floating-card {
      position: relative;
      z-index: 3;
      width: min(100%, 470px);
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 12px;
      align-items: center;
      padding: 14px 16px;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      animation: softFloat 7s ease-in-out infinite;
    }

    .floating-card::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #63D471;
      box-shadow: 0 0 16px rgba(99,212,113,0.55);
    }

    .floating-card:hover {
      transform: translateY(-4px);
      border-color: rgba(24,165,88,0.30);
      background: rgba(17,19,24,0.82);
    }

    .floating-card h3 {
      margin-bottom: 3px;
      grid-column: 2;
    }

    .floating-card p {
      grid-column: 2;
      max-width: none;
      font-size: 12.5px;
    }

    .card-a {
      order: 1;
      justify-self: start;
      margin-left: clamp(8px, 8vw, 72px);
    }

    .card-b {
      order: 3;
      justify-self: end;
      margin-right: clamp(8px, 8vw, 72px);
      animation-delay: -2.8s;
    }

    
/* ======================== Footer ======================== */
.site-footer {
      padding-bottom: 34px;
    }

    .contact-form-card {
      padding: clamp(24px, 3vw, 34px);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 32px;
      background:
        radial-gradient(circle at 86% 16%, rgba(99,212,113,0.09), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.032);
      box-shadow: 0 26px 74px rgba(0,0,0,0.23), inset 0 1px 0 rgba(255,255,255,0.045);
      backdrop-filter: blur(8px);
    }

    .contact-form-card h3 {
      color: var(--text);
      font-size: clamp(23px, 2.2vw, 34px);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 680;
      margin-bottom: 10px;
    }

    .form-note {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      margin-bottom: 18px;
    }

    .contact-form {
      display: grid;
      gap: 12px;
    }

    .form-row {
      display: grid;
      gap: 7px;
    }

    .form-row label {
      color: rgba(244,241,234,0.78);
      font-size: 12px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      background: rgba(17,19,24,0.48);
      color: var(--text);
      font: inherit;
      font-size: 14px;
      line-height: 1.35;
      padding: 13px 14px;
      outline: none;
      transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
    }

    .form-row textarea {
      min-height: 116px;
      resize: vertical;
    }

    .form-row input::placeholder,
    .form-row textarea::placeholder {
      color: rgba(184,178,167,0.48);
    }

    .form-row input:hover,
    .form-row select:hover,
    .form-row textarea:hover,
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      border-color: rgba(24,165,88,0.38);
      background: rgba(17,19,24,0.62);
      box-shadow: 0 0 0 4px rgba(24,165,88,0.08);
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      margin-top: 4px;
      padding: 0 18px;
      border: 0;
      border-radius: 999px;
      color: #0F1516;
      background: linear-gradient(90deg, #63D471 0%, #18A558 58%, #0E7C43 100%);
      font-weight: 760;
      cursor: pointer;
      box-shadow: 0 18px 48px rgba(24,165,88,0.22);
      transition: transform .16s ease, box-shadow .16s ease;
    }

    .form-submit:hover,
    .form-submit:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(24,165,88,0.28);
      outline: none;
    }

    .form-small {
      color: rgba(184,178,167,0.64);
      font-size: 12px;
      line-height: 1.35;
      margin-top: 2px;
    }

    .form-status {
      display: none;
      padding: 12px 14px;
      border: 1px solid rgba(24,165,88,0.24);
      border-radius: 16px;
      background: rgba(24,165,88,0.07);
      color: rgba(244,241,234,0.86);
      font-size: 13px;
      line-height: 1.4;
    }

    .form-status.is-visible {
      display: block;
    }

    @media (max-width: 1100px) {
      .visual-zone { min-height: auto; }
    }

    @media (max-width: 760px) {
      .focus-strip { grid-template-columns: repeat(2, 1fr); }
      .floating-cards-strip { display: none; }
      .form-grid-2 { grid-template-columns: 1fr; }
      
/* ======================== Footer ======================== */
.site-footer { padding-bottom: 40px; }
    }

  
    /* Removed screen labels: title spacing refinement */
    .section-head {
      margin-top: 0;
    }

/* ======================== Responsive layout patch ======================== */
html {
  width: 100%;
  scroll-padding-top: 24px;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img, svg {
  max-width: 100%;
}

.hero,
.effect-section,
.proof-section-full,
.formats-section,
.contacts-section {
  min-height: 100svh;
  scroll-margin-top: 24px;
}

.section-shell,
.hero-content,
.nav,
.footer-shell {
  max-width: 1440px;
}

.nav {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding-top: clamp(20px, 3vh, 32px);
  padding-bottom: clamp(28px, 4vh, 42px);
}

.hero::after {
  right: 0;
  max-width: 100%;
  overflow: hidden;
}

.floating-cards-strip {
  padding: clamp(10px, 1.7vh, 16px) 0;
  margin-bottom: clamp(10px, 1.8vh, 18px);
}

.hero-content {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(18px, 3vh, 34px) 0 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 70px);
}

.copy {
  min-width: 0;
}

h1 {
  font-size: clamp(44px, 5.8vw, 80px);
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.positioning {
  font-size: clamp(23px, 2.5vw, 34px);
  margin-bottom: clamp(16px, 2vh, 22px);
}

.lead {
  margin-bottom: clamp(22px, 3vh, 30px);
}

.actions {
  margin-bottom: clamp(24px, 3.5vh, 36px);
}

.visual-zone {
  min-height: auto;
  width: 100%;
  align-self: center;
  justify-self: center;
}

.photo-card {
  width: min(100%, 440px);
  min-height: unset;
  height: clamp(460px, 64vh, 590px);
  max-height: calc(100svh - 190px);
}

.photo-placeholder {
  inset: clamp(22px, 2.4vw, 32px) clamp(22px, 2.4vw, 32px) 112px;
}

.photo-placeholder img {
  object-position: 50% 16%;
}

.model-chain {
  left: clamp(18px, 2.3vw, 28px);
  right: clamp(18px, 2.3vw, 28px);
  bottom: clamp(20px, 2.5vh, 28px);
}

.step {
  min-width: 0;
}

.scroll-hint {
  bottom: 10px;
}

.section-head,
.effect-layout,
.proof-layout,
.formats-layout,
.contacts-layout,
.proof-strip,
.proof-mosaic,
.effect-grid,
.decision-grid,
.formats-grid {
  min-width: 0;
}

.effect-section,
.proof-section-full,
.formats-section,
.contacts-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.contacts-section {
  min-height: auto;
}

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: clamp(24px, 3.5vw, 48px);
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-card {
    width: min(100%, 400px);
    height: clamp(430px, 60vh, 540px);
  }
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .photo-card {
    max-height: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 16px;
  }

  body {
    overflow-x: hidden;
  }

  .hero,
  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    min-height: auto;
    scroll-margin-top: 16px;
  }

  .hero {
    padding: 18px 16px 42px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .monogram {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 5px rgba(24,165,88,0.06);
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12.5px;
  }

  .menu {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 6px;
    margin: 0 -2px;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  .menu a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .floating-cards-strip,
  .scroll-hint,
  .signal {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 30px;
  }

  .copy {
    display: contents;
  }

  .eyebrow {
    order: 1;
    font-size: 12.5px;
    line-height: 1.25;
    margin-bottom: 0;
  }

  h1 {
    order: 2;
    font-size: clamp(42px, 14vw, 58px);
    line-height: 0.96;
    margin-bottom: -2px;
    overflow-wrap: anywhere;
  }

  .positioning {
    order: 3;
    font-size: clamp(24px, 7.4vw, 34px);
    line-height: 1.06;
    margin-bottom: 0;
  }

  .lead {
    order: 4;
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 0;
  }

  .actions {
    order: 5;
    width: 100%;
    gap: 10px;
    margin-bottom: 0;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    text-align: center;
  }

  .visual-zone {
    order: 6;
    width: 100%;
  }

  .photo-card {
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 4 / 5.25;
    max-height: none;
    border-radius: 28px;
  }

  .photo-card::before {
    inset: 12px;
    border-radius: 22px;
  }

  .photo-placeholder {
    inset: 16px 16px 92px;
    border-radius: 22px;
  }

  .photo-placeholder img {
    object-position: 50% 13%;
    transform: scale(1.01);
  }

  .model-chain {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    left: 14px;
    right: 14px;
    bottom: 16px;
    gap: 5px;
  }

  .step {
    min-height: 42px;
    padding: 7px 4px;
    border-radius: 11px;
    font-size: 9.5px;
    line-height: 1.08;
  }

  .focus-strip {
    order: 7;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .focus-strip .proof-item {
    min-height: 78px;
    padding: 13px 14px;
  }

  .focus-strip .proof-item:last-child {
    grid-column: 1 / -1;
  }

  .focus-strip .proof-number {
    font-size: 15.5px;
  }

  .section-kicker {
    margin-bottom: 16px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .section-title {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.02;
  }

  .section-lead {
    font-size: 15.5px;
    line-height: 1.5;
  }

  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    padding: 58px 16px 64px;
  }

  .effect-section::after,
  .proof-section-full::after,
  .formats-section::after,
  .contacts-section::after {
    font-size: clamp(72px, 22vw, 110px);
    top: 24px;
    right: 10px;
    opacity: 0.72;
  }

  .effect-layout,
  .proof-layout,
  .formats-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .decision-panel,
  .proof-main-card,
  .company-panel,
  .formats-intro,
  .contact-cta-card,
  .contact-form-card {
    border-radius: 26px;
  }

  .decision-panel::after,
  .formats-intro::after,
  .contact-cta-card::after {
    display: none;
  }

  .panel-title,
  .contact-cta-card h3,
  .formats-intro h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .decision-grid,
  .effect-grid,
  .proof-mosaic,
  .formats-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .metric-tile,
  .metric-tile.featured,
  .format-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-btn,
  .form-submit {
    width: 100%;
  }

  .site-footer {
    padding: 24px 16px 34px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 14px;
  }

  .nav-cta {
    padding: 0 11px;
    max-width: 160px;
    text-align: center;
  }

  .eyebrow {
    width: 100%;
  }

  .photo-card {
    width: 100%;
    aspect-ratio: 4 / 5.45;
  }

  .photo-placeholder {
    inset: 14px 14px 88px;
  }

  .model-chain {
    left: 12px;
    right: 12px;
  }

  .step {
    font-size: 8.8px;
  }

  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    padding-inline: 14px;
  }

  .contact-detail-list a,
  .contact-task-list div {
    padding: 12px;
  }
}

@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;
  }
}

/* ======================== Compact laptop and tablet nav refinements ======================== */
@media (min-width: 761px) and (max-height: 820px) {
  .floating-cards-strip,
  .scroll-hint {
    display: none;
  }

  .hero {
    padding-top: clamp(18px, 2.4vh, 24px);
    padding-bottom: clamp(18px, 2.8vh, 28px);
  }

  .hero-content {
    padding-top: clamp(18px, 2.8vh, 26px);
  }

  .photo-card {
    height: clamp(420px, 58vh, 510px);
  }

  h1 {
    font-size: clamp(42px, 5.3vw, 72px);
  }

  .positioning {
    font-size: clamp(21px, 2.25vw, 31px);
    line-height: 1.06;
  }

  .lead {
    font-size: clamp(16px, 1.32vw, 19px);
    line-height: 1.45;
  }

  .actions {
    margin-bottom: 22px;
  }

  .focus-strip .proof-item {
    min-height: 74px;
    padding: 13px 15px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-inline: 18px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .brand-text {
    display: none;
  }

  .menu {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 6px;
    margin: 0;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  .menu a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* ======================== Tools dropdown ======================== */
.tools-menu {
  position: relative;
  flex: 0 0 auto;
  color: rgba(244,241,234,0.76);
}

.tools-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 999px;
  background: rgba(255,255,255,0.020);
  color: inherit;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.tools-menu summary::-webkit-details-marker { display: none; }

.tools-menu summary:hover,
.tools-menu summary:focus-visible,
.tools-menu[open] summary {
  color: #0F1516;
  background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(24,165,88,0.22);
  outline: none;
}

.tools-menu-chevron {
  font-size: 15px;
  transition: transform .18s ease;
}

.tools-menu[open] .tools-menu-chevron { transform: rotate(180deg); }

.tools-menu-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  left: 0;
  min-width: 230px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(17,24,25,0.98);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34);
}

.menu .tools-menu-dropdown a {
  display: flex;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(244,241,234,0.88);
  white-space: nowrap;
}

.menu .tools-menu-dropdown a:hover,
.menu .tools-menu-dropdown a:focus-visible {
  color: #0F1516;
  background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
  box-shadow: none;
}

@media (max-width: 820px) {
  body.tools-menu-open .menu {
    overflow: visible;
  }

  .tools-menu summary {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .tools-menu-dropdown {
    position: fixed;
    top: auto;
    right: 14px;
    bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px));
    left: 14px;
    min-width: 0;
    z-index: 1000;
  }

  .menu .tools-menu-dropdown a {
    justify-content: center;
    background: #fff;
    color: #0F1516;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255,255,255,0.14);
  }

  .menu .tools-menu-dropdown a:hover,
  .menu .tools-menu-dropdown a:focus-visible {
    background: #fff;
    color: #0F1516;
  }
}

/* ======================== Final placement fixes ======================== */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    align-items: center;
  }

  .visual-zone {
    width: 100%;
  }

  .photo-card {
    width: min(100%, 380px);
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: fit-content;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu {
    grid-row: 2;
  }
}

/* ======================== Photo composition refinement ======================== */
/* Uncropped portrait, shifted to the right, with the former floating-card text integrated into the visual block. */
.floating-cards-strip {
  display: none;
}

.visual-zone {
  justify-items: center;
}

.photo-card {
  width: min(100%, 550px);
  height: clamp(470px, 62vh, 580px);
  max-height: calc(100svh - 176px);
}

.photo-placeholder {
  left: clamp(196px, 38%, 218px);
  right: clamp(20px, 2.4vw, 28px);
  top: clamp(22px, 2.4vw, 30px);
  bottom: 112px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 68% 34%, rgba(24,165,88,0.12), transparent 42%),
    linear-gradient(135deg, rgba(24,165,88,0.07), rgba(244,241,234,0.035)),
    rgba(0,0,0,0.18);
}

.photo-placeholder img {
  object-fit: contain;
  object-position: 70% 50%;
  transform: scale(0.96);
  transform-origin: 70% 50%;
}

.photo-placeholder::after {
  opacity: 0.38;
}

.photo-copy-panel {
  position: absolute;
  z-index: 4;
  left: clamp(20px, 2.4vw, 28px);
  top: clamp(22px, 2.4vw, 30px);
  bottom: 112px;
  width: clamp(156px, 34%, 184px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  pointer-events: auto;
}

.photo-info-chip {
  position: relative;
  padding: 15px 15px 14px;
  border: 1px solid rgba(255,255,255,0.095);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(17,19,24,0.78), rgba(17,19,24,0.52)),
    rgba(255,255,255,0.035);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.045);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.photo-info-chip::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #63D471;
  box-shadow: 0 0 16px rgba(99,212,113,0.55);
}

.photo-info-chip.accent {
  border-color: rgba(24,165,88,0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(99,212,113,0.10), transparent 36%),
    linear-gradient(135deg, rgba(24,165,88,0.090), rgba(17,19,24,0.50)),
    rgba(255,255,255,0.035);
}

.photo-info-chip h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11.5px;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 760;
}

.photo-info-chip p {
  margin: 0;
  color: var(--muted);
  font-size: 12.2px;
  line-height: 1.35;
}

@media (min-width: 761px) and (max-width: 1200px) {
  .photo-card {
    width: min(100%, 505px);
  }

  .photo-copy-panel {
    width: 158px;
  }

  .photo-placeholder {
    left: 192px;
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .photo-card {
    height: clamp(425px, 58vh, 520px);
    max-height: calc(100svh - 150px);
  }

  .photo-placeholder,
  .photo-copy-panel {
    bottom: 96px;
  }

  .photo-info-chip {
    padding: 13px 13px 12px;
    border-radius: 18px;
  }

  .photo-info-chip p {
    font-size: 11.6px;
  }
}

@media (max-width: 760px) {
  .photo-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: auto;
    max-height: none;
    padding: 16px;
    overflow: hidden;
  }

  .photo-placeholder {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 4.7;
    min-height: 0;
    border-radius: 22px;
    order: 1;
  }

  .photo-placeholder img {
    object-fit: contain;
    object-position: 70% 50%;
    transform: scale(0.965);
    transform-origin: 70% 50%;
  }

  .photo-copy-panel {
    position: relative;
    inset: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    order: 2;
  }

  .photo-info-chip {
    padding: 14px;
    border-radius: 18px;
  }

  .photo-info-chip::before {
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: -1px;
  }

  .photo-info-chip h3 {
    display: inline;
    font-size: 11px;
  }

  .photo-info-chip p {
    margin-top: 8px;
    font-size: 12.5px;
  }

  .model-chain {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    order: 3;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .photo-card {
    padding: 14px;
  }

  .photo-placeholder {
    aspect-ratio: 4 / 4.9;
  }

  .photo-info-chip p {
    font-size: 12.1px;
  }
}

/* ======================== Final requested hero refinement: raise blocks + left text panel ======================== */
@media (min-width: 901px) {
  .hero {
    min-height: 100svh;
    padding-top: clamp(18px, 2.7vh, 28px);
    padding-bottom: clamp(24px, 3.4vh, 38px);
  }

  .nav {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .hero-content {
    flex: 0 1 auto;
    padding-top: clamp(26px, 5vh, 46px);
    gap: clamp(32px, 5vw, 86px);
    align-items: center;
  }

  .eyebrow {
    margin-bottom: clamp(18px, 2.4vh, 24px);
  }

  h1 {
    margin-bottom: clamp(14px, 2vh, 20px);
  }

  .positioning {
    margin-bottom: clamp(14px, 1.8vh, 20px);
  }

  .lead {
    margin-bottom: clamp(20px, 2.8vh, 28px);
  }

  .actions {
    margin-bottom: clamp(18px, 2.8vh, 28px);
  }

  .visual-zone {
    transform: translateY(-6px);
  }

  .photo-card {
    width: min(100%, 560px);
    height: clamp(455px, 58vh, 560px);
    max-height: calc(100svh - 165px);
  }

  .photo-copy-panel {
    left: clamp(22px, 2.5vw, 30px);
    top: clamp(22px, 2.4vw, 30px);
    bottom: 106px;
    width: clamp(166px, 35%, 198px);
    justify-content: center;
    gap: 14px;
  }

  .photo-placeholder {
    left: clamp(210px, 40%, 230px);
    right: clamp(18px, 2.3vw, 28px);
    top: clamp(22px, 2.4vw, 30px);
    bottom: 106px;
  }

  .photo-placeholder img {
    object-fit: contain;
    object-position: 72% 50%;
    transform: scale(0.94);
    transform-origin: 72% 50%;
  }

  .model-chain {
    bottom: clamp(18px, 2.3vh, 24px);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero-content {
    padding-top: clamp(18px, 3.8vh, 32px);
  }

  .visual-zone {
    transform: translateY(-8px);
  }

  .photo-card {
    height: clamp(420px, 55vh, 500px);
    max-height: calc(100svh - 145px);
  }

  .photo-copy-panel,
  .photo-placeholder {
    bottom: 92px;
  }

  .photo-info-chip {
    padding: 12px 13px;
  }

  .photo-info-chip::before {
    margin-bottom: 9px;
  }

  .photo-info-chip h3 {
    font-size: 10.8px;
  }

  .photo-info-chip p {
    font-size: 11.2px;
    line-height: 1.31;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero-content {
    gap: clamp(22px, 3.5vw, 42px);
  }

  .photo-card {
    width: min(100%, 500px);
  }

  .photo-copy-panel {
    width: 158px;
  }

  .photo-placeholder {
    left: 190px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 24px;
  }
}

@media (max-width: 760px) {
  .hero-content {
    padding-top: 22px;
    gap: 20px;
  }

  .photo-placeholder img {
    object-fit: contain;
    object-position: 72% 50%;
    transform: scale(0.94);
    transform-origin: 72% 50%;
  }
}

/* ======================== Final adaptive pass: all content screens fit + tablet/mobile polish ======================== */
/* Goal: keep each desktop screen visually complete at 1366x768/1440x900 and avoid overflow on iPad/mobile. */
html {
  scroll-padding-top: 18px;
}

.hero,
.effect-section,
.proof-section-full,
.formats-section,
.contacts-section {
  scroll-margin-top: 0;
}

@media (min-width: 901px) {
  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(34px, 4.6vh, 58px) clamp(28px, 4.6vw, 64px);
  }

  .effect-section .section-kicker,
  .proof-section-full .section-kicker,
  .formats-section .section-kicker,
  .contacts-section .section-kicker {
    display: none;
  }

  .section-shell {
    width: min(100%, 1440px);
  }

  .section-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: end;
    margin-bottom: clamp(18px, 2.6vh, 30px);
  }

  .section-title {
    font-size: clamp(38px, 4.45vw, 68px);
    line-height: 0.99;
  }

  .section-lead {
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.44;
  }

  /* Screen 2 */
  .effect-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: clamp(22px, 3.5vw, 48px);
    align-items: stretch;
  }

  .effect-grid {
    gap: 12px;
  }

  .effect-card {
    min-height: clamp(128px, 18vh, 162px);
    padding: 16px 18px;
    border-radius: 20px;
  }

  .effect-number {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .effect-card h3 {
    font-size: clamp(17px, 1.35vw, 21px);
    margin-bottom: 8px;
  }

  .effect-card p {
    font-size: 12.6px;
    line-height: 1.36;
  }

  .result-strip {
    margin-top: 12px;
  }

  .result-chip {
    padding: 8px 12px;
    font-size: 12px;
  }

  .decision-panel {
    padding: clamp(20px, 2.2vw, 28px);
    border-radius: 28px;
  }

  .decision-panel::before {
    inset: 14px;
    border-radius: 22px;
  }

  .decision-panel::after {
    font-size: clamp(42px, 4.8vw, 68px);
    right: 22px;
    top: 22px;
  }

  .panel-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .panel-title {
    font-size: clamp(26px, 2.6vw, 40px);
    margin-bottom: 8px;
  }

  .panel-subtitle {
    font-size: 13.5px;
    line-height: 1.38;
    margin-bottom: 16px;
  }

  .decision-grid {
    gap: 10px;
    margin-bottom: 12px;
  }

  .decision-card {
    min-height: 108px;
    padding: 12px;
    border-radius: 18px;
  }

  .decision-index {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 13px;
  }

  .decision-card h3 {
    font-size: 15.5px;
    margin-bottom: 6px;
  }

  .decision-card p {
    font-size: 12.3px;
    line-height: 1.3;
  }

  .decision-output {
    grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
    padding: 12px 14px;
    border-radius: 18px;
  }

  .output-label {
    font-size: 10px;
  }

  .output-text {
    font-size: 12.4px;
    line-height: 1.32;
  }

  .panel-chips {
    margin-top: 10px;
    gap: 6px;
  }

  .panel-chips span {
    padding: 7px 9px;
    font-size: 10.6px;
  }

  .effect-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    line-height: 1.36;
  }

  .note-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12.8px;
  }

  /* Screen 3 */
  .proof-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(480px, 1.06fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: stretch;
  }

  .proof-story {
    min-height: 0;
    gap: 14px;
  }

  .proof-main-card {
    padding: clamp(20px, 2.3vw, 30px);
    border-radius: 28px;
  }

  .proof-main-card::before {
    inset: 14px;
    border-radius: 22px;
  }

  .proof-card-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .proof-big-number {
    font-size: clamp(58px, 6vw, 96px);
    margin-bottom: 8px;
  }

  .proof-main-card h3 {
    font-size: clamp(22px, 2.25vw, 32px);
    margin-bottom: 12px;
  }

  .proof-main-card p {
    font-size: 13.3px;
    line-height: 1.38;
  }

  .company-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .company-panel h3 {
    margin-bottom: 10px;
    font-size: 16.5px;
  }

  .company-cloud {
    gap: 8px;
  }

  .company-cloud span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .proof-mosaic {
    gap: 10px;
  }

  .metric-tile {
    min-height: 128px;
    padding: 14px;
    border-radius: 20px;
  }

  .metric-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .metric-value {
    font-size: clamp(24px, 2.4vw, 36px);
    margin-bottom: 7px;
  }

  .metric-label {
    font-size: 12.2px;
    line-height: 1.26;
  }

  .metric-tile.featured {
    min-height: 118px;
    gap: 12px;
  }

  .geo-line {
    margin-top: 10px;
    gap: 6px;
  }

  .geo-line span {
    padding: 6px 8px;
    font-size: 10.8px;
  }

  /* Screen 4 */
  .formats-layout {
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: stretch;
    margin-top: 0;
  }

  .formats-intro {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 2.5vw, 30px);
    border-radius: 28px;
  }

  .formats-intro h3 {
    font-size: clamp(25px, 2.7vw, 38px);
    margin-bottom: 12px;
  }

  .formats-intro p {
    font-size: 13.2px;
    line-height: 1.38;
    margin-bottom: 18px;
  }

  .formats-pills {
    gap: 7px;
  }

  .formats-pills span {
    padding: 8px 10px;
    font-size: 11.2px;
  }

  .formats-grid {
    gap: 12px;
  }

  .format-card,
  .format-card.compact {
    min-height: clamp(145px, 19vh, 175px);
    padding: 16px;
    border-radius: 20px;
  }

  .format-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .format-topline {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .format-card h3 {
    font-size: clamp(17px, 1.35vw, 21px);
    margin-bottom: 7px;
  }

  .format-card p {
    font-size: 12.3px;
    line-height: 1.32;
    margin-bottom: 10px;
  }

  .format-result {
    padding: 7px 9px;
    font-size: 10.8px;
  }

  .hands-on-strip.format-card-like {
    min-height: clamp(145px, 18vh, 170px);
    padding: 16px;
    border-radius: 20px;
  }

  .hands-on-strip.format-card-like h3 {
    font-size: clamp(17px, 1.35vw, 21px);
    margin-bottom: 7px;
  }

  .hands-on-strip.format-card-like p {
    font-size: 12.3px;
    line-height: 1.32;
    margin-bottom: 10px;
  }

  .hands-on-points.compact {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hands-on-points.compact span {
    padding: 7px 9px;
    font-size: 10.8px;
  }

  /* Screen 5 */
  .contacts-section {
    min-height: 100svh;
  }

  .contacts-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: stretch;
    margin-top: 0;
  }

  .contact-cta-card {
    padding: clamp(22px, 2.7vw, 34px);
    border-radius: 28px;
  }

  .contact-cta-card h3 {
    font-size: clamp(26px, 3.05vw, 44px);
    margin-bottom: 14px;
  }

  .contact-cta-card p {
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.42;
    margin-bottom: 18px;
  }

  .contact-actions {
    gap: 8px;
    margin-bottom: 16px;
  }

  .contact-btn {
    min-height: 42px;
    padding: 0 13px;
    font-size: 12.5px;
  }

  .contact-detail-list {
    gap: 8px;
  }

  .contact-detail-list a {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 10px 12px;
    border-radius: 14px;
  }

  .contact-detail-list span:first-child {
    font-size: 10px;
  }

  .contact-detail-list span:last-child {
    font-size: 13px;
  }

  .contact-form-card {
    padding: clamp(20px, 2.35vw, 28px);
    border-radius: 28px;
  }

  .contact-form-card h3 {
    font-size: clamp(22px, 2.15vw, 32px);
    margin-bottom: 8px;
  }

  .form-note {
    font-size: 12.8px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .contact-form {
    gap: 9px;
  }

  .form-grid-2 {
    gap: 9px;
  }

  .form-row {
    gap: 5px;
  }

  .form-row label {
    font-size: 10.5px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 13px;
  }

  .form-row textarea {
    min-height: 76px;
  }

  .form-submit {
    min-height: 42px;
    font-size: 13px;
  }

  .form-small {
    font-size: 11px;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    padding-top: clamp(26px, 3.6vh, 36px);
    padding-bottom: clamp(26px, 3.6vh, 36px);
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-title {
    font-size: clamp(36px, 4vw, 58px);
  }

  .section-lead {
    font-size: 13.5px;
    line-height: 1.36;
  }

  .effect-card {
    min-height: 118px;
    padding: 13px 15px;
  }

  .effect-number {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .effect-card h3,
  .format-card h3,
  .hands-on-strip.format-card-like h3 {
    font-size: 16px;
  }

  .effect-card p,
  .format-card p,
  .hands-on-strip.format-card-like p {
    font-size: 11.6px;
    line-height: 1.28;
  }

  .decision-card {
    min-height: 96px;
    padding: 10px;
  }

  .decision-index {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .panel-subtitle {
    margin-bottom: 12px;
  }

  .effect-note {
    margin-top: 12px;
    padding: 11px 14px;
  }

  .proof-main-card {
    padding: 20px;
  }

  .proof-big-number {
    font-size: clamp(54px, 5.4vw, 82px);
  }

  .proof-main-card h3 {
    font-size: clamp(20px, 2vw, 28px);
  }

  .metric-tile {
    min-height: 116px;
    padding: 12px;
  }

  .metric-tile.featured {
    min-height: 104px;
  }

  .metric-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 9px;
  }

  .metric-value {
    font-size: clamp(22px, 2.2vw, 32px);
  }

  .metric-label {
    font-size: 11.5px;
  }

  .formats-intro,
  .contact-cta-card,
  .contact-form-card {
    padding: 20px;
  }

  .format-card,
  .format-card.compact,
  .hands-on-strip.format-card-like {
    min-height: 132px;
    padding: 13px 14px;
  }

  .format-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 7px;
  }

  .format-topline {
    margin-bottom: 6px;
  }

  .formats-intro h3 {
    font-size: clamp(23px, 2.35vw, 34px);
  }

  .formats-intro p {
    font-size: 12.2px;
    line-height: 1.31;
    margin-bottom: 12px;
  }

  .contact-cta-card h3 {
    font-size: clamp(24px, 2.7vw, 38px);
  }

  .contact-cta-card p {
    margin-bottom: 13px;
  }

  .contact-actions {
    margin-bottom: 12px;
  }

  .contact-form-card h3 {
    font-size: clamp(21px, 2vw, 28px);
  }

  .form-row textarea {
    min-height: 62px;
  }

  .form-note {
    margin-bottom: 9px;
  }
}

/* iPad portrait / narrow tablet: one-column readability, no horizontal overflow. */
@media (min-width: 761px) and (max-width: 900px) {
  html {
    scroll-padding-top: 14px;
  }

  .hero,
  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    min-height: auto;
  }

  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    display: block;
    padding: 62px 28px 70px;
  }

  .section-kicker {
    display: none;
  }

  .section-head,
  .effect-layout,
  .proof-layout,
  .formats-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(42px, 7vw, 62px);
  }

  .section-lead {
    max-width: 680px;
  }

  .effect-grid,
  .decision-grid,
  .proof-mosaic,
  .formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .effect-card,
  .decision-card,
  .metric-tile,
  .format-card,
  .format-card.compact {
    min-height: auto;
  }

  .decision-panel,
  .proof-main-card,
  .company-panel,
  .formats-intro,
  .contact-cta-card,
  .contact-form-card {
    border-radius: 28px;
  }

  .formats-intro {
    position: relative;
    top: 0;
  }

  .format-card.featured,
  .hands-on-strip.format-card-like,
  .metric-tile.featured {
    grid-column: 1 / -1;
  }

  .contacts-layout {
    align-items: start;
  }

  .form-row textarea {
    min-height: 96px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 12px;
  }

  .effect-section .section-kicker,
  .proof-section-full .section-kicker,
  .formats-section .section-kicker,
  .contacts-section .section-kicker {
    display: none;
  }

  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: clamp(32px, 9.6vw, 46px);
  }

  .effect-note {
    margin-top: 18px;
  }

  .proof-main-card,
  .company-panel,
  .decision-panel,
  .formats-intro,
  .contact-cta-card,
  .contact-form-card {
    padding: 20px 18px;
  }

  .effect-card,
  .metric-tile,
  .format-card,
  .hands-on-strip.format-card-like {
    padding: 18px;
  }

  .photo-card {
    width: min(100%, 400px);
    margin: 0 auto;
  }

  .photo-placeholder {
    aspect-ratio: 4 / 4.45;
  }

  .photo-placeholder img {
    max-height: 100%;
  }

  .contact-actions,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero,
  .effect-section,
  .proof-section-full,
  .formats-section,
  .contacts-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-title {
    font-size: clamp(30px, 9.2vw, 40px);
  }

  .section-lead,
  .lead {
    font-size: 15px;
  }

  .photo-placeholder {
    aspect-ratio: 4 / 4.65;
  }

  .model-chain {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .step {
    font-size: 8.4px;
    padding-left: 3px;
    padding-right: 3px;
  }
}


/* ======================== Hero focus tiles final typography fix ======================== */
#hero-proof {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
}

#hero-proof .proof-item {
  min-height: 124px;
  padding: 14px 14px 16px;
  display: grid;
  grid-template-rows: 26px 44px;
  align-content: start;
  align-items: start;
}

#hero-proof .proof-number,
#hero-proof .proof-label {
  display: block;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

#hero-proof .proof-number {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  min-height: 26px;
  margin-bottom: 0;
}

#hero-proof .proof-label {
  display: flex;
  align-items: flex-start;
  font-size: 9.5px;
  line-height: 1.2;
  padding-top: 7px;
  min-height: 44px;
  align-self: start;
}

@media (max-width: 1200px) {
  #hero-proof .proof-number {
    font-size: 14px;
  }

  #hero-proof .proof-label {
    font-size: 9.5px;
  }
}

@media (max-width: 760px) {
  #hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #hero-proof .proof-item {
    min-height: 90px;
    padding: 12px;
    grid-template-rows: 22px 36px;
  }

  #hero-proof .proof-number {
    font-size: 14px;
    line-height: 1.14;
    min-height: 22px;
    margin-bottom: 0;
  }

  #hero-proof .proof-label {
    font-size: 9.5px;
    line-height: 1.16;
    padding-top: 6px;
    min-height: 36px;
  }

  #hero-proof .proof-item:last-child {
    grid-column: 1 / -1;
  }
}


/* ======================== Hero focus tiles vertical alignment ======================== */
#hero-proof .proof-item {
  display: grid;
  grid-template-rows: 38px 1fr;
  align-content: start;
  justify-items: start;
}

#hero-proof .proof-number {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

#hero-proof .proof-label {
  align-self: start;
  padding-top: 8px;
}

@media (max-width: 1200px) {
  #hero-proof .proof-item {
    grid-template-rows: 34px 1fr;
  }
}

@media (max-width: 760px) {
  #hero-proof .proof-item {
    grid-template-rows: 32px 1fr;
  }

  #hero-proof .proof-label {
    padding-top: 6px;
  }
}


/* ======================== Final compact hero-proof cards ======================== */
#hero-proof {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
}

#hero-proof .proof-item {
  min-height: 96px;
  padding: 11px 12px 12px;
  display: grid;
  grid-template-rows: 20px 28px;
  align-content: start;
  align-items: start;
  justify-items: start;
}

#hero-proof .proof-number,
#hero-proof .proof-label {
  display: block;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

#hero-proof .proof-number {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  min-height: 20px;
  margin-bottom: 0;
}

#hero-proof .proof-label {
  display: flex;
  align-items: flex-start;
  align-self: start;
  font-size: 9.5px;
  line-height: 1.14;
  min-height: 28px;
  padding-top: 5px;
}

@media (max-width: 1200px) {
  #hero-proof .proof-item {
    min-height: 92px;
    grid-template-rows: 20px 28px;
  }

  #hero-proof .proof-number {
    font-size: 14px;
  }

  #hero-proof .proof-label {
    font-size: 9.5px;
  }
}

@media (max-width: 760px) {
  #hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #hero-proof .proof-item {
    min-height: 78px;
    padding: 10px 11px 11px;
    grid-template-rows: 18px 24px;
  }

  #hero-proof .proof-number {
    font-size: 14px;
    line-height: 1.1;
    min-height: 18px;
  }

  #hero-proof .proof-label {
    font-size: 9.5px;
    line-height: 1.12;
    min-height: 24px;
    padding-top: 4px;
  }

  #hero-proof .proof-item:last-child {
    grid-column: 1 / -1;
  }
}


/* ======================== FINAL NAV BUTTON + CALLBACK RESTORE ======================== */
button.scroll-link,
.footer-scroll-link {
  font: inherit;
  cursor: pointer;
}

.menu button.scroll-link {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 999px;
  background: rgba(255,255,255,0.020);
  color: rgba(244,241,234,0.76);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.menu button.scroll-link:hover,
.menu button.scroll-link:focus-visible {
  color: #0F1516;
  background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(24,165,88,0.22);
  outline: none;
  transform: translateY(-1px);
}

.nav-cta,
.btn,
.note-cta,
.footer-scroll-link {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
}

.footer-scroll-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(244,241,234,0.78);
  font-size: inherit;
}
.footer-scroll-link:hover { color: #63D471; }

.callback-block {
  position: relative;
  z-index: 2;
  margin: 18px 0 18px;
  padding: 16px;
  border: 1px solid rgba(24,165,88,0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(24,165,88,0.085), rgba(255,255,255,0.025));
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
}
.callback-copy { min-width: 0; }
.callback-kicker {
  display: block;
  margin-bottom: 5px;
  color: #63D471;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.callback-copy h4 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.callback-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.callback-toggle {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(24,165,88,0.42);
  border-radius: 999px;
  background: rgba(24,165,88,0.10);
  color: var(--text);
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: .16s ease;
}
.callback-toggle:hover,
.callback-toggle:focus-visible {
  color: #0F1516;
  border-color: transparent;
  background: linear-gradient(90deg, #63D471 0%, #18A558 62%, #0E7C43 100%);
  outline: none;
}
.callback-form-wrap {
  grid-column: 1 / -1;
  padding-top: 4px;
}
.callback-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.callback-form .form-row { margin: 0; }
.callback-form .form-submit { min-height: 42px; margin: 0; white-space: nowrap; }
.callback-form .form-status { grid-column: 1 / -1; }

@media (max-width: 820px) {
  .menu button.scroll-link {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .callback-block { grid-template-columns: 1fr; }
  .callback-toggle { width: 100%; }
  .callback-form { grid-template-columns: 1fr; }
  .callback-form .form-status { grid-column: 1; }
}
