/* ═══════════════════════════════════════════════════════
   GIGA IPTV — Design System
   Dark bg #0d0d0d · Gold accent #f0a500
═══════════════════════════════════════════════════════ */

:root {
  --bg:          #0d0d0d;
  --bg-2:        #141414;
  --bg-3:        #1a1a1a;
  --bg-4:        #222;
  --border:      #2a2a2a;
  --accent:      #f0a500;
  --accent-dark: #c8880a;
  --accent-glow: rgba(240,165,0,.18);
  --diamond:     #3b82f6;
  --diamond-glow:rgba(59,130,246,.15);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-dim:    #666;
  --success:     #22c55e;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.5);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --font-body:   'Inter', system-ui, sans-serif;
  --font-heading:'Poppins', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul  { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #000; transform: translateY(-2px); box-shadow: 0 6px 24px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-xl  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-lg  { padding: .875rem 2rem; font-size: 1rem; }
.btn-full, .btn-block { width: 100%; justify-content: center; }

.text-accent  { color: var(--accent); }
.text-diamond { color: var(--diamond); }
.text-muted   { color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title  { font-family: var(--font-heading); font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: .75rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════ */
.announcement-bar { background: var(--accent); color: #000; text-align: center; padding: .5rem 1rem; font-size: .85rem; font-weight: 600; letter-spacing: .01em; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.header-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.site-logo { text-decoration: none; display: flex; align-items: center; }
.site-logo img { height: 46px; width: auto; display: block; }

/* Language switcher */
.lang-switcher { display: flex; gap: .3rem; align-items: center; margin-left: .5rem; }
.lang-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); font-size: .72rem; font-weight: 600; padding: .2rem .5rem; border-radius: 4px; cursor: pointer; transition: all var(--transition); font-family: var(--font-body); }
.lang-btn:hover  { border-color: var(--accent); color: var(--accent); }
.lang-btn.active { border-color: var(--accent); background: var(--accent); color: #000; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: .25rem; align-items: center; }
.nav-list li a { color: var(--text-muted); font-size: .9rem; font-weight: 500; padding: .5rem .875rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-list li a:hover, .nav-list li.active a { color: var(--text); background: var(--bg-3); }
.header-cta { display: flex; gap: .75rem; align-items: center; margin-left: 1rem; }

.burger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto; }
.burger-btn span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

.mobile-nav { display: none; background: var(--bg-2); border-top: 1px solid var(--border); padding: 1rem 1.25rem 1.5rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav ul li a { display: block; color: var(--text-muted); font-weight: 500; padding: .75rem 1rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.mobile-nav ul li a:hover { color: var(--text); background: var(--bg-3); }
.mobile-lang { display: flex; gap: .4rem; padding: .75rem 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero-section { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.hero-bg-effect { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(240,165,0,.08) 0%, transparent 60%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent-glow); border: 1px solid rgba(240,165,0,.3); color: var(--accent); font-size: .8rem; font-weight: 600; padding: .375rem .875rem; border-radius: 999px; margin-bottom: 1.5rem; letter-spacing: .02em; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.hero-subtitle strong { color: var(--text); }

.hero-features-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-features-list span { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--text-muted); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust { display: flex; align-items: center; gap: 1.5rem; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.hero-trust-item span  { font-size: .8rem; color: var(--text-muted); }
.hero-trust-sep { width: 1px; height: 32px; background: var(--border); }

/* Hero animated visual */
.hero-visual { display: flex; justify-content: center; align-items: stretch; }
.hero-slider { position: relative; width: 100%; max-width: 480px; height: 460px; overflow: hidden; border-radius: 18px; -webkit-mask-image: linear-gradient(to bottom,transparent 0%,#000 10%,#000 90%,transparent 100%); mask-image: linear-gradient(to bottom,transparent 0%,#000 10%,#000 90%,transparent 100%); }
.slider-cols { display: flex; gap: 10px; height: 100%; padding: 0 2px; }
.s-col { display: flex; flex-direction: column; gap: 10px; flex: 1; will-change: transform; }
.s-col-1 { animation: s-up 22s linear infinite; }
.s-col-2 { animation: s-dn 28s linear infinite; }
.s-col-3 { animation: s-up 25s linear infinite; }
.s-col:hover { animation-play-state: paused; }
@keyframes s-up { from { transform: translateY(0); }    to { transform: translateY(-50%); } }
@keyframes s-dn { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.s-card { position: relative; border-radius: 12px; overflow: hidden; flex-shrink: 0; height: 145px; background: linear-gradient(145deg,var(--c1),var(--c2)); border: 1px solid rgba(255,255,255,.08); cursor: default; transition: transform .25s,box-shadow .25s; }
.s-card:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 2; }
.s-card-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-62%); font-size: 3rem; filter: drop-shadow(0 3px 10px rgba(0,0,0,.6)); line-height: 1; }
.s-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top,rgba(0,0,0,.92) 0%,transparent 100%); padding: .65rem .7rem .5rem; }
.s-card-cat { display: block; font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--accent); margin-bottom: .15rem; }
.s-card-name { display: block; font-size: .77rem; font-weight: 700; color: #fff; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-card-badge { position: absolute; top: .5rem; right: .5rem; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; padding: .12rem .38rem; font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.85); }

/* ════════════════════════════════════════════
   PRODUCT CARDS (homepage)
════════════════════════════════════════════ */
.products-section { padding: 5rem 0; }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-card { background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; transition: all var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card--gold    { border-color: rgba(240,165,0,.25); }
.product-card--gold:hover    { border-color: var(--accent); box-shadow: 0 12px 48px var(--accent-glow); }
.product-card--diamond { border-color: rgba(59,130,246,.25); }
.product-card--diamond:hover { border-color: var(--diamond); box-shadow: 0 12px 48px var(--diamond-glow); }
.product-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.25rem; }
.badge-gold    { background: rgba(240,165,0,.15); color: var(--accent); border: 1px solid rgba(240,165,0,.3); }
.badge-diamond { background: var(--diamond-glow); color: var(--diamond); border: 1px solid rgba(59,130,246,.3); }
.product-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.product-card p  { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin-bottom: 1.5rem; }
.product-price { margin-bottom: 1.5rem; }
.product-price .from { font-size: .82rem; color: var(--text-dim); }
.product-price .amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.product-price .period { font-size: .85rem; color: var(--text-muted); }
.product-price .original { font-size: .85rem; color: var(--text-dim); text-decoration: line-through; margin-left: .5rem; }
.product-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.product-features li { font-size: .875rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.product-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.product-card--gold    .product-features li::before { color: var(--accent); }
.product-card--diamond .product-features li::before { color: var(--diamond); }

/* ════════════════════════════════════════════
   COMPAT
════════════════════════════════════════════ */
.compat-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.compat-label { text-align: center; font-size: .85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.compat-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.compat-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.device-icon { font-size: 1.75rem; }
.compat-item span { font-size: .8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.features-section { padding: 6rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all var(--transition); }
.feature-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.feature-icon { width: 52px; height: 52px; background: var(--accent-glow); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; font-size: 1.4rem; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: .75rem; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════
   PRICING SECTION
════════════════════════════════════════════ */
.pricing-preview-section,
.full-pricing-section { padding: 6rem 0; }

.pricing-tabs-wrapper { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.pricing-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pricing-tab { background: var(--bg-3); border: 1px solid var(--border); color: var(--text-muted); padding: .625rem 1.25rem; border-radius: 999px; font-size: .9rem; font-weight: 500; cursor: pointer; transition: all var(--transition); position: relative; }
.pricing-tab:hover  { border-color: var(--accent); color: var(--accent); }
.pricing-tab.active { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; }
.tab-badge { position: absolute; top: -8px; right: -4px; background: var(--success); color: #000; font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 999px; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; position: relative; transition: all var(--transition); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card--popular { border-color: var(--accent); background: linear-gradient(160deg,var(--bg-3),var(--bg-2)); box-shadow: 0 0 40px var(--accent-glow); }
.pricing-card--popular-d { border-color: var(--diamond); background: linear-gradient(160deg,var(--bg-3),var(--bg-2)); box-shadow: 0 0 40px var(--diamond-glow); }
.pricing-popular-badge { background: var(--accent); color: #000; font-size: .75rem; font-weight: 700; text-align: center; padding: .375rem; border-radius: var(--radius-sm) var(--radius-sm) 0 0; margin: -1.75rem -1.75rem 1.5rem; }
.pricing-popular-badge--d { background: var(--diamond); color: #fff; }
.pricing-duration { font-size: .875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.pricing-price { margin-bottom: .5rem; }
.price-amount { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-original { font-size: .85rem; color: var(--text-dim); text-decoration: line-through; }
.price-per-month { font-size: .8rem; color: var(--text-dim); margin-top: .25rem; display: block; }
.pricing-saving { background: rgba(34,197,94,.15); color: var(--success); font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 1.25rem; }
.pricing-features { margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.pricing-features li { font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }
.pricing-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.pricing-card--gold    .pricing-features li::before { color: var(--accent); }
.pricing-card--diamond .pricing-features li::before { color: var(--diamond); }
.pricing-note { text-align: center; margin-top: 2rem; font-size: .875rem; color: var(--text-dim); }

/* Reseller credits cards */
.credits-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding: 1.25rem 1.5rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); }
.credits-badge { padding: .3rem .9rem; border-radius: 999px; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.credits-badge--gold    { background: rgba(240,165,0,.15); color: var(--accent); border: 1px solid rgba(240,165,0,.3); }
.credits-badge--diamond { background: var(--diamond-glow); color: var(--diamond); border: 1px solid rgba(59,130,246,.3); }
.credits-header-text strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.credits-header-text span   { font-size: .82rem; color: var(--text-muted); }
.credit-card { background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.1rem; text-align: center; position: relative; transition: all var(--transition); display: flex; flex-direction: column; }
.credit-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.credit-card--gold:hover    { border-color: var(--accent); }
.credit-card--diamond:hover { border-color: var(--diamond); }
.credit-card--popular-g { border-color: var(--accent); background: linear-gradient(180deg,rgba(240,165,0,.06),var(--bg-2)); }
.credit-card--popular-d { border-color: var(--diamond); background: linear-gradient(180deg,var(--diamond-glow),var(--bg-2)); }
.credit-nb    { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; color: var(--text); }
.credit-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.credit-label--gold    { color: var(--accent); }
.credit-label--diamond { color: var(--diamond); }
.credit-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; margin: .5rem 0 .1rem; }
.credit-original { font-size: .82rem; color: var(--text-dim); text-decoration: line-through; }
.credit-per   { font-size: .78rem; color: var(--text-dim); margin-bottom: 1rem; }
.credit-features { text-align: left; list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.credit-features li { font-size: .8rem; color: var(--text-muted); padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.04); display: flex; align-items: center; gap: .4rem; }
.credit-features li:last-child { border-bottom: none; }
.credit-features li::before { content: '◆'; font-size: .6rem; flex-shrink: 0; }
.credit-card--gold    .credit-features li::before { color: var(--accent); }
.credit-card--diamond .credit-features li::before { color: var(--diamond); }

/* Guarantee */
.pricing-guarantee { margin-top: 4rem; }
.guarantee-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.guarantee-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.guarantee-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.guarantee-item strong { display: block; font-size: .95rem; margin-bottom: .5rem; }
.guarantee-item p { font-size: .85rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section { padding: 6rem 0; background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all var(--transition); }
.testimonial-card:hover { border-color: rgba(240,165,0,.2); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.author-avatar { width: 40px; height: 40px; background: var(--accent-glow); border: 1px solid rgba(240,165,0,.3); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--text-dim); }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-quick-section, .faq-full-section { padding: 6rem 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; color: var(--text); font-size: 1rem; font-weight: 500; text-align: left; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--transition); }
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.25rem; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-answer { display: block; }
.faq-cta { text-align: center; margin-top: 2.5rem; }
.faq-contact-cta { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem; text-align: center; margin-top: 3rem; }
.faq-contact-cta h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .75rem; }
.faq-contact-cta p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta-section { padding: 5rem 0; }
.final-cta-box { background: linear-gradient(135deg,var(--bg-3),var(--bg-2)); border: 1px solid rgba(240,165,0,.25); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.final-cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(240,165,0,.1) 0%,transparent 60%); pointer-events: none; }
.final-cta-box h2 { font-family: var(--font-heading); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; margin-bottom: .875rem; }
.final-cta-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.final-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.final-cta-guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: .85rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer-cta-band { background: var(--bg-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-cta-text h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .5rem; }
.footer-cta-text p  { color: var(--text-muted); }
.footer-cta-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: .875rem; margin-top: 1rem; margin-bottom: 1.25rem; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge { display: inline-flex; align-items: center; gap: .3rem; background: var(--bg-3); border: 1px solid var(--border); color: var(--text-muted); font-size: .75rem; padding: .3rem .6rem; border-radius: var(--radius-sm); }
.footer-heading { font-family: var(--font-heading); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links li a, .footer-links li span { font-size: .875rem; color: var(--text-muted); transition: color var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link { width: 36px; height: 36px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.social-link:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-inner p { font-size: .85rem; color: var(--text-dim); }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: .8rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--text-muted); }

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero { background: linear-gradient(180deg,var(--bg-2),var(--bg)); border-bottom: 1px solid var(--border); padding: 4rem 0 3rem; text-align: center; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero-sub { font-size: 1.05rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form-col h2, .contact-info-col h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .875rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-2); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-sm); padding: .75rem 1rem; font-family: var(--font-body); font-size: .95rem; transition: border-color var(--transition); width: 100%; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-2); }
.form-notice { font-size: .8rem; color: var(--text-dim); text-align: center; }

.contact-method { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; }
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method div { display: flex; flex-direction: column; gap: .25rem; }
.contact-method strong { font-size: .95rem; }
.contact-method a { font-size: .9rem; color: var(--accent); }
.contact-method span { font-size: .8rem; color: var(--text-dim); }

/* ════════════════════════════════════════════
   FLOAT BUTTONS
════════════════════════════════════════════ */
.float-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: .75rem; z-index: 999; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.4); transition: transform var(--transition),box-shadow var(--transition); text-decoration: none; }
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(0,0,0,.5); }
.float-btn--wa { background: #25d366; }
.float-btn--tg { background: #2ca5e0; }
.float-btn svg { fill: #fff; }
.float-btn .tooltip { position: absolute; right: 64px; background: var(--bg-3); color: var(--text); font-size: .8rem; font-weight: 500; padding: .35rem .75rem; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition); border: 1px solid var(--border); }
.float-btn:hover .tooltip { opacity: 1; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
/* ── Touch targets: all interactive elements ≥ 44px ── */
.btn, .faq-question, .pricing-tab, .lang-btn, .nav-list li a, .mobile-nav ul li a { min-height: 44px; }
.lang-btn { min-width: 36px; }

/* ── Section badge ── */
.section-badge { display: inline-flex; align-items: center; gap: .35rem; background: var(--accent-glow); border: 1px solid rgba(240,165,0,.3); color: var(--accent); font-size: .78rem; font-weight: 700; padding: .3rem .85rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .pricing-cards   { grid-template-columns: repeat(2,1fr); }
  .guarantee-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: repeat(2,1fr); }
  .products-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .burger-btn    { display: flex; }
  .mobile-nav.open { display: block; }
  .hero-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual   { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: repeat(2,1fr); }
  .guarantee-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .final-cta-box { padding: 2.5rem 1.25rem; }
  .hero-section  { padding: 3.5rem 0 2.5rem; }
  .features-section, .pricing-preview-section, .full-pricing-section, .testimonials-section, .faq-quick-section, .faq-full-section, .final-cta-section { padding: 3.5rem 0; }
  .announcement-bar { font-size: .78rem; padding: .4rem .75rem; line-height: 1.5; }
  .pricing-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: .4rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { white-space: nowrap; flex-shrink: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 1rem; min-height: 48px; }
  .float-btns { bottom: 1rem; right: 1rem; gap: .6rem; }
  .footer-cta-band { padding: 2.5rem 0; }
  .footer-main { padding: 3rem 0 1.5rem; }
  .lang-switcher { display: none; }
  /* Prevent horizontal scroll on channels comparison table */
  .cmp-grid, .cmp-cta { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Stack summary boxes */
  .summary-boxes-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .pricing-cards  { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .hero-trust     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-trust-sep { display: none; }
  .section-title  { font-size: clamp(1.5rem,6vw,2rem); }
  .credits-header { flex-direction: column; text-align: center; gap: .75rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
  .float-btn { width: 48px; height: 48px; }
  .header-inner { height: 60px; }
  .site-logo img { height: 38px; }
  .container { padding: 0 1rem; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; max-width: 320px; }
  .footer-cta-actions { flex-direction: column; width: 100%; }
  .footer-cta-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
