:root {
  --bg-dark: #09090b; /* Zinc 950 */
  --bg-darker: #000000;
  --bg-card: #18181b; /* Zinc 900 */
  --primary: #f97316; /* Orange 500 */
  --primary-hover: #ea580c;
  --text-white: #ffffff;
  --text-light: #a1a1aa; /* Zinc 400 */
  --border-color: #27272a; /* Zinc 800 */
  --success: #22c55e;
  --font-main: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s ease;
  --glow-primary: rgba(249, 115, 22, 0.15);
  
  --container-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
strong, b { color: var(--text-white); font-weight: 700; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Layout & Utils */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.bg-darker { background-color: var(--bg-darker); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-light); font-size: 1.125rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35), 0 0 0 0 rgba(249, 115, 22, 0);
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ef4444 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45), 0 0 20px rgba(249, 115, 22, 0.2);
  color: #fff;
}
.btn-primary:active {
  transform: translateY(-1px);
}

/* Header CTA */
.header-cta {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-white);
  border-radius: 10px;
}
.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--text-light);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }
.nav-links a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; color: var(--text-white); }
@media (max-width: 992px) {
  .nav-links, .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Hero */
.hero {
  position: relative;
  padding: 10rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('media/iptvtour subscruiption.webp');
  background-size: cover;
  background-position: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(9,9,11,0.7) 0%, rgba(9,9,11,0.95) 100%); z-index: 1; }
.hero-glow { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 60vw; height: 60vw; background: radial-gradient(circle, var(--glow-primary) 0%, transparent 60%); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 2.5rem; }
.hero .btn-primary { padding: 1.25rem 3rem; margin-bottom: 2rem; animation: pulse 2s infinite; }
.hero .btn-primary svg { transition: transform 0.3s ease; }
.hero .btn-primary:hover svg { transform: translateX(4px); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.app-icons-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; opacity: 0.8; }
.app-icons-row img, .app-icons-row svg { height: 40px; width: auto; border-radius: 8px; }
.hero-payment { display: flex; justify-content: center; margin-bottom: 1.5rem; opacity: 0.7; }
.hero-payment img { height: 32px; width: auto; max-width: 100%; }

/* Carousel Marquee Base */
.swiper-slide { height: auto; }

/* Intro / Trust */
.intro-text-large {
  font-size: 1.15rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.6;
}
.trust-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2rem;}
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; background: var(--bg-card); padding: 0.75rem 1.5rem; border-radius: 999px; border: 1px solid var(--border-color); }
.trust-badge svg { color: var(--success); width: 20px; height: 20px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; width: 100%; margin: 0 auto; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Cards & Components */
.step-card { text-align: center; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: transform 0.3s ease, border-color 0.3s ease; }
.step-card:hover { transform: translateY(-5px); border-color: rgba(249, 115, 22, 0.3); }
.step-card svg { width: 64px; height: 64px; color: var(--text-white); margin-bottom: 1.5rem; display: inline-block; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.5; }

.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem 2rem; transition: transform 0.3s ease, border-color 0.3s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(249, 115, 22, 0.3); }

