    :root {
      --navy: #1e1b4b;
      --navy-2: #2e1065;
      --navy-3: #6d28d9;
      --orange: #ff6b2c;
      --orange-dark: #dc5620;
      --white: #ffffff;
      --paper: #f5f1e8;
      --soft: #f3e8ff;
      --text: #1d2138;
      --muted: #66708d;
      --line: rgba(30, 27, 75, 0.12);
      --line-strong: #33407f;
      --shadow: 0 20px 48px rgba(30, 27, 75, 0.10);
      --shadow-strong: 0 24px 70px rgba(46, 16, 101, 0.18);
      --max: 1180px;
      --radius: 18px;
      --transition: 240ms ease;
      --ff-display: "Roboto", "Segoe UI", Arial, sans-serif;
      --ff-body: "Roboto", "Segoe UI", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--ff-body);
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255, 107, 44, 0.08), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, var(--paper) 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .top-accent {
      height: 16px;
      background: linear-gradient(90deg, #5b3ba8 0%, #7a45b8 100%);
    }

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }

    .site-header {
      background: #FAF5FF;
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      justify-content: center;
    }

    .menu-centered-wrapper {
      display: flex;
      align-items: center;
      gap: 48px;
      white-space: nowrap;
      padding: 8px 32px;
      background: #ffffff;
      border-radius: 99px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      margin: 0 auto;
    }

    .brand-logo {
      height: 28px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      color: #1A1D2B;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: #7c3aed;
    }

    .header-actions {
      display: flex;
      align-items: center;
    }

    .header-cta {
      background: #7c3aed !important;
      color: #ffffff !important;
      padding: 10px 20px !important;
      border-radius: 99px !important;
      font-weight: 600 !important;
      font-size: 0.85rem !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
      box-shadow: none !important;
      margin-top: 0 !important;
      min-width: auto !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      transition: background 0.2s ease !important;
    }

    .header-cta:hover {
      background: #6d28d9 !important;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #1A1D2B;
      cursor: pointer;
      padding: 0;
      margin-left: 16px;
    }

    .hero {
      background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
      color: var(--white);
      text-align: left;
      padding: 128px 0 116px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 120px;
      background: linear-gradient(180deg, rgba(255,255,255,0), rgba(245, 241, 232, 0.95));
      pointer-events: none;
    }

    .hero h1,
    .section-title h2,
    .dark-intro h2,
    .trust-title,
    .split-copy h3 {
      margin: 0;
      font-family: var(--ff-display);
      font-weight: 800;
      line-height: 1.12;
      text-transform: uppercase;
      letter-spacing: -0.04em;
      color: inherit;
    }

    .hero h1 {
      font-size: clamp(2.9rem, 6vw, 5rem);
      max-width: 11ch;
      margin: 0;
    }

    .hero-divider,
    .section-divider {
      width: 140px;
      max-width: 70%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--orange), #ffb08a);
      margin: 28px 0 26px 0;
    }

    .hero p,
    .section-copy,
    .dark-intro p,
    .trial-copy p,
    .split-copy p {
      margin: 0 auto;
      max-width: 860px;
      font-size: 1.05rem;
    }

    .hero p {
      color: rgba(255, 255, 255, 0.92);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.78);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.76rem;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-metrics span {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.84);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 240px;
      padding: 17px 28px;
      margin-top: 34px;
      background: linear-gradient(135deg, var(--orange), #ff8d57);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 16px 32px rgba(255, 107, 44, 0.26);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .button:hover,
    .button:focus-visible {
      background: var(--orange-dark);
      transform: translateY(-3px);
      box-shadow: 0 22px 42px rgba(255, 107, 44, 0.34);
    }

    .stats-band {
      background: transparent;
      padding: 0 0 46px;
      margin-top: -48px;
      position: relative;
      z-index: 2;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.88);
      text-align: center;
      padding: 28px 16px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: 24px;
      backdrop-filter: blur(12px);
    }

    .stat-card strong {
      display: block;
      color: var(--navy);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .stat-card span {
      display: block;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 0.88rem;
    }

    section.content-section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      max-width: 980px;
      margin: 0 auto 34px;
      color: var(--navy);
    }

    .section-title h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
    }

    .section-copy {
      color: var(--text);
      max-width: 900px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 42px;
    }

    .feature-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(243,232,255,0.86));
      text-align: left;
      padding: 34px 24px 30px;
      box-shadow: var(--shadow);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255,107,44,0.16), rgba(124, 58, 237,0.06));
      top: -26px;
      right: -26px;
      transform: rotate(18deg);
    }

    .feature-icon {
      width: 78px;
      height: 78px;
      margin: 0 0 24px;
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      font-weight: 700;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--navy), var(--navy-3));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
    }

    .feature-card h3 {
      margin: 0 0 18px;
      color: var(--text);
      font-size: 1.42rem;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.28;
      max-width: 16ch;
    }

    .feature-card p {
      margin: 0;
      color: #40415a;
      font-size: 1rem;
    }

    .pricing-band {
      background:
        radial-gradient(circle at top right, rgba(255,107,44,0.18), transparent 18%),
        linear-gradient(180deg, #1e1b4b 0%, #2e1065 100%);
      color: var(--white);
      padding: 86px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .dark-intro {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .dark-intro h2 {
      font-size: clamp(2rem, 5vw, 3.45rem);
    }

    .dark-intro p {
      max-width: 1080px;
      color: rgba(255, 255, 255, 0.92);
    }

    .pricing-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .price-card {
      border: 1px solid rgba(255,255,255,0.18);
      background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,249,255,0.97));
      color: var(--text);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(30, 27, 75, 0.18);
      transform: translateY(0);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .price-card:hover {
      transform: translateY(-10px);
      border-color: rgba(255,255,255,0.32);
      box-shadow: 0 30px 78px rgba(46, 16, 101, 0.26);
    }

    .price-card.featured {
      transform: translateY(-14px);
      border-color: rgba(255, 107, 44, 0.78);
      box-shadow: 0 34px 90px rgba(9, 14, 32, 0.34), 0 0 0 1px rgba(255, 107, 44, 0.22);
    }

    .price-card.featured:hover {
      transform: translateY(-18px);
    }

    .price-card.featured::after {
      content: "Selection";
      position: absolute;
      top: 18px;
      right: -36px;
      background: linear-gradient(135deg, var(--orange), #ff8d57);
      color: var(--white);
      transform: rotate(45deg);
      padding: 6px 38px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .price-top {
      background: linear-gradient(135deg, #1e1b4b, #2e1065);
      color: var(--white);
      text-align: left;
      padding: 26px 24px 20px;
      position: relative;
      overflow: hidden;
    }

    .price-top::before {
      content: "";
      position: absolute;
      inset: auto -28px -36px auto;
      width: 118px;
      height: 118px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255,107,44,0.28), rgba(255,255,255,0.04));
      transform: rotate(28deg);
    }

    .price-top span,
    .price-top strong {
      display: block;
      font-weight: 700;
    }

    .price-top span {
      color: rgba(255,255,255,0.78);
      margin-bottom: 12px;
      font-size: 0.94rem;
      letter-spacing: 0;
      text-transform: none;
    }

    .price-top strong {
      font-size: 2rem;
      line-height: 1.04;
      text-transform: uppercase;
      font-family: var(--ff-display);
      letter-spacing: -0.04em;
    }

    .price-sub {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,0.72);
      font-size: 0.88rem;
    }

    .price-body {
      padding: 26px 24px 24px;
      text-align: left;
      display: flex;
      flex-direction: column;
      flex: 1;
      position: relative;
      background:
        radial-gradient(circle at top right, rgba(255,107,44,0.08), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,1), rgba(245,247,255,0.98));
    }

    .price-value {
      color: var(--navy);
      line-height: 1;
      font-weight: 800;
      margin-bottom: 12px;
      display: flex;
      align-items: flex-end;
      gap: 8px;
      letter-spacing: -0.06em;
    }

    .price-value span {
      display: block;
    }

    .price-value > span:first-child {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      line-height: 0.9;
      padding: 0;
      background: linear-gradient(180deg, #1f2d67 0%, #121833 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 10px 24px rgba(30, 27, 75, 0.06);
    }

    .price-value .currency {
      font-size: 0.88rem;
      font-family: var(--ff-body);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 800;
      padding-bottom: 10px;
    }

    .price-caption {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 18px;
      min-height: 46px;
      display: block;
    }

    .price-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0;
      color: var(--text);
      font-size: 0.98rem;
    }

    .price-list li {
      padding: 13px 0;
      border-top: 1px solid rgba(30, 27, 75, 0.12);
      position: relative;
      padding-left: 28px;
    }

    .price-list li::before {
      content: "âœ“";
      position: absolute;
      left: 0;
      top: 13px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--orange);
      background: rgba(255, 107, 44, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 107, 44, 0.18);
    }

    .price-card .button {
      min-width: 0;
      width: 100%;
      margin-top: 22px;
      border-radius: 999px;
      padding: 14px 18px;
      box-shadow: 0 14px 26px rgba(255, 107, 44, 0.18);
    }

    .floating-whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #ffffff;
      box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
      z-index: 60;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .floating-whatsapp:hover,
    .floating-whatsapp:focus-visible {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 24px 42px rgba(10, 167, 81, 0.42);
    }

    .floating-whatsapp svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    .trial-band {
      background:
        linear-gradient(135deg, #ff6b2c 0%, #ff7e46 100%);
      color: var(--white);
      padding: 30px 0;
    }

    .trial-row {
      display: grid;
      grid-template-columns: 1.1fr auto;
      gap: 28px;
      align-items: center;
    }

    .trial-copy h3 {
      margin: 0 0 10px;
      font-size: clamp(2rem, 3.7vw, 3rem);
      line-height: 1.15;
      text-transform: uppercase;
      font-weight: 800;
    }

    .trial-copy p {
      max-width: 760px;
      margin: 0;
      color: rgba(255, 255, 255, 0.95);
    }

    .button.alt {
      margin-top: 0;
      min-width: 200px;
      background: linear-gradient(135deg, var(--navy), var(--navy-3));
      box-shadow: 0 16px 28px rgba(12, 16, 39, 0.22);
      border-color: rgba(255,255,255,0.22);
    }

    .trust-section {
      padding: 84px 0 24px;
      background:
        linear-gradient(180deg, #fffdf9, #f7f3eb);
    }

    .trust-title {
      text-align: center;
      max-width: 980px;
      margin: 0 auto;
      color: var(--navy);
      font-size: clamp(2.4rem, 5vw, 4rem);
    }

    .trust-title .accent {
      color: #ef5241;
    }

    .split-section {
      padding: 44px 0 96px;
    }

    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px 54px;
      align-items: center;
      overflow: hidden;
    }

    .split-copy h3 {
      font-size: clamp(1.75rem, 3.2vw, 3rem);
      color: var(--navy);
      line-height: 1.02;
      max-width: 11ch;
      word-break: normal;
      overflow-wrap: normal;
      text-wrap: balance;
      letter-spacing: -0.05em;
      text-transform: none;
    }

    .split-copy p {
      margin: 0;
      color: #444564;
      max-width: 500px;
    }

    .split-copy {
      min-width: 0;
    }

    .split-media {
      min-height: 320px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(30, 27, 75, 0.08);
      background: rgba(255,255,255,0.88);
    }

    .media-screen,
    .media-posters {
      height: 100%;
      width: 100%;
    }

    .media-screen {
      padding: 0;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
    }

    .media-screen img {
      width: 100%;
      height: 100%;
      max-height: none;
      object-fit: cover;
      object-position: center center;
      border-radius: 0;
    }

    .media-posters {
      background:
        linear-gradient(90deg, rgba(26, 20, 96, 0.14), rgba(240, 90, 34, 0.1)),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06));
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      padding: 12px;
    }

    .poster-tile {
      min-height: 152px;
      border-radius: 18px;
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(17, 23, 52, 0.18), rgba(17, 23, 52, 0.94));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    }

    .poster-tile::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 14, 34, 0.02), rgba(10, 14, 34, 0.8));
      pointer-events: none;
      z-index: 1;
    }

    .poster-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .poster-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.88);
      font-size: 0.64rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      backdrop-filter: blur(8px);
      z-index: 2;
    }

    .poster-meta,
    .poster-title {
      position: relative;
      z-index: 1;
    }

    .poster-meta {
      color: rgba(255,255,255,0.78);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .poster-title {
      color: #ffffff;
      font-family: var(--ff-display);
      font-size: 1.08rem;
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 42px;
    }

    .blog-grid,
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 42px;
    }

    .guide-card,
    .blog-card,
    .faq-item {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243,232,255,0.82));
      padding: 28px 24px;
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .guide-card,
    .blog-card {
      display: flex;
      flex-direction: column;
    }

    .guide-card h3,
    .blog-card h3 {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: 1.34rem;
      line-height: 1.2;
    }

    .guide-card p,
    .blog-card p,
    .faq-item p {
      margin: 0;
      color: #444564;
      font-size: 0.98rem;
    }

    .guide-points {
      list-style: none;
      margin: 20px 0 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .guide-points li {
      padding: 11px 14px;
      border-radius: 16px;
      background: rgba(30, 27, 75,0.06);
      color: var(--navy);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .blog-meta {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-bottom: 14px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,107,44,0.12);
      color: var(--orange-dark);
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      color: var(--orange-dark);
      font-size: 0.88rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .faq-section {
      background:
        radial-gradient(circle at top left, rgba(255,107,44,0.10), transparent 24%),
        linear-gradient(180deg, rgba(238,242,255,0.65), rgba(255,255,255,0.92));
    }

    .faq-item {
      padding: 0;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 24px 24px 18px;
      color: var(--navy);
      font-size: 1.08rem;
      font-weight: 800;
      line-height: 1.35;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-answer {
      padding: 0 24px 24px;
    }

    .faq-item[open] {
      box-shadow: var(--shadow-strong);
    }

    .keyword-note {
      margin: 30px auto 0;
      padding: 18px 20px;
      border-left: 4px solid var(--orange);
      border-radius: 18px;
      background: rgba(255,255,255,0.9);
      color: #444564;
      max-width: 920px;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .feature-grid,
      .guide-grid,
      .blog-grid,
      .faq-grid,
      .stats-grid,
      .split-grid,
      .trial-row { grid-template-columns: 1fr; }
      .split-copy p,
      .trial-copy p { max-width: none; }
      .split-copy h3 { max-width: none; }
    }

    @media (max-width: 780px) {
      .hero { padding: 86px 0 80px; }
    }

    @media (max-width: 640px) {
      .container { width: min(var(--max), calc(100% - 1rem)); }
      .pricing-grid { grid-template-columns: 1fr; }
      .feature-card,
      .stat-card,
      .price-card { box-shadow: none; }
      .button { min-width: 0; width: 100%; }
      .media-posters { grid-template-columns: repeat(2, 1fr); }
      .split-copy h3 {
        font-size: clamp(1.5rem, 7.2vw, 2.2rem);
        line-height: 1.04;
        max-width: none;
        text-wrap: pretty;
      }
      .hero h1,
      .section-title h2,
      .dark-intro h2,
      .trust-title {
        word-break: break-word;
        overflow-wrap: anywhere;
      }
    }

    /* 2026 visual refresh based on provided reference screens */
    :root {
      --navy: #3b1d78;
      --navy-2: #5a2db0;
      --navy-3: #7c3aed;
      --orange: #8b5cf6;
      --orange-dark: #6d28d9;
      --white: #ffffff;
      --paper: #fbf8ff;
      --soft: #f4efff;
      --text: #241547;
      --muted: #655a83;
      --line: rgba(90, 45, 176, 0.10);
      --line-strong: rgba(90, 45, 176, 0.24);
      --shadow: 0 16px 40px rgba(72, 31, 145, 0.10);
      --shadow-strong: 0 24px 60px rgba(72, 31, 145, 0.18);
      --radius: 28px;
    }

    body {
      background:
        radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.08), transparent 26%),
        linear-gradient(180deg, #fcfaff 0%, #f7f2ff 100%);
      color: var(--text);
    }

    .top-accent {
      display: none;
    }

    .site-header {
      background: #ffffff;
      border-bottom: 1px solid rgba(36, 21, 71, 0.06);
      box-shadow: 0 6px 20px rgba(36, 21, 71, 0.04);
    }

    .header-row {
      min-height: 78px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 28px;
    }

    .brand {
      font-size: 1.72rem;
      font-weight: 900;
      color: var(--navy);
      flex: none;
    }

    .brand span:last-child {
      color: var(--navy-3);
    }

    .brand-logo {
      display: block;
      width: auto;
      height: 40px;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
    }

    .nav-wrap {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 18px;
      width: 100%;
    }

    #mainNav {
      justify-self: center;
    }

    .nav-links {
      gap: 30px;
      font-size: 0.88rem;
      text-transform: none;
      letter-spacing: 0;
      font-weight: 500;
      color: var(--text);
      justify-content: center;
    }

    .header-cta {
      min-width: auto;
      margin-top: 0;
      padding: 9px 16px;
      border-radius: 999px;
      background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(109, 40, 217, 0.16);
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .header-cta:hover,
    .header-cta:focus-visible {
      background: linear-gradient(180deg, #9b6bff 0%, #7c3aed 100%);
      color: #ffffff;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--navy-3);
    }

    .menu-toggle {
      border-color: rgba(90, 45, 176, 0.20);
      color: var(--navy);
      justify-self: end;
    }

    .hero {
      background:
        radial-gradient(circle at 82% 24%, rgba(167, 139, 250, 0.26), transparent 22%),
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #6d28d9 0%, #3b1878 100%);
      padding: 78px 0 108px;
      text-align: left;
    }

    .hero::after {
      display: none;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      gap: 44px;
      align-items: center;
    }

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

    .hero h1 {
      margin: 0;
      max-width: 11ch;
      font-size: clamp(3rem, 5.8vw, 5.4rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      text-transform: none;
    }

    .hero-divider {
      margin: 24px 0 24px;
      max-width: 130px;
      background: linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.25));
    }

    .hero p {
      margin: 0;
      max-width: 620px;
      font-size: 1.12rem;
      line-height: 1.82;
      color: rgba(255,255,255,0.90);
    }

    .kicker {
      padding: 9px 16px;
      margin-bottom: 20px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.88);
      font-size: 0.78rem;
      letter-spacing: 0.10em;
    }

    .button {
      min-width: 230px;
      margin-top: 30px;
      padding: 16px 28px;
      background: linear-gradient(180deg, #9b6bff 0%, #7c3aed 100%);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 18px;
      box-shadow: 0 16px 36px rgba(124, 58, 237, 0.30);
      font-size: 1rem;
      font-weight: 800;
      text-transform: none;
      letter-spacing: 0;
    }

    .button:hover,
    .button:focus-visible {
      background: linear-gradient(180deg, #a97cff 0%, #8b5cf6 100%);
      box-shadow: 0 18px 42px rgba(124, 58, 237, 0.34);
      transform: translateY(-2px);
    }

    .hero-cta-button {
      background: #ffffff;
      color: #6d28d9;
      border-color: rgba(255,255,255,0.38);
      box-shadow: 0 16px 36px rgba(39, 16, 76, 0.18);
    }

    .hero-cta-button:hover,
    .hero-cta-button:focus-visible {
      background: #f7f2ff;
      color: #6d28d9;
      box-shadow: 0 18px 42px rgba(39, 16, 76, 0.22);
    }

    .hero-metrics {
      justify-content: flex-start;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-metrics span {
      padding: 11px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 0.92rem;
    }

    .error-hero-shell {
      width: min(1120px, calc(100% - 4rem));
      margin: 0 auto;
      padding: 20px 0 18px;
    }

    .error-copy {
      max-width: 760px;
    }

    .error-copy h1 {
      max-width: 8ch;
    }

    .error-copy .lead {
      max-width: 34ch;
    }

    .error-actions {
      justify-content: flex-start;
    }

    .error-content {
      width: min(1120px, calc(100% - 4rem));
      margin: 0 auto;
      padding: 56px 0 88px;
      display: grid;
      gap: 24px;
    }

    .error-card,
    .error-cta-box {
      padding: 30px 26px;
      border: 1px solid rgba(90, 45, 176, 0.08);
      background: #ffffff;
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .error-card h2,
    .error-cta-box h2 {
      margin: 0 0 14px;
      color: var(--navy);
      font-size: 1.55rem;
      line-height: 1.18;
    }

    .error-card p,
    .error-cta-box p {
      margin: 0;
      color: var(--text);
      line-height: 1.8;
    }

    .error-links {
      margin: 0;
      padding-left: 1.25rem;
      display: grid;
      gap: 10px;
    }

    .error-links li {
      color: var(--text);
      line-height: 1.75;
    }

    .error-links a {
      color: var(--navy);
      font-weight: 700;
    }

    .error-links a:hover,
    .error-links a:focus-visible {
      color: var(--navy-3);
    }

    .error-cta-box .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }

    .hero-visual {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 34px;
      padding: 18px;
      box-shadow: 0 34px 90px rgba(39, 16, 76, 0.30);
    }

    .hero-visual img {
      width: 100%;
      aspect-ratio: 1.1 / 1;
      object-fit: cover;
      object-position: center;
      border-radius: 24px;
      background: #3a176d;
    }

    .stats-band {
      margin-top: -52px;
      padding-bottom: 30px;
    }

    .stats-grid,
    .feature-grid,
    .guide-grid,
    .blog-grid,
    .pricing-grid,
    .steps-grid,
    .testimonials-grid {
      gap: 24px;
    }

    .stat-card,
    .feature-card,
    .guide-card,
    .blog-card,
    .faq-item,
    .testimonial-card,
    .step-card {
      border: 1px solid rgba(90, 45, 176, 0.08);
      background: #ffffff;
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .stat-card {
      padding: 34px 28px;
      text-align: left;
    }

    .stat-card strong {
      color: var(--navy);
      font-size: clamp(2.35rem, 4vw, 3.4rem);
      font-weight: 900;
    }

    .stat-card span {
      color: var(--navy-3);
      font-weight: 700;
    }

    section.content-section,
    .split-section,
    .trust-section {
      padding: 92px 0;
      background: transparent;
    }

    .section-title,
    .dark-intro {
      margin-bottom: 20px;
    }

    .section-title h2,
    .dark-intro h2,
    .trust-title {
      color: var(--navy);
      text-transform: none;
      letter-spacing: -0.04em;
      font-size: clamp(2.4rem, 4.6vw, 4rem);
      line-height: 1.08;
    }

    .section-copy,
    .dark-intro p {
      color: var(--text);
      font-size: 1.08rem;
      line-height: 1.86;
    }

    .section-divider {
      background: linear-gradient(90deg, #7c3aed, rgba(124, 58, 237, 0.12));
      margin: 24px auto 22px;
      height: 3px;
    }

    .section-title .kicker,
    .dark-intro .kicker,
    .trial-header .kicker {
      background: transparent !important;
      border: none !important;
      color: var(--navy-3) !important;
      padding: 0;
      margin-bottom: 16px;
      font-size: 0.88rem;
      font-weight: 900;
      letter-spacing: 0;
    }

    .feature-card,
    .guide-card,
    .blog-card {
      padding: 34px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .feature-card::after,
    .guide-card::after,
    .blog-card::after {
      content: "";
      position: absolute;
      inset: auto 24px 24px auto;
      width: 84px;
      height: 84px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
      pointer-events: none;
    }

    .feature-icon {
      width: 66px;
      height: 66px;
      margin: 0 auto 22px;
      border-radius: 50%;
      background: linear-gradient(180deg, #9b6bff 0%, #7c3aed 100%);
      font-size: 1rem;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(124, 58, 237, 0.18);
    }

    .feature-card h3,
    .guide-card h3,
    .blog-card h3 {
      font-size: 1.5rem;
      line-height: 1.2;
      text-transform: none;
      color: var(--navy);
      max-width: none;
    }

    .feature-card p,
    .guide-card p,
    .blog-card p,
    .split-copy p,
    .faq-item p,
    .keyword-note,
    .price-caption {
      color: var(--muted);
      line-height: 1.8;
    }

    .pricing-band {
      background:
        radial-gradient(circle at top center, rgba(124, 58, 237, 0.10), transparent 24%),
        linear-gradient(180deg, #faf7ff 0%, #f4efff 46%, #ffffff 100%);
      color: var(--text);
      padding: 92px 0 96px;
    }

    .dark-intro h2,
    .dark-intro p {
      color: var(--text);
    }

    .dark-intro .section-divider {
      background: linear-gradient(90deg, #7c3aed, rgba(124, 58, 237, 0.16));
    }

    .pricing-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: none;
      margin: 0;
      align-items: stretch;
      gap: 22px;
    }

    .price-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 28px;
      border: 1px solid rgba(90, 45, 176, 0.10);
      background: linear-gradient(180deg, #ffffff 0%, #fcf9ff 100%);
      border-radius: 32px;
      box-shadow: 0 20px 46px rgba(72, 31, 145, 0.10);
      overflow: hidden;
    }

    .price-card:hover {
      transform: translateY(-10px);
      border-color: rgba(124, 58, 237, 0.18);
      box-shadow: 0 28px 58px rgba(72, 31, 145, 0.16);
    }

    .price-card.featured {
      transform: translateY(-16px);
      border-color: rgba(124, 58, 237, 0.18);
      background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
      box-shadow: 0 30px 62px rgba(109, 40, 217, 0.28);
    }

    .price-card.featured:hover {
      transform: translateY(-20px);
    }

    .price-card.featured::after {
      display: none;
    }

    .price-top {
      position: relative;
      background: transparent;
      color: var(--text);
      padding: 0;
      border-bottom: none;
    }

    .price-top::before {
      display: none;
      content: none;
    }

    .price-badge {
      position: absolute;
      top: 0;
      right: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.94);
      color: #6d28d9;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      box-shadow: 0 10px 24px rgba(19, 14, 76, 0.14);
    }

    .price-head {
      position: relative;
      min-height: 0;
      margin-bottom: 18px;
    }

    .price-head > div:last-child {
      position: relative;
      z-index: 1;
      padding-left: 0;
      padding-top: 0;
    }

    .price-icon {
      display: none;
    }

    .price-icon::before {
      display: none;
      content: none;
    }

    .price-card.featured .price-icon {
      display: none;
    }

    .price-card.featured .price-icon::before {
      display: none;
      content: none;
    }

    .price-card .price-plan {
      display: block;
      margin-bottom: 6px;
      color: #6d28d9;
      font-size: 1.7rem;
      font-weight: 800;
      line-height: 1.1;
    }

    .price-top strong {
      display: block;
      color: var(--muted);
      font-size: 0.98rem;
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0;
    }

    .price-sub {
      display: block;
      color: var(--muted);
      font-size: 0.96rem;
      margin-top: 0;
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .price-discount {
      display: none;
    }

    .price-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 0;
      background: transparent;
    }

    .price-value {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      margin-bottom: 8px;
    }

    .price-main {
      background: none;
      color: var(--navy);
      text-shadow: none;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 900;
      line-height: 1;
      -webkit-background-clip: initial;
      background-clip: initial;
    }

    .price-period {
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 600;
      padding-bottom: 4px;
    }

    .price-old {
      display: block;
      margin-bottom: 16px;
      color: #8f88aa;
      font-size: 0.92rem;
      font-weight: 700;
      text-decoration: line-through;
      text-decoration-thickness: 1px;
    }

    .price-caption {
      min-height: 0;
      margin-bottom: 22px;
      font-size: 0.98rem;
      line-height: 1.78;
    }

    .price-list {
      margin-top: 0;
      margin-bottom: 28px;
      padding-top: 22px;
      border-top: 1px solid rgba(90, 45, 176, 0.12);
      gap: 12px;
      font-size: 0.98rem;
    }

    .price-list li {
      padding: 0 0 0 34px;
      border-top: none;
      color: var(--text);
      line-height: 1.7;
    }

    .price-list li::before {
      content: "\2713";
      top: 2px;
      width: 22px;
      height: 22px;
      border-radius: 8px;
      color: #6d28d9;
      background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0.08));
      box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.14);
    }

    .price-card .button {
      width: 100%;
      margin-top: auto;
      border-radius: 999px;
      padding: 16px 18px;
      background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
      color: #ffffff;
      box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
    }

    .price-card .button:hover,
    .price-card .button:focus-visible {
      background: linear-gradient(180deg, #a78bfa 0%, #6d28d9 100%);
    }

    .price-footnote {
      margin-top: 14px;
      color: #8f88aa;
      font-size: 0.9rem;
      line-height: 1.55;
      text-align: center;
    }

    .price-card.featured .price-plan,
    .price-card.featured .price-top strong,
    .price-card.featured .price-sub,
    .price-card.featured .price-main,
    .price-card.featured .price-period,
    .price-card.featured .price-caption,
    .price-card.featured .price-list li,
    .price-card.featured .price-footnote {
      color: #ffffff;
    }

    .price-card.featured .price-old {
      color: rgba(255,255,255,0.72);
    }

    .price-card.featured .price-list {
      border-top-color: rgba(255,255,255,0.16);
    }

    .price-card.featured .price-list li::before {
      color: #6d28d9;
      background: rgba(255,255,255,0.96);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
    }

    .price-card.featured .button {
      background: #ffffff;
      color: #6d28d9;
      border-color: rgba(255,255,255,0.28);
      box-shadow: none;
    }

    .price-card.featured .button:hover,
    .price-card.featured .button:focus-visible {
      background: #f5f1ff;
      color: #6d28d9;
    }

    .trial-band {
      background:
        radial-gradient(circle at 15% 25%, rgba(167, 139, 250, 0.18), transparent 28%),
        linear-gradient(180deg, #6d28d9 0%, #3b1878 100%);
      color: #ffffff;
      padding: 86px 0 96px;
    }

    .trial-header {
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }

    .trial-copy h3,
    .trial-header h3 {
      margin: 0 0 16px;
      font-size: clamp(2.4rem, 4.6vw, 3.9rem);
      line-height: 1.08;
      text-transform: none;
      color: #ffffff;
    }

    .trial-copy p,
    .trial-header p {
      max-width: 840px;
      margin: 0 auto;
      color: rgba(255,255,255,0.88);
      font-size: 1.08rem;
      line-height: 1.82;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 40px;
    }

    .step-card {
      padding: 28px 26px;
      color: var(--text);
      text-align: left;
    }

    .step-number {
      color: var(--navy);
      font-size: 3.3rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 14px;
    }

    .step-card h4 {
      margin: 0 0 10px;
      font-size: 1.85rem;
      color: var(--text);
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .trial-cta {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .button.alt {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.16);
      box-shadow: none;
    }

    .button.alt:hover,
    .button.alt:focus-visible {
      background: rgba(255,255,255,0.18);
    }

    .trial-cta .button.alt {
      background: linear-gradient(180deg, #9b6bff 0%, #7c3aed 100%);
      border-color: rgba(255,255,255,0.22);
      box-shadow: 0 16px 36px rgba(124, 58, 237, 0.30);
    }

    .trust-title .accent {
      color: var(--navy-3);
    }

    .trust-copy {
      text-align: center;
      max-width: 880px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 40px;
    }

    .testimonial-card {
      padding: 30px 28px;
    }

    .testimonial-card strong {
      display: block;
      margin-bottom: 12px;
      color: var(--text);
      font-size: 1.22rem;
    }

    .rating {
      color: #12b981;
      font-size: 1.12rem;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .testimonial-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.85;
    }

    .split-grid {
      gap: 30px;
    }

    .split-copy {
      padding: 36px 34px;
      border: 1px solid rgba(90, 45, 176, 0.08);
      border-radius: 30px;
      background: #ffffff;
      box-shadow: var(--shadow);
    }

    .split-copy h3 {
      max-width: none;
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      color: var(--navy);
    }

    .split-copy .section-divider {
      margin-left: 0;
      margin-right: auto;
      max-width: 120px;
    }

    .split-media {
      border-radius: 30px;
      border: 1px solid rgba(90, 45, 176, 0.08);
      box-shadow: var(--shadow);
      background: #ffffff;
    }

    .media-posters {
      background: linear-gradient(180deg, #fcfaff, #f3ecff);
      padding: 14px;
      gap: 12px;
    }

    .poster-tile {
      border-radius: 20px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
    }

    .guide-points li {
      background: #f7f2ff;
      color: var(--text);
      border: 1px solid rgba(90, 45, 176, 0.08);
      font-weight: 600;
    }

    .blog-meta {
      background: rgba(124, 58, 237, 0.10);
      color: var(--navy-3);
      font-size: 0.76rem;
    }

    .text-link {
      color: var(--navy-3);
      font-size: 0.9rem;
      letter-spacing: 0;
      text-transform: none;
      font-weight: 800;
    }

    .faq-section {
      background: transparent;
    }

    .faq-grid {
      grid-template-columns: 1fr;
      max-width: 1120px;
      margin: 42px auto 0;
    }

    .faq-item {
      background: #ffffff;
      box-shadow: var(--shadow);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 24px 28px;
      font-size: 1.04rem;
      color: var(--text);
    }

    .faq-item summary::after {
      content: "+";
      flex: none;
      color: var(--navy-3);
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 400;
    }

    .faq-item[open] summary::after {
      content: "âˆ’";
    }

    .faq-answer {
      padding: 0 28px 24px;
    }

    .keyword-note {
      border-left-color: var(--navy-3);
      background: #ffffff;
    }

    .site-footer {
      padding: 40px 0 22px;
      background: #ffffff;
      border-top: 1px solid rgba(90, 45, 176, 0.08);
    }

    .footer-panel {
      display: grid;
      gap: 24px;
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
    }

    .footer-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 60px 48px;
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(49, 18, 111, 0.78), rgba(109, 40, 217, 0.42)),
        url("../Images/banner/atlas-pro-ontv-2026-1200.jpg");
      background-color: #4c1d95;
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-strong);
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }

    .footer-cta-copy {
      max-width: 760px;
    }

    .footer-cta-kicker {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.84);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .footer-cta h2 {
      margin: 16px 0 12px;
      color: #ffffff;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .footer-cta p {
      margin: 0;
      color: rgba(255,255,255,0.88);
      font-size: 1.02rem;
      line-height: 1.8;
    }

    .footer-cta-keywords {
      margin-top: 14px !important;
      color: rgba(255,255,255,0.70) !important;
      font-size: 0.88rem !important;
      line-height: 1.7 !important;
    }

    .footer-cta .button {
      flex: none;
      min-width: 240px;
      margin-top: 0;
      background: #ffffff;
      color: var(--navy);
      border-color: rgba(255,255,255,0.34);
      box-shadow: 0 18px 34px rgba(36, 16, 80, 0.24);
    }

    .footer-cta .button:hover,
    .footer-cta .button:focus-visible {
      background: #f6efff;
      color: var(--navy);
      box-shadow: 0 22px 40px rgba(36, 16, 80, 0.28);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 1fr));
      gap: 34px;
      align-items: start;
    }

    .footer-brand {
      max-width: 320px;
    }

    .footer-brand .brand {
      margin-bottom: 18px;
    }

    .footer-brand .brand-logo {
      width: auto;
      height: 54px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-links div {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .footer-title {
      margin: 0 0 12px;
      color: var(--text);
      font-size: 1.15rem;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--navy-3);
    }

    .footer-note {
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(90, 45, 176, 0.08);
      text-align: left;
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .floating-whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
      box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
    }

    .floating-whatsapp:hover,
    .floating-whatsapp:focus-visible {
      box-shadow: 0 24px 42px rgba(37, 211, 102, 0.40);
    }

    @media (max-width: 1080px) {
      .hero-shell,
      .footer-grid,
      .testimonials-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

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

      .footer-cta .button {
        width: 100%;
      }

      .footer-brand {
        max-width: none;
      }

      .hero-copy,
      .hero p {
        max-width: none;
      }

      .hero h1 {
        max-width: 12ch;
      }

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

      .pricing-grid > .price-card:last-child {
        grid-column: auto;
      }

      .error-hero-shell,
      .error-content {
        width: min(100%, calc(100% - 2rem));
      }
    }

    @media (max-width: 900px) {
      .menu-centered-wrapper {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        justify-content: space-between;
        padding: 0 20px;
        gap: 0;
      }
      .nav-links, .header-actions {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 24px;
        flex-direction: column;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #eee;
      }
    }

    @media (max-width: 640px) {
      .pricing-grid,
      .feature-grid,
      .guide-grid,
      .blog-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid > .price-card:last-child {
        grid-column: auto;
      }

      .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
      }

      .error-copy .lead {
        max-width: none;
      }

      .error-actions,
      .error-cta-box .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .error-actions .button,
      .error-cta-box .button {
        width: 100%;
      }

      .brand-logo {
        height: 38px;
      }

      .footer-brand .brand-logo {
        height: 46px;
      }

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

      .button,
      .price-card .button {
        width: 100%;
      }

      .footer-panel {
        padding: 0;
      }

      .footer-cta {
        padding: 24px 22px;
      }
    }
  
