    /* ============================================
       CSS VARIABLES
       ============================================ */
    :root {
      --dark: #0a0e1a;
      --dark-card: #111827;
      --dark-card-alt: #0f172a;
      --accent: #f97316;
      --accent-dark: #ea580c;
      --accent-glow: rgba(249, 115, 22, 0.3);
      --green: #22c55e;
      --green-glow: rgba(34, 197, 94, 0.15);
      --red: #ef4444;
      --red-glow: rgba(239, 68, 68, 0.15);
      --yellow: #eab308;
      --blue: #3b82f6;
      --purple: #a855f7;
      --text: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dark: #64748b;
      --border: rgba(255, 255, 255, 0.06);
      --border-light: rgba(255, 255, 255, 0.1);
    }

    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    /* ============================================
       HERO SECTION
       ============================================ */
    .hero {
      position: relative;
      padding: 80px 24px 60px;
      text-align: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -300px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
      opacity: 0.5;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249, 115, 22, 0.1);
      border: 1px solid rgba(249, 115, 22, 0.25);
      padding: 10px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 32px;
      animation: fadeInDown 0.8s ease;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
    }

    .hero h1 {
      font-size: clamp(36px, 8vw, 68px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      max-width: 900px;
      margin: 0 auto 24px;
      animation: fadeInUp 0.8s ease;
    }

    .hero h1 span {
      color: var(--accent);
    }

    .hero-description {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
      animation: fadeInUp 1s ease;
    }

    /* ============================================
       SECTIONS
       ============================================ */
    .section {
      padding: 40px 24px 80px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 48px;
    }

    .section-title span {
      color: var(--text-muted);
      font-weight: 400;
    }

    /* ============================================
       COMPARISON GRID
       ============================================ */
    .comparison-wrapper {
      position: relative;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 48px;
    }

    /* VS Badge */
    .vs-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 20;
      width: 60px;
      height: 60px;
      background: var(--dark);
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 900;
      color: var(--accent);
      box-shadow: 0 0 40px var(--accent-glow);
    }

    /* ============================================
       COMPARISON CARDS
       ============================================ */
    .comparison-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
    }

    .comparison-card:hover {
      transform: translateY(-4px);
    }

    .comparison-card.competitor {
      background: var(--dark-card);
      border: 1px solid var(--border);
    }

    .comparison-card.ours {
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
      border: 1px solid rgba(249, 115, 22, 0.25);
      box-shadow: 0 0 80px rgba(249, 115, 22, 0.1);
    }

    /* Card Header */
    .card-header {
      padding: 20px 24px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .card-label {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card-label .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .competitor .dot {
      background: var(--red);
      box-shadow: 0 0 12px var(--red);
    }

    .ours .dot {
      background: var(--green);
      box-shadow: 0 0 12px var(--green);
    }

    .card-label span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .card-tag {
      padding: 5px 14px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .competitor .card-tag {
      background: rgba(239, 68, 68, 0.12);
      color: var(--red);
    }

    .ours .card-tag {
      background: rgba(34, 197, 94, 0.12);
      color: var(--green);
    }

    /* Card Site Name */
    .card-site-name {
      padding: 0 24px 20px;
    }

    .card-site-name h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .card-site-name small {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--text-muted);
      font-family: 'JetBrains Mono', monospace;
    }

    /* Title Bar */
    .title-bar {
      margin: 0 20px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .title-bar code {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.05);
      padding: 6px 12px;
      border-radius: 6px;
      word-break: break-all;
    }

    .competitor .title-bar code {
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .ours .title-bar code {
      border: 1px solid rgba(34, 197, 94, 0.2);
    }

    /* ============================================
       SCREENSHOT CAROUSEL
       ============================================ */
    .screenshot-carousel {
      position: relative;
      margin: 0 20px 20px;
      border-radius: 12px;
      overflow: hidden;
      background: #0d1117;
      border: 1px solid var(--border-light);
    }

    /* Browser Bar */
    .browser-bar {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: #1e293b;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }

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

    .browser-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .browser-dot:nth-child(1) { background: #ef4444; }
    .browser-dot:nth-child(2) { background: #eab308; }
    .browser-dot:nth-child(3) { background: #22c55e; }

    .browser-title {
      flex: 1;
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 0 40px;
    }

    /* Carousel Container */
    .carousel-container {
      position: relative;
    }

    .carousel-slides {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide {
      flex: 0 0 100%;
      position: relative;
    }

    /* Scrollable Screenshot */
    .screenshot-scroll {
      height: 400px;
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: thin;
      scrollbar-color: var(--accent) transparent;
    }

    .screenshot-scroll::-webkit-scrollbar {
      width: 6px;
    }

    .screenshot-scroll::-webkit-scrollbar-track {
      background: transparent;
    }

    .screenshot-scroll::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 3px;
    }

    .screenshot-scroll::-webkit-scrollbar-thumb:hover {
      background: var(--accent-dark);
    }

    .screenshot-scroll img {
      width: 100%;
      height: auto;
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.8);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      pointer-events: none;
      opacity: 1;
      transition: opacity 0.3s ease;
    }

    .scroll-indicator.hidden {
      opacity: 0;
    }

    .scroll-indicator svg {
      width: 14px;
      height: 14px;
      animation: bounce 1.5s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(3px); }
    }

    /* Carousel Navigation */
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid var(--border-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.2s ease;
      color: var(--text);
    }

    .carousel-nav:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .carousel-nav.prev { left: 12px; }
    .carousel-nav.next { right: 12px; }

    .carousel-nav svg {
      width: 18px;
      height: 18px;
    }

    .carousel-nav.hidden {
      display: none;
    }

    /* Carousel Dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 12px 0;
      background: rgba(0, 0, 0, 0.3);
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border-light);
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .carousel-dot.active {
      background: var(--accent);
      transform: scale(1.25);
    }

    .carousel-dot:hover {
      background: var(--accent);
    }

    .carousel-dots.hidden {
      display: none;
    }

    /* Page Label */
    .page-label {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.8);
      color: var(--text);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 5;
    }

    /* ============================================
       META DESCRIPTION BAR
       ============================================ */
    .meta-desc-bar {
      margin: 0 20px 16px;
      padding: 16px 18px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .meta-desc-bar label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .meta-desc-bar p {
      font-size: 12px;
      line-height: 1.6;
      font-family: 'JetBrains Mono', monospace;
    }

    .competitor .meta-desc-bar p {
      color: var(--red);
    }

    .ours .meta-desc-bar p {
      color: var(--green);
    }

    /* ============================================
       SCORE BADGES
       ============================================ */
    .score-badges {
      display: flex;
      gap: 8px;
      margin: 0 20px 20px;
      flex-wrap: wrap;
    }

    .score-badge {
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'JetBrains Mono', monospace;
    }

    .score-badge.bad {
      background: rgba(239, 68, 68, 0.1);
      color: var(--red);
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .score-badge.good {
      background: rgba(34, 197, 94, 0.1);
      color: var(--green);
      border: 1px solid rgba(34, 197, 94, 0.2);
    }

    .score-badge.warn {
      background: rgba(234, 179, 8, 0.1);
      color: var(--yellow);
      border: 1px solid rgba(234, 179, 8, 0.2);
    }

    /* ============================================
       CALLOUTS
       ============================================ */
    .callouts {
      padding: 0 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .callout {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--text-muted);
    }

    .callout-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      margin-top: 1px;
    }

    .competitor .callout-icon {
      background: rgba(239, 68, 68, 0.15);
      color: var(--red);
    }

    .ours .callout-icon {
      background: rgba(34, 197, 94, 0.15);
      color: var(--green);
    }

    /* Collapsible Callouts (Mobile) */
    .callouts-toggle {
      display: none;
      width: 100%;
      padding: 12px 24px;
      background: transparent;
      border: none;
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .callouts-toggle:hover {
      color: var(--accent);
    }

    .callouts-toggle svg {
      width: 16px;
      height: 16px;
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .callouts-toggle.active svg {
      transform: rotate(180deg);
    }

    /* ============================================
       CONTENT CONSOLIDATION DISPLAY
       ============================================ */
    .consolidation-banner {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
      border: 1px solid rgba(168, 85, 247, 0.25);
      border-radius: 16px;
      padding: 24px;
      margin: 0 20px 20px;
      position: relative;
      overflow: hidden;
    }

    .consolidation-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--blue));
    }

    .consolidation-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 700;
      color: var(--purple);
      margin-bottom: 12px;
    }

    .consolidation-title svg {
      width: 18px;
      height: 18px;
    }

    .consolidation-flow {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .consolidation-old {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .consolidation-page {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.2);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      font-family: 'JetBrains Mono', monospace;
      color: var(--red);
    }

    .consolidation-arrow {
      color: var(--purple);
      font-size: 24px;
      font-weight: 700;
    }

    .consolidation-new {
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
    }

    .consolidation-benefit {
      margin-top: 12px;
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .consolidation-benefit svg {
      width: 14px;
      height: 14px;
      color: var(--green);
    }

    /* ============================================
       STATS ROW
       ============================================ */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stat-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--green));
    }

    .stat-number {
      font-size: clamp(32px, 5vw, 44px);
      font-weight: 900;
      letter-spacing: -2px;
      background: linear-gradient(135deg, var(--accent), #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    /* ============================================
       CONTENT REORGANIZATION SECTION
       ============================================ */
    .reorg-section {
      background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      margin-top: 60px;
    }

    .reorg-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .reorg-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(168, 85, 247, 0.1);
      border: 1px solid rgba(168, 85, 247, 0.25);
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 20px;
    }

    .reorg-badge svg {
      width: 14px;
      height: 14px;
    }

    .reorg-header h3 {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .reorg-header p {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .reorg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }

    .reorg-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .reorg-card:hover {
      border-color: var(--purple);
      transform: translateY(-4px);
    }

    .reorg-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .reorg-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--green);
    }

    .reorg-card-count {
      background: rgba(168, 85, 247, 0.15);
      color: var(--purple);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
    }

    .reorg-from {
      margin-bottom: 16px;
    }

    .reorg-from-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .reorg-from-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .reorg-from-item {
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.15);
      color: var(--text-muted);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 10px;
      font-family: 'JetBrains Mono', monospace;
    }

    .reorg-to {
      padding-top: 16px;
      border-top: 1px dashed var(--border-light);
    }

    .reorg-to-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 8px;
    }

    .reorg-to-item {
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      color: var(--green);
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
    }

    .reorg-benefit {
      margin-top: 12px;
      font-size: 12px;
      color: var(--text-muted);
      font-style: italic;
    }

    /* ============================================
       FEATURE TABLE
       ============================================ */
    .feature-table-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .feature-table {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      min-width: 600px;
    }

    .feature-table-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      padding: 20px 28px;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .feature-table-header div:nth-child(2),
    .feature-table-header div:nth-child(3) {
      text-align: center;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      padding: 16px 28px;
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background 0.2s;
    }

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

    .feature-row:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .feature-name {
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .feature-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(249, 115, 22, 0.1);
      font-size: 15px;
      flex-shrink: 0;
    }

    .feature-value {
      text-align: center;
      font-size: 14px;
      font-weight: 600;
    }

    .feature-value .check {
      color: var(--green);
    }

    .feature-value .cross {
      color: var(--red);
      opacity: 0.7;
    }

    .feature-value .partial {
      color: var(--yellow);
      font-size: 13px;
    }

    /* ============================================
       CTA SECTION
       ============================================ */
    .cta-section {
      text-align: center;
      padding: 80px 24px;
      position: relative;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section h2 {
      font-size: clamp(32px, 6vw, 52px);
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 16px;
    }

    .cta-section h2 span {
      color: var(--accent);
    }

    .cta-section p {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--text-muted);
      max-width: 550px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      font-size: 16px;
      font-weight: 700;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 30px var(--accent-glow);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 40px rgba(249, 115, 22, 0.4);
    }

    .cta-btn svg {
      width: 20px;
      height: 20px;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      text-align: center;
      padding: 40px 24px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 1px;
      border-top: 1px solid var(--border);
    }

    /* ============================================
       ANIMATIONS
       ============================================ */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ============================================
       RESPONSIVE DESIGN
       ============================================ */

    /* Tablet */
    @media (max-width: 1024px) {
      .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .vs-badge {
        display: none;
      }

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

      .reorg-section {
        padding: 32px 20px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero {
        padding: 60px 20px 40px;
      }

      .section {
        padding: 32px 16px 60px;
      }

      .card-header {
        padding: 16px 20px 12px;
      }

      .card-site-name {
        padding: 0 20px 16px;
      }

      .card-site-name h3 {
        font-size: 18px;
      }

      .title-bar {
        margin: 0 16px 10px;
      }

      .screenshot-carousel {
        margin: 0 16px 16px;
      }

      .screenshot-scroll {
        height: 300px;
      }

      .meta-desc-bar {
        margin: 0 16px 12px;
        padding: 12px 14px;
      }

      .score-badges {
        margin: 0 16px 16px;
      }

      .score-badge {
        font-size: 10px;
        padding: 5px 10px;
      }

      .consolidation-banner {
        margin: 0 16px 16px;
        padding: 16px;
      }

      .consolidation-flow {
        flex-direction: column;
        align-items: flex-start;
      }

      .consolidation-arrow {
        transform: rotate(90deg);
        align-self: center;
      }

      .callouts {
        padding: 0 20px 20px;
      }

      .callouts-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .callouts.collapsed {
        display: none;
      }

      .callouts.collapsed + .callouts-toggle {
        border-top: none;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .stat-card {
        padding: 20px 16px;
      }

      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 11px;
      }

      .feature-table-wrapper {
        margin: 0 -16px;
        padding: 0 16px;
      }

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

      .cta-section {
        padding: 60px 20px;
      }

      .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .hero h1 {
        letter-spacing: -1px;
      }

      .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
      }

      .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .stat-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 16px 20px;
      }

      .stat-card::before {
        width: 3px;
        height: 100%;
        top: 0;
        right: auto;
        bottom: 0;
      }

      .stat-number {
        font-size: 32px;
        margin-bottom: 0;
      }

      .stat-label {
        font-size: 13px;
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ============================================
       LIGHTBOX
       ============================================ */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-content {
      position: relative;
      width: 90%;
      max-width: 1400px;
      height: 90vh;
      display: flex;
      gap: 24px;
    }

    .lightbox-panel {
      flex: 1;
      background: var(--dark-card);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-light);
    }

    .lightbox-panel.competitor {
      border-color: rgba(239, 68, 68, 0.3);
    }

    .lightbox-panel.ours {
      border-color: rgba(34, 197, 94, 0.3);
    }

    .lightbox-header {
      padding: 16px 20px;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }

    .lightbox-header h4 {
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lightbox-header .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .lightbox-panel.competitor .status-dot {
      background: var(--red);
      box-shadow: 0 0 10px var(--red);
    }

    .lightbox-panel.ours .status-dot {
      background: var(--green);
      box-shadow: 0 0 10px var(--green);
    }

    .lightbox-header .tag {
      font-size: 10px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .lightbox-panel.competitor .tag {
      background: rgba(239, 68, 68, 0.15);
      color: var(--red);
    }

    .lightbox-panel.ours .tag {
      background: rgba(34, 197, 94, 0.15);
      color: var(--green);
    }

    .lightbox-image-scroll {
      flex: 1;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--accent) transparent;
    }

    .lightbox-image-scroll::-webkit-scrollbar {
      width: 8px;
    }

    .lightbox-image-scroll::-webkit-scrollbar-track {
      background: transparent;
    }

    .lightbox-image-scroll::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 4px;
    }

    .lightbox-image-scroll img {
      width: 100%;
      height: auto;
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      width: 44px;
      height: 44px;
      background: var(--dark-card);
      border: 1px solid var(--border-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text);
      transition: all 0.2s ease;
      z-index: 10;
    }

    .lightbox-close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .lightbox-close svg {
      width: 24px;
      height: 24px;
    }

    .lightbox-vs {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: var(--dark);
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 900;
      color: var(--accent);
      z-index: 5;
    }

    .lightbox-hint {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lightbox-hint kbd {
      background: rgba(255, 255, 255, 0.1);
      padding: 2px 8px;
      border-radius: 4px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
    }

    /* Click hint on images */
    .screenshot-scroll {
      cursor: pointer;
      position: relative;
    }

    .screenshot-scroll::after {
      content: 'Click to expand';
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.8);
      color: var(--text);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
      z-index: 5;
    }

    .screenshot-scroll:hover::after {
      opacity: 1;
    }

    /* Lightbox Responsive */
    @media (max-width: 900px) {
      .lightbox-content {
        flex-direction: column;
        height: 95vh;
        gap: 12px;
      }

      .lightbox-panel {
        flex: 1;
        min-height: 0;
      }

      .lightbox-vs {
        display: none;
      }

      .lightbox-close {
        top: -40px;
        right: 0;
        width: 36px;
        height: 36px;
      }

      .lightbox-hint {
        display: none;
      }
    }

    /* ============================================
       PAGE SELECTOR (for multi-page comparisons)
       ============================================ */
    .page-selector {
      display: flex;
      gap: 8px;
      margin: 0 20px 16px;
      flex-wrap: wrap;
    }

    .page-selector-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      color: var(--text-muted);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .page-selector-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .page-selector-btn.active {
      background: var(--accent);
      border-color: var(--accent);
      color: white;
    }

    /* ============================================
       VISUAL COMPARISON GRID
       ============================================ */
    .visual-comparison-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 24px;
    }

    .visual-comparison-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .visual-comparison-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
      box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
    }

    .visual-comparison-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
    }

    .comparison-icon {
      font-size: 20px;
    }

    .visual-comparison-screenshots {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .visual-screenshot {
      flex: 1;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      height: 180px;
    }

    .visual-screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.5s ease;
    }

    .visual-comparison-card:hover .visual-screenshot img {
      transform: scale(1.02);
    }

    .visual-screenshot.competitor-thumb {
      border: 2px solid rgba(239, 68, 68, 0.3);
    }

    .visual-screenshot.ours-thumb {
      border: 2px solid rgba(34, 197, 94, 0.3);
    }

    .thumb-label {
      position: absolute;
      bottom: 8px;
      left: 8px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .thumb-label.bad {
      background: rgba(239, 68, 68, 0.9);
      color: white;
    }

    .thumb-label.good {
      background: rgba(34, 197, 94, 0.9);
      color: white;
    }

    .comparison-arrow-icon {
      font-size: 24px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .visual-comparison-stats {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .stat-pill {
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
    }

    .stat-pill.bad {
      background: rgba(239, 68, 68, 0.1);
      color: var(--red);
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .stat-pill.good {
      background: rgba(34, 197, 94, 0.1);
      color: var(--green);
      border: 1px solid rgba(34, 197, 94, 0.2);
    }

    /* ============================================
       MOBILE COMPARISON GRID
       ============================================ */
    .mobile-comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .mobile-comparison-card,
    .mobile-pair {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 14px;
    }

    .mobile-comparison-title,
    .mobile-pair-label {
      font-size: 13px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Column headers above phones */
    .mobile-phone-cols {
      display: flex;
      gap: 10px;
      margin-bottom: 8px;
    }

    .phone-col-bad,
    .phone-col-good {
      flex: 1;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      padding: 5px 4px;
      border-radius: 6px;
    }

    .phone-col-bad {
      color: var(--red);
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .phone-col-good {
      color: var(--green);
      background: rgba(34, 197, 94, 0.08);
      border: 1px solid rgba(34, 197, 94, 0.2);
    }

    .mobile-screenshots,
    .mobile-pair-screens {
      display: flex;
      gap: 10px;
    }

    .mobile-screenshot,
    .mobile-screen {
      flex: 1;
      height: 500px;
      border-radius: 16px;
      overflow-y: auto;
      overflow-x: hidden;
      background: #0d1117;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
      scroll-behavior: smooth;
    }

    .mobile-screenshot::-webkit-scrollbar,
    .mobile-screen::-webkit-scrollbar {
      width: 3px;
    }

    .mobile-screenshot::-webkit-scrollbar-thumb,
    .mobile-screen::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 2px;
    }

    .mobile-screenshot img,
    .mobile-screen img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Estrella mobile section */
    .mobile-comparison-section {
      margin-top: 40px;
    }

    .mobile-comparison-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* Responsive for visual comparisons */
    @media (max-width: 768px) {
      .visual-comparison-grid {
        grid-template-columns: 1fr;
      }

      .visual-comparison-screenshots {
        flex-direction: column;
      }

      .visual-screenshot {
        height: 150px;
      }

      .comparison-arrow-icon {
        transform: rotate(90deg);
      }

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

      .mobile-screenshot,
      .mobile-screen {
        height: 380px;
      }
    }
  </style>
</head>

/* ============================================
   TAB NAVIGATION STYLES
   ============================================ */
.tabs-nav-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.tabs-nav {
  display: flex;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 16px 20px;
  background: var(--dark-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.tab-btn svg {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.tab-btn span {
  display: block;
  font-weight: 700;
}

.tab-btn small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.tab-btn:hover svg {
  opacity: 1;
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
}

.tab-btn.active svg {
  opacity: 1;
  color: var(--accent);
}

.tab-btn.active small {
  color: var(--green);
  opacity: 1;
}

.tabs-content-wrapper {
  min-height: 600px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab Navigation - Mobile */
@media (max-width: 768px) {
  .tabs-nav-container {
    padding: 12px 16px;
  }

  .tabs-nav {
    flex-direction: column;
    gap: 8px;
  }

  .tab-btn {
    min-width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .tab-btn svg {
    width: 24px;
    height: 24px;
  }

  .tab-btn small {
    font-size: 10px;
  }
}
