/* =========================================================
       MORANDOO — LANDING PAGE | IDENTIDADE OFICIAL
       Arquivo único: HTML + CSS + JavaScript
       Identidade aplicada: logotipo oficial e cor principal #3B82F6.
    ========================================================== */

    :root {
      --brand-900: #1E3A8A;
      --brand-800: #1D4ED8;
      --brand-700: #3B82F6;
      --brand-600: #2563EB;
      --brand-500: #60A5FA;
      --brand-300: #93C5FD;
      --brand-100: #DBEAFE;
      --brand-50: #EFF6FF;

      --ink-950: #0a1520;
      --ink-900: #102332;
      --ink-800: #1b3445;
      --ink-700: #334e60;
      --ink-600: #526c7b;
      --ink-500: #6d8491;
      --ink-300: #b7c5cc;
      --ink-200: #d5dee2;
      --ink-100: #eaf0f2;
      --ink-50: #f7f9fa;

      --white: #ffffff;
      --warning: #f4a340;
      --danger: #e55d5d;
      --success: #23a978;

      --shadow-sm: 0 8px 24px rgba(11, 37, 48, 0.08);
      --shadow-md: 0 18px 50px rgba(8, 46, 51, 0.12);
      --shadow-lg: 0 30px 90px rgba(4, 44, 41, 0.18);

      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 38px;

      --container: 1180px;
      --transition: 220ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      min-width: 320px;
      color: var(--ink-900);
      background: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 112px 0;
    }

    .section--soft {
      background: var(--ink-50);
    }

    .section--mint {
      background:
        radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.12), transparent 34%),
        linear-gradient(180deg, #F8FBFF 0%, #EFF6FF 100%);
    }

    .section--dark {
      color: var(--white);
      background:
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18), transparent 32%),
        linear-gradient(145deg, var(--ink-950), #112A55 80%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--brand-700);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand-500);
      box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
      content: "";
    }

    .section--dark .eyebrow {
      color: var(--brand-300);
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 54px;
    }

    .section-heading--center {
      margin-inline: auto;
      text-align: center;
    }

    .section-heading--center .eyebrow {
      justify-content: center;
    }

    h1,
    h2,
    h3 {
      line-height: 1.12;
      letter-spacing: -0.035em;
    }

    h1 {
      color: var(--ink-950);
      font-size: clamp(2.65rem, 5.4vw, 5.15rem);
      font-weight: 850;
    }

    h2 {
      color: var(--ink-950);
      font-size: clamp(2rem, 4vw, 3.45rem);
      font-weight: 820;
    }

    h3 {
      color: var(--ink-950);
      font-size: 1.32rem;
      font-weight: 780;
    }

    .section--dark h2,
    .section--dark h3 {
      color: var(--white);
    }

    .lead {
      color: var(--ink-600);
      font-size: clamp(1.03rem, 1.5vw, 1.24rem);
      line-height: 1.75;
    }

    .section-heading .lead {
      margin-top: 22px;
    }

    .section--dark .lead {
      color: rgba(255, 255, 255, 0.7);
    }

    .text-gradient {
      color: var(--brand-700);
      background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 14px;
      font-weight: 780;
      line-height: 1;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn--primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
      box-shadow: 0 14px 30px rgba(59, 130, 246, 0.24);
    }

    .btn--primary:hover {
      box-shadow: 0 20px 34px rgba(59, 130, 246, 0.32);
    }

    .btn--secondary {
      color: var(--ink-900);
      border-color: var(--ink-200);
      background: rgba(255, 255, 255, 0.86);
    }

    .btn--secondary:hover {
      border-color: var(--brand-300);
      background: var(--brand-50);
    }

    .btn--white {
      color: var(--brand-800);
      background: var(--white);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    }

    .btn--block {
      width: 100%;
    }

    .btn svg {
      width: 18px;
      height: 18px;
      flex: none;
    }

    /* HEADER */
    .site-header {
      position: fixed;
      z-index: 1000;
      top: 0;
      right: 0;
      left: 0;
      border-bottom: 1px solid transparent;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
      transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
    }

    .site-header.is-scrolled {
      border-color: rgba(16, 35, 50, 0.08);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 10px 32px rgba(10, 35, 45, 0.07);
    }

    .header-inner {
      display: flex;
      min-height: 82px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--ink-950);
      font-size: 1.5rem;
      font-weight: 850;
      letter-spacing: -0.045em;
    }

    .brand-logo {
      width: 184px;
      height: auto;
      flex: none;
    }

    .footer .brand-logo {
      width: 184px;
    }

    .brand-mark {
      position: relative;
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      overflow: hidden;
      border-radius: 12px;
      color: var(--white);
      background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
      box-shadow: 0 9px 22px rgba(59, 130, 246, 0.25);
    }

    .brand-mark::after {
      position: absolute;
      width: 22px;
      height: 22px;
      top: -9px;
      right: -8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      content: "";
    }

    .brand-mark svg {
      width: 22px;
      height: 22px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      position: relative;
      color: var(--ink-700);
      font-size: 0.94rem;
      font-weight: 680;
      transition: color var(--transition);
    }

    .nav-links a::after {
      position: absolute;
      right: 0;
      bottom: -9px;
      left: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--brand-500);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform var(--transition);
    }

    .nav-links a:hover {
      color: var(--brand-700);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 1px solid var(--ink-200);
      border-radius: 13px;
      color: var(--ink-900);
      background: var(--white);
    }

    .mobile-toggle svg {
      width: 22px;
      height: 22px;
    }

    /* O menu mobile permanece oculto fora do breakpoint mobile. */
    .mobile-nav {
      display: none;
    }

    /* HERO */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 160px 0 102px;
      background:
        radial-gradient(circle at 78% 26%, rgba(59, 130, 246, 0.15), transparent 31%),
        radial-gradient(circle at 10% 78%, rgba(147, 197, 253, 0.12), transparent 26%),
        linear-gradient(180deg, #FBFDFF 0%, #F5F9FF 100%);
    }

    .hero::before {
      position: absolute;
      top: 95px;
      right: -100px;
      width: 460px;
      height: 460px;
      border: 1px solid rgba(59, 130, 246, 0.12);
      border-radius: 50%;
      content: "";
    }

    .hero::after {
      position: absolute;
      top: 165px;
      right: -28px;
      width: 310px;
      height: 310px;
      border: 1px solid rgba(59, 130, 246, 0.12);
      border-radius: 50%;
      content: "";
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      align-items: center;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 68px;
    }

    .hero-copy {
      max-width: 650px;
    }

    .hero h1 {
      margin-bottom: 26px;
    }

    .hero .lead {
      max-width: 620px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
      color: var(--ink-600);
      font-size: 0.91rem;
      font-weight: 650;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-trust svg {
      width: 18px;
      height: 18px;
      color: var(--brand-600);
    }

    .hero-visual {
      position: relative;
      min-height: 580px;
    }

    .glow {
      position: absolute;
      top: 42%;
      left: 48%;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.22);
      filter: blur(85px);
      transform: translate(-50%, -50%);
    }

    .dashboard-window {
      position: absolute;
      top: 38px;
      right: 0;
      width: min(100%, 650px);
      overflow: hidden;
      border: 1px solid rgba(16, 35, 50, 0.09);
      border-radius: 25px;
      background: var(--white);
      box-shadow: var(--shadow-lg);
      transform: rotate(1.5deg);
    }

    .window-topbar {
      display: flex;
      height: 48px;
      align-items: center;
      gap: 7px;
      padding: 0 18px;
      border-bottom: 1px solid var(--ink-100);
      background: #fbfcfc;
    }

    .window-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--ink-200);
    }

    .window-dot:nth-child(1) { background: #f07575; }
    .window-dot:nth-child(2) { background: #f1bf5b; }
    .window-dot:nth-child(3) { background: #56bf88; }

    .dashboard-body {
      display: grid;
      min-height: 455px;
      grid-template-columns: 154px 1fr;
      background: #F5F8FC;
    }

    .dashboard-sidebar {
      padding: 21px 15px;
      color: rgba(255, 255, 255, 0.82);
      background: linear-gradient(180deg, #1E3A8A, #172554);
    }

    .mini-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 28px;
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .mini-brand-mark {
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      flex: none;
    }

    .mini-brand-mark img {
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

    .side-link {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 7px;
      padding: 9px 10px;
      border-radius: 9px;
      font-size: 0.67rem;
      font-weight: 650;
    }

    .side-link svg {
      width: 13px;
      height: 13px;
      opacity: 0.8;
    }

    .side-link.active {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    .dashboard-content {
      padding: 25px 24px 28px;
    }

    .dash-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 15px;
      margin-bottom: 22px;
    }

    .dash-kicker {
      margin-bottom: 2px;
      color: var(--ink-500);
      font-size: 0.58rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .dash-title {
      color: var(--ink-900);
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .dash-btn {
      padding: 7px 10px;
      border-radius: 8px;
      color: var(--white);
      background: var(--brand-600);
      font-size: 0.6rem;
      font-weight: 750;
    }

    .dash-cards {
      display: grid;
      margin-bottom: 18px;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .dash-card {
      padding: 13px 12px;
      border: 1px solid var(--ink-100);
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 5px 15px rgba(17, 48, 54, 0.04);
    }

    .dash-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .dash-card-icon {
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 8px;
      color: var(--brand-700);
      background: var(--brand-100);
    }

    .dash-card-icon svg {
      width: 12px;
      height: 12px;
    }

    .dash-card-label {
      color: var(--ink-500);
      font-size: 0.54rem;
      font-weight: 650;
    }

    .dash-card-number {
      color: var(--ink-950);
      font-size: 1.22rem;
      font-weight: 850;
      line-height: 1;
    }

    .dash-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 12px;
    }

    .dash-panel {
      min-height: 205px;
      padding: 15px;
      border: 1px solid var(--ink-100);
      border-radius: 13px;
      background: var(--white);
    }

    .panel-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .panel-title {
      color: var(--ink-800);
      font-size: 0.68rem;
      font-weight: 780;
    }

    .panel-link {
      color: var(--brand-700);
      font-size: 0.5rem;
      font-weight: 750;
    }

    .package-row {
      display: grid;
      align-items: center;
      padding: 9px 0;
      border-top: 1px solid var(--ink-100);
      grid-template-columns: 24px 1fr auto;
      gap: 8px;
    }

    .package-row:first-of-type {
      border-top: 0;
    }

    .package-avatar {
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 8px;
      color: var(--brand-800);
      background: var(--brand-100);
      font-size: 0.52rem;
      font-weight: 800;
    }

    .package-name {
      color: var(--ink-800);
      font-size: 0.55rem;
      font-weight: 750;
      line-height: 1.3;
    }

    .package-meta {
      color: var(--ink-500);
      font-size: 0.46rem;
    }

    .status {
      padding: 4px 6px;
      border-radius: 999px;
      color: var(--brand-800);
      background: var(--brand-100);
      font-size: 0.44rem;
      font-weight: 750;
    }

    .chart {
      display: flex;
      height: 135px;
      align-items: flex-end;
      justify-content: space-between;
      gap: 7px;
      padding-top: 5px;
    }

    .bar {
      width: 100%;
      border-radius: 5px 5px 2px 2px;
      background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
      opacity: 0.84;
    }

    .bar:nth-child(1) { height: 38%; }
    .bar:nth-child(2) { height: 66%; }
    .bar:nth-child(3) { height: 48%; }
    .bar:nth-child(4) { height: 83%; }
    .bar:nth-child(5) { height: 58%; }
    .bar:nth-child(6) { height: 92%; }
    .bar:nth-child(7) { height: 71%; }

    .phone {
      position: absolute;
      z-index: 3;
      right: -23px;
      bottom: 3px;
      width: 212px;
      padding: 9px;
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: 34px;
      background: #111827;
      box-shadow: 0 25px 55px rgba(15, 23, 42, 0.3);
      transform: rotate(-5deg);
    }

    .phone-screen {
      min-height: 410px;
      overflow: hidden;
      border-radius: 27px;
      background:
        radial-gradient(circle at 75% 16%, rgba(59, 130, 246, 0.18), transparent 35%),
        linear-gradient(180deg, #F5F9FF 0%, #EAF2FF 100%);
    }

    .phone-notch {
      width: 77px;
      height: 19px;
      margin: 0 auto;
      border-radius: 0 0 14px 14px;
      background: #111827;
    }

    .phone-header {
      padding: 23px 18px 14px;
    }

    .phone-greeting {
      color: var(--ink-500);
      font-size: 0.57rem;
      font-weight: 650;
    }

    .phone-name {
      color: var(--ink-950);
      font-size: 0.98rem;
      font-weight: 850;
      letter-spacing: -0.03em;
    }

    .phone-card {
      margin: 7px 14px 12px;
      padding: 16px;
      border-radius: 18px;
      color: var(--white);
      background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
      box-shadow: 0 14px 27px rgba(59, 130, 246, 0.22);
    }

    .phone-card-icon {
      display: grid;
      width: 37px;
      height: 37px;
      margin-bottom: 16px;
      place-items: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.16);
    }

    .phone-card-icon svg {
      width: 20px;
      height: 20px;
    }

    .phone-card-label {
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.55rem;
      font-weight: 650;
    }

    .phone-card-title {
      font-size: 0.9rem;
      font-weight: 820;
      line-height: 1.25;
    }

    .notification {
      margin: 0 14px 10px;
      padding: 13px;
      border: 1px solid rgba(16, 35, 50, 0.06);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 8px 22px rgba(14, 45, 51, 0.08);
    }

    .notification-top {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
    }

    .notification-icon {
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 8px;
      color: var(--brand-700);
      background: var(--brand-100);
    }

    .notification-icon svg {
      width: 12px;
      height: 12px;
    }

    .notification-brand {
      color: var(--ink-900);
      font-size: 0.54rem;
      font-weight: 800;
    }

    .notification-time {
      margin-left: auto;
      color: var(--ink-500);
      font-size: 0.45rem;
    }

    .notification-text {
      color: var(--ink-700);
      font-size: 0.52rem;
      line-height: 1.5;
    }

    .floating-chip {
      position: absolute;
      z-index: 4;
      bottom: 57px;
      left: -29px;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 13px 15px;
      border: 1px solid rgba(16, 35, 50, 0.08);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-md);
      animation: float 4.4s ease-in-out infinite;
    }

    .floating-chip-icon {
      display: grid;
      width: 36px;
      height: 36px;
      place-items: center;
      border-radius: 11px;
      color: var(--white);
      background: var(--brand-600);
    }

    .floating-chip-icon svg {
      width: 18px;
      height: 18px;
    }

    .floating-chip-label {
      color: var(--ink-500);
      font-size: 0.58rem;
      font-weight: 650;
    }

    .floating-chip-value {
      color: var(--ink-900);
      font-size: 0.76rem;
      font-weight: 800;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }

    /* LOGO/PROOF STRIP */
    .trust-strip {
      padding: 26px 0;
      border-top: 1px solid var(--ink-100);
      border-bottom: 1px solid var(--ink-100);
      background: var(--white);
    }

    .trust-strip-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px 54px;
      color: var(--ink-600);
      text-align: center;
      flex-wrap: wrap;
    }

    .trust-strip-label {
      color: var(--ink-800);
      font-size: 0.9rem;
      font-weight: 780;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 0.86rem;
      font-weight: 650;
    }

    .trust-item svg {
      width: 19px;
      height: 19px;
      color: var(--brand-600);
    }

    /* CARDS */
    .problem-grid,
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .problem-card,
    .feature-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--ink-100);
      border-radius: var(--radius-md);
      background: var(--white);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .problem-card:hover,
    .feature-card:hover {
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: var(--shadow-md);
      transform: translateY(-5px);
    }

    .problem-card {
      min-height: 270px;
      padding: 30px 28px;
    }

    .problem-card::after {
      position: absolute;
      right: -30px;
      bottom: -40px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(229, 93, 93, 0.06);
      content: "";
    }

    .card-number {
      position: absolute;
      top: 21px;
      right: 24px;
      color: var(--ink-100);
      font-size: 2.2rem;
      font-weight: 850;
      line-height: 1;
    }

    .card-icon {
      display: grid;
      width: 48px;
      height: 48px;
      margin-bottom: 25px;
      place-items: center;
      border-radius: 15px;
      color: var(--danger);
      background: rgba(229, 93, 93, 0.09);
    }

    .card-icon svg {
      width: 23px;
      height: 23px;
    }

    .problem-card h3,
    .feature-card h3 {
      margin-bottom: 12px;
    }

    .problem-card p,
    .feature-card p {
      color: var(--ink-600);
      font-size: 0.96rem;
      line-height: 1.72;
    }

    .problem-conclusion {
      display: grid;
      align-items: center;
      margin-top: 34px;
      padding: 34px 38px;
      border: 1px solid var(--brand-100);
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--brand-50), #ffffff);
      grid-template-columns: auto 1fr;
      gap: 23px;
    }

    .problem-conclusion-icon {
      display: grid;
      width: 56px;
      height: 56px;
      place-items: center;
      border-radius: 17px;
      color: var(--white);
      background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
      box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
    }

    .problem-conclusion-icon svg {
      width: 26px;
      height: 26px;
    }

    .problem-conclusion strong {
      display: block;
      margin-bottom: 4px;
      color: var(--ink-900);
      font-size: 1.1rem;
    }

    .problem-conclusion p {
      color: var(--ink-600);
    }

    /* PROCESS */
    .process-wrap {
      position: relative;
    }

    .process-line {
      position: absolute;
      top: 51px;
      right: 12%;
      left: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-100), var(--brand-500), var(--brand-100));
    }

    .process-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .process-step {
      text-align: center;
    }

    .step-icon-wrap {
      position: relative;
      z-index: 2;
      display: grid;
      width: 102px;
      height: 102px;
      margin: 0 auto 27px;
      place-items: center;
      border: 9px solid var(--white);
      border-radius: 50%;
      color: var(--brand-700);
      background: var(--brand-100);
      box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18), 0 15px 28px rgba(59, 130, 246, 0.1);
    }

    .step-icon-wrap svg {
      width: 34px;
      height: 34px;
    }

    .step-badge {
      position: absolute;
      top: -5px;
      right: -3px;
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border: 3px solid var(--white);
      border-radius: 50%;
      color: var(--white);
      background: var(--brand-700);
      font-size: 0.68rem;
      font-weight: 850;
    }

    .process-step h3 {
      margin-bottom: 11px;
    }

    .process-step p {
      color: var(--ink-600);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .section-cta {
      margin-top: 47px;
      text-align: center;
    }

    /* AUDIENCE BENEFITS */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .audience-card {
      position: relative;
      overflow: hidden;
      padding: 36px 34px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.055);
      backdrop-filter: blur(10px);
    }

    .audience-card::before {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
      content: "";
    }

    .audience-card .card-icon {
      color: var(--brand-300);
      background: rgba(59, 130, 246, 0.13);
    }

    .audience-card h3 {
      margin-bottom: 12px;
      font-size: 1.45rem;
    }

    .audience-card > p {
      margin-bottom: 23px;
      color: rgba(255, 255, 255, 0.65);
    }

    .check-list {
      display: grid;
      gap: 13px;
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 255, 255, 0.83);
      font-size: 0.94rem;
    }

    .check-list svg {
      width: 18px;
      height: 18px;
      margin-top: 3px;
      flex: none;
      color: var(--brand-300);
    }

    /* FEATURES */
    .feature-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .feature-card {
      min-height: 260px;
      padding: 31px 29px;
    }

    .feature-card .card-icon {
      color: var(--brand-700);
      background: var(--brand-100);
    }

    .feature-tag {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 5px 9px;
      border-radius: 999px;
      color: var(--brand-800);
      background: var(--brand-100);
      font-size: 0.67rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* POSITIONING */
    .positioning-grid {
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 0.98fr;
      gap: 70px;
    }

    .positioning-copy .lead {
      margin-top: 22px;
    }

    .positioning-points {
      display: grid;
      margin-top: 31px;
      gap: 15px;
    }

    .positioning-point {
      display: flex;
      align-items: flex-start;
      gap: 13px;
    }

    .positioning-point-icon {
      display: grid;
      width: 31px;
      height: 31px;
      margin-top: 1px;
      flex: none;
      place-items: center;
      border-radius: 10px;
      color: var(--brand-700);
      background: var(--brand-100);
    }

    .positioning-point-icon svg {
      width: 16px;
      height: 16px;
    }

    .positioning-point strong {
      display: block;
      margin-bottom: 3px;
      color: var(--ink-900);
      font-size: 0.98rem;
    }

    .positioning-point p {
      color: var(--ink-600);
      font-size: 0.92rem;
    }

    .comparison-card {
      padding: 30px;
      border: 1px solid var(--ink-100);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);
    }

    .comparison-title {
      margin-bottom: 22px;
      color: var(--ink-900);
      font-size: 1.15rem;
      font-weight: 800;
    }

    .comparison-row {
      display: grid;
      align-items: center;
      padding: 17px 0;
      border-top: 1px solid var(--ink-100);
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .comparison-row:first-of-type {
      border-top: 0;
    }

    .comparison-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink-600);
      font-size: 0.9rem;
    }

    .comparison-item svg {
      width: 19px;
      height: 19px;
      flex: none;
    }

    .comparison-item--bad svg {
      color: var(--danger);
    }

    .comparison-item--good {
      color: var(--ink-900);
      font-weight: 700;
    }

    .comparison-item--good svg {
      color: var(--brand-600);
    }

    /* RESULTS */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .result-card {
      padding: 28px 22px;
      border: 1px solid var(--ink-100);
      border-radius: var(--radius-md);
      background: var(--white);
      text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .result-card:hover {
      box-shadow: var(--shadow-sm);
      transform: translateY(-4px);
    }

    .result-icon {
      display: grid;
      width: 48px;
      height: 48px;
      margin: 0 auto 18px;
      place-items: center;
      border-radius: 15px;
      color: var(--brand-700);
      background: var(--brand-100);
    }

    .result-icon svg {
      width: 23px;
      height: 23px;
    }

    .result-card h3 {
      margin-bottom: 9px;
      font-size: 1.08rem;
    }

    .result-card p {
      color: var(--ink-600);
      font-size: 0.87rem;
      line-height: 1.65;
    }

    /* SECURITY */
    .security-grid {
      display: grid;
      align-items: center;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 70px;
    }

    .security-visual {
      position: relative;
      min-height: 430px;
    }

    .security-shield {
      position: absolute;
      top: 50%;
      left: 50%;
      display: grid;
      width: 215px;
      height: 250px;
      place-items: center;
      color: var(--white);
      background: linear-gradient(155deg, var(--brand-600), var(--brand-900));
      clip-path: polygon(50% 0, 90% 14%, 88% 62%, 70% 84%, 50% 100%, 30% 84%, 12% 62%, 10% 14%);
      filter: drop-shadow(0 30px 30px rgba(30, 64, 175, 0.25));
      transform: translate(-50%, -50%);
    }

    .security-shield::after {
      position: absolute;
      width: 142px;
      height: 168px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      clip-path: polygon(50% 0, 90% 14%, 88% 62%, 70% 84%, 50% 100%, 30% 84%, 12% 62%, 10% 14%);
      content: "";
    }

    .security-shield svg {
      position: relative;
      z-index: 2;
      width: 75px;
      height: 75px;
    }

    .security-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 380px;
      height: 380px;
      border: 1px dashed rgba(59, 130, 246, 0.35);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .security-badge {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 12px 14px;
      border: 1px solid var(--ink-100);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow-sm);
      color: var(--ink-800);
      font-size: 0.78rem;
      font-weight: 760;
    }

    .security-badge svg {
      width: 18px;
      height: 18px;
      color: var(--brand-600);
    }

    .security-badge--1 { top: 48px; left: 20px; }
    .security-badge--2 { top: 110px; right: 0; }
    .security-badge--3 { bottom: 73px; left: 0; }
    .security-badge--4 { right: 22px; bottom: 25px; }

    .security-list {
      display: grid;
      margin-top: 29px;
      gap: 14px;
    }

    .security-list-item {
      display: flex;
      gap: 12px;
      padding: 16px 17px;
      border: 1px solid var(--ink-100);
      border-radius: 14px;
      background: var(--white);
    }

    .security-list-item svg {
      width: 21px;
      height: 21px;
      margin-top: 2px;
      flex: none;
      color: var(--brand-600);
    }

    .security-list-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--ink-900);
      font-size: 0.96rem;
    }

    .security-list-item p {
      color: var(--ink-600);
      font-size: 0.89rem;
    }

    /* WHO */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .who-card {
      display: flex;
      min-height: 112px;
      align-items: center;
      gap: 15px;
      padding: 21px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 17px;
      background: rgba(255, 255, 255, 0.05);
    }

    .who-card-icon {
      display: grid;
      width: 43px;
      height: 43px;
      flex: none;
      place-items: center;
      border-radius: 13px;
      color: var(--brand-300);
      background: rgba(59, 130, 246, 0.12);
    }

    .who-card-icon svg {
      width: 21px;
      height: 21px;
    }

    .who-card span {
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.93rem;
      font-weight: 700;
      line-height: 1.35;
    }

    /* FINAL CTA + FORM */
    .final-section {
      position: relative;
      overflow: hidden;
      padding: 115px 0;
      background:
        radial-gradient(circle at 13% 25%, rgba(59, 130, 246, 0.15), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(147, 197, 253, 0.15), transparent 26%),
        #F4F8FF;
    }

    .final-grid {
      display: grid;
      align-items: center;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 75px;
    }

    .final-copy h2 {
      margin-bottom: 24px;
    }

    .final-copy .lead {
      margin-bottom: 29px;
    }

    .final-benefits {
      display: grid;
      gap: 13px;
      list-style: none;
    }

    .final-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--ink-700);
      font-weight: 650;
    }

    .final-benefits svg {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      flex: none;
      color: var(--brand-600);
    }

    .form-card {
      padding: 39px;
      border: 1px solid rgba(16, 35, 50, 0.08);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-lg);
    }

    .form-card h3 {
      margin-bottom: 8px;
      font-size: 1.65rem;
    }

    .form-intro {
      margin-bottom: 27px;
      color: var(--ink-600);
      font-size: 0.94rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field--full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--ink-800);
      font-size: 0.82rem;
      font-weight: 750;
    }

    .field input,
    .field select {
      width: 100%;
      height: 51px;
      padding: 0 14px;
      border: 1px solid var(--ink-200);
      border-radius: 12px;
      outline: none;
      color: var(--ink-900);
      background: var(--white);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--brand-500);
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
    }

    .field input::placeholder {
      color: #9babB3;
    }

    .form-submit {
      margin-top: 20px;
    }

    .form-note {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 14px;
      color: var(--ink-500);
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .form-note svg {
      width: 15px;
      height: 15px;
      margin-top: 2px;
      flex: none;
      color: var(--brand-600);
    }

    .form-success {
      display: none;
      margin-top: 18px;
      padding: 15px 17px;
      border: 1px solid rgba(35, 169, 120, 0.22);
      border-radius: 13px;
      color: #147452;
      background: rgba(35, 169, 120, 0.08);
      font-size: 0.9rem;
      font-weight: 650;
    }

    .form-success.is-visible {
      display: block;
    }

    /* FAQ */
    .faq-list {
      max-width: 850px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--ink-100);
    }

    .faq-question {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 25px 0;
      border: 0;
      color: var(--ink-900);
      background: transparent;
      text-align: left;
      font-size: 1.03rem;
      font-weight: 760;
    }

    .faq-question svg {
      width: 21px;
      height: 21px;
      flex: none;
      color: var(--brand-700);
      transition: transform var(--transition);
    }

    .faq-item.is-open .faq-question svg {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 260ms ease;
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer-inner {
      overflow: hidden;
    }

    .faq-answer p {
      padding: 0 42px 25px 0;
      color: var(--ink-600);
      line-height: 1.75;
    }

    /* FOOTER */
    .footer {
      padding: 70px 0 28px;
      color: rgba(255, 255, 255, 0.68);
      background: #0F172A;
    }

    .footer-top {
      display: grid;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      grid-template-columns: 1.3fr 0.7fr 0.7fr;
      gap: 50px;
    }

    .footer .brand {
      margin-bottom: 16px;
      color: var(--white);
    }

    .footer-about {
      max-width: 430px;
      font-size: 0.94rem;
      line-height: 1.75;
    }

    .footer h4 {
      margin-bottom: 16px;
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.9rem;
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--brand-300);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 26px;
      font-size: 0.82rem;
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    /* BACK TO TOP */
    .back-to-top {
      position: fixed;
      z-index: 900;
      right: 22px;
      bottom: 22px;
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 0;
      border-radius: 14px;
      color: var(--white);
      background: var(--brand-700);
      box-shadow: 0 13px 30px rgba(59, 130, 246, 0.28);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity var(--transition), transform var(--transition);
    }

    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 1120px) {
      .hero-grid {
        gap: 35px;
      }

      .hero-visual {
        min-height: 525px;
      }

      .dashboard-window {
        width: 585px;
      }

      .problem-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .results-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .results-grid .result-card:nth-child(4),
      .results-grid .result-card:nth-child(5) {
        grid-column: span 1;
      }
    }

    @media (max-width: 960px) {
      .section {
        padding: 88px 0;
      }

      .nav-links,
      .nav .btn {
        display: none;
      }

      .mobile-toggle {
        display: grid;
      }

      .mobile-nav {
        position: fixed;
        z-index: 990;
        top: 82px;
        right: 0;
        left: 0;
        display: grid;
        padding: 22px 20px 28px;
        border-top: 1px solid var(--ink-100);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 30px rgba(10, 35, 45, 0.08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition);
      }

      .mobile-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-nav a {
        padding: 12px 2px;
        border-bottom: 1px solid var(--ink-100);
        color: var(--ink-800);
        font-weight: 700;
      }

      .mobile-nav .btn {
        margin-top: 18px;
      }

      .hero {
        padding: 137px 0 70px;
      }

      .hero-grid,
      .positioning-grid,
      .security-grid,
      .final-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        max-width: 750px;
      }

      .hero-visual {
        min-height: 585px;
        margin-top: 16px;
      }

      .dashboard-window {
        left: 50%;
        width: min(680px, calc(100% - 25px));
        transform: translateX(-50%) rotate(1deg);
      }

      .phone {
        right: 2%;
      }

      .floating-chip {
        left: 3%;
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 46px 25px;
      }

      .process-line {
        display: none;
      }

      .audience-grid,
      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .positioning-grid,
      .security-grid,
      .final-grid {
        gap: 52px;
      }

      .comparison-card {
        max-width: 680px;
      }

      .security-visual {
        order: 2;
      }

      .who-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand-col {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 74px 0;
      }

      .section-heading {
        margin-bottom: 38px;
      }

      h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
      }

      h2 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
      }

      .hero {
        padding-top: 126px;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-trust {
        display: grid;
        gap: 11px;
      }

      .hero-visual {
        min-height: 500px;
        margin-top: 2px;
      }

      .dashboard-window {
        top: 30px;
        width: 610px;
        transform: translateX(-53%) scale(0.72) rotate(1deg);
        transform-origin: top center;
      }

      .phone {
        right: -5px;
        bottom: 4px;
        width: 173px;
        transform: rotate(-5deg) scale(0.92);
        transform-origin: bottom right;
      }

      .phone-screen {
        min-height: 355px;
      }

      .floating-chip {
        bottom: 22px;
        left: 2px;
        transform: scale(0.86);
        transform-origin: bottom left;
      }

      @keyframes float {
        0%, 100% { transform: scale(0.86) translateY(0); }
        50% { transform: scale(0.86) translateY(-8px); }
      }

      .trust-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
      }

      .problem-grid,
      .audience-grid,
      .feature-grid,
      .results-grid,
      .who-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .problem-card,
      .feature-card {
        min-height: auto;
      }

      .problem-conclusion {
        align-items: flex-start;
        padding: 27px 24px;
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .process-step {
        display: grid;
        align-items: center;
        text-align: left;
        grid-template-columns: 84px 1fr;
        gap: 18px;
      }

      .step-icon-wrap {
        width: 80px;
        height: 80px;
        margin: 0;
        border-width: 7px;
      }

      .step-icon-wrap svg {
        width: 28px;
        height: 28px;
      }

      .process-step h3 {
        margin-bottom: 6px;
      }

      .process-step p {
        font-size: 0.9rem;
      }

      .results-grid .result-card:nth-child(4),
      .results-grid .result-card:nth-child(5) {
        grid-column: auto;
      }

      .comparison-card {
        padding: 23px;
      }

      .comparison-row {
        grid-template-columns: 1fr;
      }

      .security-visual {
        min-height: 390px;
        transform: scale(0.88);
      }

      .form-card {
        padding: 29px 22px;
      }

      .field--full {
        grid-column: auto;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-brand-col {
        grid-column: auto;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 460px) {
      .hero-visual {
        min-height: 440px;
      }

      .dashboard-window {
        transform: translateX(-53%) scale(0.6) rotate(1deg);
      }

      .phone {
        width: 156px;
        transform: rotate(-4deg) scale(0.86);
      }

      .floating-chip {
        display: none;
      }

      .process-step {
        grid-template-columns: 70px 1fr;
      }

      .step-icon-wrap {
        width: 68px;
        height: 68px;
      }

      .security-visual {
        margin-inline: -25px;
        transform: scale(0.74);
      }

      .who-card {
        min-height: 100px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
  
    @media (max-width: 600px) {
      .brand-logo { width: 154px; }
    }
