    :root{
      --navy: #153755;
      --ice:  #DEE8F1;
      --orange: #F2953F;

      --bg: #ffffff;
      --surface: #F6FAFD;
      --ink: #071A2A;
      --muted: #314657;
      --line: rgba(21,55,85,.14);

      --header-h: 72px;

      --container: 1120px;
      --radius: 18px;
      --radius-sm: 14px;
      --shadow: 0 14px 40px rgba(0,0,0,.08);
      --shadow-sm: 0 8px 22px rgba(0,0,0,.08);

      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    .skip-link{
      position: absolute;
      left: 12px;
      top: 12px;
      padding: 10px 12px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--bg);
      text-decoration: none;
      transform: translateY(-220%);
      transition: transform .15s ease;
      z-index: 3000;
    }
    .skip-link:focus{ transform: translateY(0); }

    :is(a, button, input, select, textarea, summary):focus-visible{
      outline: 3px solid var(--ink);
      outline-offset: 3px;
      box-shadow: 0 0 0 6px rgba(242,149,63,.22);
      border-radius: 12px;
    }

    a{
      color: inherit;
      text-decoration: underline;
      text-decoration-color: rgba(242,149,63,.55);
      text-decoration-thickness: 2px;
      text-underline-offset: .18em;
    }
    a:hover{ text-decoration-color: rgba(242,149,63,.95); }

    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }
    .section{
      padding: clamp(50px, 5vw, 80px) 0;
    }
    .section.alt{
      background: linear-gradient(180deg, var(--surface), #ffffff);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    /* Header */
    .header{
      position: sticky;
      top: 0;
      z-index: 2000;
      border-bottom: 1px solid rgba(21,55,85,.18);
      background: rgba(222,232,241,.65);
      backdrop-filter: blur(12px);
      transition: background .15s ease, box-shadow .15s ease;
    }
    .header[data-scrolled="true"]{
      background: rgba(222,232,241,.86);
      box-shadow: var(--shadow-sm);
    }
    .header-inner{
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .brand{
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding: 8px 10px;
      border-radius: 14px;
    }
    .brand:hover{ text-decoration: none; }

    .brand-logo{
      height: 40px;
      width: auto;
      display: block;
    }
    .brand-tag{
      color: rgba(21,55,85,.70);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: .01em;
      white-space: nowrap;
    }

    .brand-mark{
      width: 36px;
      height: 36px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 22% 22%, rgba(255,255,255,.55), rgba(255,255,255,0) 58%),
        linear-gradient(135deg, var(--navy), rgba(21,55,85,.78));
      border: 1px solid rgba(7,26,42,.14);
      box-shadow: 0 0 0 4px rgba(21,55,85,.12);
      flex: none;
      position: relative;
      overflow: hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:-40% -30%;
      background: linear-gradient(135deg, rgba(242,149,63,.26), transparent 55%);
      transform: rotate(18deg);
    }

    .brand-text{
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }
    .brand-text strong{
      font-weight: 880;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .brand-text span{
      margin-top: 2px;
      color: var(--muted);
      font-weight: 680;
      font-size: 13px;
      letter-spacing: .01em;
    }

    @media (max-width: 820px){
      .brand-tag{ display: none; }
      .brand-logo{ height: 34px; }
    }

    .nav-desktop{
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px;
      border-radius: 999px;
      border: 1px solid rgba(21,55,85,.16);
      background: rgba(255,255,255,.55);
    }

    .nav-link{
      position: relative;
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 999px;
      color: rgba(21,55,85,.85);
      font-weight: 780;
      font-size: 14px;
      letter-spacing: -0.01em;
      white-space: nowrap;
      transition: background .12s ease, color .12s ease;
    }
    .nav-link:hover{
      background: rgba(21,55,85,.08);
      color: var(--navy);
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left: 14px;
      right: 14px;
      bottom: 6px;
      height: 2px;
      background: linear-gradient(90deg, var(--navy), var(--orange));
      border-radius: 999px;
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .14s ease, opacity .14s ease;
      pointer-events: none;
    }
    .nav-link[aria-current="page"]{
      color: var(--navy);
      background: rgba(21,55,85,.10);
    }
    .nav-link[aria-current="page"]::after{
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-cta{
      display: flex;
      align-items: center;
      gap: 8px;
      flex: none;
    }
    .lang-switch{
      display: flex;
      align-items: center;
    }
    .lang-select{
      border: 1px solid rgba(21,55,85,.22);
      background: rgba(255,255,255,.7);
      color: var(--navy);
      border-radius: 999px;
      padding: 8px 10px;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .08em;
      cursor: pointer;
    }
    .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
      white-space: nowrap;
    }

    .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 12px 16px;
      text-decoration: none;
      font-weight: 900;
      border: 1px solid transparent;
      cursor: pointer;
      line-height: 1;
      user-select: none;
      white-space: nowrap;
    }
    .btn.primary{
      background: var(--orange);
      color: #111;
      border-color: rgba(7,26,42,.12);
      box-shadow: 0 10px 20px rgba(242,149,63,.25);
    }
    .btn.primary:hover{ background: #f5a455; }

    .btn.ghost{
      border-color: rgba(21,55,85,.22);
      background: rgba(255,255,255,.55);
      color: var(--navy);
    }
    .btn.ghost:hover{ background: rgba(21,55,85,.06); }

    .menu-btn{
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(21,55,85,.18);
      background: rgba(255,255,255,.55);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex: none;
    }
    .menu-btn svg{ width: 20px; height: 20px; }
    .header[data-open="true"] .menu-btn{
      background: rgba(21,55,85,.08);
      border-color: rgba(21,55,85,.22);
    }

    .mobile-drawer{
      border-top: 1px solid rgba(21,55,85,.16);
      background: rgba(222,232,241,.92);
      backdrop-filter: blur(12px);

      max-height: 0;
      overflow: clip;
      opacity: 0;
      transform: translateY(-4px);
      pointer-events: none;
      visibility: hidden;
      transition:
        max-height .22s ease,
        opacity .18s ease,
        transform .18s ease,
        visibility 0s linear .22s;
    }
    .header[data-open="true"] .mobile-drawer{
      max-height: 520px;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      visibility: visible;
      transition:
        max-height .22s ease,
        opacity .18s ease,
        transform .18s ease;
    }
    .mobile-nav{
      padding: 12px 0 18px;
      display: grid;
      gap: 6px;
    }
    .mobile-link{
      text-decoration: none;
      padding: 12px 12px;
      border-radius: 14px;
      color: rgba(21,55,85,.88);
      font-weight: 900;
      letter-spacing: -0.01em;
      transition: background .12s ease, color .12s ease;
    }
    .mobile-link:hover{
      background: rgba(21,55,85,.10);
      color: var(--navy);
    }
    .mobile-link[aria-current="page"]{
      background: rgba(21,55,85,.12);
      color: var(--navy);
    }
    .mobile-cta{
      display: grid;
      gap: 10px;
      margin-top: 10px;
      padding: 8px 12px 0;
    }

    /* Hero */
    .hero{
      padding: clamp(34px, 4.2vw, 62px) 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset: -240px -200px auto -200px;
      height: 520px;
      background:
        radial-gradient(closest-side at 20% 35%, rgba(21,55,85,.14), transparent 65%),
        radial-gradient(closest-side at 70% 20%, rgba(242,149,63,.10), transparent 60%),
        radial-gradient(closest-side at 90% 55%, rgba(21,55,85,.10), transparent 60%);
      pointer-events:none;
      z-index: 0;
    }

    .hero-grid{
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: clamp(18px, 4vw, 42px);
      align-items: center;
    }

    .pill{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(21,55,85,.16);
      background: rgba(222,232,241,.75);
      font-weight: 900;
      letter-spacing: .02em;
      font-size: 15px;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .pill .dot{
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--orange));
    }

    h1{
      margin: 0 0 10px;
      font-size: clamp(30px, 4.2vw, 46px);
      letter-spacing: -0.03em;
      line-height: 1.08;
      color: var(--navy);
    }
    .subhead{
      margin: 0;
      color: var(--muted);
      font-size: clamp(16px, 1.5vw, 18px);
      max-width: 62ch;
    }

    .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .mini-list{
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--muted);
      max-width: 62ch;
    }
    .mini-list li{
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
    }
    .check{
      width: 18px; height: 18px;
      border-radius: 6px;
      background: rgba(21,55,85,.10);
      border: 1px solid rgba(21,55,85,.16);
      display: grid;
      place-items: center;
      margin-top: 2px;
      flex: none;
    }
    .check svg{ width: 14px; height: 14px; }
    .check path{ stroke: var(--navy); }

    .hero-image{
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.16);
      background: linear-gradient(180deg, rgba(222,232,241,.95), rgba(255,255,255,.90));
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 14px;
    }
    .hero-image img{
      width: 100%;
      height: auto;
      display: block;
      border-radius: 14px;
    }
    .hero-image .caption{
      margin-top: 10px;
      color: rgba(21,55,85,.78);
      font-size: 13px;
      font-weight: 700;
    }

    .grid-2{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .grid-3{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(21,55,85,.14);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 1px 0 rgba(0,0,0,.02);
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 18px;
      letter-spacing: -0.01em;
      color: var(--navy);
    }
    .card p{
      margin: 0;
      color: var(--muted);
    }

    .kicker{
      margin: 0 0 8px;
      font-weight: 950;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: rgba(21,55,85,.70);
      font-size: 12px;
    }
    h2{
      margin: 0 0 12px;
      font-size: clamp(22px, 2.4vw, 30px);
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--navy);
    }
    .lead{
      margin: 0 0 18px;
      color: var(--muted);
      max-width: 78ch;
    }

    
    /* Combined text + image card (for explanatory media) */
    .media-card{
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.14);
      background: linear-gradient(180deg, rgba(222,232,241,.78), rgba(255,255,255,.92));
      padding: 18px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: center;
      box-shadow: 0 1px 0 rgba(0,0,0,.02);
    }
    .media-text h3{
      margin: 0 0 10px;
      font-size: 20px;
      letter-spacing: -0.01em;
      color: var(--navy);
    }
    .media-text p{
      margin: 0;
      color: var(--muted);
      max-width: 74ch;
    }
    .media-figure{
      margin: 0;
      padding: 12px;
      background: rgba(255,255,255,.90);
      border-radius: 16px;
      border: 1px solid rgba(21,55,85,.10);
    }
    .media-figure img{
      width: 100%;
      height: auto;
      max-height: 420px;
      object-fit: contain;
      display: block;
      border-radius: 12px;
      background: transparent;
    }
    .media-figure figcaption{
      margin-top: 10px;
      color: rgba(21,55,85,.78);
      font-weight: 700;
      font-size: 13px;
    }

    .graph-wrap{
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.14);
      background: linear-gradient(180deg, rgba(222,232,241,.95), rgba(255,255,255,.90));
      box-shadow: var(--shadow);
      overflow:hidden;
      padding: 14px;
    }
    .graph-wrap img{
      width: 100%;
      height: auto;
      display:block;
      border-radius: 14px;
      border: 1px solid rgba(21,55,85,.10);
      background: #0b1420;
    }
    .graph-caption{
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
    }

    

    
    /* Testimonials */
    .testimonials-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 14px;
    }
    .quote-card{
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.16);
      background: linear-gradient(180deg, rgba(222,232,241,.65), rgba(255,255,255,.96));
      padding: 18px;
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
      position: relative;
      overflow: hidden;
    }
    .quote-card::before{
      content:"";
      position:absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: var(--orange);
      opacity: .95;
    }
    .quote-head{
      display:flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
    }
    .quote-logo{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(21,55,85,.14);
      background: rgba(255,255,255,.80);
      display:grid;
      place-items:center;
      font-weight: 950;
      font-size: 12px;
      color: rgba(21,55,85,.70);
      flex: none;
    }
    .quote-logo img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 10px;
      padding: 4px;
    }
    .quote-company{
      font-weight: 950;
      color: var(--navy);
      font-size: 13px;
      line-height: 1.1;
    }
    .quote-meta{
      margin-top: 3px;
      color: rgba(21,55,85,.75);
      font-weight: 900;
      font-size: 12px;
    }
    .quote-text{
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }
    @media (max-width: 760px){
      .calc{ grid-template-columns: 1fr; }
      .partners-grid{ grid-template-columns: 1fr; }
    }

    @media (max-width: 860px){
      .testimonials-grid{ grid-template-columns: 1fr; }
    }

