    :root {
      --bg: #f4f8ff;
      --bg-soft: #eaf2ff;
      --card: #ffffff;
      --card-strong: #f9fbff;
      --line: rgba(31, 111, 235, 0.14);
      --line-strong: rgba(31, 111, 235, 0.24);
      --text: #0e1b33;
      --muted: #4f6486;
      --primary: #1f6feb;
      --primary-2: #3f8cff;
      --accent: #0b57d0;
      --warning: #f8c45c;
      --shadow: 0 20px 45px rgba(15, 43, 95, 0.12);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    /* Compensa a navbar sticky ao navegar por anchors da landing */
    #recursos,
    #demonstracao,
    #telas,
    #planos,
    #perguntas {
      scroll-margin-top: 94px;
    }

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at 15% 20%, rgba(31, 111, 235, 0.14), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(63, 140, 255, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(31, 111, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f1f6ff 42%, #ecf3ff 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    a { text-decoration: none; }

    .section { padding: 96px 0; position: relative; }
    .section-header { max-width: 760px; margin-bottom: 44px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--primary);
      background: rgba(31, 111, 235, 0.06);
      font-size: .86rem;
      font-weight: 700;
      letter-spacing: .03em;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 0 14px rgba(31, 111, 235, .35);
    }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.02;
      letter-spacing: -.04em;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      letter-spacing: -.03em;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .lead-soft {
      font-size: 1.08rem;
      line-height: 1.8;
      color: var(--muted);
      max-width: 760px;
    }

    .glass-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .btn-brand {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      border: none;
      font-weight: 700;
      padding: 14px 22px;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(31, 111, 235, 0.28);
      transition: .3s ease;
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      color: #fff;
    }

    .btn-ghost {
      background: #ffffff;
      border: 1px solid var(--line);
      color: var(--text);
      font-weight: 700;
      padding: 14px 22px;
      border-radius: 14px;
      transition: .3s ease;
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      color: var(--text);
      border-color: var(--line-strong);
    }

    .btn-video {
      background: linear-gradient(135deg, #14b35c, #0f8f48);
      border: 1px solid #0f8f48;
      color: #ffffff;
      box-shadow: 0 12px 24px rgba(15, 143, 72, 0.34);
    }

    .btn-video:hover {
      background: linear-gradient(135deg, #1ac96a, #119b4f);
      border-color: #119b4f;
      color: #ffffff;
      box-shadow: 0 14px 26px rgba(15, 143, 72, 0.42);
    }

    .navbar-custom {
      background: rgba(250, 253, 255, 0.78);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(98, 148, 223, 0.2);
      box-shadow: 0 10px 24px rgba(16, 56, 117, 0.1);
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--text) !important;
      padding: 0.2rem 0.48rem 0.2rem 0.14rem;
      border-radius: 999px;
      border: 1px solid rgba(159, 195, 243, 0.3);
      background: rgba(255, 255, 255, 0.45);
      box-shadow: 0 6px 15px rgba(17, 64, 136, 0.08);
    }

    .navbar-custom .nav-link {
      position: relative;
      border-radius: 10px;
      color: #284a79;
      font-weight: 700;
      padding: 0.48rem 0.72rem !important;
      transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    .navbar-custom .nav-link::after {
      content: "";
      position: absolute;
      left: 0.72rem;
      right: 0.72rem;
      bottom: 0.3rem;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #1f6feb, #19a96a);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link:focus-visible {
      color: #114d9d;
      background: rgba(31, 111, 235, 0.1);
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(15, 63, 138, 0.12);
    }

    .navbar-custom .nav-link:hover::after,
    .navbar-custom .nav-link:focus-visible::after {
      transform: scaleX(1);
    }

    .brand-text-highlight {
      font-weight: 900;
      letter-spacing: -.02em;
      background: linear-gradient(135deg, #0f5fca, #1f6feb 45%, #19a96a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 1px 10px rgba(15, 95, 202, 0.2);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #ffffff;
      font-weight: 900;
      margin-right: 10px;
      box-shadow: 0 12px 24px rgba(31, 111, 235, .24);
    }

    .brand-mark-globe {
      position: relative;
      overflow: hidden;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #85f3ff 0%, #54b8ff 35%, #225fca 75%, #0f3f8a 100%);
      border: 1px solid rgba(186, 234, 255, 0.75);
      box-shadow: 0 12px 24px rgba(14, 62, 142, 0.32);
      width: 44px;
      height: 44px;
    }

    .brand-mark-globe svg {
      width: 30px;
      height: 30px;
      display: block;
      z-index: 1;
    }

    .brand-mark-globe .brand-globe-spin {
      transform-origin: 32px 32px;
      animation: brand-globe-orbit 10s linear infinite;
    }

    .brand-mark-globe .brand-globe-surface {
      transform-origin: 32px 32px;
      animation: brand-surface-spin 6s linear infinite;
    }

    .brand-mark-globe::after {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 999px;
      border: 2px solid rgba(175, 232, 255, 0.58);
      animation: brand-ring-spin 8s linear infinite;
    }

    .header-signature {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
    }

    .header-signature-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(126, 172, 244, 0.45);
      background: linear-gradient(135deg, rgba(222, 238, 255, 0.72), rgba(206, 229, 255, 0.66));
      color: #1a4c93;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      padding: 0.3rem 0.72rem;
    }

    .feature-card,
    .stat-card,
    .testimonial-card,
    .plan-card,
    .faq-item,
    .screen-tab,
    .video-item,
    .cta-box {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .feature-card,
    .stat-card,
    .testimonial-card,
    .plan-card,
    .video-item,
    .screen-tab,
    .faq-item {
      padding: 24px;
    }

    .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(31,111,235,.12), rgba(63,140,255,.18));
      border: 1px solid rgba(31,111,235,.16);
      font-size: 1.3rem;
    }

    .hero-badge {
      display: inline-flex;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(31, 111, 235, .06);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: .84rem;
      font-weight: 600;
      margin: 4px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    .video-frame {
      min-height: 420px;
      border-radius: 24px;
      border: 1px solid rgba(31,111,235,.18);
      overflow: hidden;
      padding: 24px;
      display: flex;
      align-items: end;
      background: linear-gradient(180deg, rgba(3,12,25,.35), rgba(3,12,25,.7));
    }

    .video-item {
      cursor: pointer;
      transition: .3s ease;
    }

    .video-item:hover,
    .video-item.active {
      transform: translateY(-2px);
      border-color: rgba(31,111,235,.42);
      background: rgba(31,111,235,.09);
    }

    .screen-tab {
      cursor: pointer;
      transition: .3s ease;
    }

    .screen-tab:hover,
    .screen-tab.active {
      transform: translateX(4px);
      background: rgba(31,111,235,.08);
      border-color: rgba(31,111,235,.4);
    }

    .screen-panel {
      min-height: 560px;
      position: relative;
      overflow: hidden;
      padding: 18px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .screen-slide {
      position: absolute;
      inset: 18px;
      opacity: 0;
      transform: translateY(24px) scale(.985);
      pointer-events: none;
      transition: opacity .55s ease, transform .55s ease;
    }

    .screen-slide.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .mockup {
      width: 100%;
      height: 100%;
      border-radius: 28px;
      padding: 18px;
      background: linear-gradient(180deg, #edf3ff, #e5eeff);
      border: 1px solid rgba(31,111,235,.16);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      color: var(--text);
      border: none;
      text-align: left;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0;
    }

    .faq-item.open .faq-answer {
      margin-top: 16px;
    }

    .cta-box {
      padding: 42px;
      position: relative;
      overflow: hidden;
    }

    .footer-custom {
      border-top: 1px solid var(--line);
      padding: 34px 0 26px;
      color: var(--muted);
      background:
        radial-gradient(circle at 8% 20%, rgba(31, 111, 235, 0.11), transparent 30%),
        linear-gradient(180deg, #f2f7ff 0%, #ecf4ff 100%);
    }

    .public-contact-outside-footer {
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .footer-custom.footer-landing {
      border-top: 1px solid rgba(112, 160, 230, 0.32);
      background:
        radial-gradient(circle at 12% 12%, rgba(43, 120, 243, 0.18), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(13, 171, 104, 0.14), transparent 30%),
        linear-gradient(180deg, #eef5ff 0%, #e8f1ff 60%, #edf4ff 100%);
    }

    .footer-custom.footer-public-full .container {
      max-width: 100%;
      width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .footer-custom.footer-public-full {
      margin-top: 1.1rem;
    }

    .footer-custom.footer-public-full .footer-grid.footer-grid-single,
    .footer-custom.footer-public-full .footer-public-meta {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 1.2rem;
      border: 1px solid #d6e4fb;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(8px);
      padding: 1rem;
      box-shadow: 0 14px 26px rgba(15, 63, 138, 0.1);
    }

    .footer-grid-landing {
      border: 1px solid rgba(154, 189, 238, 0.45);
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.88));
      box-shadow: 0 20px 34px rgba(15, 63, 138, 0.12);
      padding: 1.1rem;
      gap: 0.95rem;
    }

    .footer-panel {
      border: 1px solid rgba(190, 215, 246, 0.72);
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.92));
      box-shadow: 0 10px 20px rgba(16, 59, 128, 0.08);
      padding: 0.86rem 0.92rem;
      height: 100%;
    }

    .footer-panel-brand {
      background:
        radial-gradient(circle at 88% 10%, rgba(44, 129, 238, 0.15), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.94));
    }

    .footer-panel-contact {
      background:
        radial-gradient(circle at 10% 6%, rgba(28, 156, 93, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 247, 0.95));
    }

    .footer-panel-geo {
      background:
        radial-gradient(circle at 82% 8%, rgba(37, 118, 229, 0.14), transparent 33%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.93));
    }

    .footer-grid.footer-grid-single {
      grid-template-columns: minmax(0, 1fr);
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-contact-pro {
      border: 1px solid #ccdef8;
      border-radius: 16px;
      background:
        radial-gradient(circle at 90% 18%, rgba(70, 157, 255, 0.17), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
      padding: 0.95rem;
      box-shadow: 0 12px 24px rgba(15, 63, 138, 0.1);
    }

    .footer-contact-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
      flex-wrap: wrap;
    }

    .footer-title-pro {
      margin: 0;
      font-size: 0.95rem;
      color: #12396f;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .footer-badge-pro {
      border-radius: 999px;
      border: 1px solid #c7dcfb;
      background: #eef5ff;
      color: #1a4f97;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 0.2rem 0.52rem;
      white-space: nowrap;
    }

    .footer-contact-items {
      display: grid;
      gap: 0.45rem;
      margin-bottom: 0.7rem;
    }

    .footer-contact-link {
      border: 1px solid #d6e4fa;
      border-radius: 12px;
      background: #ffffff;
      padding: 0.5rem 0.58rem;
      text-decoration: none;
      display: grid;
      gap: 0.1rem;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .footer-contact-link:hover {
      border-color: #a8c7f5;
      box-shadow: 0 10px 16px rgba(15, 63, 138, 0.12);
      transform: translateY(-1px);
    }

    .footer-contact-key {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: #6581a9;
      font-weight: 800;
    }

    .footer-contact-value {
      font-size: 0.91rem;
      color: #1f467e;
      font-weight: 700;
      word-break: break-word;
    }

    .footer-whatsapp-cta-pro {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 999px;
      border: 1px solid #0f8f48;
      background: linear-gradient(135deg, #15a551, #118542);
      color: #ffffff !important;
      font-size: 0.86rem;
      font-weight: 800;
      text-decoration: none;
      padding: 0.5rem 0.75rem;
      box-shadow: 0 12px 22px rgba(17, 133, 66, 0.25);
      transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
    }

    .footer-whatsapp-cta-pro:hover {
      color: #ffffff !important;
      text-decoration: none;
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 14px 25px rgba(17, 133, 66, 0.32);
    }

    .footer-public-meta {
      max-width: 640px;
      margin: 0.72rem auto 0;
      border: 1px solid rgba(177, 206, 245, 0.65);
      border-radius: 14px;
      background:
        radial-gradient(circle at 86% 10%, rgba(58, 149, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.92));
      box-shadow: 0 10px 20px rgba(15, 63, 138, 0.1);
      padding: 0.58rem 0.72rem;
      display: grid;
      gap: 0.36rem;
    }

    .footer-public-meta-badge {
      display: inline-flex;
      width: fit-content;
      border-radius: 999px;
      border: 1px solid #c7dbfb;
      background: #eef5ff;
      color: #1a4f97;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      padding: 0.18rem 0.5rem;
    }

    .footer-public-meta-line {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.38rem;
      color: #244b7f;
      font-size: 0.84rem;
      font-weight: 700;
    }

    .footer-public-meta-label {
      color: #1b4f96;
      letter-spacing: 0.01em;
    }

    .footer-public-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #2f7fe4;
      box-shadow: 0 0 10px rgba(47, 127, 228, 0.42);
    }

    .footer-public-meta-value {
      color: #4a6891;
      font-weight: 600;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.58rem;
      color: #0f2d5a;
      font-size: 1.02rem;
    }

    .footer-brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #dbeaff, #c9ddff);
      color: #0f5fca;
      border: 1px solid #b7cff7;
    }

    .footer-brand-mark svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .footer-title {
      margin: 0 0 0.55rem;
      font-size: 0.8rem;
      color: #15396f;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-text {
      color: #516786;
      line-height: 1.55;
      font-size: 0.92rem;
    }

    .footer-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.4rem;
    }

    .footer-list a {
      color: #2a4b79;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer-list a:hover {
      color: #0f5fca;
    }

    .footer-phone-row {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-phone-link {
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .footer-whatsapp-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(22, 163, 74, 0.16), rgba(22, 163, 74, 0.08));
      color: #118542;
      border: 1px solid rgba(17, 133, 66, 0.36);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .footer-whatsapp-icon svg {
      width: 15px;
      height: 15px;
      display: block;
    }

    .footer-whatsapp-icon:hover {
      color: #12803b !important;
      background: rgba(22, 163, 74, 0.2);
      box-shadow: 0 8px 16px rgba(18, 128, 59, 0.22);
      transform: translateY(-1px);
    }

    .footer-whatsapp-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: #ffffff !important;
      font-weight: 800;
      background: linear-gradient(135deg, #18a957, #117e42);
      border: 1px solid #0f7540;
      box-shadow: 0 12px 20px rgba(17, 126, 66, 0.24);
      border-radius: 999px;
      padding: 0.3rem 0.72rem;
    }

    .footer-whatsapp-cta::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.44);
    }

    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .footer-pill {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid #cfe0ff;
      background: #f5f9ff;
      color: #2a4b79;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.24rem 0.58rem;
    }

    .footer-geo-icons {
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .geo-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(139, 177, 232, 0.62);
      background: linear-gradient(135deg, #f5faff, #e8f1ff);
      box-shadow: 0 8px 14px rgba(15, 63, 138, 0.12);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .geo-icon:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 18px rgba(15, 63, 138, 0.2);
    }

    .footer-bottom {
      margin-top: 0.8rem;
      display: flex;
      justify-content: space-between;
      gap: 0.6rem;
      font-size: 0.82rem;
      color: #5b7395;
      padding: 0 0.2rem;
    }

    @media (max-width: 991.98px) {
      #recursos,
      #demonstracao,
      #telas,
      #planos,
      #perguntas {
        scroll-margin-top: 110px;
      }

      .section { padding: 72px 0; }
      .screen-panel { min-height: 500px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; }
    }

  @keyframes brand-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes brand-globe-orbit {
    from { transform: rotate(-14deg); }
    to { transform: rotate(346deg); }
  }

  @keyframes brand-surface-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .hero { padding: 72px 0 48px; }

  .dashboard-window {
    padding: 18px;
    background: linear-gradient(180deg, rgba(11, 24, 42, 0.94), rgba(9, 19, 35, 0.98));
    border-radius: 30px;
    border: 1px solid rgba(31,111,235,0.14);
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
    overflow: hidden;
  }

  .window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 16px;
    color: var(--muted);
    font-size: 0.86rem;
  }

  .window-dots { display: flex; gap: 8px; }
  .window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
  }

  .window-block,
  .mini-box,
  .property-item,
  .mock-box,
  .map-area,
  .floating-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(31,111,235,0.12);
    border-radius: 20px;
  }

  .window-block,
  .mini-box,
  .property-item,
  .mock-box {
    padding: 16px;
  }

  .map-area {
    min-height: 240px;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
      linear-gradient(180deg, #0f253d, #0c1727);
    background-size: 34px 34px, 34px 34px, auto;
  }

  .pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 0 0 10px rgba(67, 176, 255, 0.09);
    animation: pulse 2.6s infinite;
  }

  .pin::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    left: 5px;
    top: 5px;
  }

  .floating-card {
    padding: 16px 18px;
    backdrop-filter: blur(14px);
    animation: floatY 4.8s ease-in-out infinite;
  }

  .chart-bars {
    min-height: 120px;
    display: flex;
    align-items: end;
    gap: 12px;
  }

  .chart-bars span {
    flex: 1;
    border-radius: 16px 16px 6px 6px;
    background: linear-gradient(180deg, var(--primary-2), var(--primary));
    opacity: 0.95;
    animation: rise 1.2s ease both;
  }

  .plan-featured {
    border-color: rgba(31,111,235,0.45);
    background: linear-gradient(180deg, rgba(17,33,56,0.97), rgba(11,25,44,0.98));
    transform: translateY(-10px);
  }

  .faq-question span:last-child {
    transition: transform .3s ease;
    color: var(--primary-2);
    font-size: 1.3rem;
  }

  .faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
  }

  @keyframes pulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.12); }
  }

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

  @keyframes rise {
    from { height: 0; opacity: 0; }
    to { opacity: 1; }
  }
