:root {
    --blue: #009FDB;
    --blue-dark: #0076A8;
    --blue-light: #00C4F4;
    --black: #0a0a0a;
    --dark: #111827;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: #fff; color: var(--dark); overflow-x: hidden; }

  /* ── STICKY HEADER ── */
  .sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 2px solid var(--blue);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 20px rgba(0,159,219,0.3);
  }
  .sticky-header-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-left { display: flex; align-items: center; gap: 12px; }
  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header-call-text {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
  }
  .header-phone {
    color: var(--blue-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .header-phone:hover { color: #fff; }
  .header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-book {
    background: var(--blue);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-book:hover { background: var(--blue-dark); transform: translateY(-1px); }

  /* ── PROMO STRIP ── */
  .promo-strip {
    background: var(--blue);
    padding: 10px 24px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
  }
  .promo-strip span { opacity: 0.8; margin-right: 12px; }

  /* ── HERO ── */
  .hero {
    margin-top: 0;
    background: var(--black);
    min-height: 75vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* Full-width price row */
  .hero-price-row {
    width: 100%;
    text-align: center;
    padding: 5px 0 5px;
    border-bottom: none;
    margin-bottom: 44px;
    position: relative;
  }
  .hero-price-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(750px, 80%);
    height: 1px;
    background: rgba(0,159,219,0.2);
  }
  .hero-price-row-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }
  .hero-price-row-dollar {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(80px, 12vw, 110px);
    font-weight: 900;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -2px;
  }
  .hero-price-row-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-price-row-line {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .hero-price-row-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  /* Two-column hero content */
  .hero-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }

  /* Hero badge → brand header */
  .hero-brand-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-brand-header img.globe-icon {
    width: 32px; height: 32px;
  }
  .hero-brand-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
  }
  .hero-brand-text strong { color: var(--blue-light); }
  .brand-5g-badge {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 1px 6px;
    border-radius: 3px;
    vertical-align: middle;
    margin: 0 2px;
  }

  .hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .hero-h1 .blue { color: var(--blue); }

  /* Prominent center price */
  .hero-price-center {
    margin: 22px 0 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-price-center .price-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -1px;
  }
  .hero-price-center .price-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    max-width: 400px;
    line-height: 1.7;
  }
  .hero-sub .check { color: var(--blue-light); margin-right: 6px; }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,159,219,0.4);
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,159,219,0.5); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--blue); color: var(--blue-light); transform: translateY(-2px); }

  /* Hero right – image area */
  .hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .hero-person-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(0,159,219,0.2);
  }
  .hero-person-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 370px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: linear-gradient(160deg, #0d2240 0%, #071428 100%);
    border: 1px solid rgba(0,159,219,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
  }
  .hero-person-placeholder::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,159,219,0.2) 0%, transparent 70%);
  }
  .hero-person-emoji { font-size: 100px; filter: drop-shadow(0 0 30px rgba(0,159,219,0.5)); }
  .hero-person-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 24px;
  }

  /* ── SECTION 2 – OFFER ── */
  .offer-section {
    background: var(--white);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 16px;
  }
  .container { max-width: 1200px; margin: 0 auto; }

  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    margin-top: 0;
  }

  /* Price card – blue box */
  .price-card {
    background: linear-gradient(135deg, #0a1628 0%, #0d2044 100%);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,159,219,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }
  .price-card-top-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 10px;
    display: block;
  }
  .price-card-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
  }
  .price-card-sub {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
  }
  .price-card-tiers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 18px;
    padding: 14px 16px;
    background: rgba(0,159,219,0.1);
    border-radius: 10px;
    border: 1px solid rgba(0,159,219,0.2);
  }
  .price-tier-line {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
  }
  .price-tier-line span { color: var(--blue-light); font-weight: 700; }
  .locked-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,159,219,0.2);
    border: 1px solid rgba(0,159,219,0.5);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-light);
    letter-spacing: 0.05em;
  }

  /* Benefit items */
  .offer-benefits { display: flex; flex-direction: column; gap: 16px; }
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    border-radius: 16px;
    background: var(--gray-light);
    transition: all 0.2s;
  }
  .benefit-item:hover { background: #e8f6fc; transform: translateX(4px); }
  .benefit-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 12px rgba(0,159,219,0.3);
    background: #d0d8e4;
  }
  .benefit-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .benefit-avatar-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg, #0d2240, #1a4070);
  }
  .benefit-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }
  .benefit-text p { font-size: 13.5px; color: var(--gray); line-height: 1.5; }

  /* ── SECTION 3 – DEVICE ── */
  .device-section {
    background: var(--dark);
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
  }
  .device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
  }
  .device-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .device-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(0,159,219,0.2);
  }
  .device-img-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: linear-gradient(160deg, #1e2d42 0%, #0a1628 100%);
    border: 2px solid rgba(0,159,219,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 32px;
  }
  .device-img-placeholder .phones-emoji { font-size: 72px; filter: drop-shadow(0 0 20px rgba(0,159,219,0.5)); }
  .device-img-placeholder .phones-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .device-content { color: white; display: flex; flex-direction: column; justify-content: center; align-self: center; }
  .device-content .section-title { color: white; font-size: clamp(32px, 4vw, 52px); }
  .device-options { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
  .device-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid rgba(0,159,219,0.3);
    background: rgba(0,159,219,0.08);
    transition: all 0.2s;
  }
  .device-option:hover { border-color: var(--blue); background: rgba(0,159,219,0.15); transform: translateX(4px); }
  .device-option-img {
    width: 56px; height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0,159,219,0.3);
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
  }
  .device-option-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
  }
  .device-option-text span {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
  }

  /* ── SECTION 4 – PRICING ── */
  .pricing-section { background: var(--gray-light); padding: 40px 24px; }
  .pricing-header { text-align: center; max-width: 700px; margin: 0 auto 20px; }
  .pricing-tagline {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 36px;
    font-style: italic;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 340px));
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pricing-card.wide { grid-column: 1 / -1; }

  .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    border: 2px solid transparent;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .pricing-card.featured {
    background: linear-gradient(135deg, #0a1628 0%, #0d2044 100%);
    border-color: var(--blue);
    box-shadow: 0 12px 40px rgba(0,159,219,0.25);
  }
  .pricing-card:not(.featured):hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .pricing-card.has-ribbon::before,
  .pricing-card.featured::before {
    content: 'BEST PRICING';
    position: absolute;
    top: 28px; right: -40px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 48px;
    transform: rotate(45deg);
    white-space: nowrap;
    z-index: 99;
  }
  .pricing-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--dark); margin-bottom: 4px;
  }
  .pricing-card.featured .pricing-card-title { color: white; }
  .pricing-card-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px; font-weight: 900;
    color: var(--blue); line-height: 1; margin: 12px 0 4px;
  }
  .pricing-card-period { font-size: 13px; color: var(--gray); font-weight: 500; }
  .pricing-card.featured .pricing-card-period { color: rgba(255,255,255,0.6); }
  .pricing-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 20px 0; }
  .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--dark); }
  .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
  .pricing-features li::before {
    content: '✓';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* info cards */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
  }
  .info-card {
    display: flex; align-items: center; gap: 16px;
    background: white; border-radius: 14px; padding: 20px 24px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .info-card-icon { font-size: 28px; flex-shrink: 0; }
  .info-card-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    text-transform: uppercase; color: var(--dark); letter-spacing: 0.03em;
  }
  .info-card-text span {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 13px; font-weight: 400;
    text-transform: none; letter-spacing: 0; color: var(--gray);
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: linear-gradient(135deg, #002244 0%, #003366 50%, #004488 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-globe-right {
    position: absolute;
    pointer-events: none;
  }
  .cta-globe-right { right: 0; top: 0; width: 300px; height: 300px; }
  .cta-globe-right img { width: 100%; height: 100%; object-fit: contain; }

  .cta-strip-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--blue-light); margin-bottom: 16px;
    display: block; position: relative; z-index: 2;
  }
  .cta-strip h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900; text-transform: uppercase;
    color: white; line-height: 0.95; margin-bottom: 12px;
    position: relative; z-index: 2;
  }
  .cta-strip h2 em { color: var(--blue); font-style: normal; }
  .cta-strip p {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 500px; margin: 0 auto 40px;
    line-height: 1.6; position: relative; z-index: 2;
  }
  .cta-btns {
    display: flex; gap: 20px; justify-content: center;
    flex-wrap: wrap; position: relative; z-index: 2;
  }
  .btn-xl {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 18px 40px; border-radius: 8px;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-xl.primary { background: var(--blue); color: white; box-shadow: 0 8px 30px rgba(0,159,219,0.5); }
  .btn-xl.primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,159,219,0.6); }
  .btn-xl.white { background: white; color: var(--dark); }
  .btn-xl.white:hover { background: var(--gray-light); transform: translateY(-3px); }

  /* ── FOOTER ── */
  .footer { background: #000; padding: 48px 24px 32px; color: rgba(255,255,255,0.5); }
  .footer-top {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap; gap: 20px;
  }
  .footer-brand {
    display: flex; align-items: center; gap: 12px;
  }
  .footer-brand-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    color: white; text-transform: uppercase; letter-spacing: 0.1em;
  }
  .footer-brand-text span { color: var(--blue); }
  .footer-contact a {
    color: var(--blue-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700; text-decoration: none;
  }
  .footer-promo {
    max-width: 1200px; margin: 20px auto 0;
    font-size: 13px; line-height: 1.7;
    color: rgba(255,255,255,0.35);
  }
  .footer-promo-code {
    color: rgba(255,255,255,0.6); font-weight: 600;
    margin-bottom: 3px; font-size: 13px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ── MOBILE STICKY BAR ── */
  .mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999; background: var(--black);
    border-top: 2px solid var(--blue);
    padding: 12px 16px; gap: 12px;
  }
  .mobile-cta a {
    flex: 1; text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 12px; border-radius: 6px;
    text-decoration: none; transition: all 0.15s;
  }
  .mobile-cta .call { background: var(--blue); color: white; }
  .mobile-cta .appt { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }

  /* ── ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s ease forwards; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  .hero-price-row { animation-delay: 0.05s; }
  .hero-left .fade-up:nth-child(1) { animation-delay: 0.15s; }
  .hero-left .fade-up:nth-child(2) { animation-delay: 0.25s; }
  .hero-left .fade-up:nth-child(3) { animation-delay: 0.35s; }
  .hero-left .fade-up:nth-child(4) { animation-delay: 0.45s; }
  .pulse { animation: pulse 3s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,159,219,0.4); }
    50% { box-shadow: 0 0 0 16px rgba(0,159,219,0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero-cols { grid-template-columns: 1fr; }
    .hero-price-row-dollar { font-size: 80px; }
    .offer-grid { grid-template-columns: 1fr; }
    .device-grid { grid-template-columns: 1fr; }
    .device-visual { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.wide { grid-column: 1; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 72px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-xl { width: 100%; max-width: 320px; justify-content: center; }
    .header-call-text { display: none; }
  }
  @media (max-width: 480px) {
    .hero-h1 { font-size: 52px; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .btn-book { display: none; }
  }
  @media (min-width: 769px) {
    .header-call-text { display: block; }
  }