.steps{
      display: grid;
      gap: 12px;
    }
    .step{
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.14);
      background: rgba(255,255,255,.92);
    }
    .step-num{
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(21,55,85,.16);
      background: rgba(222,232,241,.9);
      display: grid;
      place-items: center;
      font-weight: 950;
      letter-spacing: -0.02em;
      color: var(--navy);
    }
    .step h3{ margin: 0 0 6px; color: var(--navy); }
    .step p{ margin: 0; color: var(--muted); }

    .chips{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }
    .chip{
      border: 1px solid rgba(21,55,85,.14);
      background: rgba(255,255,255,.75);
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 900;
      color: rgba(21,55,85,.85);
      font-size: 13px;
      text-decoration: none;
    }

    .calc{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .calc-heading{
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 22px;
      letter-spacing: -0.02em;
    }
    .form{
      display: grid;
      gap: 10px;
    }
    .field{
      display: grid;
      gap: 6px;
    }
    .range-head{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .range-value{
      font-weight: 900;
      color: var(--navy);
      font-variant-numeric: tabular-nums;
      font-size: 14px;
    }
    label{
      font-weight: 900;
      font-size: 13px;
      color: rgba(21,55,85,.80);
    }
    input{
      width: 100%;
      border: 1px solid rgba(21,55,85,.16);
      border-radius: 12px;
      padding: 12px 12px;
      font: inherit;
      background: rgba(255,255,255,.92);
    }
    input::placeholder{ color: #8a97a3; }
    input[type="range"]{
      padding: 0;
      border: none;
      height: 6px;
      background: rgba(21,55,85,.16);
      border-radius: 999px;
      appearance: none;
      -webkit-appearance: none;
    }
    input[type="range"]::-webkit-slider-runnable-track{
      height: 6px;
      background: transparent;
    }
    input[type="range"]::-webkit-slider-thumb{
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,.15);
      margin-top: -6px;
    }
    input[type="range"]::-moz-range-track{
      height: 6px;
      background: rgba(21,55,85,.16);
      border-radius: 999px;
    }
    input[type="range"]::-moz-range-thumb{
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,.15);
    }

    .calc-out{
      border-radius: var(--radius);
      border: 1px solid rgba(21,55,85,.16);
      background: linear-gradient(180deg, rgba(222,232,241,.95), rgba(255,255,255,.85));
      padding: 16px;
      box-shadow: var(--shadow-sm);
    }
    .calc-out h3{ margin: 0 0 10px; color: var(--navy); }
    .metric{
      display: grid;
      gap: 6px;
      padding: 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(21,55,85,.12);
      margin-bottom: 10px;
    }
    .metric:last-child{ margin-bottom: 0; }
    .metric .label{
      color: rgba(21,55,85,.70);
      font-weight: 950;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .10em;
    }
    .metric .value{
      font-weight: 950;
      font-size: 22px;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
      color: var(--navy);
    }
    .fine{
      color: var(--muted);
      font-size: 13px;
      margin-top: 10px;
    }

    .footer-banner{
      background: #0b2a4a;
      color: #f4f7fb;
      padding: 48px 0 28px;
      border-top: none;
    }
    .footer-banner a{
      color: #f4f7fb;
      text-decoration: none;
    }
    .footer-banner a:hover{ text-decoration: underline; text-underline-offset: .15em; }
    .footer-banner-grid{
      display: grid;
      grid-template-columns: 1.05fr 1.4fr 1.1fr;
      gap: 28px;
      align-items: start;
    }
    .footer-logo-large{
      height: 48px;
      width: auto;
      display: block;
    }
    .footer-address{
      margin: 12px 0 0;
      line-height: 1.6;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }
    .footer-about h3,
    .footer-partners h3{
      margin: 0 0 10px;
      font-size: 20px;
      letter-spacing: -0.02em;
      color: #fff;
    }
    .footer-about p{
      margin: 0 0 10px;
      line-height: 1.6;
      color: rgba(255,255,255,.84);
    }
    .footer-about-cta{
      margin-top: 12px;
      font-weight: 900;
      color: #fff;
    }
    .partners-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 22px;
      align-items: center;
    }
    .partner-logo{
      max-height: 52px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      opacity: .9;
    }
    .partner-logo.mikra{
      max-height: 38px;
    }
    .partner-logo.tall{
      max-height: 92px;
    }
    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 26px;
      padding-top: 16px;
    }
    .footer-banner .small{
      color: rgba(255,255,255,.68);
      font-size: 13px;
    }

    
    /* Mild hover interactions (desktop only) */
    .card,
    .step,
    .media-card{
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      will-change: transform;
    }

    @media (hover:hover) and (pointer:fine){
      /* Informational cards */
      #problem .card:hover,
      #solution .grid-3 .card:hover,
      #features .card:hover,
      #support .card:hover,
      #solution .media-card:hover{
        transform: translateY(-2px);
        box-shadow: 0 18px 46px rgba(0,0,0,.10);
        border-color: rgba(21,55,85,.22);
      }

      #problem .card:hover,
      #solution .grid-3 .card:hover,
      #features .card:hover,
      #support .card:hover{
        background: rgba(255,255,255,.98);
      }

      /* Steps: a bit subtler */
      #how .step:hover{
        transform: translateY(-1px);
        box-shadow: 0 14px 34px rgba(0,0,0,.10);
        border-color: rgba(21,55,85,.20);
        background: rgba(255,255,255,.96);
      }

      /* Media card: gentle highlight */
      #solution .media-card:hover{
        background: linear-gradient(180deg, rgba(222,232,241,.90), rgba(255,255,255,.94));
      }
    }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      
      .footer-banner-grid{ grid-template-columns: 1fr; }
      .partners-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .media-card{ grid-template-columns: 1fr; }
      }
    @media (max-width: 760px){
      .calc{ grid-template-columns: 1fr; }
    }

    @media (max-width: 860px){
      .nav-desktop{ display:none; }
      .nav-cta{ display:none; }
      .menu-btn{ display:inline-flex; }
    }
    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior: auto; }
      *{ transition: none !important; }
    }

    :is(section, footer){ scroll-margin-top: calc(var(--header-h) + 18px); }
  
