:root {
      --navy-950: #04121f;
      --navy-900: #071b2d;
      --navy-800: #0b2b45;
      --blue-600: #0d6efd;
      --blue-500: #2d88ff;
      --cyan-400: #40c6d9;
      --mint-400: #67dbb8;
      --mint-100: #dcf8ef;
      --ink: #102235;
      --muted: #5e6e7d;
      --line: #dbe5eb;
      --paper: #f5f8fa;
      --white: #ffffff;
      --shadow-sm: 0 12px 32px rgba(7, 27, 45, 0.08);
      --shadow-lg: 0 26px 80px rgba(4, 18, 31, 0.18);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 34px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    img, svg { display: block; max-width: 100%; }
    section { scroll-margin-top: 92px; }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--blue-600);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 10px;
      background: currentColor;
    }

    .display {
      margin: 0;
      font-size: clamp(42px, 6vw, 78px);
      line-height: .98;
      letter-spacing: -.055em;
      font-weight: 760;
    }
    .section-title {
      max-width: 760px;
      margin: 0;
      font-size: clamp(32px, 4.4vw, 54px);
      line-height: 1.03;
      letter-spacing: -.045em;
      font-weight: 740;
    }
    .section-copy {
      max-width: 680px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 20px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 750;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
      box-shadow: 0 14px 30px rgba(13, 110, 253, .24);
    }
    .btn-primary:hover { box-shadow: 0 18px 38px rgba(13, 110, 253, .32); }
    .btn-secondary {
      color: var(--white);
      border-color: rgba(255,255,255,.25);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(10px);
    }
    .btn-light {
      color: var(--navy-900);
      border-color: var(--line);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .arrow { transition: transform .2s ease; }
    .btn:hover .arrow { transform: translateX(4px); }

    /* HEADER */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .site-header.scrolled {
      background: rgba(255,255,255,.92);
      border-color: rgba(16,34,53,.08);
      box-shadow: 0 8px 30px rgba(7,27,45,.06);
      backdrop-filter: blur(18px);
    }
    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
    }
    .site-header.scrolled .brand { color: var(--navy-900); }
    /* LOGO OFICIAL
       Não recriamos o símbolo. O site carrega o arquivo original da marca.
       Salve a logo como "logo-inne-oficial.png" na mesma pasta do HTML. */
    .brand-logo-shell {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 130px;
      height: 90px;
      padding: 7px 12px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 12px;
      overflow: hidden;
      background: rgba(255,255,255,.98);
      box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }
    .site-header.scrolled .brand-logo-shell {
      border-color: rgba(7,27,45,.10);
      box-shadow: 0 10px 24px rgba(7,27,45,.08);
    }
    .brand-logo-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .brand-fallback {
      color: #171010;
      text-align: left;
      line-height: 1;
      white-space: nowrap;
    }
    .brand-fallback strong {
      display: block;
      font-size: 27px;
      letter-spacing: -.06em;
      font-weight: 900;
    }
    .brand-fallback small {
      display: block;
      margin-top: 5px;
      font-size: 7px;
      letter-spacing: .18em;
      font-weight: 700;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: rgba(255,255,255,.78);
      font-size: 14px;
      font-weight: 650;
    }
    .site-header.scrolled .nav-links { color: #3f5162; }
    .nav-links a { position: relative; }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      border-radius: 9px;
      background: var(--mint-400);
      transition: right .2s ease;
    }
    .nav-links a:hover::after { right: 0; }
    .nav-cta {
      min-height: 44px;
      padding: 0 17px;
      font-size: 14px;
    }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      cursor: pointer;
    }
    .site-header.scrolled .menu-toggle {
      border-color: var(--line);
      background: var(--white);
    }
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 8px;
      background: var(--white);
      transition: transform .2s ease, opacity .2s ease;
    }
    .site-header.scrolled .menu-toggle span,
    .site-header.scrolled .menu-toggle::before,
    .site-header.scrolled .menu-toggle::after { background: var(--navy-900); }
    .menu-toggle.active span { opacity: 0; }
    .menu-toggle.active::before { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 870px;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 75% 35%, rgba(64,198,217,.23), transparent 25%),
        radial-gradient(circle at 23% 30%, rgba(45,136,255,.18), transparent 30%),
        linear-gradient(140deg, var(--navy-950) 0%, var(--navy-900) 52%, #093c55 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .25;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(to bottom, black, transparent 88%);
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 600px;
      height: 600px;
      right: -180px;
      top: 120px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 870px;
      display: grid;
      grid-template-columns: 1.06fr .94fr;
      align-items: center;
      gap: 70px;
      padding-top: 105px;
    }
    .hero-copy { max-width: 710px; }
    .hero .eyebrow { color: var(--mint-400); }
    .hero .display span {
      color: transparent;
      background: linear-gradient(120deg, var(--white), #9ce7d2 60%, #72c8ff);
      -webkit-background-clip: text;
      background-clip: text;
    }
    .hero-lead {
      max-width: 650px;
      margin: 28px 0 0;
      color: rgba(255,255,255,.72);
      font-size: clamp(18px, 2vw, 22px);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 36px;
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      margin-top: 40px;
      color: rgba(255,255,255,.68);
      font-size: 13px;
      font-weight: 650;
    }
    .hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-trust i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mint-400);
      box-shadow: 0 0 0 5px rgba(103,219,184,.12);
    }

    .hero-visual {
      position: relative;
      min-height: 580px;
    }
    .orbit {
      position: absolute;
      inset: 46px 14px 50px 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      animation: spin 28s linear infinite;
    }
    .orbit::before,
    .orbit::after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--mint-400);
      box-shadow: 0 0 0 8px rgba(103,219,184,.12);
    }
    .orbit::before { left: 12%; top: 10%; }
    .orbit::after { right: 4%; bottom: 18%; }
    @keyframes spin { to { transform: rotate(360deg); } }

    .dashboard {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(100%, 480px);
      transform: translate(-50%, -50%) rotate(1.3deg);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 28px;
      padding: 18px;
      background: rgba(9,34,52,.74);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(18px);
    }
    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 5px 4px 16px;
    }
    .dashboard-top strong { font-size: 14px; }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #c9f8eb;
      background: rgba(103,219,184,.13);
      font-size: 11px;
      font-weight: 750;
    }
    .status-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mint-400);
    }
    .dashboard-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }
    .metric-card {
      min-height: 126px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      padding: 17px;
      background: rgba(255,255,255,.055);
    }
    .metric-card small {
      color: rgba(255,255,255,.55);
      font-size: 11px;
    }
    .metric-card b {
      display: block;
      margin-top: 8px;
      font-size: 29px;
      letter-spacing: -.045em;
    }
    .metric-card em {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      color: #b9f5e3;
      font-size: 11px;
      font-style: normal;
    }
    .chart-card {
      grid-column: 1 / -1;
      min-height: 190px;
      overflow: hidden;
    }
    .chart-bars {
      height: 104px;
      display: flex;
      align-items: end;
      gap: 10px;
      margin-top: 18px;
      padding-top: 6px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .chart-bars i {
      flex: 1;
      min-width: 10px;
      border-radius: 6px 6px 0 0;
      background: linear-gradient(180deg, var(--cyan-400), rgba(64,198,217,.24));
      animation: breathe 3s ease-in-out infinite alternate;
    }
    .chart-bars i:nth-child(1) { height: 33%; animation-delay: .1s; }
    .chart-bars i:nth-child(2) { height: 48%; animation-delay: .3s; }
    .chart-bars i:nth-child(3) { height: 40%; animation-delay: .5s; }
    .chart-bars i:nth-child(4) { height: 68%; animation-delay: .7s; }
    .chart-bars i:nth-child(5) { height: 54%; animation-delay: .9s; }
    .chart-bars i:nth-child(6) { height: 79%; animation-delay: 1.1s; }
    .chart-bars i:nth-child(7) { height: 63%; animation-delay: 1.3s; }
    .chart-bars i:nth-child(8) { height: 92%; animation-delay: 1.5s; }
    @keyframes breathe { to { filter: brightness(1.25); transform: scaleY(.94); transform-origin: bottom; } }
    .floating-card {
      position: absolute;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 17px;
      padding: 14px 16px;
      background: rgba(7,27,45,.83);
      box-shadow: 0 18px 50px rgba(0,0,0,.22);
      backdrop-filter: blur(15px);
      animation: float 5s ease-in-out infinite;
    }
    .floating-card strong { display: block; font-size: 13px; }
    .floating-card small { color: rgba(255,255,255,.56); }
    .floating-card.a { left: -16px; top: 110px; }
    .floating-card.b { right: -12px; bottom: 95px; animation-delay: 1.2s; }
    @keyframes float { 50% { transform: translateY(-12px); } }

    /* STAT STRIP */
    .signal-strip {
      position: relative;
      z-index: 4;
      margin-top: -44px;
    }
    .signal-box {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid rgba(16,34,53,.08);
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow-lg);
    }
    .signal-item {
      position: relative;
      padding: 28px 30px;
    }
    .signal-item + .signal-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 23%;
      bottom: 23%;
      width: 1px;
      background: var(--line);
    }
    .signal-item strong {
      display: block;
      font-size: 16px;
      letter-spacing: -.02em;
    }
    .signal-item span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    /* PROBLEM */
    .problem {
      padding: 150px 0 120px;
      background: linear-gradient(180deg, #fff, var(--paper));
    }
    .problem-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 90px;
      align-items: start;
    }
    .problem-intro { position: sticky; top: 125px; }
    .problem-list { display: grid; gap: 14px; }
    .problem-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      padding: 27px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.78);
      box-shadow: 0 8px 26px rgba(7,27,45,.045);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .problem-card:hover {
      transform: translateX(-6px);
      border-color: rgba(13,110,253,.28);
      box-shadow: var(--shadow-sm);
    }
    .problem-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: var(--blue-600);
      background: #eaf3ff;
      font-weight: 800;
    }
    .problem-card h3 { margin: 1px 0 8px; font-size: 19px; letter-spacing: -.025em; }
    .problem-card p { margin: 0; color: var(--muted); }

    /* SERVICES */
    .services {
      padding: 120px 0;
      background: var(--navy-900);
      color: var(--white);
    }
    .services-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 54px;
    }
    .services .eyebrow { color: var(--mint-400); }
    .services .section-copy { color: rgba(255,255,255,.63); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 17px;
    }
    .service-card {
      position: relative;
      min-height: 285px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: var(--radius-md);
      padding: 27px;
      background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      transition: transform .3s ease, border-color .3s ease, background .3s ease;
    }
    .service-card::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      right: -80px;
      bottom: -80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(103,219,184,.28), transparent 68%);
      transition: transform .35s ease;
    }
    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(103,219,184,.34);
      background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.05));
    }
    .service-card:hover::after { transform: scale(1.6); }
    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--mint-400);
      background: rgba(103,219,184,.10);
    }
    .service-icon svg { width: 25px; height: 25px; }
    .service-card h3 {
      margin: 27px 0 10px;
      font-size: 22px;
      letter-spacing: -.035em;
    }
    .service-card p {
      margin: 0;
      color: rgba(255,255,255,.62);
      font-size: 15px;
    }
    .service-link {
      position: absolute;
      left: 27px;
      bottom: 25px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #d9fff3;
      font-size: 13px;
      font-weight: 760;
    }

    /* METHOD */
    .method { padding: 130px 0; background: var(--white); }
    .method-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 92px;
      align-items: center;
    }
    .method-stage {
      position: relative;
      min-height: 600px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background:
        linear-gradient(rgba(7,27,45,.9), rgba(7,27,45,.92)),
        radial-gradient(circle at 30% 20%, #0d6efd, transparent 38%);
      box-shadow: var(--shadow-lg);
    }
    .method-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      background-image: radial-gradient(rgba(255,255,255,.52) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .method-center {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 180px;
      height: 180px;
      display: grid;
      place-items: center;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      color: var(--white);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 36px rgba(255,255,255,.03), 0 0 0 72px rgba(255,255,255,.018);
      backdrop-filter: blur(12px);
    }
    .method-center span { text-align: center; font-weight: 800; letter-spacing: -.03em; }
    .method-node {
      position: absolute;
      width: 182px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 17px;
      padding: 17px;
      color: var(--white);
      background: rgba(4,18,31,.76);
      box-shadow: 0 15px 40px rgba(0,0,0,.22);
      backdrop-filter: blur(10px);
    }
    .method-node b { display: block; margin-bottom: 5px; font-size: 14px; }
    .method-node small { color: rgba(255,255,255,.55); }
    .method-node.one { top: 70px; left: 52px; }
    .method-node.two { top: 92px; right: 36px; }
    .method-node.three { bottom: 70px; left: 60px; }
    .method-node.four { bottom: 58px; right: 32px; }
    .steps { margin-top: 42px; display: grid; gap: 23px; }
    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: start;
    }
    .step-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 13px;
      color: var(--blue-600);
      background: var(--paper);
      font-size: 13px;
      font-weight: 850;
    }
    .step h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.025em; }
    .step p { margin: 0; color: var(--muted); }

    /* ABOUT */
    .about { padding: 120px 0; background: var(--paper); }
    .about-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      border-radius: var(--radius-lg);
      color: var(--white);
      background: var(--navy-900);
      box-shadow: var(--shadow-lg);
    }
    .about-copy { padding: 70px; }
    .about-copy .eyebrow { color: var(--mint-400); }
    .about-copy .section-copy { color: rgba(255,255,255,.64); }
    .about-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 40px;
    }
    .about-metric {
      padding: 19px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      background: rgba(255,255,255,.05);
    }
    .about-metric b {
      display: block;
      font-size: 27px;
      letter-spacing: -.04em;
      color: var(--mint-400);
    }
    .about-metric span {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.56);
      font-size: 12px;
    }
    .about-visual {
      position: relative;
      min-height: 590px;
      overflow: hidden;
      background:
        radial-gradient(circle at 45% 35%, rgba(64,198,217,.40), transparent 22%),
        linear-gradient(140deg, #0c3953, #061521);
    }
    .about-visual::before {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.015);
    }
    .founder-card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(76%, 340px);
      transform: translate(-50%, -50%);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 25px;
      padding: 28px;
      background: rgba(4,18,31,.64);
      box-shadow: 0 20px 60px rgba(0,0,0,.28);
      backdrop-filter: blur(20px);
    }
    .founder-avatar {
      width: 86px;
      height: 86px;
      display: grid;
      place-items: center;
      border-radius: 25px;
      color: var(--navy-900);
      background: linear-gradient(135deg, var(--mint-400), #d7fff2);
      font-size: 28px;
      font-weight: 850;
      letter-spacing: -.06em;
    }
    .founder-card h3 { margin: 22px 0 4px; font-size: 23px; letter-spacing: -.035em; }
    .founder-card p { margin: 0; color: rgba(255,255,255,.58); }
    .founder-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.10); margin: 22px 0; }
    .founder-card small { color: rgba(255,255,255,.55); line-height: 1.6; }

    /* INSIGHTS */
    .insights { padding: 120px 0; background: var(--white); }
    .insights-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 48px;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .article-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .article-card:hover {
      transform: translateY(-6px);
      border-color: rgba(13,110,253,.24);
      box-shadow: var(--shadow-sm);
    }
    .article-cover {
      position: relative;
      height: 190px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy-900), #0c4662);
    }
    .article-cover::before,
    .article-cover::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 50%;
    }
    .article-cover::before { width: 210px; height: 210px; right: -65px; top: -55px; }
    .article-cover::after { width: 100px; height: 100px; right: 15px; top: 0; }
    .article-graphic {
      position: absolute;
      left: 25px;
      bottom: 25px;
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: var(--mint-400);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(12px);
    }
    .article-body { padding: 25px; }
    .article-meta {
      color: var(--blue-600);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
    }
    .article-body h3 { margin: 12px 0 9px; font-size: 21px; line-height: 1.18; letter-spacing: -.035em; }
    .article-body p { margin: 0; color: var(--muted); font-size: 14px; }
    .article-link {
      display: inline-flex;
      gap: 8px;
      margin-top: 22px;
      color: var(--ink);
      font-size: 13px;
      font-weight: 780;
    }

    /* FAQ */
    .faq { padding: 120px 0; background: var(--paper); }
    .faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 90px;
      align-items: start;
    }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0;
      border: 0;
      color: var(--ink);
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-weight: 760;
      font-size: 17px;
    }
    .faq-plus {
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 11px;
      color: var(--blue-600);
      background: var(--white);
      transition: transform .2s ease;
    }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .3s ease;
    }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { margin: 0; padding: 0 55px 24px 0; color: var(--muted); }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }

    /* CTA/FORM */
    .contact { padding: 120px 0; background: var(--white); }
    .contact-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 25px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      box-shadow: var(--shadow-sm);
    }
    .contact-copy {
      position: relative;
      overflow: hidden;
      min-height: 590px;
      border-radius: 27px;
      padding: 55px;
      color: var(--white);
      background:
        radial-gradient(circle at 75% 20%, rgba(103,219,184,.24), transparent 26%),
        linear-gradient(145deg, var(--navy-950), #0a3850);
    }
    .contact-copy::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -180px;
      bottom: -180px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 50%;
      box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
    }
    .contact-copy .eyebrow { color: var(--mint-400); }
    .contact-copy .section-title { max-width: 520px; }
    .contact-copy p { max-width: 500px; color: rgba(255,255,255,.64); font-size: 17px; }
    .contact-channels { display: grid; gap: 15px; margin-top: 45px; }
    .contact-channel {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255,255,255,.86);
    }
    .contact-channel i {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: var(--mint-400);
      background: rgba(255,255,255,.07);
      font-style: normal;
    }
    .contact-form { padding: 30px 26px; }
    .contact-form h3 { margin: 0 0 8px; font-size: 26px; letter-spacing: -.04em; }
    .contact-form > p { margin: 0 0 28px; color: var(--muted); }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-size: 12px; font-weight: 780; color: #405264; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 14px 15px;
      outline: none;
      color: var(--ink);
      background: var(--white);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(13,110,253,.55);
      box-shadow: 0 0 0 4px rgba(13,110,253,.08);
    }
    .field textarea { min-height: 112px; resize: vertical; }
    .form-submit { width: 100%; margin-top: 18px; }
    .form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

    /* FOOTER */
    .footer {
      padding: 60px 0 30px;
      color: rgba(255,255,255,.67);
      background: var(--navy-950);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .75fr .75fr 1fr;
      gap: 55px;
    }
    .footer .brand { color: var(--white); }
    .footer-about p { max-width: 330px; margin: 20px 0 0; font-size: 14px; }
    .footer h4 { margin: 0 0 18px; color: var(--white); font-size: 13px; }
    .footer-links { display: grid; gap: 11px; font-size: 13px; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 52px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 12px;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: #12b76a;
      box-shadow: 0 16px 35px rgba(18,183,106,.30);
      transition: transform .25s ease;
    }
    .whatsapp:hover { transform: translateY(-4px) scale(1.03); }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1050px) {
      .nav-links { gap: 18px; }
      .hero-inner { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 80px; }
      .hero-copy { max-width: 780px; }
      .hero-visual { min-height: 570px; width: min(100%, 620px); margin-inline: auto; }
      .problem-grid, .method-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
      .problem-intro { position: static; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-card { grid-template-columns: 1fr; }
      .about-visual { min-height: 520px; }
      .insights-grid { grid-template-columns: 1fr 1fr; }
      .contact-card { grid-template-columns: 1fr; }
      .contact-copy { min-height: auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 800px) {
      .nav-links {
        position: fixed;
        inset: 82px 14px auto;
        display: grid;
        gap: 0;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 20px;
        color: var(--ink);
        background: rgba(255,255,255,.97);
        box-shadow: var(--shadow-lg);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
      }
      .nav-links.open { transform: none; opacity: 1; visibility: visible; }
      .nav-links a { padding: 15px 10px; border-bottom: 1px solid var(--line); }
      .nav-links .nav-cta { margin-top: 12px; color: var(--white); }
      .menu-toggle { display: block; }
      .signal-box { grid-template-columns: 1fr; }
      .signal-item + .signal-item::before { top: 0; bottom: auto; left: 24px; right: 24px; width: auto; height: 1px; }
      .services-head, .insights-head { align-items: start; flex-direction: column; }
      .about-copy { padding: 50px 36px; }
      .about-metrics { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
    }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      .nav { min-height: 74px; }
      .brand-logo-shell { width: 178px; height: 52px; }
      .hero { min-height: auto; }
      .hero-inner { min-height: auto; padding-top: 128px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-visual { min-height: 470px; }
      .dashboard { width: 96%; padding: 13px; }
      .metric-card { padding: 13px; }
      .floating-card { display: none; }
      .signal-strip { margin-top: -20px; }
      .problem, .services, .method, .about, .insights, .faq, .contact { padding: 90px 0; }
      .problem-card { padding: 21px; }
      .services-grid, .insights-grid { grid-template-columns: 1fr; }
      .service-card { min-height: 260px; }
      .method-stage { min-height: 500px; }
      .method-node { width: 150px; padding: 13px; }
      .method-node.one { left: 18px; top: 38px; }
      .method-node.two { right: 12px; top: 84px; }
      .method-node.three { left: 16px; bottom: 75px; }
      .method-node.four { right: 13px; bottom: 35px; }
      .method-center { width: 135px; height: 135px; }
      .about-copy { padding: 42px 24px; }
      .about-visual { min-height: 470px; }
      .contact-card { padding: 12px; }
      .contact-copy { padding: 42px 25px; }
      .contact-form { padding: 25px 13px; }
      .footer-grid { grid-template-columns: 1fr; gap: 34px; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }