    /* ============================================
       DESIGN TOKENS
       ============================================ */
    :root {
      --navy: #001F3F;
      --navy-2: #0A2E55;
      --navy-3: #14406F;
      --teal: #39CCCC;
      --teal-dark: #2BB3B3;
      --teal-soft: #E5FAFA;
      --bg: #FFFFFF;
      --bg-soft: #F7FAFC;
      --bg-card: #FFFFFF;
      --border: #E5EAF0;
      --text: #0E1A2B;
      --text-muted: #5A6878;
      --text-soft: #8A95A3;
      --gradient: linear-gradient(135deg, #001F3F 0%, #0A2E55 50%, #14406F 100%);
      --gradient-teal: linear-gradient(135deg, #39CCCC 0%, #2BB3B3 100%);
      --shadow-sm: 0 1px 2px rgba(0, 31, 63, 0.04), 0 1px 3px rgba(0, 31, 63, 0.06);
      --shadow-md: 0 4px 12px rgba(0, 31, 63, 0.06), 0 2px 6px rgba(0, 31, 63, 0.04);
      --shadow-lg: 0 20px 40px rgba(0, 31, 63, 0.08), 0 8px 16px rgba(0, 31, 63, 0.04);
      --shadow-xl: 0 32px 64px rgba(0, 31, 63, 0.12), 0 12px 24px rgba(0, 31, 63, 0.06);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --maxw: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
    a:hover { color: var(--teal-dark); }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--navy);
      line-height: 1.15;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--navy);
      color: #fff;
      box-shadow: var(--shadow-md);
    }
    .btn-primary:hover {
      background: #002a55;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: var(--shadow-lg);
    }
    .btn-teal {
      background: var(--teal);
      color: var(--navy);
      box-shadow: var(--shadow-md);
    }
    .btn-teal:hover {
      background: var(--teal-dark);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: var(--shadow-lg);
    }
    .btn-ghost {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--border);
    }
    .btn-ghost:hover {
      border-color: var(--navy);
      color: var(--navy);
    }
    .btn-link {
      color: var(--navy);
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-link:hover { color: var(--teal-dark); }
    .btn-link svg { transition: transform 0.2s ease; }
    .btn-link:hover svg { transform: translateX(3px); }

    /* ============================================
       PROMO BAR
       ============================================ */
    .promo-bar {
      background: var(--gradient);
      color: #fff;
      padding: 10px 16px;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
    }
    .promo-bar a {
      color: var(--teal);
      font-weight: 700;
      margin-left: 6px;
    }
    .promo-bar a:hover { color: #fff; text-decoration: underline; }

    /* ============================================
       NAVIGATION
       ============================================ */
    .nav-wrapper {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }
    .nav-logo img { height: 32px; width: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text);
      font-weight: 500;
      font-size: 15px;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--teal-dark); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-cta .btn { padding: 10px 20px; font-size: 14px; }
    .nav-mobile-toggle {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: var(--navy);
    }
    .nav-mobile-toggle:hover { background: var(--bg-soft); }

    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a::after {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-left: 5px;
      border-right: 1.5px solid var(--text-muted);
      border-bottom: 1.5px solid var(--text-muted);
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.2s ease;
    }
    .nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(2px); }
    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: -16px;
      min-width: 320px;
      background: #fff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      padding: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      list-style: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-dropdown-menu li a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
      border-radius: 8px;
      font-weight: 600;
      color: var(--navy);
    }
    .nav-dropdown-menu li a:hover { background: var(--bg-soft); }
    .nav-dropdown-menu .item-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-dropdown-menu .item-icon img { width: 28px; height: 28px; }
    .nav-dropdown-menu .item-text {
      display: flex;
      flex-direction: column;
    }
    .nav-dropdown-menu .item-text small {
      font-weight: 400;
      color: var(--text-muted);
      font-size: 12.5px;
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-orb {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.18) 0%, rgba(57, 204, 204, 0) 70%);
      top: -150px;
      right: -150px;
      z-index: 0;
      pointer-events: none;
    }
    .hero-bg-orb-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 31, 63, 0.08) 0%, rgba(0, 31, 63, 0) 70%);
      bottom: -100px;
      left: -100px;
      z-index: 0;
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--teal-soft);
      border: 1px solid rgba(57, 204, 204, 0.3);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .hero-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal-dark);
      box-shadow: 0 0 0 4px rgba(57, 204, 204, 0.25);
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 60px);
      margin-bottom: 22px;
    }
    .hero h1 .accent {
      background: linear-gradient(120deg, var(--teal-dark), var(--navy));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .hero p.lead {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 520px;
      line-height: 1.65;
    }
    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--text-muted);
    }
    .hero-trust .stars {
      color: #FBBF24;
      letter-spacing: 1px;
      font-size: 16px;
    }
    .hero-visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      background: var(--bg-soft);
      border: 1px solid var(--border);
    }
    .hero-visual img {
      width: 100%;
      display: block;
    }
    .hero-visual-badge {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(6px);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: var(--shadow-md);
    }
    .hero-visual-badge .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10B981;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.15); }
    }

    /* ============================================
       TRUST STRIP
       ============================================ */
    .trust-strip {
      background: var(--bg-soft);
      padding: 36px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .trust-strip-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .trust-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .trust-stats {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-stat .stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 28px;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .trust-stat .stat-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ============================================
       SECTION HEADER
       ============================================ */
    .section {
      padding: 100px 0;
    }
    .section-soft { background: var(--bg-soft); }
    .section-dark {
      background: var(--gradient);
      color: #fff;
    }
    .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
      color: #fff;
    }
    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: 14px;
    }
    .section-dark .section-eyebrow { color: var(--teal); }
    .section-title {
      font-size: clamp(30px, 4vw, 44px);
      margin-bottom: 18px;
    }
    .section-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .section-dark .section-subtitle { color: rgba(255, 255, 255, 0.75); }

    /* ============================================
       PRODUCT BENTO GRID
       ============================================ */
    .product-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 20px;
    }
    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--teal);
    }
    .product-card.featured {
      grid-row: span 2;
      background: linear-gradient(180deg, #FFFFFF 0%, #F2FCFC 100%);
      border-color: rgba(57, 204, 204, 0.25);
    }
    .product-card-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .product-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-soft);
      flex-shrink: 0;
    }
    .product-card-icon img { width: 40px; height: 40px; object-fit: contain; }
    .product-card h3 {
      font-size: 24px;
      letter-spacing: -0.02em;
    }
    .product-card .tagline {
      font-size: 13.5px;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 2px;
    }
    .product-card p.desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.65;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .product-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }
    .product-pills {
      display: flex;
      gap: 6px;
    }
    .pill {
      font-size: 11.5px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .pill-free { background: var(--teal-soft); color: var(--navy); }
    .pill-pro { background: var(--navy); color: #fff; }
    .pill-soon { background: #FEF3C7; color: #92400E; }
    .product-card-visual {
      margin: 16px -32px -32px;
      border-top: 1px solid var(--border);
      overflow: hidden;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .product-card-visual img {
      width: 100%;
      display: block;
    }

    /* ============================================
       PILLAR / FEATURE GRID
       ============================================ */
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pillar {
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .pillar-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--teal-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--navy);
    }
    .pillar h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .pillar p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.65;
    }

    /* ============================================
       PRODUCT SPOTLIGHT (CampaignBay)
       ============================================ */
    .spotlight {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }
    .spotlight.reverse { grid-template-columns: 1.2fr 1fr; }
    .spotlight.reverse .spotlight-text { order: 2; }
    .spotlight.reverse .spotlight-visual { order: 1; }
    .spotlight-text .product-mini {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      background: var(--bg-soft);
      border-radius: 999px;
      font-weight: 600;
      font-size: 13px;
      color: var(--navy);
      margin-bottom: 18px;
    }
    .spotlight-text .product-mini img { width: 22px; height: 22px; }
    .spotlight-text h2 {
      font-size: clamp(28px, 3.5vw, 38px);
      margin-bottom: 18px;
    }
    .spotlight-text p {
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .spotlight-features {
      list-style: none;
      margin-bottom: 28px;
    }
    .spotlight-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      font-size: 15px;
      color: var(--text);
    }
    .spotlight-features li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      margin-top: 3px;
    }
    .spotlight-visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      background: var(--bg-soft);
    }
    .spotlight-visual img {
      width: 100%;
      display: block;
    }

    /* ============================================
       PERFORMANCE COMPARE (TubeBay)
       ============================================ */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    .compare-card {
      padding: 28px;
      border-radius: var(--radius-lg);
      border: 1px solid;
    }
    .compare-card.bad {
      background: rgba(239, 68, 68, 0.05);
      border-color: rgba(239, 68, 68, 0.18);
    }
    .compare-card.good {
      background: linear-gradient(180deg, rgba(57, 204, 204, 0.08) 0%, rgba(255, 255, 255, 0.4) 100%);
      border-color: rgba(57, 204, 204, 0.3);
    }
    .compare-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 14px;
    }
    .compare-card.bad .compare-head { color: #DC2626; }
    .compare-card.good .compare-head { color: var(--teal-dark); }
    .compare-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-top: 1px solid var(--border);
      font-size: 14px;
    }
    .compare-row span:first-child { color: var(--text-muted); }
    .compare-row span:last-child { font-weight: 600; color: var(--text); }
    .compare-card.bad .compare-row span:last-child { color: #DC2626; }
    .compare-card.good .compare-row span:last-child { color: var(--teal-dark); }

    /* ============================================
       TESTIMONIAL
       ============================================ */
    .testimonial-card {
      max-width: 820px;
      margin: 0 auto;
      padding: 48px;
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      position: relative;
    }
    .testimonial-stars {
      color: #FBBF24;
      font-size: 20px;
      letter-spacing: 2px;
      margin-bottom: 18px;
    }
    .testimonial-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 22px;
      line-height: 1.5;
      color: var(--navy);
      margin-bottom: 28px;
      letter-spacing: -0.015em;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gradient-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-weight: 800;
      font-size: 18px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .author-name { font-weight: 700; color: var(--navy); font-size: 15px; }
    .author-meta { color: var(--text-muted); font-size: 13px; }
    .author-meta a { color: var(--teal-dark); font-weight: 600; }

    /* ============================================
       FAQ
       ============================================ */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      background: var(--bg-card);
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item.open {
      border-color: var(--teal);
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      width: 100%;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: -0.01em;
    }
    .faq-toggle-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s ease, transform 0.2s ease;
      color: var(--navy);
    }
    .faq-item.open .faq-toggle-icon {
      background: var(--teal);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-answer-inner {
      padding: 0 26px 22px;
      color: var(--text-muted);
      font-size: 15.5px;
      line-height: 1.7;
    }

    /* ============================================
       CTA BANNER
       ============================================ */
    .cta-banner {
      background: var(--gradient);
      border-radius: var(--radius-xl);
      padding: 64px 48px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.4) 0%, rgba(57, 204, 204, 0) 70%);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }
    .cta-banner::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.2) 0%, rgba(57, 204, 204, 0) 70%);
      bottom: -150px;
      left: -50px;
      pointer-events: none;
    }
    .cta-banner h2 {
      font-size: clamp(28px, 4vw, 40px);
      color: #fff;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }
    .cta-banner p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 560px;
      margin: 0 auto 32px;
      position: relative;
      z-index: 1;
    }
    .cta-form {
      display: flex;
      gap: 10px;
      max-width: 480px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .cta-form input {
      flex: 1;
      padding: 14px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-family: inherit;
      font-size: 15px;
      backdrop-filter: blur(6px);
      outline: none;
    }
    .cta-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
    .cta-form input:focus { border-color: var(--teal); background: rgba(255, 255, 255, 0.12); }
    .cta-form button {
      background: var(--teal);
      color: var(--navy);
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14.5px;
      transition: background 0.2s ease, transform 0.18s ease;
    }
    .cta-form button:hover { background: #fff; transform: translateY(-1px); }
    .cta-form-note {
      margin-top: 14px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 80px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }
    .footer-brand img {
      height: 36px;
      width: auto;
      margin-bottom: 18px;
    }
    .footer-brand p {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.6);
      max-width: 280px;
      margin-bottom: 18px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      transition: background 0.2s ease, color 0.2s ease;
    }
    .footer-social a:hover {
      background: var(--teal);
      color: var(--navy);
    }
    .footer h4 {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .footer ul {
      list-style: none;
    }
    .footer ul li {
      margin-bottom: 10px;
    }
    .footer ul li a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14.5px;
      transition: color 0.2s ease;
    }
    .footer ul li a:hover { color: var(--teal); }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero { padding: 60px 0 40px; }
      .product-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .product-card.featured { grid-row: span 1; }
      .pillar-grid { grid-template-columns: 1fr 1fr; }
      .spotlight, .spotlight.reverse { grid-template-columns: 1fr; gap: 40px; }
      .spotlight.reverse .spotlight-text { order: 0; }
      .spotlight.reverse .spotlight-visual { order: 1; }
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .section { padding: 80px 0; }
    }
    @media (max-width: 880px) {
      .trust-strip-inner { justify-content: center; text-align: center; }
      .trust-stats { gap: 28px; }
      .compare-grid { grid-template-columns: 1fr; }
      .nav-cta .btn-ghost { display: none; }
    }
    @media (max-width: 640px) {
      .hero h1 { font-size: 36px; }
      .hero p.lead { font-size: 16px; }
      .product-grid { grid-template-columns: 1fr; }
      .pillar-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .cta-banner { padding: 48px 24px; }
      .cta-form { flex-direction: column; }
      .testimonial-card { padding: 32px 24px; }
      .testimonial-text { font-size: 18px; }
      .section { padding: 60px 0; }
      .product-card { padding: 24px; }
      .nav { padding: 12px 0; }
      .container { padding: 0 18px; }
    }

    /* ============================================
       BLOG
       ============================================ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .blog-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--teal);
    }
    .blog-card-image {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--bg-soft);
      position: relative;
    }
    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .blog-card:hover .blog-card-image img {
      transform: scale(1.04);
    }
    .blog-card-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .blog-card-categories {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .blog-cat {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--teal-soft);
      color: var(--navy);
    }
    .blog-cat.alt { background: var(--bg-soft); color: var(--text-muted); }
    .blog-card h3 {
      font-size: 19px;
      line-height: 1.35;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .blog-card p.excerpt {
      color: var(--text-muted);
      font-size: 14.5px;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .blog-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-muted);
    }
    .blog-card-author {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .blog-card-author-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gradient-teal);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .blog-cta-row {
      text-align: center;
      margin-top: 48px;
    }
    @media (max-width: 1024px) {
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .blog-grid { grid-template-columns: 1fr; }
    }

    /* ============================================
       ADDITIONAL STYLES FOR INNER PAGES
       ============================================ */

    /* PAGE HEADER (used across most non-home pages) */
    .page-header {
      padding: 80px 0 60px;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
      position: relative;
      overflow: hidden;
    }
    .page-header::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.10) 0%, transparent 70%);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }
    .page-header-inner {
      max-width: 760px;
      text-align: center;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .page-header h1 {
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: -0.035em;
      margin-bottom: 16px;
    }
    .page-header p {
      color: var(--text-muted);
      font-size: 18px;
      line-height: 1.6;
    }
    .page-header .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }
    .page-header .breadcrumb a { color: var(--text-muted); }
    .page-header .breadcrumb a:hover { color: var(--teal-dark); }
    .page-header .breadcrumb span { color: var(--text-soft); }

    /* PRICING (re-added for pricing page + product pages) */
    .pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
    .pricing-toggle {
      display: inline-flex;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px;
      gap: 4px;
    }
    .pricing-toggle button {
      padding: 11px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }
    .pricing-toggle button.active {
      background: var(--navy);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }
    .pricing-toggle .save-badge {
      background: var(--teal);
      color: var(--navy);
      padding: 2px 8px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      margin-left: 6px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .pricing-card.popular {
      border-color: var(--teal);
      background: linear-gradient(180deg, #F2FCFC 0%, #FFFFFF 100%);
      box-shadow: var(--shadow-md);
    }
    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient-teal);
      color: var(--navy);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .pricing-card h3 { font-size: 22px; margin-bottom: 6px; }
    .pricing-card .pricing-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
    .pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
    .pricing-price .strike { color: var(--text-soft); text-decoration: line-through; font-size: 18px; font-weight: 500; }
    .pricing-price .num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 44px;
      color: var(--navy);
      letter-spacing: -0.03em;
    }
    .pricing-price .period { color: var(--text-muted); font-size: 15px; font-weight: 500; }
    .pricing-save {
      display: inline-block;
      background: var(--teal-soft);
      color: var(--teal-dark);
      font-weight: 700;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 22px;
    }
    .pricing-features { list-style: none; margin-bottom: 28px; }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 14.5px;
      color: var(--text);
    }
    .pricing-features li svg { flex-shrink: 0; color: var(--teal-dark); margin-top: 3px; }
    .pricing-card .btn { width: 100%; padding: 14px; }
    .pricing-guarantee { text-align: center; margin-top: 28px; color: var(--text-muted); font-size: 14px; }
    .pricing-guarantee strong { color: var(--navy); }
    .pricing-set { display: none; }
    .pricing-set.active { display: grid; }

    /* ARTICLE / BLOG POST */
    .article {
      max-width: 760px;
      margin: 0 auto;
      padding: 60px 0 80px;
    }
    .article-header { text-align: center; margin-bottom: 48px; }
    .article-categories {
      display: inline-flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 20px;
    }
    .article-cat {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 999px;
      background: var(--teal-soft);
      color: var(--navy);
    }
    .article-cat.alt { background: var(--bg-soft); color: var(--text-muted); }
    .article-header h1 {
      font-size: clamp(32px, 5vw, 52px);
      letter-spacing: -0.035em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .article-meta {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      color: var(--text-muted);
      font-size: 14px;
    }
    .article-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .article-author-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gradient-teal);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 13px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .article-author-name { color: var(--navy); font-weight: 600; }
    .article-meta .dot { color: var(--text-soft); }
    .article-feature-image {
      margin: 0 0 56px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }
    .article-feature-image img { width: 100%; display: block; }
    .article-body {
      font-size: 17px;
      line-height: 1.75;
      color: var(--text);
    }
    .article-body p { margin-bottom: 22px; }
    .article-body h2 {
      font-size: 30px;
      letter-spacing: -0.025em;
      margin: 48px 0 18px;
    }
    .article-body h3 {
      font-size: 22px;
      letter-spacing: -0.02em;
      margin: 36px 0 14px;
    }
    .article-body ul, .article-body ol { margin: 0 0 22px 24px; }
    .article-body li { margin-bottom: 8px; line-height: 1.7; }
    .article-body a {
      color: var(--teal-dark);
      font-weight: 600;
      border-bottom: 1px solid currentColor;
    }
    .article-body a:hover { color: var(--navy); }
    .article-body strong { color: var(--navy); font-weight: 700; }
    .article-body blockquote {
      border-left: 4px solid var(--teal);
      padding: 14px 0 14px 24px;
      margin: 32px 0;
      background: var(--teal-tint, #F2FCFC);
      border-radius: 0 12px 12px 0;
      color: var(--navy);
      font-style: italic;
    }
    .article-body img { border-radius: var(--radius-md); margin: 32px 0; box-shadow: var(--shadow-md); }
    .article-body code {
      background: var(--bg-soft);
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 0.92em;
      color: var(--navy);
      border: 1px solid var(--border);
    }
    .article-body pre {
      background: var(--navy);
      color: #DCE6F0;
      padding: 20px;
      border-radius: var(--radius-md);
      overflow-x: auto;
      margin: 28px 0;
      font-size: 14px;
    }
    .article-body pre code { background: transparent; border: none; color: inherit; padding: 0; }
    .article-body table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 15px;
    }
    .article-body th, .article-body td {
      padding: 14px 16px;
      text-align: left;
      border: 1px solid var(--border);
    }
    .article-body th {
      background: var(--bg-soft);
      color: var(--navy);
      font-weight: 700;
    }
    .article-tags {
      margin-top: 56px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .article-tag {
      font-size: 13px;
      color: var(--text-muted);
      padding: 5px 12px;
      border-radius: 999px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
    }
    .article-tag:hover { color: var(--teal-dark); border-color: var(--teal); }

    /* RELATED POSTS */
    .related-posts {
      max-width: 960px;
      margin: 0 auto;
    }

    /* LEGAL PAGES — long-form prose */
    .legal-page {
      max-width: 820px;
      margin: 0 auto;
      padding: 56px 0 80px;
    }
    .legal-page h2 {
      font-size: 26px;
      margin: 48px 0 16px;
      letter-spacing: -0.02em;
    }
    .legal-page h3 {
      font-size: 19px;
      margin: 32px 0 12px;
      letter-spacing: -0.02em;
    }
    .legal-page p { margin-bottom: 18px; color: var(--text); font-size: 16px; line-height: 1.75; }
    .legal-page ul, .legal-page ol { margin: 0 0 22px 24px; }
    .legal-page li { margin-bottom: 8px; line-height: 1.7; }
    .legal-page a { color: var(--teal-dark); border-bottom: 1px solid currentColor; }
    .legal-page strong { color: var(--navy); font-weight: 700; }
    .legal-meta {
      padding: 18px 24px;
      background: var(--bg-soft);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      font-size: 14.5px;
      color: var(--text-muted);
      margin-bottom: 40px;
    }
    .legal-meta strong { color: var(--navy); }

    /* CONTACT FORM */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .contact-info-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .contact-info-card h3 {
      font-size: 20px;
      margin-bottom: 18px;
    }
    .contact-info-item {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid var(--border);
    }
    .contact-info-item:first-of-type { border-top: none; padding-top: 0; }
    .contact-info-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--teal-soft);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-text { font-size: 14.5px; color: var(--text); }
    .contact-info-text small { display: block; font-size: 12.5px; color: var(--text-muted); margin-bottom: 2px; }
    .contact-info-text a { color: var(--text); font-weight: 600; }
    .contact-info-text a:hover { color: var(--teal-dark); }
    .form-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .form-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .form-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .form-field label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: inherit;
      font-size: 15px;
      color: var(--text);
      background: #fff;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(57, 204, 204, 0.15);
    }
    .form-field textarea { resize: vertical; min-height: 130px; }
    .form-actions {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    /* 404 ERROR PAGE */
    .error-section {
      padding: 100px 0;
      text-align: center;
    }
    .error-code {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(120px, 18vw, 200px);
      line-height: 0.85;
      letter-spacing: -0.05em;
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      margin-bottom: 24px;
    }
    .error-section h2 {
      font-size: clamp(28px, 4vw, 38px);
      margin-bottom: 16px;
    }
    .error-section p {
      color: var(--text-muted);
      font-size: 17px;
      max-width: 480px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }

    /* AFFILIATE TABLE */
    .affiliate-table {
      width: 100%;
      max-width: 720px;
      margin: 40px auto;
      border-collapse: collapse;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .affiliate-table th, .affiliate-table td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
    }
    .affiliate-table th {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .affiliate-table td:first-child { font-weight: 600; color: var(--navy); }
    .affiliate-table td.highlight { background: var(--teal-soft); color: var(--navy); font-weight: 700; }
    .affiliate-table tr:last-child td { border-bottom: none; }

    /* SUPPORT CARDS */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .support-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .support-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--teal);
    }
    .support-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--teal-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--navy);
    }
    .support-card h3 { font-size: 19px; margin-bottom: 10px; }
    .support-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }

    /* DEMO CARDS */
    .demo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .demo-large-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .demo-large-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .demo-large-card-img { background: var(--bg-soft); aspect-ratio: 16 / 10; overflow: hidden; }
    .demo-large-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .demo-large-card-body { padding: 28px; }
    .demo-creds {
      display: flex;
      gap: 18px;
      margin-top: 14px;
      padding: 14px 16px;
      background: var(--bg-soft);
      border-radius: 10px;
      font-size: 13.5px;
      color: var(--text-muted);
    }
    .demo-creds strong { color: var(--navy); font-weight: 700; }

    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .support-grid { grid-template-columns: 1fr 1fr; }
      .demo-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .support-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .article { padding: 40px 0 60px; }
      .article-body { font-size: 16px; }
    }

    /* ============================================
       FLUENTCRM-STYLE PRODUCT PAGE COMPONENTS
       ============================================ */

    /* PRODUCT HERO - centered with visual below */
    .product-hero {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .product-hero::before {
      content: "";
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.12) 0%, rgba(57, 204, 204, 0) 70%);
      top: -300px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      pointer-events: none;
    }
    .product-hero-inner {
      position: relative;
      z-index: 2;
    }
    .product-hero .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--teal-soft);
      border: 1px solid rgba(57, 204, 204, 0.3);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 22px;
      letter-spacing: 0.02em;
    }
    .product-hero .eyebrow img { width: 18px; height: 18px; }
    .product-hero h1 {
      font-size: clamp(36px, 5.5vw, 68px);
      letter-spacing: -0.04em;
      max-width: 920px;
      margin: 0 auto 24px;
      line-height: 1.05;
    }
    .product-hero h1 .teal { color: var(--teal-dark); }
    .product-hero p.lead {
      font-size: 19px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .product-hero-ctas {
      display: inline-flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 22px;
    }
    .product-hero-guarantee {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 48px;
    }
    .product-hero-guarantee strong { color: var(--navy); }
    .product-hero-visual {
      max-width: 1080px;
      margin: 0 auto;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      background: var(--bg-soft);
      position: relative;
    }
    .product-hero-visual img {
      width: 100%;
      display: block;
    }

    /* STATS STRIP under hero */
    .stats-strip {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 36px 0;
    }
    .stats-strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      text-align: center;
    }
    .stats-strip-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 40px);
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .stats-strip-label {
      font-size: 13.5px;
      color: var(--text-muted);
      margin-top: 8px;
      font-weight: 500;
    }

    /* ALTERNATING IMAGE+TEXT FEATURE BLOCKS */
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 64px 0;
    }
    .feature-row.reverse { direction: rtl; }
    .feature-row.reverse > * { direction: ltr; }
    .feature-row-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-soft);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }
    .feature-row-img img {
      width: 100%;
      display: block;
    }
    .feature-row-text .feat-eyebrow {
      display: inline-block;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: 14px;
    }
    .feature-row-text h3 {
      font-size: clamp(26px, 3.2vw, 36px);
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }
    .feature-row-text p {
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .feature-row-text .feat-list {
      list-style: none;
      margin-bottom: 24px;
    }
    .feature-row-text .feat-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 6px 0;
      font-size: 15px;
      color: var(--text);
    }
    .feature-row-text .feat-list li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      margin-top: 4px;
    }

    /* MINI ICON FEATURE GRID */
    .icon-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .icon-feature {
      text-align: left;
    }
    .icon-feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--teal-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--navy);
    }
    .icon-feature h4 {
      font-size: 17px;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .icon-feature p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.55;
    }

    /* PROBLEM / SOLUTION GRID */
    .problem-solution {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 18px;
    }
    .ps-card {
      padding: 28px;
      border-radius: var(--radius-md);
      border: 1px solid;
    }
    .ps-card.problem {
      background: rgba(239, 68, 68, 0.04);
      border-color: rgba(239, 68, 68, 0.15);
    }
    .ps-card.solution {
      background: linear-gradient(135deg, var(--teal-tint, #F2FCFC) 0%, var(--bg-soft) 100%);
      border-color: rgba(57, 204, 204, 0.3);
    }
    .ps-card .ps-tag {
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .ps-card.problem .ps-tag { color: #DC2626; }
    .ps-card.solution .ps-tag { color: var(--teal-dark); }
    .ps-card h4 {
      font-size: 19px;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .ps-card p {
      color: var(--text-muted);
      font-size: 14.5px;
      line-height: 1.6;
    }
    .ps-row {
      margin-bottom: 32px;
    }

    /* COMPETITOR COMPARISON */
    .competitor-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr) 1.2fr;
      gap: 20px;
      align-items: stretch;
    }
    .competitor-card {
      padding: 28px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
    }
    .competitor-card h4 {
      font-size: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      color: var(--text);
    }
    .competitor-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.55;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .competitor-score {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: var(--text-soft);
      margin-bottom: 4px;
    }
    .competitor-card .competitor-note {
      font-size: 12.5px;
      color: var(--text-soft);
      font-style: italic;
    }
    .competitor-card.winner {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
      position: relative;
    }
    .competitor-card.winner h4 { color: #fff; }
    .competitor-card.winner p { color: rgba(255, 255, 255, 0.78); }
    .competitor-card.winner .competitor-score { color: var(--teal); }
    .competitor-card.winner .competitor-note { color: rgba(255, 255, 255, 0.6); }
    .competitor-card.winner .competitor-logo {
      height: 26px;
      margin-bottom: 16px;
    }

    /* FREE vs PRO COMPARISON TABLE */
    .fvp-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 24px 0 12px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .fvp-table th, .fvp-table td {
      padding: 16px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      font-size: 14.5px;
    }
    .fvp-table th {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .fvp-table th:nth-child(2), .fvp-table th:nth-child(3) {
      text-align: center;
      width: 140px;
    }
    .fvp-table th.recommended {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      color: var(--navy);
    }
    .fvp-table td:first-child {
      color: var(--text);
    }
    .fvp-table td:first-child strong {
      color: var(--navy);
      display: block;
      margin-bottom: 2px;
    }
    .fvp-table td:first-child small {
      color: var(--text-muted);
      font-size: 13px;
    }
    .fvp-table td:nth-child(2), .fvp-table td:nth-child(3) {
      text-align: center;
      color: var(--text);
      font-weight: 600;
    }
    .fvp-table td .check {
      color: var(--teal-dark);
      font-size: 18px;
      font-weight: 800;
    }
    .fvp-table td .dash {
      color: var(--text-soft);
      font-weight: 700;
      font-size: 18px;
    }
    .fvp-table .section-row td {
      background: var(--bg-soft);
      color: var(--navy);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .fvp-table tr:last-child td { border-bottom: none; }
    .fvp-cta-row {
      display: grid;
      grid-template-columns: 1fr 140px 140px;
      gap: 0;
      padding: 18px 20px;
      background: var(--bg-soft);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      align-items: center;
      margin-top: -8px;
    }
    .fvp-cta-row a {
      text-align: center;
      font-weight: 700;
      font-size: 14px;
      color: var(--teal-dark);
    }
    .fvp-cta-row a:hover { color: var(--navy); }

    /* USE CASES */
    .usecase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .usecase-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-align: center;
    }
    .usecase-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .usecase-card-img {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--bg-soft);
    }
    .usecase-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .usecase-card-label {
      padding: 22px 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: -0.01em;
    }

    /* VISUAL OVERVIEW (live demos) */
    .visual-overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .vo-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .vo-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .vo-card-img {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
    }
    .vo-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .vo-card-body {
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .vo-card-body strong {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--navy);
      letter-spacing: -0.01em;
    }
    .vo-card-body small {
      display: block;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      margin-top: 2px;
    }
    .vo-card-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .vo-card:hover .vo-card-arrow { transform: translateX(4px); }

    /* MID-PAGE CTA STRIP */
    .mid-cta-strip {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }
    .mid-cta-strip::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 204, 204, 0.18) 0%, transparent 70%);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }
    .mid-cta-strip h3 {
      color: #fff;
      font-size: clamp(22px, 2.6vw, 30px);
      letter-spacing: -0.02em;
      position: relative;
      z-index: 2;
      max-width: 600px;
    }
    .mid-cta-strip a {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 1024px) {
      .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; direction: ltr; }
      .feature-row.reverse > * { direction: ltr; }
      .icon-features-grid { grid-template-columns: 1fr 1fr; }
      .competitor-grid { grid-template-columns: 1fr 1fr; }
      .competitor-card.winner { grid-column: 1 / -1; }
      .stats-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .usecase-grid { grid-template-columns: 1fr; }
      .visual-overview-grid { grid-template-columns: 1fr; }
      .problem-solution { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .icon-features-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
      .competitor-grid { grid-template-columns: 1fr; }
      .fvp-table th, .fvp-table td { padding: 12px 14px; font-size: 13.5px; }
      .fvp-table th:nth-child(2), .fvp-table th:nth-child(3) { width: 80px; }
      .mid-cta-strip { padding: 28px; flex-direction: column; align-items: flex-start; }
    }

    /* ============================================
       APPSUMO-STYLE PRODUCT PAGE COMPONENTS
       ============================================ */

    /* Breadcrumb bar */
    .ap-breadcrumb {
      padding: 18px 0;
      font-size: 13.5px;
      color: var(--text-muted);
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .ap-breadcrumb a { color: var(--text-muted); }
    .ap-breadcrumb a:hover { color: var(--navy); }
    .ap-breadcrumb .sep { margin: 0 8px; color: var(--text-soft); }
    .ap-breadcrumb .current { color: var(--navy); font-weight: 600; }

    /* AP Hero - 2 column split */
    .ap-hero {
      padding: 32px 0 56px;
      background: var(--bg);
    }
    .ap-hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: start;
    }
    /* Gallery left */
    .ap-gallery {
      position: relative;
    }
    .ap-gallery-main {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      aspect-ratio: 16/10;
      margin-bottom: 16px;
    }
    .ap-gallery-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .ap-thumbs {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }
    .ap-thumb {
      border-radius: 10px;
      overflow: hidden;
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      cursor: pointer;
      aspect-ratio: 16/10;
      transition: border-color 0.2s ease, transform 0.18s ease;
    }
    .ap-thumb:hover {
      border-color: var(--teal);
      transform: translateY(-2px);
    }
    .ap-thumb.active {
      border-color: var(--teal);
      box-shadow: 0 0 0 2px rgba(57, 204, 204, 0.2);
    }
    .ap-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Right column: product info */
    .ap-info {
      position: sticky;
      top: 92px;
    }
    .ap-info .ap-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 12px;
      background: var(--teal-soft);
      border: 1px solid rgba(57, 204, 204, 0.3);
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }
    .ap-info .ap-eyebrow img { width: 16px; height: 16px; }
    .ap-info h1 {
      font-size: clamp(28px, 3.4vw, 38px);
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .ap-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .ap-rating .stars {
      color: #FBBF24;
      font-size: 16px;
      letter-spacing: 2px;
    }
    .ap-rating .review-link {
      color: var(--teal-dark);
      font-size: 13.5px;
      font-weight: 600;
      border-bottom: 1px solid currentColor;
    }
    .ap-info .ap-lead {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .ap-price-block {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 8px;
    }
    .ap-price-discount {
      background: var(--teal);
      color: var(--navy);
      padding: 4px 10px;
      border-radius: 6px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.02em;
    }
    .ap-price-current {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 36px;
      color: var(--navy);
      letter-spacing: -0.03em;
    }
    .ap-price-strike {
      color: var(--text-soft);
      text-decoration: line-through;
      font-size: 20px;
      font-weight: 500;
    }
    .ap-price-meta {
      color: var(--text-muted);
      font-size: 13.5px;
      margin-bottom: 22px;
    }
    .ap-plan-toggle {
      display: inline-flex;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px;
      gap: 4px;
      margin-bottom: 16px;
    }
    .ap-plan-toggle button {
      padding: 9px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }
    .ap-plan-toggle button.active {
      background: var(--navy);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }
    .ap-tier-list {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      margin-bottom: 18px;
    }
    .ap-tier {
      padding: 14px 12px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      text-align: center;
      background: var(--bg);
      transition: border-color 0.2s ease, background 0.2s ease;
      position: relative;
    }
    .ap-tier:hover { border-color: var(--teal); }
    .ap-tier.selected {
      border-color: var(--navy);
      background: var(--bg-soft);
    }
    .ap-tier.selected::after {
      content: "";
      position: absolute;
      top: 8px;
      right: 8px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--navy);
      box-shadow: inset 0 0 0 3px var(--bg);
    }
    .ap-tier-label {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .ap-tier-price {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .ap-tier-strike {
      color: var(--text-soft);
      text-decoration: line-through;
      font-size: 12px;
      margin-left: 4px;
    }
    .ap-buy-btn {
      width: 100%;
      padding: 16px;
      background: var(--navy);
      color: #fff;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s ease, transform 0.18s ease;
      margin-bottom: 16px;
    }
    .ap-buy-btn:hover {
      background: var(--navy-2);
      transform: translateY(-1px);
      color: #fff;
    }
    .ap-trust-badges {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .ap-trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: var(--text);
    }
    .ap-trust-badge svg {
      color: var(--teal-dark);
      flex-shrink: 0;
    }

    /* Highlighted "Chosen by" badge */
    .ap-chosen-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: linear-gradient(135deg, var(--teal-tint, #F2FCFC) 0%, var(--bg-soft) 100%);
      border: 1px solid rgba(57, 204, 204, 0.25);
      border-radius: 12px;
      margin-top: 24px;
      font-size: 14px;
      color: var(--text);
    }
    .ap-chosen-badge-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--teal);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ap-chosen-badge strong { color: var(--navy); display: block; font-size: 14.5px; }
    .ap-chosen-badge small { color: var(--text-muted); font-size: 13px; }

    /* TL;DR box */
    .ap-tldr {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-top: 32px;
    }
    .ap-tldr h4 {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .ap-tldr ul { list-style: none; }
    .ap-tldr li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 0;
      font-size: 15px;
      color: var(--text);
      line-height: 1.55;
    }
    .ap-tldr li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      margin-top: 4px;
    }

    /* At-a-glance bar */
    .ap-glance {
      padding: 40px 0;
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .ap-glance h3 {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .ap-glance-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .ap-glance-item small {
      display: block;
      font-size: 12.5px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .ap-glance-item strong {
      font-size: 15px;
      color: var(--navy);
      font-weight: 700;
    }
    .ap-glance-item a {
      color: var(--teal-dark);
      font-weight: 700;
      font-size: 15px;
      border-bottom: 1px solid currentColor;
    }
    .ap-glance-item p {
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
      margin: 0;
    }

    /* Sticky mini-nav */
    .ap-mini-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .ap-mini-nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .ap-mini-product {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ap-mini-product-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ap-mini-product-icon img { width: 26px; height: 26px; }
    .ap-mini-product-text strong {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      color: var(--navy);
      display: block;
    }
    .ap-mini-product-text small {
      font-size: 12.5px;
      color: var(--text-muted);
    }
    .ap-mini-tabs {
      display: flex;
      gap: 6px;
      list-style: none;
    }
    .ap-mini-tabs a {
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .ap-mini-tabs a:hover {
      background: var(--bg-soft);
      color: var(--navy);
    }
    .ap-mini-cta {
      background: var(--navy);
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
    }
    .ap-mini-cta:hover { background: var(--navy-2); color: #fff; }

    /* AppSumo feature block (heading + bullets + image below) */
    .ap-feature {
      margin-bottom: 80px;
    }
    .ap-feature h3 {
      font-size: clamp(24px, 2.8vw, 32px);
      letter-spacing: -0.025em;
      margin-bottom: 22px;
    }
    .ap-feature-bullets {
      list-style: none;
      margin-bottom: 32px;
      max-width: 820px;
    }
    .ap-feature-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 10px 0;
      font-size: 16px;
      color: var(--text);
      line-height: 1.55;
    }
    .ap-feature-bullets li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      margin-top: 4px;
    }
    .ap-feature-bullets li strong { color: var(--navy); }
    .ap-feature-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
    }
    .ap-feature-image img {
      width: 100%;
      display: block;
    }

    /* Plan comparison table */
    .ap-plan-table-wrap {
      overflow-x: auto;
      margin: 32px 0 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .ap-plan-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
      background: var(--bg);
    }
    .ap-plan-table th, .ap-plan-table td {
      padding: 16px 14px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      vertical-align: middle;
    }
    .ap-plan-table th:first-child, .ap-plan-table td:first-child {
      text-align: left;
      color: var(--text);
      font-weight: 600;
      background: var(--bg-soft);
      min-width: 220px;
    }
    .ap-plan-table thead th {
      padding: 22px 14px;
      background: var(--bg-soft);
      border-bottom: 2px solid var(--border);
      font-weight: 700;
      vertical-align: top;
    }
    .ap-plan-table thead th .tier-name {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .ap-plan-table thead th .tier-price {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .ap-plan-table thead th .tier-strike {
      color: var(--text-soft);
      text-decoration: line-through;
      font-size: 14px;
      font-weight: 500;
      margin-left: 6px;
    }
    .ap-plan-table thead th .tier-buy {
      display: inline-block;
      margin-top: 12px;
      padding: 8px 16px;
      background: var(--navy);
      color: #fff;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }
    .ap-plan-table thead th .tier-buy:hover { background: var(--navy-2); color: #fff; }
    .ap-plan-table thead th.recommended {
      background: var(--navy);
      color: #fff;
      position: relative;
    }
    .ap-plan-table thead th.recommended .tier-name { color: var(--teal); }
    .ap-plan-table thead th.recommended .tier-price { color: #fff; }
    .ap-plan-table thead th.recommended .tier-strike { color: rgba(255,255,255,0.5); }
    .ap-plan-table thead th.recommended .tier-buy { background: var(--teal); color: var(--navy); }
    .ap-plan-table thead th.recommended .tier-buy:hover { background: var(--teal-dark); color: var(--navy); }
    .ap-plan-table thead th.recommended::before {
      content: "Most popular";
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: var(--navy);
      padding: 4px 12px;
      border-radius: 0 0 6px 6px;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .ap-plan-table td .check {
      color: var(--teal-dark);
      font-weight: 800;
      font-size: 18px;
    }
    .ap-plan-table td .dash {
      color: var(--text-soft);
      font-weight: 700;
      font-size: 18px;
    }
    .ap-plan-table tr:last-child td { border-bottom: none; }

    /* Deal terms (collapsible) */
    .ap-deal-terms {
      max-width: 760px;
      margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--bg-soft);
    }
    .ap-deal-terms summary {
      padding: 18px 24px;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .ap-deal-terms summary::-webkit-details-marker { display: none; }
    .ap-deal-terms summary::after {
      content: "+";
      font-size: 22px;
      color: var(--navy);
      font-weight: 700;
    }
    .ap-deal-terms[open] summary::after { content: "−"; }
    .ap-deal-terms ul {
      padding: 0 24px 22px 48px;
      list-style: disc;
    }
    .ap-deal-terms li {
      margin-bottom: 8px;
      color: var(--text);
      font-size: 14.5px;
      line-height: 1.6;
    }

    /* Founder / Company card */
    .ap-company {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 48px;
      padding: 48px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      align-items: start;
    }
    .ap-company-left .ap-company-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 24px;
      font-weight: 700;
      color: var(--navy);
    }
    .ap-company-left .ap-company-logo img { height: 28px; width: auto; }
    .ap-company-facts {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .ap-company-facts li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text);
    }
    .ap-company-facts li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      width: 18px;
      height: 18px;
    }
    .ap-company-right h2 {
      font-size: clamp(24px, 3vw, 32px);
      letter-spacing: -0.025em;
      margin-bottom: 18px;
    }
    .ap-company-right p {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .ap-founder {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--border);
    }
    .ap-founder-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--gradient-teal);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      flex-shrink: 0;
    }
    .ap-founder-name { font-weight: 700; color: var(--navy); font-size: 15px; }
    .ap-founder-title { color: var(--text-muted); font-size: 13.5px; }

    /* Section number marker (used in feature blocks) */
    .ap-section-title {
      font-size: clamp(28px, 3.6vw, 42px);
      letter-spacing: -0.03em;
      max-width: 760px;
      margin-bottom: 48px;
      line-height: 1.2;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .ap-hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .ap-info { position: static; }
      .ap-glance-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .ap-mini-nav-inner { gap: 12px; }
      .ap-mini-tabs { display: none; }
      .ap-company { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
    }
    @media (max-width: 640px) {
      .ap-glance-grid { grid-template-columns: 1fr; gap: 18px; }
      .ap-thumbs { grid-template-columns: repeat(4, 1fr); }
      .ap-tier-list { grid-template-columns: 1fr; gap: 6px; }
      .ap-tier { display: flex; justify-content: space-between; align-items: center; text-align: left; }
      .ap-info h1 { font-size: 26px; }
      .ap-price-current { font-size: 30px; }
      .ap-mini-product-text small { display: none; }
      .ap-feature { margin-bottom: 56px; }
      .ap-tldr { padding: 22px; }
    }

    /* ============================================
       AP HERO HEADER - title above the gallery
       ============================================ */
    .ap-hero-header {
      max-width: 860px;
      margin: 0 auto 40px;
      text-align: center;
    }
    .ap-hero-header .ap-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--teal-soft);
      border: 1px solid rgba(57, 204, 204, 0.3);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 22px;
      letter-spacing: 0.02em;
    }
    .ap-hero-header .ap-eyebrow img { width: 18px; height: 18px; }
    .ap-hero-header h1 {
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: -0.035em;
      line-height: 1.08;
      margin-bottom: 22px;
      color: var(--navy);
    }
    .ap-hero-header .ap-rating {
      justify-content: center;
      margin-bottom: 22px;
    }
    .ap-hero-header .ap-lead {
      color: var(--text-muted);
      font-size: 19px;
      line-height: 1.6;
      max-width: 720px;
      margin: 0 auto;
    }
    @media (max-width: 640px) {
      .ap-hero-header { text-align: left; margin-bottom: 28px; }
      .ap-hero-header .ap-rating { justify-content: flex-start; }
      .ap-hero-header .ap-lead { margin: 0; }
    }

    /* ============================================
       FLUENTCRM-FAITHFUL COMPONENTS
       ============================================ */

    /* 2-up feature card grid (image on top + title + description) */
    .feat-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .feat-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--teal);
    }
    .feat-card-image {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--bg-soft);
    }
    .feat-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .feat-card-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .feat-card h3 {
      font-size: 22px;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .feat-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    /* Single highlight card (full width centered, used as section divider) */
    .feat-highlight-card {
      max-width: 880px;
      margin: 0 auto 32px;
      background: linear-gradient(135deg, var(--teal-tint, #F2FCFC) 0%, var(--bg-soft) 100%);
      border: 1px solid rgba(57, 204, 204, 0.25);
      border-radius: var(--radius-xl);
      padding: 40px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      align-items: center;
    }
    .feat-highlight-card .feat-highlight-text h3 {
      font-size: clamp(24px, 3vw, 32px);
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .feat-highlight-card .feat-highlight-text p {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.6;
    }
    .feat-highlight-card .feat-highlight-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-soft);
    }
    .feat-highlight-card .feat-highlight-img img { width: 100%; display: block; }

    /* 3-tier prominent pricing (FluentCRM-style "Goodbye Success Taxes" trio) */
    .pricing-trio {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      max-width: 1040px;
      margin: 40px auto 24px;
    }
    .pricing-trio-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .pricing-trio-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .pricing-trio-card.popular {
      background: var(--navy);
      color: #fff;
      box-shadow: var(--shadow-xl);
      transform: scale(1.05);
      border-color: var(--navy);
    }
    .pricing-trio-card.popular:hover { transform: scale(1.05) translateY(-4px); }
    .pricing-trio-card.popular h3 { color: #fff; }
    .pricing-trio-card .super-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: var(--navy);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .pricing-trio-card h3 {
      font-size: 22px;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .pricing-trio-card .pt-price-strike {
      color: var(--text-soft);
      text-decoration: line-through;
      font-size: 18px;
      font-weight: 500;
      margin-right: 6px;
    }
    .pricing-trio-card .pt-price-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 44px;
      color: var(--navy);
      letter-spacing: -0.03em;
    }
    .pricing-trio-card.popular .pt-price-strike { color: rgba(255,255,255,0.5); }
    .pricing-trio-card.popular .pt-price-num { color: #fff; }
    .pricing-trio-card .pt-price-period {
      color: var(--text-muted);
      font-size: 15px;
      margin-left: 6px;
    }
    .pricing-trio-card.popular .pt-price-period { color: rgba(255,255,255,0.7); }
    .pricing-trio-card .pt-save {
      display: inline-block;
      background: var(--teal-soft);
      color: var(--teal-dark);
      font-weight: 700;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      margin-top: 8px;
      margin-bottom: 22px;
    }
    .pricing-trio-card.popular .pt-save { background: var(--teal); color: var(--navy); }
    .pricing-trio-card .pt-tagline {
      font-size: 13.5px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .pricing-trio-card.popular .pt-tagline { color: rgba(255,255,255,0.65); }
    .pricing-trio-card .pt-cta {
      display: block;
      width: 100%;
      padding: 14px;
      background: var(--navy);
      color: #fff;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      text-align: center;
      margin-bottom: 18px;
    }
    .pricing-trio-card .pt-cta:hover { background: var(--navy-2); color: #fff; }
    .pricing-trio-card.popular .pt-cta { background: var(--teal); color: var(--navy); }
    .pricing-trio-card.popular .pt-cta:hover { background: var(--teal-dark); color: var(--navy); }
    .pricing-trio-card .pt-features {
      list-style: none;
      text-align: left;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }
    .pricing-trio-card.popular .pt-features { border-top-color: rgba(255,255,255,0.15); }
    .pricing-trio-card .pt-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 6px 0;
      font-size: 13.5px;
      color: var(--text);
    }
    .pricing-trio-card.popular .pt-features li { color: rgba(255,255,255,0.85); }
    .pricing-trio-card .pt-features li svg {
      flex-shrink: 0;
      color: var(--teal-dark);
      margin-top: 3px;
    }
    .pricing-trio-card.popular .pt-features li svg { color: var(--teal); }
    .pricing-trio-note {
      text-align: center;
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 16px;
    }
    .pricing-trio-note strong { color: var(--navy); }

    /* Compatibility logos row */
    .compat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px 40px;
      justify-content: center;
      align-items: center;
      padding: 32px 0;
      margin-top: 24px;
    }
    .compat-row .compat-item {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--text-muted);
      font-size: 15px;
      letter-spacing: -0.01em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .compat-row .compat-item::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
    }

    @media (max-width: 1024px) {
      .feat-card-grid { grid-template-columns: 1fr; gap: 18px; }
      .feat-highlight-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
      .pricing-trio { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
      .pricing-trio-card.popular { transform: none; }
      .pricing-trio-card.popular:hover { transform: translateY(-4px); }
    }
    @media (max-width: 640px) {
      .feat-card-body { padding: 22px; }
      .feat-card h3 { font-size: 19px; }
    }

    /* ============================================
       PRODUCTBAY COURSE (.pbc-*)  — added for course hub + lessons
       Namespaced so existing pages are untouched.
       ============================================ */
    .pbc-meta {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 10px; margin-top: 24px;
    }
    .pbc-meta span {
      display: inline-flex; align-items: center; gap: 7px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 999px; padding: 8px 16px;
      font-size: 14px; font-weight: 600; color: var(--text);
      box-shadow: var(--shadow-sm);
    }
    .pbc-meta span svg { color: var(--teal-dark); flex-shrink: 0; }
    .pbc-meta .pbc-free { background: var(--teal-soft); border-color: rgba(57,204,204,0.35); color: var(--navy); }

    /* What you'll learn */
    .pbc-learn-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 16px; max-width: 880px; margin: 0 auto;
    }
    .pbc-learn-item {
      display: flex; gap: 14px; align-items: flex-start;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 20px 22px;
      box-shadow: var(--shadow-sm);
    }
    .pbc-learn-check {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
      background: var(--gradient-teal); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
    }
    .pbc-learn-item p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.55; }
    .pbc-learn-item p strong { color: var(--navy); }

    /* Curriculum list */
    .pbc-curriculum { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    a.pbc-lesson-card {
      display: flex; align-items: center; gap: 22px;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 24px 28px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      color: var(--text);
    }
    a.pbc-lesson-card:hover {
      transform: translateY(-3px); box-shadow: var(--shadow-lg);
      border-color: rgba(57,204,204,0.5); color: var(--text);
    }
    .pbc-lesson-num {
      flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px;
      background: var(--gradient); color: #fff;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .pbc-lesson-num small { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
    .pbc-lesson-num b { font-size: 24px; font-weight: 800; line-height: 1; }
    .pbc-lesson-info { flex: 1; min-width: 0; }
    .pbc-lesson-info h3 { font-size: 19px; margin-bottom: 5px; }
    .pbc-lesson-info p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
    .pbc-lesson-dur { font-size: 13px; color: var(--text-soft); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
    .pbc-lesson-arrow { flex-shrink: 0; color: var(--teal-dark); transition: transform 0.2s ease; }
    a.pbc-lesson-card:hover .pbc-lesson-arrow { transform: translateX(4px); }

    /* Progress bar (lesson pages) */
    .pbc-progress-wrap { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 16px 0; }
    .pbc-progress-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
    .pbc-progress-top a { color: var(--teal-dark); font-weight: 600; }
    .pbc-progress-bar { height: 7px; border-radius: 999px; background: var(--border); overflow: hidden; }
    .pbc-progress-fill { height: 100%; border-radius: 999px; background: var(--gradient-teal); }

    /* Lesson layout */
    .pbc-lesson { padding: 64px 0 40px; }
    .pbc-lesson-wrap { max-width: 760px; margin: 0 auto; }
    .pbc-lesson-eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 14px; }
    .pbc-lesson-wrap h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
    .pbc-lesson-lead { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 36px; }
    .pbc-lesson-body h2 { font-size: 24px; margin: 38px 0 14px; }
    .pbc-lesson-body p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
    .pbc-lesson-body p strong { color: var(--navy); }
    .pbc-figure { margin: 26px 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg-soft); }
    .pbc-figure img { width: 100%; display: block; }
    .pbc-figure figcaption { font-size: 13px; color: var(--text-soft); padding: 10px 16px; text-align: center; background: #fff; border-top: 1px solid var(--border); }

    /* Numbered steps */
    .pbc-steps { list-style: none; counter-reset: pbc; margin: 6px 0 22px; }
    .pbc-steps li { counter-increment: pbc; position: relative; padding: 0 0 18px 50px; }
    .pbc-steps li:not(:last-child)::after { content: ""; position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--border); }
    .pbc-steps li::before {
      content: counter(pbc); position: absolute; left: 0; top: 0;
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--teal-soft); color: var(--teal-dark);
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
      display: flex; align-items: center; justify-content: center;
    }
    .pbc-steps li strong { color: var(--navy); }
    .pbc-steps li p { margin: 4px 0 0; font-size: 15px; color: var(--text-muted); }

    /* Callout / tip */
    .pbc-callout {
      display: flex; gap: 14px; align-items: flex-start;
      background: var(--teal-soft); border: 1px solid rgba(57,204,204,0.3);
      border-radius: var(--radius-md); padding: 18px 20px; margin: 26px 0;
    }
    .pbc-callout svg { color: var(--teal-dark); flex-shrink: 0; margin-top: 2px; }
    .pbc-callout p { margin: 0; font-size: 14.5px; color: var(--navy); line-height: 1.6; }
    .pbc-callout strong { color: var(--navy); }

    /* code/shortcode pill */
    .pbc-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--navy); color: #7FE9E9; padding: 3px 9px; border-radius: 6px; font-size: 14px; }

    /* Lesson prev/next nav */
    .pbc-lesson-nav { display: flex; gap: 16px; max-width: 760px; margin: 44px auto 0; }
    .pbc-lesson-nav a {
      flex: 1; display: flex; flex-direction: column; gap: 4px;
      border: 1px solid var(--border); border-radius: var(--radius-md);
      padding: 16px 20px; background: var(--bg-card); color: var(--text);
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }
    .pbc-lesson-nav a:hover { border-color: rgba(57,204,204,0.5); box-shadow: var(--shadow-md); color: var(--text); }
    .pbc-lesson-nav a.next { text-align: right; }
    .pbc-lesson-nav small { font-size: 12px; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
    .pbc-lesson-nav b { font-size: 15px; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
    .pbc-lesson-nav a.disabled { opacity: 0.4; pointer-events: none; }

    /* Install CTA band (dark) */
    .pbc-cta-band { background: var(--gradient); color: #fff; border-radius: var(--radius-xl); padding: 48px 40px; text-align: center; max-width: 860px; margin: 0 auto; }
    .pbc-cta-band h2 { color: #fff; font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 12px; }
    .pbc-cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 560px; margin: 0 auto 26px; }
    .pbc-cta-band .pbc-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .pbc-cta-band .pbc-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.65); }
    /* keep ghost button readable on the dark band, including on hover */
    .pbc-cta-band .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }

    /* Stock photo treatments (free Unsplash License imagery) */
    .pbc-hero-photo {
      margin: 40px auto 0; max-width: 940px; position: relative;
      border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
    }
    .pbc-hero-photo img { width: 100%; height: 380px; object-fit: cover; display: block; }
    .pbc-hero-photo::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(0,31,63,0.30), rgba(0,31,63,0) 55%);
    }
    .pbc-photo-band {
      max-width: 900px; margin: 0 auto 48px;
      border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    }
    .pbc-photo-band img { width: 100%; height: 320px; object-fit: cover; display: block; }
    @media (max-width: 640px) {
      .pbc-hero-photo img { height: 230px; }
      .pbc-photo-band img { height: 210px; }
    }

    /* Storytelling narrative block */
    .pbc-story {
      border-left: 3px solid var(--teal); background: var(--bg-soft);
      padding: 18px 22px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin: 0 0 26px;
    }
    .pbc-story p { margin: 0 0 10px; font-size: 16.5px; color: var(--text); line-height: 1.65; }
    .pbc-story p:last-child { margin: 0; }
    .pbc-story strong { color: var(--navy); }
    .pbc-story .pbc-story-tag {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px;
    }

    /* Course index cards with preview image */
    .crs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; max-width: 1080px; margin: 0 auto; }
    .crs-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
    .crs-card {
      display: flex; flex-direction: column; background: var(--bg-card);
      border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-sm); color: var(--text);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }
    .crs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(57,204,204,0.5); color: var(--text); }
    .crs-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
    .crs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
    .crs-card:hover .crs-thumb img { transform: scale(1.04); }
    .crs-badge {
      position: absolute; top: 12px; left: 12px; background: rgba(14,26,43,0.85); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
      padding: 5px 11px; border-radius: 999px;
    }
    .crs-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
    .crs-body h3 { font-size: 18px; margin-bottom: 6px; }
    .crs-body p { font-size: 14px; color: var(--text-muted); margin: 0; flex: 1; }
    .crs-more { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 6px; }
    .crs-card:hover .crs-more svg { transform: translateX(3px); }
    .crs-more svg { transition: transform 0.2s ease; }
    @media (max-width: 760px) { .crs-grid.two { grid-template-columns: 1fr; } }
    @media (prefers-reduced-motion: reduce) {
      .crs-card, .crs-thumb img, .crs-more svg { transition: none; }
      .crs-card:hover { transform: none; }
      .crs-card:hover .crs-thumb img { transform: none; }
    }

    @media (max-width: 1024px) {
      .pbc-learn-grid { grid-template-columns: 1fr; }
      a.pbc-lesson-card { padding: 20px; gap: 16px; }
    }
    @media (max-width: 640px) {
      a.pbc-lesson-card { flex-wrap: wrap; }
      .pbc-lesson-dur { order: 3; }
      .pbc-lesson-nav { flex-direction: column; }
      .pbc-cta-band { padding: 36px 22px; }
    }
    @media (prefers-reduced-motion: reduce) {
      a.pbc-lesson-card, .pbc-lesson-arrow, .pbc-lesson-nav a { transition: none; }
      a.pbc-lesson-card:hover { transform: none; }
      a.pbc-lesson-card:hover .pbc-lesson-arrow { transform: none; }
    }

/* Mobile Menu Styles (migrated from JS) */
@media (max-width: 1024px) { 
  .nav-links.open { 
    display: flex !important; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    flex-direction: column; 
    background: #fff; 
    border-bottom: 1px solid var(--border); 
    padding: 16px 24px 20px; 
    align-items: flex-start; 
    gap: 4px; 
    box-shadow: 0 12px 24px rgba(0,31,63,0.06); 
  } 
  .nav-links.open li { width: 100%; } 
  .nav-links.open li a { display: block; padding: 12px 0; width: 100%; } 
}
