    :root {
      --green-950: #0a160d;
      --green-900: #102914;
      --green-800: #183d13;
      --green-700: #2f641d;
      --green-600: #4f8d2d;
      --lime: #8CC63F;
      --lime-2: #b8ff66;
      --white: #f6f7f2;
      --muted: rgba(246, 247, 242, 0.72);
      --dark-card: rgba(8, 18, 10, 0.86);
      --glass: rgba(255, 255, 255, 0.20);
      --line: rgba(255, 255, 255, 0.08);
      --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
      --radius-xl: 34px;
      --radius-lg: 22px;
      --container: 1180px;
      --font-primary: "Quasimoda", "Montserrat", Arial, sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Quasimoda", "Montserrat", Arial, sans-serif;
      background: #151515;
      color: var(--white);
      overflow-x: hidden;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      margin: 0 auto;
      background: var(--green-950);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
    }

    .container {
      width: min(calc(100% - clamp(32px, 8vw, 120px)), var(--container));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--lime);
      font-weight: bold;
      font-size: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 10px;
      height: 10px;
      border: 3px solid var(--lime);
      border-radius: 50%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      letter-spacing: 0.02em;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(139, 211, 77, .25);
    }

    .btn-primary {
      background: var(--lime);
      color: #fff;
      padding: 14px 26px;
      font-size: 13px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,.36);
      color: var(--white);
      background: transparent;
      padding: 13px 28px;
      font-size: 16px;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: #F5F5F0;
      backdrop-filter: blur(14px);
      color: #0F140D;
      border-bottom: 1px solid rgba(15, 26, 16, .08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 0;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      height: 38px;
      line-height: 1;
    }

    .logo img {
      width: 150px;
      height: auto;
      display: block;
    }

    .footer .logo img {
      width: 158px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      font-size: 17px;
      font-weight: normal;
      color: #0F140D;
    }

    .nav-links a {
      opacity: .92;
    }

    .nav-links a:hover {
      color: var(--green-600);
    }

    .nav-links .btn-primary {
      background: #8CC63F;
      border-radius: 20px;
      font-weight: bold;
      color: #0F140D;
      padding: 10px 26px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,.12);
      background: transparent;
      color: #132016;
      font-size: 24px;
    }

    /* Hero */
    .hero {
      min-height: 650px;
      position: relative;
      display: grid;
      align-items: center;
      background:
        radial-gradient(circle at 28% 47%, #6D9C2E 0, #344D12 50%, transparent 91%), 
        radial-gradient(circle at 82% 75%, #6D9C2E 0, transparent 49%),
        linear-gradient(136deg, #244b17 0%, #6D9C2E 42%, #10250f 100%);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 90px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 72px;
      align-items: center;
      padding: 80px 0 80px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      background: rgba(255, 255, 255, .26);
      border-radius: 999px;
      padding: 6px 20px;
      font-size: 16px;
      font-weight: normal;
      margin-bottom: 24px;
    }

    .hero-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      background: #FF0000;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(255,100,100,.16);
    }

    .hero h1,
    .section-title {
      font-weight: 900;
      line-height: .94;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: rgba(245,245,240,1);
    }

    .hero h1 {
      font-size: clamp(46px, 6vw, 65px);
    }

    .hero-copy {
      color: rgba(245,245,240,.65);
      font-size: clamp(17px, 2vw, 24px);
      line-height: 1.16;
      margin: 23px 0;
      max-width: 560px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .link-arrow {
      color: rgba(255,255,255, 1);
      font-size: 13px;
      font-weight: 500;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .stat-card,
    .hero-banner {
      background: rgba(255, 255, 255, .30);
      border-top: 2px solid #8CC63F;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
      border-radius: 20px;
      backdrop-filter: blur(6px);
    }

    .stat-card {
      padding: 20px 24px;
      min-height: 116px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stat-number {
      font-weight: 600;
      font-size: clamp(40px, 5vw, 50px);
      line-height: .75;
      letter-spacing: 1.44px;
    }

    .stat-card p {
      font-size: 17px;
      line-height: 1.25;
      margin-top: 14px;
      color: rgba(255,255,255, 1);
      max-width: 230px;
    }

    .hero-banner {
      margin-top: 20px;
      padding: 30px 28px;
      position: relative;
      overflow: hidden;
    }

    .hero-banner .tag-sec {
      padding: 10px;
    }

    .hero-banner .tag {
      position: absolute;
      top: 14px;
      right: 18px;
      background: rgba(192, 57, 43, 0.20);
      stroke: rgba(192, 57, 43, 0.40);
      color: #fff;
      border-radius: 999px;
      padding: 5px 12px;
      font-size: 10px;
      font-weight: bold;
      letter-spacing: 1.35px;
    }

    .hero-banner h2 {
      font-size: clamp(20px, 3vw, 23px);
      line-height: 1.05;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1.44px;
    }

    .hero-banner p {
      color: rgba(255,255,255, 1);
      font-size: 16px;
      margin-top: 6px;
      font-weight: 500;
    }

    /* Sections */
    .section {
      position: relative;
      overflow: hidden;
    }

    .risk {
      padding: 150px 0 100px;
      background: linear-gradient(0deg, #3C3C3B 0%, #626261 48%, #A2A29F 100%);
    }

    .risk .section-title {
      font-size: clamp(39px, 5vw, 58px);
      max-width: 700px;
      font-style: italic;
      letter-spacing: 1.92px;
    }

    .section-lead {
      color: rgba(255, 255, 255, 1);
      max-width: 650px;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.05;
      margin-top: 16px;
    }

    .risk-cards {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .risk-card {
      background: rgba(20, 28, 18, 0.80);
      stroke: rgba(90, 173, 63, 0.1);
      padding: 28px 26px 26px;
      min-height: 150px;
      border-bottom: 4px solid;
      border-image: linear-gradient(90deg, #5AAD3F 0%, #141C12 100%) 1;
      box-shadow: var(--shadow);
    }

    .icon {
      font-size: 22px;
      margin-bottom: 18px;
      line-height: 1;
    }

    .risk-card h3,
    .situation-card h3 {
      color: #F5F5F0;
      font-size: 16px;
      line-height: 1.1;
      margin-bottom: 14px;
      letter-spacing: .68px;
      font-weight: bold;
    }

    .feature-card h3 {
      color: #F5F5F0;
      font-size: 16px;
      line-height: 1.1;
      margin-bottom: 3px;
      letter-spacing: .68px;
      font-weight: bold;
    }

    .risk-card p,
    .situation-card p,
    .feature-card p {
      color: #F5F5F0;
      font-size: 16px;
      line-height: 1.18;
    }

    .situations {
      padding: 150px 0 135px;
      background: linear-gradient(0deg, #344D12 46%, #79B32A 100%);
    }

    .situations .eyebrow::before,
    .technology .eyebrow::before,
    .how .eyebrow::before {
      display: none;
    }

    .situations .section-title {
      font-size: clamp(38px, 5vw, 58px);
      font-style: italic;
      max-width: 700px;
      letter-spacing: 1.92px;
    }

    .situations .section-lead {
      color: #fff;
      max-width: 550px;
      margin-top: 8px;
      font-weight: 100;
    }

    .situations .section-lead b {
      font-weight: bold;
    }

    .situations-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }

    .situation-card {
      min-height: 185px;
      padding: 26px 20px 24px;
      background: rgba(140, 198, 63, 0.11);
      stroke: #000000;
      border-radius: 35px 35px;
      border: 1px solid rgba(255,255,255,.06);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }

    .situation-card .icon {
      margin-bottom: 16px;
    }

    .how {
      padding: 84px 0 72px;
      color: #20341b;
      background:
        linear-gradient(90deg, rgba(239,246,239,.96) 0%, rgba(239,246,239,.92) 55%, rgba(239,246,239,.60) 100%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.96), transparent 36%),
        #eef4ee;
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      align-items: center;
      gap: 54px;
      padding: 34px 0;
    }

    .how .section-title {
      color: #334C11;
      font-size: clamp(38px, 5vw, 58px);
      font-style: italic;
      max-width: 650px;
      letter-spacing: 1.92px;
    }

    .how .section-lead {
      color: rgba(39, 39, 39, .60);
      max-width: 380px;
      font-weight: normal;
      margin-top: 10px;
      margin-bottom: 24px;
    }

    .steps {
      display: grid;
      gap: 0;
    }

    .step {
      display: grid;
      grid-template-columns: 70px 1fr;
      padding: 10px 0;
      border-bottom: 1px solid rgba(36,64,25,.09);
    }

    .step:last-child {
      border-bottom: 0;
    }

    .step-number {
      color: var(--lime);
      font-weight: bold;
      font-size: 38px;
      line-height: .95;
    }

    .step h3 {
      color: var(--lime);
      font-weight: bold;
      font-size: 16px;
      letter-spacing: 1.09px;
    }

    .step p {
      color: rgba(45,45,45,.60);
      font-size: 16px;
    }

    .visual-card {
      min-height: 520px;
      position: relative;
      border-radius: 36px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.12)),
        url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1100&q=80") center / cover;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(44,88,30,.22);
    }

    .device-panel {
      position: absolute;
      left: 52px;
      bottom: 54px;
      width: 290px;
      height: 180px;
      background: linear-gradient(135deg, rgba(139,211,77,.85), rgba(63,126,43,.88));
      border-radius: 0 28px 28px 28px;
    }

    .device {
      position: absolute;
      left: 62px;
      bottom: 128px;
      width: 74px;
      height: 132px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 20px 50px rgba(0,0,0,.18);
      display: grid;
      place-items: center;
    }

    .device::before {
      content: "";
      width: 22px;
      height: 22px;
      background: #dc605e;
      border-radius: 50%;
      box-shadow: 0 34px 0 #78bfe4, 0 54px 0 #eed17a;
    }

    .badge-card {
      position: absolute;
      left: 2px;
      bottom: 128px;
      width: 60px;
      height: 88px;
      border-radius: 10px;
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }

    .badge-card::before {
      content: "";
      position: absolute;
      inset: 12px 15px auto;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c5e2d7, #fff);
    }

    .photo-bubble,
    .photo-bubble.small {
      position: absolute;
      border-radius: 50%;
      border: 7px solid #6aa23b;
      box-shadow: 0 18px 50px rgba(0,0,0,.20);
      background-position: center;
      background-size: cover;
      background-color: #d7e5d1;
    }

    .photo-bubble {
      right: 32px;
      top: 170px;
      width: 155px;
      height: 155px;
      background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=500&q=80");
    }

    .photo-bubble.small {
      right: 180px;
      bottom: 190px;
      width: 112px;
      height: 112px;
      background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=500&q=80");
    }

    .map-card {
      position: absolute;
      right: 42px;
      bottom: 52px;
      width: 280px;
      height: 160px;
      border-radius: 20px;
      background:
        linear-gradient(30deg, transparent 47%, rgba(255,255,255,.35) 48% 52%, transparent 53%),
        linear-gradient(145deg, #f5f4e8, #b7d89a);
      transform: perspective(600px) rotateX(55deg) rotateZ(-8deg);
      box-shadow: 0 30px 50px rgba(0,0,0,.20);
    }

    .technology {
      padding: 30px 0 135px;
      background: radial-gradient(circle at 100% 100%, #777775 0%, #3C3C3B 60%);
    }

    .technology-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      align-items: center;
      gap: 52px;
    }

    .technology .section-title {
      font-size: clamp(38px, 5vw, 58px);
      max-width: 800px;
      font-style: italic;
      letter-spacing: 1.92px;
    }

    .technology .section-lead {
      max-width: 370px;
      font-weight: lighter;
    }

    .feature-list {
      display: grid;
      gap: 18px;
      margin-top: 46px;
    }

    .feature-card {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 18px;
      align-items: center;
      background: rgba(15, 20, 13, 0.8);
      padding: 18px 20px;
      min-height: 82px;
      box-shadow: var(--shadow);

      border-left: 1px solid rgba(90,173,63,.12);
    }

    .dot {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: #CFFF70;
      box-shadow: 0 0 0 6px rgba(184,255,102,.06);
    }

    .device-features {
      background: rgba(58, 125, 44, 0.1);
      border: 1px solid rgba(90, 173, 63,.20);
      border-radius: 30px;
      padding: 48px 40px;
      min-height: 410px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow);
    }

    .device-features h2 {
      color: var(--lime);
      font-size: clamp(25px, 3vw, 32px);
      letter-spacing: .51px;
      font-weight: bold;
      margin-bottom: 34px;
    }

    .check-list {
      display: grid;
      gap: 22px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.76);
      font-size: 15px;
      padding-bottom: 2px;
      border-bottom: 1px solid rgba(255,255,255,.03);
    }

    .check {
      width: 16px;
      height: 16px;
      display: grid;
      place-items: center;
      color: #214217;
      background: var(--lime);
      font-size: 12px;
      font-weight: 900;
      border-radius: 2px;
      flex: 0 0 auto;
    }

    .cta {
      padding: 78px 0 0;
      text-align: center;
      background: var(--green-900);
    }

    .cta-content {
      padding: 0 0 82px;
    }

    .cta .eyebrow {
      color: var(--lime);
      justify-content: center;
      margin-bottom: 10px;
    }

    .cta .eyebrow::before {
      display: none;
    }

    .cta h2 {
      font-size: clamp(42px, 6vw, 70px);
      line-height: .88;
      letter-spacing: 2.64px;
      text-transform: uppercase;
      margin: 0 auto 18px;
      max-width: 850px;
      font-weight: bold;
    }

    .cta p {
      color: rgba(255,255,255,.78);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.08;
      max-width: 530px;
      margin: 0 auto 36px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .contact-line {
      display: flex;
      justify-content: center;
      gap: 56px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.42);
      font-size: 11px;
      margin-top: 18px;
    }

    .footer {
      min-height: 66px;
      background: #071009;
      display: grid;
      align-items: center;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
      color: rgba(255,255,255,.20);
      font-size: 10px;
      letter-spacing: .02em;
    }

    .footer-tagline {
      justify-self: end;
      color: rgba(140, 198, 63, 0.50);
      text-transform: uppercase;
      letter-spacing: 1.12px;
      font-weight: 700;
    }

    .visual-card.visual-image {
      min-height: auto;
      position: relative;
      border-radius: 0;
      background: transparent;
      overflow: visible;
      box-shadow: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .visual-card.visual-image img {
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .how-grid,
      .technology-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .hero {
        min-height: auto;
      }

      .hero-copy,
      .section-lead,
      .hero h1,
      .risk .section-title,
      .situations .section-title,
      .technology .section-title {
        max-width: 760px;
      }

      .stats-wrap {
        max-width: 760px;
      }

      .risk-cards {
        grid-template-columns: 1fr;
      }

      .situations-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .visual-card {
        min-height: 470px;
      }
    }

    @media (max-width: 780px) {
      .container {
        width: min(calc(100% - 32px), var(--container));
      }

      .nav {
        min-height: 76.8px;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: fixed;
        top: 76.8px;
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: rgba(239, 242, 236, .98);
        padding: 8px 16px 18px;
        border-bottom: 1px solid rgba(0,0,0,.10);
      }

      .site-header:focus-within .nav-links,
      .site-header:hover .nav-links {
        display: grid;
      }

      .nav-links a,
      .nav-links .btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
      }

      .hero-grid {
        padding: 66px 0 56px;
      }

      .stats-grid,
      .situations-grid {
        grid-template-columns: 1fr;
      }

      .risk,
      .situations,
      .technology {
        padding: 58px 0;
      }

      .how {
        padding: 56px 0;
      }

      .how-grid {
        padding: 40px 0;
      }

      .step {
        grid-template-columns: 54px 1fr;
      }

      .step-number {
        font-size: 30px;
      }

      .visual-card {
        min-height: 380px;
        border-radius: 28px;
      }

      .device-panel {
        left: 30px;
        bottom: 40px;
        width: 220px;
        height: 140px;
      }

      .device {
        left: 40px;
        bottom: 100px;
        width: 58px;
        height: 104px;
      }

      .badge-card {
        display: none;
      }

      .photo-bubble {
        width: 118px;
        height: 118px;
        right: 20px;
        top: 110px;
      }

      .photo-bubble.small {
        width: 84px;
        height: 84px;
        right: 125px;
        bottom: 145px;
      }

      .map-card {
        width: 215px;
        height: 125px;
        right: 14px;
        bottom: 32px;
      }

      .device-features {
        padding: 34px 24px;
        min-height: auto;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 18px 0;
      }

      .footer-tagline {
        justify-self: center;
      }
    }

    @media (max-width: 520px) {
      .hero h1,
      .cta h2 {
        font-size: 42px;
      }

      .section-title,
      .risk .section-title,
      .situations .section-title,
      .technology .section-title,
      .how .section-title {
        font-size: 36px;
      }

      .hero-actions,
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
      }

      .stat-card {
        min-height: 104px;
      }

      .hero-banner .tag {
        position: static;
        display: inline-flex;
        margin-bottom: 8px;
      }

      .contact-line {
        gap: 14px;
        flex-direction: column;
      }
    }

/* =========================================================
   Responsividade final
   ========================================================= */

html {
  scroll-padding-top: 76.8px;
}

.site-header {
  min-height: 76.8px;
}

.nav {
  min-height: 76.8px;
  padding: 0;
}

.logo img {
  width: clamp(132px, 14vw, 150px);
}

.nav-links {
  gap: clamp(18px, 2vw, 36px);
  white-space: nowrap;
}

.hero-grid,
.how-grid,
.technology-grid,
.risk-cards,
.situations-grid,
.stats-grid {
  min-width: 0;
}

.hero-grid > *,
.how-grid > *,
.technology-grid > *,
.stats-wrap,
.stat-card,
.situation-card,
.risk-card,
.feature-card,
.device-features {
  min-width: 0;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
  }

  .nav-links {
    font-size: 15px;
    gap: 20px;
  }

  .nav-links .btn-primary {
    padding-inline: 20px;
  }

  .situations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .risk-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 70;
  }

  .nav-links {
    position: fixed;
    top: 76.8px;
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 16px 18px;
    background: rgba(245, 245, 240, .98);
    border-top: 1px solid rgba(15, 20, 13, .08);
    border-bottom: 1px solid rgba(15, 20, 13, .12);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .14);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

  .site-header.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    border-radius: 18px;
  }

  .nav-links .btn-primary {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .how-grid,
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-grid {
    padding: 64px 0;
  }

  .stats-wrap {
    width: 100%;
    max-width: 760px;
  }

  .risk,
  .situations {
    padding: 90px 0;
  }

  .technology {
    padding: 72px 0 90px;
  }

  .how {
    padding: 72px 0;
  }

  .risk-cards {
    grid-template-columns: 1fr;
  }

  .situations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-grid {
    margin-top: 24px;
  }

  .feature-list {
    margin-top: 0;
  }

  .visual-card.visual-image {
    justify-content: flex-start;
  }

  .visual-card.visual-image img {
    width: min(100%, 620px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero-pill {
    font-size: 14px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
    line-height: .94;
  }

  .section-title,
  .risk .section-title,
  .situations .section-title,
  .technology .section-title,
  .how .section-title {
    font-size: clamp(32px, 10vw, 42px);
    line-height: .96;
    letter-spacing: .8px;
  }

  .hero-copy,
  .section-lead,
  .cta p {
    font-size: 16px;
    line-height: 1.28;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .stats-grid,
  .situations-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-card {
    min-height: 100px;
    padding: 18px 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-card p,
  .hero-banner p,
  .risk-card p,
  .situation-card p,
  .feature-card p,
  .step p {
    font-size: 15px;
    line-height: 1.3;
  }

  .hero-banner {
    padding: 22px 20px;
  }

  .hero-banner .tag-sec {
    padding: 0;
  }

  .hero-banner .tag {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .risk,
  .situations,
  .technology,
  .how {
    padding: 56px 0;
  }

  .how-grid {
    padding: 0;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .step-number {
    font-size: 28px;
  }

  .visual-card.visual-image {
    justify-content: center;
  }

  .visual-card.visual-image img {
    width: min(100%, 420px);
  }

  .situation-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 26px;
  }

  .risk-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .feature-card {
    grid-template-columns: 20px 1fr;
    gap: 12px;
    padding: 16px;
    align-items: start;
  }

  .dot {
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }

  .device-features {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .device-features h2 {
    margin-bottom: 24px;
  }

  .check-list {
    gap: 16px;
  }

  .check-item {
    align-items: flex-start;
    line-height: 1.35;
  }

  .cta {
    padding-top: 58px;
  }

  .cta-content {
    padding-bottom: 58px;
  }

  .cta h2 {
    font-size: clamp(36px, 12vw, 48px);
    line-height: .94;
    letter-spacing: 1px;
  }

  .contact-line {
    gap: 12px;
    flex-direction: column;
    line-height: 1.45;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 20px 0;
  }

  .footer-tagline {
    justify-self: center;
  }

  .footer .logo img {
    width: 142px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .logo img {
    width: 126px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-title,
  .risk .section-title,
  .situations .section-title,
  .technology .section-title,
  .how .section-title {
    font-size: 31px;
  }

  .hero-banner h2 {
    font-size: 19px;
  }

  .nav-links {
    padding-inline: 12px;
  }
}
