
    /* ── Enhanced Home Page Styles ── */
    .hero-v2 {
      padding: calc(var(--nav-height) + 80px) 28px 0;
      text-align: center;
      background: radial-gradient(ellipse 100% 70% at 50% -10%, rgba(37, 99, 235, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 85% 85%, rgba(99, 102, 241, 0.1) 0%, transparent 55%);
      position: relative;
      overflow: hidden;
    }

    .hero-v2::before {
      content: '';
      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: 56px 56px;
      pointer-events: none;
    }

    .hero-badge-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .hero-pill {
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.25);
      border-radius: 999px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .04em;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-pill .dot {
      width: 7px;
      height: 7px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse-dot 1.8s ease infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(1.4)
      }
    }

    /* Dashboard Preview Mockup */
    .dashboard-preview {
      position: relative;
      margin: 52px auto 0;
      max-width: 1000px;
      border-radius: 16px 16px 0 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-bottom: none;
      box-shadow: 0 -8px 80px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.08);
      overflow: hidden;
    }

    .dp-bar {
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border);
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dp-dots {
      display: flex;
      gap: 6px;
    }

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

    .dp-dot.r {
      background: #ef4444;
    }

    .dp-dot.y {
      background: #f59e0b;
    }

    .dp-dot.g {
      background: #10b981;
    }

    .dp-url {
      flex: 1;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 12px;
      color: var(--text-faint);
    }

    .dp-inner {
      display: grid;
      grid-template-columns: 220px 1fr;
    }

    .dp-sidebar {
      background: var(--bg-surface);
      border-right: 1px solid var(--border);
      padding: 16px 0;
    }

    .dp-nav-item {
      padding: 9px 20px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dp-nav-item.active {
      background: var(--accent-subtle);
      color: var(--accent);
      border-right: 2px solid var(--accent);
    }

    .dp-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .dp-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .dp-stat {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
    }

    .dp-stat-val {
      font-size: 22px;
      font-weight: 900;
      color: var(--text);
    }

    .dp-stat-lbl {
      font-size: 11px;
      color: var(--text-faint);
      margin-top: 2px;
    }

    .dp-stat.accent .dp-stat-val {
      color: var(--accent);
    }

    .dp-stat.green .dp-stat-val {
      color: #10b981;
    }

    .dp-stat.amber .dp-stat-val {
      color: #f59e0b;
    }

    .dp-stat.red .dp-stat-val {
      color: #ef4444;
    }

    .dp-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .dp-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
    }

    .dp-card-title {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--text-faint);
      margin-bottom: 10px;
    }

    .dp-site-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
    }

    .dp-site-row:last-child {
      border-bottom: none;
    }

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

    .dp-status-dot.h {
      background: #10b981;
    }

    .dp-status-dot.w {
      background: #f59e0b;
    }

    .dp-score {
      margin-left: auto;
      font-weight: 700;
      font-size: 12px;
    }

    .dp-alert-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
    }

    .dp-alert-row:last-child {
      border-bottom: none;
    }

    .dp-severity {
      width: 6px;
      height: 100%;
      border-radius: 3px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .dp-severity.c {
      background: #ef4444;
      width: 6px;
      min-height: 34px;
    }

    .dp-severity.w {
      background: #f59e0b;
      width: 6px;
      min-height: 34px;
    }

    /* Single Pane Hero */
    .spog-section {
      padding: 80px 28px;
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
    }

    .spog-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .spog-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 28px;
    }

    .spog-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .spog-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--accent-subtle);
      border: 1px solid var(--border-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .spog-text-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
    }

    .spog-text-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
      padding: 64px 28px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        var(--bg);
      border-top: 1px solid var(--border);
    }

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

    .stat-block {
      text-align: center;
    }

    .stat-number {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, var(--accent), #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .stat-sub {
      font-size: 11px;
      color: var(--text-faint);
      margin-top: 3px;
    }

    /* How It Works */
    .hiw-section {
      padding: 80px 28px;
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
      position: relative;
    }

    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(16.6% + 20px);
      right: calc(16.6% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--accent), #a78bfa);
      z-index: 0;
    }

    .hiw-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hiw-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--accent), #4f46e5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      color: #fff;
      box-shadow: 0 0 24px rgba(37, 99, 235, 0.35);
    }

    .hiw-step h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hiw-step p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* New Feature Spotlights */
    .feature-strip {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      transition: border-color var(--transition), transform var(--transition);
    }

    .feature-strip:hover {
      border-color: var(--border-accent);
      transform: translateY(-2px);
    }

    .feature-strip-icon {
      font-size: 28px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feature-strip h4 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .feature-strip p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Testimonials */
    .testimonials-section {
      padding: 80px 28px;
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .testimonial-stars {
      color: #f59e0b;
      font-size: 15px;
    }

    .testimonial-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
    }

    .testimonial-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-size: 13px;
      font-weight: 700;
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--text-faint);
    }

    /* Comparison Table */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 40px;
    }

    .compare-table th,
    .compare-table td {
      padding: 13px 16px;
      font-size: 13px;
      border-bottom: 1px solid var(--border);
      text-align: left;
    }

    .compare-table th {
      background: var(--bg-surface);
      font-weight: 700;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text-faint);
    }

    .compare-table th:first-child {
      border-radius: var(--radius) 0 0 0;
    }

    .compare-table th:last-child {
      border-radius: 0 var(--radius) 0 0;
    }

    .compare-table td:not(:first-child) {
      text-align: center;
    }

    .compare-table tr:hover td {
      background: var(--bg-surface);
    }

    .compare-table .wpw-col {
      color: var(--accent);
      font-weight: 700;
    }

    .check-yes {
      color: #10b981;
      font-size: 18px;
    }

    .check-no {
      color: var(--text-faint);
      font-size: 18px;
    }

    .check-part {
      color: #f59e0b;
      font-size: 13px;
    }

    .compare-table .feature-name {
      font-weight: 600;
      color: var(--text);
    }

    .compare-table .exclusive-tag {
      display: inline-block;
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.25);
      color: var(--accent);
      font-size: 10px;
      font-weight: 700;
      padding: 1px 7px;
      border-radius: 999px;
      margin-left: 6px;
      vertical-align: middle;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .dp-inner {
        grid-template-columns: 1fr;
      }

      .dp-sidebar {
        display: none;
      }

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

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

      .hiw-steps {
        grid-template-columns: 1fr;
      }

      .hiw-steps::before {
        display: none;
      }

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

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

    /* Floating alert badge on hero */
    .floating-alerts {
      position: absolute;
      right: 4%;
      top: calc(var(--nav-height) + 120px);
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 2;
    }

    .floating-alert {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      animation: float-in 0.6s ease forwards;
    }

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

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

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

    .floating-alert:nth-child(2) {
      animation-delay: .2s;
      opacity: 0;
    }

    .floating-alert:nth-child(3) {
      animation-delay: .4s;
      opacity: 0;
    }

    @media(max-width:768px) {
      .floating-alerts {
        display: none;
      }
    }
  

/* Shared form-field styles (originally register.html-only) */
.form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .form-input {
      width: 100%;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text);
      font-size: 15px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      font-family: inherit;
    }

    .form-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }

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