/* Pricing Cards (Redesigned Exact Blueprint) */
.pricing-card { background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px 16px 16px 16px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s ease, border-color 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.pricing-card:hover { transform: translateY(-5px); border-color: #d1d5db; }
.pricing-card b, .pricing-card strong { color: inherit; }


/* --- BLUE FEATURED CARD --- */
.pricing-card.featured { background-color: #1100fc; color: #ffffff; border: none; transform: scale(1.04); box-shadow: 0 15px 35px rgba(17, 0, 252, 0.25); z-index: 10; }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }

.best-deal-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #ef4444; color: #ffffff; padding: 6px 18px; border-radius: 30px; font-size: 12px; font-weight: 800; white-space: nowrap; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); z-index: 11; }

.card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; min-height: 26px; align-items: center; }
.category-badge, .bonus-badge { padding: 5px 14px; border-radius: 30px; font-size: 11px; font-weight: 700; }
.category-badge { background: rgba(17, 0, 252, 0.1); color: #1100fc; border: 1px solid rgba(17, 0, 252, 0.2); }
.pricing-card.featured .category-badge { background: #ffffff; color: #1100fc; border: none; }
.bonus-badge { background: #ffb400; color: #000; }

.plan-title { font-size: 20px; font-weight: 800; margin: 0 0 16px 0; color: #111827; }
.pricing-card.featured .plan-title { color: #ffffff; }

.price-wrapper { margin-bottom: 24px; }
.price-main { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price { font-size: 2.8rem; font-weight: 800; color: #1100fc; letter-spacing: -1px; line-height: 1; }
.pricing-card.featured .price { color: #ffffff; }
.price-old { font-size: 16px; font-weight: 700; color: #6b7280; text-decoration: line-through; }
.pricing-card.featured .price-old { color: rgba(255, 255, 255, 0.7); }

.price-breakdown, .price-description { font-size: 12px; color: #6b7280; }
.price-breakdown { margin-bottom: 4px; }
.price-description { line-height: 1.3; min-height: 28px; }
.pricing-card.featured .price-breakdown, .pricing-card.featured .price-description { color: rgba(255, 255, 255, 0.9); }

.features-list { list-style: none; padding: 0; margin: 0 0 16px 0; flex-grow: 1; display: flex; flex-direction: column; gap: 8px; object-fit: contain;}
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; font-weight: 500; color: #111827; line-height: 1.3; }
.pricing-card.featured .feature-item { color: #ffffff; font-weight: 600; text-shadow: none;}

.feature-check { display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1.5px solid var(--success); border-radius: 4px; color: var(--success); font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: -1px; }
.pricing-card.featured .feature-check { border-color: #ffffff; color: #ffffff; }

.cta-button { display: block; width: 100%; text-align: center; background-color: #1100fc; color: #ffffff; padding: 14px 20px; border-radius: 8px; font-size: 15px; font-weight: 800; transition: 0.2s ease; border: none; }
.cta-button:hover { background-color: #0c00b3; color: #ffffff; }
.pricing-card.featured .cta-button { background-color: #ffffff; color: #1100fc; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.pricing-card.featured .cta-button:hover { background-color: #f3f4f6; color: #1100fc; }

.cta-subtext { font-size: 11px; text-align: center; color: #6b7280; margin-top: 8px; min-height: 24px; line-height: 1.3; }
.pricing-card.featured .cta-subtext { color: rgba(255, 255, 255, 0.9); }

.payment-container { border: 1px solid #e5e7eb; border-radius: 8px; padding: 8px; margin-top: auto; display: flex; justify-content: center; align-items: center; background-color: #f9fafb; }
.pricing-card.featured .payment-container { border-color: rgba(255, 255, 255, 0.2); background: transparent; }
.payment-container img { height: 24px; object-fit: contain; }

.card-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; color: #6b7280; margin-top: 16px; font-weight: 500; text-align:center;}
.pricing-card.featured .card-note { color: #ffffff; }
.note-dot { width: 6px; height: 6px; background-color: #ef4444; border-radius: 50%; flex-shrink: 0; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; color: var(--text-white); font-size: 1.125rem; font-weight: 700; text-align: left; }
.faq-btn svg { width: 24px; height: 24px; transition: transform 0.3s ease; color: var(--primary); flex-shrink: 0; }
.faq-item.active .faq-btn svg { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-light); }
.faq-item.active .faq-answer { padding-bottom: 1.5rem; max-height: 500px; }

/* Floating WA */
.floating-wa { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25D366; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.5); z-index: 1000; transition: transform 0.3s; }
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 35px; height: 35px; fill: #fff; }

@media (max-width: 1024px) {
  .pricing-card.featured { transform: none; box-shadow: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .floating-wa svg { width: 28px; height: 28px; }
}

/* Movies slider section spacing */
.movies-slider-section { padding-top: 4rem; padding-bottom: 4rem; }
.movies-slider-section .swiper-slide img { border-radius: 8px; width: 100%; height: auto; object-fit: contain; }

/* Review WhatsApp Screenshots Slider */
.review-slider {
  width: 100%;
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
}
.review-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.review-slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-slider .swiper-slide img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: block;
  border: 1px solid var(--border-color);
}

/* Reviews section bottom gap */
section.reviews { padding-bottom: 4rem; }

/* --- FEATURES SECTION (Redesigned) --- */
.features-section { padding: 5rem 0; background: var(--bg-darker); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feat-row:last-child { margin-bottom: 0; }

/* Reverse: image on right */
.feat-row-reverse { direction: rtl; }
.feat-row-reverse > * { direction: ltr; }

.feat-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.feat-media img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.feat-media:hover img { transform: scale(1.03); }

.feat-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.feat-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feat-card:hover {
  transform: translateX(6px);
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 6px 20px rgba(249,115,22,0.08);
}
.feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.feat-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; font-weight: 700; }
.feat-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
  .feat-row { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .feat-row-reverse { direction: ltr; }
  .feat-row .feat-media { order: -1; }
}


/* --- DOWNLOAD SECTION --- */
.download-section { margin-top: 2rem; }
.download-card { text-align: center; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.download-card svg { width: 48px; height: 48px; margin: 0 auto 1.5rem; color: var(--primary); }
.download-card h3 { margin-bottom: 0.75rem; }
.download-card p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; flex-grow: 1; }

/* --- DEVICES SECTION --- */
.devices-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.device-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-card); padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); transition: transform 0.3s ease; }
.device-item:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.device-item svg { width: 36px; height: 36px; color: var(--text-white); flex-shrink: 0; }
.device-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.device-item p { color: var(--text-light); font-size: 0.85rem; line-height: 1.4; }
.expert-tip { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); color: var(--text-white); padding: 1rem 1.5rem; border-radius: var(--radius-md); text-align: center; }

/* --- REVIEWS SECTION --- */
.review-card { position: relative; }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-header h4 { margin: 0; font-size: 1rem; }
.stars { color: #eab308; font-size: 0.9rem; display: flex; align-items: center; gap: 2px; }
.stars svg { width: 14px; height: 14px; }
.review-text { font-style: italic; color: var(--text-light); font-size: 0.95rem; line-height: 1.5; }
.intro-section { padding-top: 1.5rem; padding-bottom: 3rem; }
.device-slider { padding: 0.5rem 0 1.5rem 0; overflow: hidden; }
.device-slider .swiper-slide { width: auto; display: flex; align-items: center; justify-content: center; }
.device-slider img { height: auto !important; width: auto !important; max-height: 120px; object-fit: contain; border-radius: var(--radius-sm); }

/* --- USPS SECTION --- */
.usps .card { padding: 2rem 1.5rem; }
.usps .card svg { margin-bottom: 1rem; color: var(--primary); width: 48px; height: 48px; }

/* --- BLOG & FOOTER --- */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; background: var(--bg-card); position: relative; z-index: 2; }
.blog-cat { font-size: 0.75rem; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 1px; }
.blog-content h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.blog-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; flex-grow: 1; }

.social-section { padding: 4rem 0; }
.social-icons { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; }
.social-icon { width: 52px; height: 52px; min-width: 48px; min-height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.social-icon:hover { transform: scale(1.1); }
.bg-whatsapp { background: #25D366; }
.bg-email { background: #3b82f6; }
.social-icon svg { width: 24px; height: 24px; color: #fff; }

footer { background: #000; padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col p { color: var(--text-light); font-size: 0.9rem; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-white); }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-image { order: -1; } 
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: span 1; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* --- PERFORMANCE: Content Visibility for below-fold sections --- */
.steps, .pricing, .features-section, .download-section,
.devices, .reviews, .usps, .faq, .cta-section,
.blog-section, .social-section { content-visibility: auto; contain-intrinsic-size: auto 500px; }

/* --- PERFORMANCE: Reduce layout shift --- */
.blog-img { aspect-ratio: 16/9; }
.review-avatar { aspect-ratio: 1/1; }
.swiper { contain: layout style; }

/* --- SEO: Improve CLS for pricing cards --- */
.pricing-card { contain: layout style; }

/* --- ACCESSIBILITY: Focus visible for keyboard navigation --- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* --- PRINT STYLES (SEO best practice) --- */
@media print {
  header, .floating-wa, .social-section, .hero-glow { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .pricing-card { break-inside: avoid; }
}