:root {
    --navy: #0B1A2C;
    --sky: #1AADEC;
    --sky-light: #5CCBF5;
    --teal: #0ED8B4;
    --accent: #FF6B35;
    --gold: #F5C842;
    --white: #FFFFFF;
    --offwhite: #F4F7FB;
    --muted: #7A8FA6;
    --card-bg: #112033;
    --border: rgba(26,173,236,0.15);
    --pill-bg: rgba(26,173,236,0.1);
  }

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

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ─── HERO ─── */
  .hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(26,173,236,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: var(--pill-bg);
    border: 1px solid var(--border);
    color: var(--sky);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px; 
    color: var(--white);
  }
  .cta-banner h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 2vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px; 
    color: var(--white);
  }
  .hero h1 span { color: var(--sky); }
  .hero p {
    color: #9AB5CC;
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }
  .hero-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,216,180,0.08);
    border: 1px solid rgba(14,216,180,0.2);
    color: var(--teal);
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 50px;
  }
  .hero-note span { font-size: 16px; }

  /* ─── COMPETITOR STRIP ─── */
  .comp-strip {
    background: rgba(14,216,180,0.06);
    border-top: 1px solid rgba(14,216,180,0.15);
    border-bottom: 1px solid rgba(14,216,180,0.15);
    padding: 20px;
    margin-bottom: 0;
  }
  .comp-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .comp-strip-label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .comp-items {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .comp-item {
    padding: 10px 18px;
    border-radius: 10px;
    text-align: center;
  }
  .comp-item.bad {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .comp-item.highlight-item {
    background: rgba(14,216,180,0.1);
    border: 1.5px solid var(--teal);
  }
  .comp-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .comp-item.highlight-item .comp-name { color: var(--teal); }
  .comp-item.bad .comp-name { color: var(--muted); }
  .comp-desc { font-size: 12px; color: var(--muted); }
  .comp-item.highlight-item .comp-desc { color: #9AB5CC; }
  .comp-arrow { font-size: 20px; color: var(--muted); }

  /* ─── TOGGLE ─── */
  .toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 48px 0 52px;
    font-size: 15px;
    color: #9AB5CC;
  }
  .toggle-label.active { color: var(--white); font-weight: 600; }
  .toggle {
    position: relative;
    width: 52px; height: 28px;
    background: var(--sky);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    outline: none;
  }
  .toggle::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  .toggle.yearly::after { transform: translateX(24px); }
  .save-pill {
    background: var(--gold);
    color: #1a1000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
  }

  /* ─── PLANS GRID ─── */
  .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    align-items: start;
  }

  .card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  .card.popular {
    border-color: var(--sky);
    background: linear-gradient(160deg, #0d2a42 0%, #112033 100%);
    box-shadow: 0 0 0 1px var(--sky), 0 20px 60px rgba(26,173,236,0.15);
  }
  .popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--sky), var(--teal));
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
  }

  .plan-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .icon-starter { background: rgba(245,200,66,0.12); }
  .icon-growth  { background: rgba(26,173,236,0.12); }
  .icon-pro     { background: rgba(14,216,180,0.12); }
  .icon-enterprise { background: rgba(255,107,53,0.12); }

  .plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .plan-tagline {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .price-block { margin-bottom: 24px; }
  .price-monthly { display: block; }
  .price-monthly .currency {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    vertical-align: top;
    line-height: 1.6;
    color: var(--sky-light);
  }
  .price-monthly .amount {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
  }
  .price-monthly .period {
    font-size: 14px;
    color: var(--muted);
  }
  .price-annual {
    font-size: 12px;
    color: var(--teal);
    margin-top: 4px;
    display: none;
  }
  .price-annual.visible { display: block; }
  .price-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
  }
  .price-custom {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
  }

  .cta-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    margin-bottom: 28px;
  }
  .cta-btn:hover { opacity: 0.88; transform: scale(0.98); }
  .btn-primary {
    background: linear-gradient(90deg, var(--sky), var(--teal));
    color: var(--navy);
  }
  .btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--white);
  }
  .btn-accent {
    background: var(--accent);
    color: white;
  }

  .divider { border: none; border-top: 1px solid var(--border); margin-bottom: 22px; }

  .features-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .feature-list { list-style: none; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #CBD8E4;
    margin-bottom: 11px;
    line-height: 1.4;
  }
  .feature-list li .check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(14,216,180,0.15);
    color: var(--teal);
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .feature-list li .check.blue {
    background: rgba(26,173,236,0.15);
    color: var(--sky);
  }
  .feature-list li .check.gold {
    background: rgba(245,200,66,0.15);
    color: var(--gold);
  }
  .feature-list li .check.orange {
    background: rgba(255,107,53,0.15);
    color: var(--accent);
  }
  .feature-list li strong { color: var(--white); }

  /* ─── ORDER LIMIT BADGE ─── */
  .order-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,173,236,0.1);
    border: 1px solid rgba(26,173,236,0.2);
    color: var(--sky-light);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  /* ─── COMPARISON TABLE ─── */
  .comparison-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 100px;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
  }
  .section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 48px;
  }

  .comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .comp-table thead th {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .comp-table thead th:first-child { text-align: left; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
  .comp-table thead th.highlight { color: var(--sky); }

  .comp-table .category-row td {
    padding: 20px 20px 10px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sky);
    background: rgba(26,173,236,0.04);
    border-top: 1px solid var(--border);
  }
  .comp-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
  }
  .comp-table tbody td:first-child { color: #9AB5CC; }
  .comp-table tbody td:not(:first-child) { text-align: center; }
  .comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
  .comp-table tbody td.highlight-col { background: rgba(26,173,236,0.04); }

  .tick { color: var(--teal); font-size: 18px; }
  .cross { color: rgba(255,255,255,0.15); font-size: 18px; }
  .addon { font-size: 11px; color: var(--gold); font-weight: 600; }

  /* ─── ADD-ONS ─── */
  .addons-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 100px;
  }
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  .addon-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .addon-icon {
    font-size: 26px;
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(26,173,236,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .addon-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
  .addon-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
  .addon-price { font-size: 13px; color: var(--sky); font-weight: 600; }

  /* ─── FAQ ─── */
  .faq-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 100px;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .faq-q {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  .faq-q .arrow { color: var(--sky); font-size: 20px; transition: transform 0.3s; }
  .faq-q.open .arrow { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px;
    color: #9AB5CC;
    line-height: 1.75;
    margin-top: 12px;
    display: none;
  }
  .faq-a.open { display: block; }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
  }
  .cta-inner {
    background: linear-gradient(135deg, #0d2a42, #0B1A2C);
    border: 1px solid var(--sky);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(26,173,236,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 14px;
  }
  .cta-inner p { color: #9AB5CC; margin-bottom: 30px; font-size: 16px; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-btn-main {
    background: linear-gradient(90deg, var(--sky), var(--teal));
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }
  .cta-btn-ghost {
    background: transparent;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
  }

  /* ─── FOOTER NOTE ─── */
  .footer-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
    padding: 0 20px 60px;
    line-height: 1.8;
  }
  .footer-note a { color: var(--sky); text-decoration: none; }

  .hero-notes-mobile {
    display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .hero-notes-mobile .hero-note {
      flex: 1 1 100%; /* full width on small screens */
  }

  .hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,216,180,0.08);
    border: 1px solid rgba(14,216,180,0.2);
    color: var(--teal);
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 50px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
  @media (max-width: 768px) {
    .plans { grid-template-columns: 1fr; }
    .comp-table { font-size: 12px; }
    .comp-table thead th, .comp-table tbody td { padding: 10px 10px; }
    .cta-inner { padding: 40px 20px; }
    .addons-grid { grid-template-columns: 1fr; }
  }
  @media (min-width: 480px) {
    .hero-notes-mobile .hero-note {
        flex: 1 1 calc(50% - 10px);
  }
}