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

    :root {
      --blue:       #1565C0;
      --blue-dark:  #0D47A1;
      --blue-light: #1E88E5;
      --teal:       #00897B;
      --teal-light: #26A69A;
      --gold:       #FFB300;
      --white:      #FFFFFF;
      --off-white:  #F5F7FA;
      --light-grey: #ECEFF1;
      --mid-grey:   #90A4AE;
      --text:       #1A1A2E;
      --text-light: #4A5568;
      --danger:     #E53935;
      --success:    #2E7D32;
      --radius:     12px;
      --shadow:     0 4px 24px rgba(0,0,0,0.10);
      --shadow-lg:  0 8px 48px rgba(0,0,0,0.16);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a { color: var(--blue-light); text-decoration: none; }
    a:hover { text-decoration: underline; }

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

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section { padding: 80px 0; }
    .section-sm { padding: 48px 0; }

    h1, h2, h3, h4 { line-height: 1.25; }

    /* ═══════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 71, 161, 0.97);
      backdrop-filter: blur(10px);
      padding: 14px 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
    }

    .nav-logo span { color: var(--teal-light); }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); text-decoration: none; }

    .nav-cta {
      background: var(--teal);
      color: var(--white) !important;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 700 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--teal-light) !important; }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
      background: linear-gradient(135deg, #0D47A1 0%, #1565C0 45%, #00695C 100%);
      color: var(--white);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: rgba(0,137,123,0.15);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255,179,0,0.20);
      color: var(--gold);
      border: 1px solid rgba(255,179,0,0.40);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 24px;
    }

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

    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 36px;
      max-width: 520px;
    }

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

    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: #1A1100 !important;
      font-weight: 800;
      font-size: 1rem;
      padding: 16px 36px;
      border-radius: 50px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(255,179,0,0.35);
      text-align: center;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255,179,0,0.50);
      text-decoration: none;
    }

    .btn-secondary {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      color: var(--white) !important;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 36px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.35);
      transition: background 0.2s;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.22);
      text-decoration: none;
    }

    .hero-image-block {
      position: relative;
    }

    .hero-image-block img {
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      width: 100%;
    }

    /* Floating stats */
    .hero-stats {
      display: flex;
      gap: 24px;
      margin-top: 36px;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--gold);
    }

    .stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.70);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ═══════════════════════════════════════════
       PROBLEM SECTION
    ═══════════════════════════════════════════ */
    .problem {
      background: var(--off-white);
      padding: 80px 0;
    }

    .section-tag {
      display: inline-block;
      background: rgba(21,101,192,0.10);
      color: var(--blue);
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-tag.teal {
      background: rgba(0,137,123,0.10);
      color: var(--teal);
    }

    .section-tag.gold {
      background: rgba(255,179,0,0.12);
      color: #B07800;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--text);
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 640px;
      margin-bottom: 48px;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .pain-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--danger);
    }

    .pain-icon {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .pain-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--danger);
    }

    .pain-card p {
      font-size: 0.92rem;
      color: var(--text-light);
    }

    /* ═══════════════════════════════════════════
       AGITATE
    ═══════════════════════════════════════════ */
    .agitate {
      background: #1A1A2E;
      color: var(--white);
      padding: 72px 0;
      text-align: center;
    }

    .agitate h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      max-width: 760px;
      margin: 0 auto 20px;
    }

    .agitate p {
      color: rgba(255,255,255,0.75);
      max-width: 680px;
      margin: 0 auto 14px;
      font-size: 1.05rem;
    }

    .agitate-highlight {
      color: var(--gold);
      font-weight: 700;
    }

    /* ═══════════════════════════════════════════
       SOLUTION / BENEFITS
    ═══════════════════════════════════════════ */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 40px;
    }

    .benefit-card {
      display: flex;
      gap: 20px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--light-grey);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .benefit-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .benefit-icon {
      width: 54px;
      height: 54px;
      min-width: 54px;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .benefit-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .benefit-card p {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    /* ═══════════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════════ */
    .how {
      background: var(--off-white);
      padding: 80px 0;
    }

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

    .steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      width: 80%;
      height: 2px;
      background: linear-gradient(to right, var(--blue), var(--teal));
      z-index: 0;
    }

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

    .step-num {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 4px 16px rgba(21,101,192,0.30);
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 0.88rem;
      color: var(--text-light);
    }

    /* ═══════════════════════════════════════════
       FEATURES LIST
    ═══════════════════════════════════════════ */
    .features-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid var(--light-grey);
    }

    .check {
      width: 26px;
      height: 26px;
      min-width: 26px;
      background: var(--teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.85rem;
      font-weight: 800;
    }

    .feature-item p {
      font-size: 0.92rem;
      color: var(--text);
    }

    /* ═══════════════════════════════════════════
       TRANSFORMATION / RESULTS
    ═══════════════════════════════════════════ */
    .transform {
      background: linear-gradient(135deg, #0D47A1 0%, #00695C 100%);
      color: var(--white);
      padding: 80px 0;
    }

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

    .transform-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius);
      padding: 32px;
      text-align: center;
      transition: background 0.2s;
    }

    .transform-card:hover { background: rgba(255,255,255,0.14); }

    .transform-icon { font-size: 2.4rem; margin-bottom: 16px; }

    .transform-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .transform-card p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.78);
    }

    /* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
    .testimonials { padding: 80px 0; background: var(--off-white); }

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

    .testi-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }

    .testi-card p {
      font-size: 0.92rem;
      color: var(--text-light);
      font-style: italic;
      margin-bottom: 20px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 1rem;
    }

    .testi-name { font-weight: 700; font-size: 0.92rem; }
    .testi-role { font-size: 0.8rem; color: var(--mid-grey); }

    /* ═══════════════════════════════════════════
       PRICING
    ═══════════════════════════════════════════ */
    .pricing { padding: 88px 0; background: var(--white); }

    .pricing-note {
      text-align: center;
      color: var(--text-light);
      font-size: 0.95rem;
      margin-top: -12px;
      margin-bottom: 48px;
    }

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

    .price-card {
      border-radius: var(--radius);
      padding: 32px 24px;
      border: 2px solid var(--light-grey);
      background: var(--white);
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .price-card.featured {
      border-color: var(--blue);
      background: linear-gradient(180deg, #EBF3FB 0%, var(--white) 100%);
    }

    .price-card.best {
      border-color: var(--teal);
      background: linear-gradient(180deg, #E0F2F1 0%, var(--white) 100%);
    }

    .badge-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: white;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 50px;
      white-space: nowrap;
    }

    .badge-best {
      background: var(--teal);
    }

    .price-icon { font-size: 2.2rem; margin-bottom: 10px; }

    .price-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .price-amount {
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--blue);
      line-height: 1;
    }

    .price-card.best .price-amount { color: var(--teal); }

    .price-period {
      font-size: 0.85rem;
      color: var(--mid-grey);
      margin-bottom: 20px;
    }

    .price-features {
      list-style: none;
      margin-bottom: 28px;
      text-align: left;
    }

    .price-features li {
      font-size: 0.88rem;
      color: var(--text-light);
      padding: 5px 0;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .price-features li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 800;
      flex-shrink: 0;
    }

    .btn-plan {
      display: block;
      padding: 13px 24px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-plan-free {
      background: var(--light-grey);
      color: var(--text) !important;
      border: 2px solid #CBD5E0;
    }

    .btn-plan-free:hover {
      background: #CBD5E0;
      text-decoration: none;
    }

    .btn-plan-blue {
      background: var(--blue);
      color: var(--white) !important;
      box-shadow: 0 4px 14px rgba(21,101,192,0.35);
    }

    .btn-plan-blue:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
      text-decoration: none;
    }

    .btn-plan-teal {
      background: var(--teal);
      color: var(--white) !important;
      box-shadow: 0 4px 14px rgba(0,137,123,0.35);
    }

    .btn-plan-teal:hover {
      background: #00695C;
      transform: translateY(-1px);
      text-decoration: none;
    }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .faq { padding: 80px 0; background: var(--off-white); }

    .faq-list { max-width: 760px; margin: 40px auto 0; }

    .faq-item {
      background: var(--white);
      border-radius: 10px;
      margin-bottom: 14px;
      overflow: hidden;
      border: 1px solid var(--light-grey);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: inherit;
    }

    .faq-question span { color: var(--blue); font-size: 1.2rem; }

    .faq-answer {
      display: none;
      padding: 0 24px 20px;
      font-size: 0.92rem;
      color: var(--text-light);
      line-height: 1.75;
    }

    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-question { color: var(--blue); }

    /* ═══════════════════════════════════════════
       FINAL CTA
    ═══════════════════════════════════════════ */
    .final-cta {
      background: linear-gradient(135deg, #0D47A1 0%, #00695C 100%);
      color: var(--white);
      padding: 96px 0;
      text-align: center;
    }

    .final-cta h2 {
      font-size: 2.4rem;
      font-weight: 900;
      margin-bottom: 20px;
      color: var(--white);
    }

    .final-cta p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.80);
      max-width: 600px;
      margin: 0 auto 36px;
    }

    /* ═══════════════════════════════════════════
       LEGAL SECTIONS
    ═══════════════════════════════════════════ */
    .legal-section {
      padding: 56px 0;
      border-top: 1px solid var(--light-grey);
    }

    .legal-section:nth-child(odd) { background: var(--white); }
    .legal-section:nth-child(even) { background: var(--off-white); }

    .legal-section h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--text);
    }

    .legal-section p,
    .legal-section li {
      font-size: 0.92rem;
      color: var(--text-light);
      margin-bottom: 10px;
      max-width: 820px;
    }

    .legal-section ul {
      padding-left: 22px;
      margin-bottom: 12px;
    }

    .legal-section h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin: 20px 0 8px;
      color: var(--text);
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: #0D1B2A;
      color: rgba(255,255,255,0.60);
      padding: 36px 0;
      text-align: center;
      font-size: 0.85rem;
    }

    footer a { color: rgba(255,255,255,0.75); }
    footer a:hover { color: var(--white); }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════ */
    .text-center { text-align: center; }
    .mb-0 { margin-bottom: 0 !important; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-block { display: none; }
      .hero h1 { font-size: 2.2rem; }
      .pain-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .steps::before { display: none; }
      .benefits-grid { grid-template-columns: 1fr; }
      .transform-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .features-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .hero h1 { font-size: 1.8rem; }
      .pricing-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 16px; }
    }

	/* ── Scroll to Top ── */
	#scrollTopBtn {
	  position: fixed;
	  bottom: 100px;
	  right: 24px;
	  z-index: 999;
	  width: 46px;
	  height: 46px;
	  border-radius: 50%;
	  background: var(--blue);
	  color: white;
	  font-size: 1.2rem;
	  font-weight: 800;
	  border: none;
	  cursor: pointer;
	  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
	  opacity: 0;
	  transform: translateY(20px);
	  transition: opacity 0.3s, transform 0.3s, background 0.2s;
	  pointer-events: none;
	}
	#scrollTopBtn.visible {
	  opacity: 1;
	  transform: translateY(0);
	  pointer-events: all;
	}
	#scrollTopBtn:hover { background: var(--blue-dark); }

	/* ── Floating Social Icons ── */
	.floating-social {
	  position: fixed;
	  left: 16px;
	  top: 50%;
	  transform: translateY(-50%);
	  z-index: 998;
	  display: flex;
	  flex-direction: column;
	  gap: 10px;
	}

	.social-icon {
	  width: 42px;
	  height: 42px;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  color: white;
	  transition: transform 0.2s, box-shadow 0.2s;
	  box-shadow: 0 3px 12px rgba(0,0,0,0.20);
	  text-decoration: none;
	}

	.social-icon:hover {
	  transform: scale(1.15);
	  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
	  text-decoration: none;
	}

	.social-fb    { background: #1877F2; }
	.social-ig    { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
	.social-yt    { background: #FF0000; }
	.social-tt	  { background: #000000; }
	.social-li 	  { background: #0A66C2; }
	.social-bio   { background: #6c757d; }
	.social-email { background: var(--teal); }

	/* Hide floating social on very small screens to avoid clutter */
	@media (max-width: 480px) {
	  .floating-social { display: none; }
	}

	/* ── Demo Video Click-to-Play ── */
	.demo-video-wrap {
	  position: relative;
	  max-width: 860px;
	  margin: 0 auto;
	  border-radius: 16px;
	  overflow: hidden;
	  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
	  background: #000;
	  cursor: pointer;
	  aspect-ratio: 16 / 9;
	}

	.demo-video-wrap img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	  transition: transform 0.3s, opacity 0.3s;
	  opacity: 0.85;
	}

	.demo-video-wrap:hover img {
	  transform: scale(1.02);
	  opacity: 0.70;
	}

	.demo-play-btn {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -60%);
	  transition: transform 0.2s;
	  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.40));
	}

	.demo-video-wrap:hover .demo-play-btn {
	  transform: translate(-50%, -60%) scale(1.12);
	}

	.demo-overlay-label {
	  position: absolute;
	  bottom: 24px;
	  left: 50%;
	  transform: translateX(-50%);
	  background: rgba(21,101,192,0.88);
	  color: white;
	  font-weight: 700;
	  font-size: 0.95rem;
	  padding: 8px 24px;
	  border-radius: 50px;
	  letter-spacing: 0.5px;
	  white-space: nowrap;
	  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	}

	/* When iframe is active, hide the thumbnail overlay */
	.demo-video-wrap.playing img,
	.demo-video-wrap.playing .demo-play-btn,
	.demo-video-wrap.playing .demo-overlay-label {
	  display: none;
	}

	.demo-video-wrap.playing {
	  cursor: default;
	}

	#demoIframeHolder iframe {
	  position: absolute;
	  top: 0; left: 0;
	  width: 100%; height: 100%;
	  border: none;
	  border-radius: 16px;
	}