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

    :root {
      --black: #06070a;
      --black2: #0c0e14;
      --black3: #12141c;
      --panel: #15171f;
      --panel2: #1a1d28;
      --border: rgba(255, 255, 255, 0.07);
      --border2: rgba(255, 255, 255, 0.12);
      --orange: #ff6b1a;
      --orange2: #ff8c42;
      --orange-dim: rgba(255, 107, 26, 0.15);
      --orange-glow: rgba(255, 107, 26, 0.35);
      --green: #00e676;
      --green-dim: rgba(0, 230, 118, 0.12);
      --red: #ff3d57;
      --cyan: #00d4ff;
      --cyan-dim: rgba(0, 212, 255, 0.1);
      --text: #e8eaf0;
      --text2: #9aa0b8;
      --text3: #5a607a;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--text);
      font-family: var(--font-body);
      overflow-x: hidden;
      cursor: default;
    }

    /* ─── CUSTOM CURSOR ─── */
    .cursor-dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
      mix-blend-mode: difference;
    }

    .cursor-ring {
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(255, 107, 26, 0.5);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), width 0.2s, height 0.2s;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
      opacity: 0.6;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(6, 7, 10, 0.85);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--orange);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .nav-logo-icon::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: var(--orange);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      opacity: 0.3;
      filter: blur(6px);
      z-index: -1;
    }

    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 1px;
      color: white;
    }

    .nav-logo-text span {
      color: var(--orange);
    }

    .nav-badge {
      font-family: var(--font-mono);
      font-size: 9px;
      background: rgba(255, 107, 26, 0.1);
      border: 1px solid rgba(255, 107, 26, 0.3);
      color: var(--orange);
      padding: 2px 8px;
      border-radius: 20px;
      letter-spacing: 1px;
    }

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

    .nav-links a {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--text2);
      text-decoration: none;
      transition: color 0.2s;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: white;
    }

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

    .btn-nav {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 10px 28px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary-orange {
      background: var(--orange);
      color: white;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-primary-orange::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.4s;
    }

    .btn-primary-orange:hover::before {
      left: 100%;
    }

    .btn-primary-orange:hover {
      background: var(--orange2);
      box-shadow: 0 0 30px var(--orange-glow);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text2);
      border: 1px solid var(--border2);
      cursor: pointer;
    }

    .btn-ghost:hover {
      color: white;
      border-color: rgba(255, 255, 255, 0.3);
    }

    /* ─── ALERT BAR ─── */
    .alert-bar {
      background: linear-gradient(90deg, var(--black2), rgba(255, 107, 26, 0.08), var(--black2));
      border-bottom: 1px solid rgba(255, 107, 26, 0.2);
      padding: 10px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      z-index: 99;
    }

    .alert-bar-inner {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      font-family: var(--font-mono);
    }

    .alert-dot {
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.7);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(255, 107, 26, 0);
      }
    }

    .alert-tag {
      background: rgba(255, 107, 26, 0.15);
      border: 1px solid rgba(255, 107, 26, 0.4);
      color: var(--orange);
      padding: 2px 10px;
      border-radius: 2px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .alert-text {
      color: var(--text2);
    }

    .alert-text strong {
      color: white;
    }

    .countdown-timer {
      color: var(--orange);
      font-weight: 700;
      letter-spacing: 2px;
    }

    .alert-sep {
      color: var(--border2);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      padding-top: 140px;
      padding-bottom: 80px;
      padding-left: 5%;
      padding-right: 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(255, 107, 26, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    }

    .hero-corner {
      position: absolute;
      width: 120px;
      height: 120px;
      border: 1px solid rgba(255, 107, 26, 0.2);
    }

    .hero-corner.tl {
      top: 140px;
      left: 5%;
      border-right: none;
      border-bottom: none;
    }

    .hero-corner.br {
      bottom: 80px;
      right: 5%;
      border-left: none;
      border-top: none;
    }

    .hero-left {
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--orange);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
      padding: 8px 16px;
      border: 1px solid rgba(255, 107, 26, 0.3);
      background: rgba(255, 107, 26, 0.08);
      border-radius: 2px;
    }

    .hero-eyebrow-dot {
      width: 5px;
      height: 5px;
      background: var(--orange);
      border-radius: 50%;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 6vw, 84px);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -1px;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .line span {
      display: block;
      animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      opacity: 0;
      transform: translateY(100%);
    }

    .hero-title .line:nth-child(1) span {
      animation-delay: 0.1s;
    }

    .hero-title .line:nth-child(2) span {
      animation-delay: 0.2s;
    }

    .hero-title .line:nth-child(3) span {
      animation-delay: 0.3s;
      color: var(--orange);
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text2);
      max-width: 480px;
      margin-bottom: 44px;
    }

    .hero-sub strong {
      color: var(--text);
      font-weight: 600;
    }

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

    .btn-hero {

      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 40px;
      text-decoration: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.25s;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-main {
      background: var(--orange);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .btn-hero-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    }

    .btn-hero-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px var(--orange-glow);
    }

    .btn-hero-ghost {
      background: transparent;
      color: var(--text2);
      border: 1px solid var(--border2);
      font-size: 13px;
      padding: 14px 28px;
    }

    .btn-hero-ghost:hover {
      color: white;
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }

    .hero-stat {
      background: var(--black2);
      padding: 18px 20px;
      text-align: center;
      position: relative;
    }

    .hero-stat::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: var(--orange);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .hero-stat:hover::after {
      opacity: 1;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-num span {
      color: var(--orange);
    }

    .stat-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text3);
    }

    /* ─── HERO RIGHT: UI MOCKUP ─── */
    .hero-right {
      position: relative;
      z-index: 2;
      animation: fadeInRight 1s 0.5s ease forwards;
      opacity: 0;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .vpn-app-mockup {
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 107, 26, 0.05);
      position: relative;
    }

    .vpn-app-mockup::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    .mockup-titlebar {
      background: var(--black2);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }

    .titlebar-dots {
      display: flex;
      gap: 7px;
    }

    .titlebar-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }

    .dot-red {
      background: #ff5f57;
    }

    .dot-yellow {
      background: #ffbd2e;
    }

    .dot-green {
      background: #28ca41;
    }

    .titlebar-name {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 0.5px;
    }

    .titlebar-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--green);
    }

    .titlebar-status-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-green 2s infinite;
    }

    @keyframes pulse-green {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    .mockup-body {
      padding: 28px;
    }

    /* Connection widget */
    .conn-widget {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 24px;
      position: relative;
      overflow: hidden;
    }

    .conn-widget::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(0, 230, 118, 0.06), transparent 60%);
    }

    .conn-shield {
      width: 72px;
      height: 72px;
      position: relative;
      flex-shrink: 0;
    }

    .shield-ring {
      position: absolute;
      inset: 0;
      border: 2px solid rgba(0, 230, 118, 0.3);
      border-radius: 50%;
      animation: spin-slow 8s linear infinite;
    }

    .shield-ring::before {
      content: '';
      position: absolute;
      top: -3px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
    }

    @keyframes spin-slow {
      to {
        transform: rotate(360deg);
      }
    }

    .shield-icon {
      position: absolute;
      inset: 10px;
      background: rgba(0, 230, 118, 0.1);
      border: 1px solid rgba(0, 230, 118, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--green);
    }

    .conn-info {
      flex: 1;
    }

    .conn-status-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text3);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .conn-status-val {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 800;
      color: var(--green);
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .conn-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text2);
    }

    .conn-flag {
      font-size: 16px;
    }

    .conn-ip {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text3);
      background: var(--panel2);
      padding: 4px 10px;
      border-radius: 4px;
      margin-top: 6px;
      display: inline-block;
    }

    .conn-metrics {
      text-align: right;
    }

    .metric-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      justify-content: flex-end;
    }

    .metric-icon {
      font-size: 10px;
      color: var(--text3);
    }

    .metric-val {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      color: white;
    }

    .metric-unit {
      font-size: 10px;
      color: var(--text3);
    }

    /* Security grid */
    .security-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 20px;
    }

    .sec-item {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: border-color 0.2s;
    }

    .sec-item:hover {
      border-color: rgba(0, 230, 118, 0.3);
    }

    .sec-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sec-dot.active {
      background: var(--green);
      box-shadow: 0 0 8px var(--green);
    }

    .sec-dot.warn {
      background: #ffb800;
    }

    .sec-text {
      font-size: 11px;
      color: var(--text2);
      line-height: 1.3;
    }

    .sec-text strong {
      display: block;
      color: var(--text);
      font-size: 12px;
    }

    /* Traffic graph */
    .traffic-graph {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
    }

    .graph-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .graph-title {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text3);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .graph-val {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--orange);
      font-weight: 700;
    }

    .graph-bars {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 44px;
    }

    .graph-bar {
      flex: 1;
      background: rgba(255, 107, 26, 0.15);
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .graph-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--orange);
      border-radius: 2px;
      transition: height 1s ease;
    }

    .graph-bar:hover {
      background: rgba(255, 107, 26, 0.25);
    }

    /* floating tags around mockup */
    .mockup-float-tag {
      position: absolute;
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      white-space: nowrap;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      animation: float-tag 4s ease-in-out infinite;
    }

    .mockup-float-tag.tag1 {
      top: 15%;
      right: -12%;
      animation-delay: 0s;
    }

    .mockup-float-tag.tag2 {
      bottom: 25%;
      left: -10%;
      animation-delay: 2s;
    }

    .mockup-float-tag .tag-icon {
      font-size: 14px;
    }

    @keyframes float-tag {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    /* ─── SECTION COMMON ─── */
    section {
      padding: 100px 5%;
      position: relative;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--orange);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.5px;
      margin-bottom: 20px;
    }

    .section-title em {
      color: var(--orange);
      font-style: normal;
    }

    .section-sub {
      font-size: 15px;
      color: var(--text2);
      line-height: 1.7;
      max-width: 520px;
      font-weight: 300;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
    }

    .why-item {
      background: var(--black2);
      border: 1px solid var(--border);
      padding: 40px;
      border-radius: 12px;
      transition: all 0.3s;
    }

    .why-item:hover {
      transform: translateY(-10px);
      border-color: var(--orange);
    }

    .why-icon {
      font-size: 32px;
      color: var(--orange);
      margin-bottom: 24px;
    }

    .why-item h3 {
      font-family: var(--font-display);
      font-size: 24px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .why-item p {
      color: var(--text2);
      font-size: 14px;
      line-height: 1.6;
      font-weight: 300;
    }

    @media (max-width: 992px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── TECH SPECS GRID ─── */
    .tech-specs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 50px;
    }

    .tech-spec-item {
      background: var(--black2);
      border: 1px solid var(--border);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s;
    }

    .tech-spec-item:hover {
      border-color: var(--orange);
      background: var(--panel);
      transform: translateY(-5px);
    }

    .tech-spec-icon {
      font-size: 28px;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .tech-spec-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .tech-spec-desc {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.5;
      font-weight: 300;
    }

    @media (max-width: 1100px) {
      .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .tech-specs-grid {
        grid-template-columns: 1fr;
      }
    }

    .logos-strip {
      background: var(--black2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 5%;
      overflow: hidden;
    }

    .logos-track {
      display: flex;
      gap: 60px;
      align-items: center;
      animation: scroll-logos 25s linear infinite;
      width: max-content;
    }

    .logos-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll-logos {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .logo-item {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text3);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-item i {
      font-size: 16px;
    }

    /* ─── FEATURES ─── */
    #features {
      background: var(--black);
    }

    .features-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 80px;
      align-items: start;
    }

    .features-intro {
      position: sticky;
      top: 120px;
    }

    .feature-list {
      display: grid;
      gap: 2px;
    }

    .feature-card {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 32px;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 24px;
      align-items: start;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--orange);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.3s;
    }

    .feature-card:hover {
      background: var(--panel);
      border-color: rgba(255, 107, 26, 0.25);
      transform: translateX(4px);
    }

    .feature-card:hover::before {
      transform: scaleY(1);
    }

    .feature-card:hover .feat-icon-wrap {
      background: rgba(255, 107, 26, 0.15);
      border-color: rgba(255, 107, 26, 0.4);
    }

    .feature-card:hover .feat-icon-wrap i {
      color: var(--orange);
    }

    .feat-icon-wrap {
      width: 52px;
      height: 52px;
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .feat-icon-wrap i {
      font-size: 20px;
      color: var(--text3);
      transition: color 0.3s;
    }

    .feat-body {}

    .feat-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 6px;
    }

    .feat-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .feat-desc {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.6;
      font-weight: 300;
    }

    .feat-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      background: rgba(0, 230, 118, 0.1);
      border: 1px solid rgba(0, 230, 118, 0.25);
      color: var(--green);
      padding: 3px 10px;
      border-radius: 20px;
    }

    /* ─── HOW IT WORKS ─── */
    #how {
      background: linear-gradient(180deg, var(--black) 0%, var(--black2) 100%);
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 60px;
    }

    .how-step {
      background: var(--black2);
      padding: 40px 32px;
      position: relative;
      transition: background 0.3s;
    }

    .how-step:hover {
      background: var(--panel);
    }

    .how-num {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 900;
      color: rgba(255, 107, 26, 0.08);
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -2px;
    }

    .how-icon {
      font-size: 28px;
      color: var(--orange);
      margin-bottom: 16px;
      display: block;
    }

    .how-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .how-desc {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.6;
      font-weight: 300;
    }

    .how-arrow {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: var(--black);
      border: 1px solid var(--border2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--orange);
      z-index: 2;
    }

    /* ─── COMPARISON ─── */
    #compare {
      background: var(--black);
    }

    .compare-wrapper {
      margin-top: 60px;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .compare-table thead tr {
      background: var(--black2);
    }

    .compare-table th {
      padding: 20px 24px;
      text-align: left;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text3);
      font-weight: 400;
      border-bottom: 1px solid var(--border);
    }

    .compare-table th.col-us {
      background: rgba(255, 107, 26, 0.08);
      color: var(--orange);
      border-bottom-color: rgba(255, 107, 26, 0.3);
      position: relative;
    }

    .compare-table th.col-us::before {
      content: '★ BEST';
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 8px;
      background: var(--orange);
      color: white;
      padding: 2px 6px;
      border-radius: 2px;
      letter-spacing: 0.5px;
    }

    .compare-table td {
      padding: 18px 24px;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      transition: background 0.2s;
    }

    .compare-table tbody tr:hover td {
      background: var(--panel);
    }

    .compare-table tbody tr:last-child td {
      border-bottom: none;
    }

    .compare-table td:first-child {
      color: var(--text2);
      font-weight: 500;
      font-size: 13px;
    }

    .col-us {
      background: rgba(255, 107, 26, 0.04);
      border-left: 1px solid rgba(255, 107, 26, 0.15);
      border-right: 1px solid rgba(255, 107, 26, 0.15);
    }

    .col-us td.col-us {
      background: rgba(255, 107, 26, 0.06);
    }

    .check-yes {
      color: var(--green);
      font-weight: 700;
    }

    .check-no {
      color: var(--text3);
    }

    .check-partial {
      color: #ffb800;
    }

    .badge-us {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 0.5px;
    }

    .badge-sub {
      font-size: 10px;
      color: var(--text3);
      font-family: var(--font-mono);
      display: block;
      margin-top: 2px;
    }

    /* ─── PRICING ─── */
    #pricing {
      background: linear-gradient(180deg, var(--black2) 0%, var(--black) 100%);
    }

    .pricing-layout {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }

    .pricing-card {
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .pricing-card.featured {
      border-color: var(--orange);
      box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.3), 0 20px 60px rgba(255, 107, 26, 0.12);
    }

    .pricing-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--orange);
    }

    .pricing-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--orange);
      color: white;
      font-family: var(--font-mono);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 10px;
      border-radius: 2px;
      text-transform: uppercase;
    }

    .pricing-head {
      padding: 32px 32px 24px;
      border-bottom: 1px solid var(--border);
    }

    .pricing-plan {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 10px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
      flex-wrap: wrap;
    }

    .price-old {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--text3);
      text-decoration: line-through;
      align-self: center;
      margin-right: 2px;
    }

    /* ─── SAVINGS CALCULATOR ─── */
    .savings-calc {
      background: var(--panel2);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 28px 32px;
      margin: 32px 0 0;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .savings-calc-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: white;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .savings-calc-sub {
      font-size: 12px;
      color: var(--text3);
      font-family: var(--font-mono);
      margin-bottom: 20px;
    }

    .calc-slider-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .calc-slider {
      flex: 1;
      -webkit-appearance: none;
      height: 4px;
      background: var(--border2);
      border-radius: 2px;
      outline: none;
    }

    .calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      background: var(--orange);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 10px var(--orange-glow);
    }

    .calc-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text2);
      white-space: nowrap;
    }

    .calc-result {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }

    .calc-box {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      text-align: center;
    }

    .calc-box-val {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 900;
      color: white;
      line-height: 1;
    }

    .calc-box-val.green { color: var(--green); }
    .calc-box-val.orange { color: var(--orange); }

    .calc-box-lbl {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    /* ─── IP WIDGET ─── */
    .ip-widget {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 61, 87, 0.08);
      border: 1px solid rgba(255, 61, 87, 0.25);
      border-radius: 8px;
      padding: 10px 18px;
      margin-bottom: 24px;
      font-family: var(--font-mono);
      font-size: 12px;
    }

    .ip-widget-dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse-dot 1.5s infinite;
      flex-shrink: 0;
    }

    .ip-widget-text { color: var(--text2); }
    .ip-widget-ip { color: var(--red); font-weight: 700; letter-spacing: 1px; }
    .ip-widget-risk {
      background: rgba(255, 61, 87, 0.15);
      color: var(--red);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* ─── FAQ SCHEMA SEO ─── */
    .faq-seo-hidden { display: none; }

    .price-num {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 900;
      line-height: 1;
      color: white;
    }

    .price-cur {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text3);
    }

    .price-period {
      font-size: 13px;
      color: var(--text3);
    }

    .price-sub {
      font-size: 11px;
      color: var(--text3);
      font-family: var(--font-mono);
      margin-top: 4px;
    }

    .price-sub.good {
      color: var(--green);
    }

    .pricing-body {
      padding: 28px 32px;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 28px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 0;
      font-size: 13px;
      color: var(--text2);
      font-weight: 300;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pricing-features li i {
      color: var(--green);
      font-size: 12px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pricing-features li strong {
      color: var(--text);
      font-weight: 600;
    }

    .btn-pricing {
      display: block;
      width: 100%;
      padding: 15px;
      text-align: center;
      border-radius: 6px;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
    }

    .btn-pricing-orange {
      background: var(--orange);
      color: white;
    }

    .btn-pricing-orange:hover {
      background: var(--orange2);
      box-shadow: 0 8px 30px var(--orange-glow);
    }

    .btn-pricing-ghost {
      background: transparent;
      color: var(--text2);
      border: 1px solid var(--border2);
    }

    .btn-pricing-ghost:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .pricing-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .pricing-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text3);
    }

    .pricing-trust i {
      color: var(--text3);
    }

    /* Coupon */
    .coupon-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
      margin-top: 20px;
    }

    .coupon-box {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--panel);
      border: 1px dashed rgba(255, 107, 26, 0.4);
      border-radius: 6px;
      padding: 12px 20px;
    }

    .coupon-label {
      font-size: 12px;
      color: var(--text3);
    }

    .coupon-code {
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 3px;
    }

    .coupon-desc {
      font-size: 12px;
      color: var(--text2);
    }

    .coupon-copy {
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--text3);
      width: 32px;
      height: 32px;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: all 0.2s;
    }

    .coupon-copy:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    /* Payment methods */
    .pay-methods {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .pay-method {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text3);
      background: var(--panel);
      border: 1px solid var(--border);
      padding: 8px 14px;
      border-radius: 6px;
    }

    .pay-method i {
      font-size: 16px;
    }

    /* ─── TESTIMONIALS ─── */
    #reviews {
      background: var(--black2);
      border-top: 1px solid var(--border);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 60px;
    }

    .review-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .review-card::before {
      content: '"';
      position: absolute;
      top: -10px;
      right: 20px;
      font-size: 100px;
      color: rgba(255, 107, 26, 0.05);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .review-card:hover {
      border-color: rgba(255, 107, 26, 0.25);
      transform: translateY(-3px);
    }

    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .review-stars i {
      font-size: 12px;
      color: #ffd700;
    }

    .review-text {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.7;
      margin-bottom: 20px;
      font-weight: 300;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      color: white;
    }

    .review-name {
      font-size: 13px;
      font-weight: 600;
    }

    .review-meta {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text3);
      margin-top: 2px;
    }

    /* Review highlight card */
    .review-card.highlight {
      background: linear-gradient(135deg, rgba(255, 107, 26, 0.08), rgba(255, 107, 26, 0.02));
      border-color: rgba(255, 107, 26, 0.25);
    }

    /* ─── FAQ ─── */
    #faq {
      background: var(--black);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 80px;
      margin-top: 60px;
      align-items: start;
    }

    .faq-sidebar {
      position: sticky;
      top: 120px;
    }

    .faq-sidebar-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .faq-sidebar-title em {
      color: var(--orange);
      font-style: normal;
    }

    .faq-sidebar-sub {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    .faq-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-contact-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 13px;
      text-decoration: none;
      transition: all 0.2s;
      border: 1px solid var(--border2);
      background: var(--panel);
      color: var(--text2);
    }

    .faq-contact-btn i {
      font-size: 16px;
    }

    .faq-contact-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .faq-item {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item:hover {
      border-color: var(--border2);
    }

    .faq-item.open {
      border-color: rgba(255, 107, 26, 0.3);
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      padding: 22px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      gap: 16px;
    }

    .faq-q-text {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .faq-item.open .faq-q-text {
      color: var(--orange);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid var(--border2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--text3);
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .faq-item.open .faq-icon {
      background: var(--orange);
      border-color: var(--orange);
      color: white;
      transform:
        rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.open .faq-answer {
      max-height: 600px;
    }

    .faq-answer-inner {
      padding: 0 24px 22px;
      font-size: 13px;
      color: var(--text2);
      line-height: 1.7;
      font-weight: 300;
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .faq-answer-inner strong {
      color: var(--text);
      font-weight: 600;
    }

    /* ─── CTA SECTION ─── */
    #cta {
      background: var(--black2);
      border-top: 1px solid var(--border);
      padding: 120px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(255, 107, 26, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 24px;
    }

    .cta-title em {
      color: var(--orange);
      font-style: normal;
    }

    .cta-sub {
      font-size: 16px;
      color: var(--text2);
      max-width: 480px;
      margin: 0 auto 44px;
      line-height: 1.6;
      font-weight: 300;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .cta-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text3);
    }

    .cta-trust-item i {
      font-size: 14px;
      color: var(--text3);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 60px 5% 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand {}

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      text-decoration: none;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--orange);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-text {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 1px;
      color: white;
    }

    .footer-logo-text span {
      color: var(--orange);
    }

    .footer-tagline {
      font-size: 12px;
      color: var(--text3);
      line-height: 1.6;
      max-width: 220px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border: 1px solid var(--border2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--text3);
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .footer-col-title {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text2);
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 300;
    }

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

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 12px;
      color: var(--text3);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 12px;
      color: var(--text3);
      text-decoration: none;
    }

    .footer-bottom-links a:hover {
      color: var(--text2);
    }

    /* ─── MODAL ─── */
    .modal-bg {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(12px);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .modal-bg.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal-box {
      background: var(--panel);
      border: 1px solid rgba(255, 107, 26, 0.25);
      border-radius: 16px;
      max-width: 480px;
      width: 100%;
      overflow: hidden;
      transform: translateY(20px) scale(0.96);
      transition: transform 0.3s;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-bg.open .modal-box {
      transform: translateY(0) scale(1);
    }

    .modal-header {
      background: var(--black2);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }

    .modal-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .modal-close {
      width: 32px;
      height: 32px;
      border: 1px solid var(--border2);
      border-radius: 50%;
      background: transparent;
      color: var(--text3);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all 0.2s;
    }

    .modal-close:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .modal-body {
      padding: 28px 24px;
    }

    .modal-plan-info {
      background: rgba(255, 107, 26, 0.08);
      border: 1px solid rgba(255, 107, 26, 0.25);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 24px;
      font-size: 13px;
    }

    .modal-plan-info strong {
      color: var(--orange);
    }

    .modal-email-box {
      background: var(--black2);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 16px;
    }

    .modal-email-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text3);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .modal-email-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modal-email-val {
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--cyan);
    }

    .copy-btn-small {
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--text3);
      width: 28px;
      height: 28px;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: all 0.2s;
    }

    .copy-btn-small:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .modal-mail-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }

    .modal-mail-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      border: 1px solid;
    }

    .btn-gmail {
      background: rgba(234, 67, 53, 0.1);
      border-color: rgba(234, 67, 53, 0.3);
      color: #ea4335;
    }

    .btn-gmail:hover {
      background: rgba(234, 67, 53, 0.2);
    }

    .btn-outlook {
      background: rgba(0, 120, 212, 0.1);
      border-color: rgba(0, 120, 212, 0.3);
      color: #0078d4;
    }

    .btn-outlook:hover {
      background: rgba(0, 120, 212, 0.2);
    }

    .btn-mailto {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      font-size: 13px;
      color: var(--text2);
      text-decoration: none;
      border: 1px solid var(--border);
      background: transparent;
      transition: all 0.2s;
      margin-bottom: 20px;
    }

    .btn-mailto:hover {
      border-color: var(--border2);
    }

    .modal-template {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
    }

    .modal-template-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--orange);
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .modal-template-text {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text2);
      line-height: 1.7;
      white-space: pre-wrap;
    }

    /* ─── TOAST ─── */
    .toast-wrap {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 400;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .toast {
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      min-width: 240px;
      max-width: 320px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      animation: toast-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes toast-in {
      from {
        transform: translateX(50px);
        opacity: 0;
      }

      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .toast-icon {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .toast-icon.sale {
      background: rgba(0, 230, 118, 0.15);
      color: var(--green);
    }

    .toast-icon.info {
      background: rgba(255, 107, 26, 0.15);
      color: var(--orange);
    }

    .toast-icon.alert {
      background: rgba(255, 61, 87, 0.15);
      color: var(--red);
    }

    .toast-icon.cyber {
      background: rgba(0, 212, 255, 0.15);
      color: var(--cyan);
    }

    .toast-icon.bot {
      background: rgba(140, 82, 255, 0.15);
      color: #a78bfa;
    }

    /* ─── BOT HONEYPOT FIELDS (invisible to humans) ─── */
    .hp-field {
      position: absolute !important;
      left: -9999px !important;
      top: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
      tab-index: -1 !important;
    }

    /* ─── LIVE ACTIVITY PULSE ─── */
    .live-pulse-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--green);
      background: rgba(0, 230, 118, 0.08);
      border: 1px solid rgba(0, 230, 118, 0.2);
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 1px;
    }

    .live-pulse-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 1.5s infinite;
    }

    .toast-text {
      flex: 1;
    }

    .toast-title {
      font-weight: 600;
      color: var(--text);
      font-size: 13px;
    }

    .toast-sub {
      font-size: 11px;
      color: var(--text3);
      margin-top: 2px;
    }

    /* ─── SCROLL PROGRESS ─── */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--orange);
      z-index: 9997;
      width: 0%;
      transition: width 0.1s linear;
      box-shadow: 0 0 10px var(--orange-glow);
    }

    /* ─── BACK TO TOP ─── */
    .back-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 44px;
      height: 44px;
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 8px;
      color: var(--text3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      z-index: 300;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s;
    }

    .back-top.show {
      opacity: 1;
      transform: translateY(0);
    }

    .back-top:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    /* ─── LIVE BADGE ─── */
    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--green);
      background: rgba(0, 230, 118, 0.1);
      border: 1px solid rgba(0, 230, 118, 0.25);
      padding: 5px 12px;
      border-radius: 20px;
      margin-left: 16px;
    }

    .live-dot {
      width: 5px;
      height: 5px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-green 2s infinite;
    }

    /* ─── UTILITY ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .divider {
      width: 60px;
      height: 3px;
      background: var(--orange);
      margin-bottom: 32px;
    }

    /* ─── MOBILE ─── */
    .mob-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .mob-menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mob-menu {
      position: fixed;
      inset: 0;
      background: rgba(6, 7, 10, 0.98);
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .mob-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mob-menu a {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--text2);
      text-decoration: none;
      letter-spacing: 2px;
      transition: color 0.2s;
    }

    .mob-menu a:hover {
      color: var(--orange);
    }

    .mob-close {
      position: absolute;
      top: 24px;
      right: 5%;
      font-size: 28px;
      color: var(--text3);
      cursor: pointer;
      background: none;
      border: none;
    }

    @media (max-width: 1100px) {
      .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .features-intro {
        position: static;
      }

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

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

      .hero-right {
        display: none;
      }

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

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

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-sidebar {
        position: static;
      }

      .pricing-layout {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 60px auto 0;
      }
    }

    @media (max-width: 768px) {

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

      .mob-menu-btn {
        display: flex;
      }

      .hero {
        padding-top: 160px;
      }

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

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

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

      .compare-table {
        font-size: 12px;
      }

      .compare-table th,
      .compare-table td {
        padding: 12px 10px;
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .alert-bar {
        display: none;
      }

      .cursor-dot,
      .cursor-ring {
        display: none;
      }
    }

    /* ─── PHASE 2: SPEED TEST & ARCHITECTURE ─── */
    .speedometer-wrap {
      position: relative;
      width: 240px;
      margin: 30px auto 0;
    }

    .speedometer {
      width: 100%;
      height: auto;
    }

    .speed-bg {
      stroke: var(--black3);
      stroke-width: 8;
      fill: none;
    }

    .speed-progress {
      transition: stroke-dashoffset 0.1s linear;
      stroke: url(#speedGrad);
      stroke-width: 8;
      fill: none;
      stroke-linecap: round;
    }

    .speed-main-val {
      font-size: 56px;
      font-weight: 900;
      margin-top: -15px;
      color: white;
      line-height: 1;
    }

    .speed-unit {
      font-size: 14px;
      color: var(--text3);
      font-weight: 600;
      text-transform: uppercase;
    }

    .speed-location-badge {
      font-size: 11px;
      background: var(--black3);
      padding: 5px 14px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 25px;
      color: var(--text2);
      border: 1px solid var(--border);
    }

    .speed-metrics-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 40px;
      border-top: 1px solid var(--border);
      padding-top: 25px;
    }

    .s-metric-label {
      font-size: 10px;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
    }

    .s-metric-val {
      font-size: 18px;
      font-weight: 800;
      color: white;
      margin-top: 6px;
    }

    .arch-diagram {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 60px;
      flex-wrap: wrap;
      padding: 0 20px;
    }

    .arch-step {
      background: var(--black2);
      border: 1px solid var(--border);
      padding: 30px 20px;
      border-radius: 20px;
      text-align: center;
      width: 220px;
      position: relative;
      transition: transform 0.3s;
    }

    .arch-step:hover {
      transform: translateY(-5px);
    }

    .arch-step.highlight {
      border-color: var(--orange);
      background: linear-gradient(180deg, rgba(255, 107, 26, 0.1), transparent);
      box-shadow: 0 10px 40px rgba(255, 107, 26, 0.1);
    }

    .arch-icon-box {
      font-size: 28px;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .arch-text strong {
      display: block;
      font-size: 15px;
      margin-bottom: 8px;
      color: white;
      font-family: var(--font-display);
    }

    .arch-text p {
      font-size: 13px;
      color: var(--text3);
      line-height: 1.5;
    }

    .arch-connector {
      font-size: 24px;
      color: var(--border2);
      opacity: 0.5;
    }

    .memory-dynamic {
      animation: memory-pulse 1.5s infinite;
    }

    @keyframes memory-pulse {
      0% {
        opacity: 1;
        filter: drop-shadow(0 0 0 var(--orange));
      }

      50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 10px var(--orange));
      }

      100% {
        opacity: 1;
        filter: drop-shadow(0 0 0 var(--orange));
      }
    }

    @media (max-width: 900px) {
      .arch-diagram {
        flex-direction: column;
        gap: 15px;
      }

      .arch-connector {
        transform: rotate(90deg);
        margin: 10px 0;
      }

      .arch-step {
        width: 100%;
        max-width: 320px;
      }
    }

    /* ─── PHASE 3: CONVERSION & i18n ─── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 20px;
      background: var(--black3);
      padding: 4px;
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .lang-btn {
      background: transparent;
      border: none;
      color: var(--text3);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .lang-btn.active {
      background: var(--orange);
      color: white;
    }

    .exit-modal-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 5000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .exit-modal-bg.open {
      display: flex;
      opacity: 1;
    }

    .exit-box {
      background: var(--black1);
      border: 1px solid var(--orange);
      width: 100%;
      max-width: 500px;
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      position: relative;
      box-shadow: 0 0 50px rgba(255, 107, 26, 0.2);
    }

    .exit-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: none;
      color: var(--text3);
      cursor: pointer;
      font-size: 20px;
    }

    .exit-icon {
      font-size: 60px;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .exit-title {
      font-size: 28px;
      font-weight: 800;
      color: white;
      margin-bottom: 15px;
      font-family: var(--font-display);
    }

    .exit-desc {
      font-size: 15px;
      color: var(--text2);
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .exit-offer {
      background: rgba(255, 107, 26, 0.1);
      padding: 15px;
      border-radius: 12px;
      border: 1px dashed var(--orange);
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 30px;
    }

    .business-section {
      background: var(--black2);
      border-top: 1px solid var(--border);
      padding: 80px 5%;
      text-align: center;
    }

    .biz-card {
      background: var(--panel);
      border: 1px solid var(--border2);
      padding: 50px;
      border-radius: 30px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .biz-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 107, 26, 0.05), transparent 70%);
      pointer-events: none;
    }

    .biz-title {
      font-size: 32px;
      font-weight: 800;
      color: white;
      margin-bottom: 20px;
      font-family: var(--font-display);
    }

    .biz-desc {
      font-size: 16px;
      color: var(--text2);
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .biz-cta-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .biz-btn {
      background: #25d366;
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: transform 0.3s;
    }

    .biz-btn:hover {
      transform: scale(1.05);
      background: #20bd5a;
    }

    @media (max-width: 900px) {
      .lang-switcher {
        margin-left: 0;
        order: 10;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
      }
    }

    /* ─── STICKY MOBILE CTA ─── */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 12, 18, 0.95);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      padding: 12px 20px;
      z-index: 1000;
      display: none;
      transition: transform 0.3s;
      box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .sticky-cta.show {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
    }

    .sticky-price {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 18px;
      color: white;
    }

    .sticky-price span {
      font-size: 11px;
      color: var(--text3);
      font-weight: 400;
      margin-left: 4px;
    }

    .sticky-btn {
      background: var(--orange);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .sticky-cta.show {
        display: flex;
        animation: slideUp 0.3s ease-out;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%);
      }

      to {
        transform: translateY(0);
      }
    }

    /* ─── PERFORMANCE NOTE BLOCK ─── */
    .perf-note {
      background: rgba(255,107,26,0.04);
      border: 1px solid rgba(255,107,26,0.15);
      border-radius: 8px;
      padding: 14px 18px;
      margin-top: 32px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text3);
      line-height: 1.6;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .perf-note i { color: var(--orange); margin-right: 6px; }
    .country-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
      justify-content: center;
    }

    .country-item {
      background: var(--black3);
      border: 1px solid var(--border);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-family: var(--font-mono);
      color: var(--text2);
    }

    .perf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    .perf-card {
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
    }

    .perf-card-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--orange);
    }

    .speed-meter {
      text-align: center;
      margin-bottom: 20px;
    }

    .speed-val {
      font-size: 48px;
      font-weight: 900;
      color: white;
    }

    .speed-val span {
      font-size: 14px;
      color: var(--text3);
      margin-left: 5px;
    }

    .speed-bar {
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      margin-top: 10px;
      overflow: hidden;
    }

    .speed-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--orange), var(--green));
    }

    .speed-stats {
      display: flex;
      justify-content: space-around;
      font-size: 14px;
      border-top: 1px solid var(--border);
      padding-top: 15px;
    }

    .s-stat span {
      color: var(--text3);
    }

    .app-screenshot-placeholder {
      aspect-ratio: 16/10;
      background: var(--panel);
      border: 2px dashed var(--border);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--text3);
    }

    .app-screenshot-placeholder i {
      font-size: 32px;
    }

    @media (max-width: 992px) {
      .perf-grid {
        grid-template-columns: 1fr;
      }
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .trust-item {
      background: linear-gradient(180deg, var(--panel), var(--black2));
      border: 1px solid var(--border);
      padding: 40px;
      border-radius: 16px;
      border-top: 3px solid var(--orange);
    }

    .trust-icon {
      font-size: 32px;
      color: var(--orange);
      margin-bottom: 24px;
    }

    .trust-item h3 {
      font-family: var(--font-display);
      font-size: 22px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .trust-item p {
      color: var(--text2);
      font-size: 14px;
      line-height: 1.6;
    }

    .trust-date {
      display: inline-block;
      margin-top: 20px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--green);
      background: rgba(0, 230, 118, 0.1);
      padding: 4px 10px;
      border-radius: 4px;
    }

    @media (max-width: 992px) {
      .trust-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════ NOISE OVERLAY ═══════════════════ */
    .noise-overlay {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
      opacity: 0.6;
    }

    /* ═══════════════════ MOBILE MENU ═══════════════════ */
    .mob-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 22px;
      cursor: pointer;
    }

    .mob-menu {
      position: fixed;
      inset: 0;
      background: rgba(6, 7, 10, 0.98);
      backdrop-filter: blur(20px);
      z-index: 200;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .mob-menu.open {
      display: flex;
    }

    .mob-menu a {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 22px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .mob-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--text);
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .mob-toggle { display: block; }
    }

    /* ═══════════════════ AUTH SAYFALARI ═══════════════════ */
    .auth-page {
      min-height: 100vh;
      padding-top: 120px;
      padding-bottom: 60px;
      padding-left: 5%;
      padding-right: 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .auth-card {
      background: var(--panel);
      border: 1px solid var(--border2);
      border-radius: 16px;
      padding: 48px;
      width: 100%;
      max-width: 440px;
      position: relative;
      z-index: 2;
    }

    .auth-card-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .auth-card-title span {
      color: var(--orange);
    }

    .auth-card-sub {
      color: var(--text2);
      font-size: 14px;
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--text2);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .form-input {
      width: 100%;
      background: var(--black2);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 12px 16px;
      color: white;
      font-size: 14px;
      font-family: var(--font-body);
      transition: border-color 0.2s;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--orange);
      box-shadow: 0 0 0 3px var(--orange-dim);
    }

    .form-input::placeholder {
      color: var(--text3);
    }

    .form-error {
      background: rgba(255, 61, 87, 0.08);
      border: 1px solid rgba(255, 61, 87, 0.2);
      color: var(--red);
      padding: 12px 16px;
      border-radius: 6px;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .form-success {
      background: rgba(0, 230, 118, 0.08);
      border: 1px solid rgba(0, 230, 118, 0.2);
      color: var(--green);
      padding: 12px 16px;
      border-radius: 6px;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .btn-full {
      width: 100%;
      text-align: center;
      justify-content: center;
      padding: 14px;
    }

    .auth-link {
      text-align: center;
      margin-top: 24px;
      font-size: 13px;
      color: var(--text2);
    }

    .auth-link a {
      color: var(--orange);
      text-decoration: none;
      font-weight: 600;
    }

    .auth-link a:hover {
      text-decoration: underline;
    }

    /* ═══════════════════ PANEL ═══════════════════ */
    .panel-page {
      padding-top: 110px;
      padding-left: 5%;
      padding-right: 5%;
      min-height: 100vh;
    }

    .panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .panel-title {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .panel-title span {
      color: var(--orange);
    }

    .panel-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }

    .panel-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
    }

    .panel-card-icon {
      font-size: 28px;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .panel-card-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .panel-card-val {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 900;
      color: var(--orange);
    }

    .panel-card-sub {
      font-size: 12px;
      color: var(--text3);
      font-family: var(--font-mono);
      margin-top: 4px;
    }

    /* Panel Table */
    .panel-table-wrap {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow-x: auto;
    }

    .panel-table {
      width: 100%;
      border-collapse: collapse;
    }

    .panel-table th {
      background: var(--black2);
      padding: 14px 20px;
      font-size: 10px;
      font-family: var(--font-mono);
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .panel-table td {
      padding: 14px 20px;
      font-size: 13px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
    }

    .panel-table tr:last-child td {
      border-bottom: none;
    }

    .panel-table tr:hover td {
      background: rgba(255, 255, 255, 0.01);
    }

    .badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      font-family: var(--font-mono);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .badge-active {
      background: rgba(0, 230, 118, 0.12);
      color: var(--green);
      border: 1px solid rgba(0, 230, 118, 0.3);
    }

    .badge-expired {
      background: rgba(255, 61, 87, 0.08);
      color: var(--red);
      border: 1px solid rgba(255, 61, 87, 0.2);
    }

    .badge-pending {
      background: rgba(255, 107, 26, 0.1);
      color: var(--orange);
      border: 1px solid rgba(255, 107, 26, 0.3);
    }

    /* ═══════════════════ PRICING ═══════════════════ */
    .pricing-page {
      padding-top: 140px;
      padding-left: 5%;
      padding-right: 5%;
      min-height: 100vh;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .plan-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 32px;
      text-align: center;
      transition: all 0.3s;
      position: relative;
    }

    .plan-card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .plan-card.featured {
      border-color: var(--orange);
      box-shadow: 0 0 40px var(--orange-dim);
    }

    .plan-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: white;
      font-size: 10px;
      font-weight: 800;
      font-family: var(--font-mono);
      letter-spacing: 1px;
      padding: 4px 16px;
      border-radius: 20px;
      text-transform: uppercase;
    }

    .plan-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .plan-days {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    .plan-price {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .plan-price span {
      font-size: 20px;
      color: var(--text3);
    }

    .plan-price-sub {
      font-size: 12px;
      color: var(--text3);
      margin-bottom: 24px;
      font-family: var(--font-mono);
    }

    .plan-features {
      list-style: none;
      text-align: left;
      margin-bottom: 32px;
    }

    .plan-features li {
      padding: 8px 0;
      font-size: 13px;
      color: var(--text2);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .plan-features li i.fa-check {
      color: var(--green);
      font-size: 10px;
    }

    .plan-features li i.fa-times {
      color: var(--text3);
      font-size: 10px;
    }

    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }
      .panel-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════ CONTENT PAGES ═══════════════════ */
    .content-page {
      padding-top: 120px;
      padding-left: 5%;
      padding-right: 5%;
      padding-bottom: 60px;
      min-height: 100vh;
    }

    .content-page .section-label {
      justify-content: center;
    }

    .content-page .section-title {
      text-align: center;
    }

    .content-page .section-sub {
      text-align: center;
      max-width: 700px;
      margin: 16px auto 40px;
    }

    /* ═══════════════════ FAQ ═══════════════════ */
    .faq-layout {
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .faq-layout {
        grid-template-columns: 1fr;
      }
    }
