/* ═══════════════════════════════════
   GLOBAL FONTS — Comfortaa + Rubik
═══════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Rubik:wght@300;400;500;600&display=swap');

* { font-family: 'Rubik', 'DM Sans', sans-serif; }

h1, h2, h3, h4, h5, h6,
.section-title, .plan-name, .wizard-card-title,
.plan-detail-card .plan-name, .article-title,
.article-single-title, .success-big-title,
.why-feature-title, .help-title, .term-abbr,
.footer-col h4, .process-step-title, .stat-number,
.faq-question, .compare-table th,
.plan-tab, .info-tab, .plan-tagline { 
  font-family: 'Comfortaa', cursive !important; 
}

/* ============================================
   АРМАКО ЕНЕРДЖИ — Общи стилове
   style.css
   ============================================ */

:root {
  --navy: #0b1d3a;
  --navy-mid: #122850;
  --navy-light: #1a3666;
  --orange: #e8640a;
  --orange-light: #f07b28;
  --orange-glow: rgba(232,100,10,0.18);
  --white: #ffffff;
  --text-muted: #8a9bb8;
  --text-light: #c8d4e8;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-sm: 10px;
  /* ── HYBRID THEME — light sections ── */
  --light-bg: #f0f5fb;
  --light-bg-alt: #ffffff;
  --light-card: #ffffff;
  --light-border: #dde5f0;
  --dark-text: #1a2d48;
  --medium-text: #243c5a;
  --light-muted: #3a5272;
  --light-shadow: 0 2px 8px rgba(26,45,72,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Comfortaa', 'Syne', cursive; }
a { text-decoration: none; }

/* Без italic */
em, i { font-style: normal; }
.testimonial-text { font-style: normal !important; }

/* Скриване на малките section-tag надписи */
.section-tag { display: none !important; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.6;transform:scale(1.4);} }
@keyframes float { 0%,100%{transform:translate(0,0);}50%{transform:translate(20px,-30px);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);} }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }

/* ── SCROLL TO TOP ── */
.scroll-top-btn {
  position:fixed; bottom:32px; right:32px; z-index:99;
  width:44px; height:44px; border-radius:50%;
  background:var(--orange); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:var(--white);
  box-shadow:0 4px 16px rgba(232,100,10,0.4);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s,transform 0.3s;
  transform:translateY(10px);
}
.scroll-top-btn.visible { opacity:1; pointer-events:auto; transform:translateY(0); }
.scroll-top-btn:hover { background:var(--orange-light); transform:translateY(-3px); }

/* ── NAVBAR ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 2%; height:72px;
  background:rgba(11,29,58,0.85);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:height 0.35s ease, background 0.3s;
}
nav:hover {
  height:144px;
  background:rgba(11,29,58,0.97);
}
.nav-logo { display:flex; align-items:center; }
.nav-logo-img { height:52px; width:auto; mix-blend-mode:screen; transition:height 0.35s ease, opacity 0.2s; }
nav:hover .nav-logo-img { height:104px; }
.nav-logo-img:hover { opacity:0.85; }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; transition:gap 0.35s ease; }
nav:hover .nav-links { gap:48px; }
.nav-links a { color:var(--text-light); font-size:0.88rem; transition:font-size 0.35s ease, color 0.2s; }
nav:hover .nav-links a { font-size:1.6rem; }
.nav-links a:hover { color:var(--white); }
.nav-cta { background:var(--orange)!important; color:var(--white)!important; padding:10px 22px; border-radius:50px; font-weight:500!important; transition:padding 0.35s ease, font-size 0.35s ease, background 0.2s, transform 0.2s; }
nav:hover .nav-cta { padding:16px 36px; font-size:1.6rem; }
.nav-cta:hover { background:var(--orange-light)!important; transform:translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  background:var(--orange); color:var(--white); padding:15px 32px;
  border-radius:50px; font-size:0.95rem; font-weight:500;
  text-decoration:none; display:inline-flex; align-items:center; gap:10px;
  transition:all 0.2s; font-family:'DM Sans',sans-serif; cursor:pointer; border:none;
}
.btn-primary:hover { background:var(--orange-light); transform:translateY(-2px); box-shadow:0 12px 32px rgba(232,100,10,0.35); }
.btn-secondary {
  background:transparent; color:var(--white); padding:15px 32px;
  border-radius:50px; font-size:0.95rem; text-decoration:none;
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--border); transition:all 0.2s; font-family:'DM Sans',sans-serif;
}
.btn-secondary:hover { border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.05); }
.btn-ghost {
  background:transparent; color:var(--text-muted); border:1px solid var(--border);
  padding:12px 24px; border-radius:50px; font-size:0.9rem;
  cursor:pointer; font-family:'DM Sans',sans-serif; transition:all 0.2s;
}
.btn-ghost:hover { border-color:rgba(255,255,255,0.2); color:var(--white); }

/* ── SECTION ── */
section { padding:64px 2%; }
.section-title { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.section-title em { color:var(--orange); font-style:normal; }
.section-sub { font-size:1rem; color:var(--text-muted); line-height:1.7; max-width:520px; }
.section-header { margin-bottom:64px; }

/* ── HERO ── */
.hero { display:flex; align-items:center; justify-content:center; padding:120px 2% 80px; position:relative; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; background:radial-gradient(ellipse 80% 60% at 70% 40%,rgba(232,100,10,0.12) 0%,transparent 60%),linear-gradient(160deg,#0b1d3a 0%,#122850 50%,#0b1d3a 100%); }
.hero-grid { position:absolute; inset:0; z-index:0; opacity:0.06; background-image:linear-gradient(var(--text-muted) 1px,transparent 1px),linear-gradient(90deg,var(--text-muted) 1px,transparent 1px); background-size:60px 60px; }
.hero-orb { position:absolute; border-radius:50%; filter:blur(80px); z-index:0; }
.hero-orb-1 { width:500px; height:500px; right:5%; top:10%; background:radial-gradient(circle,rgba(232,100,10,0.25) 0%,transparent 70%); animation:float 8s ease-in-out infinite; }
.hero-orb-2 { width:300px; height:300px; left:20%; bottom:10%; background:radial-gradient(circle,rgba(26,54,102,0.6) 0%,transparent 70%); animation:float 12s ease-in-out infinite reverse; }
.hero-content { position:relative; z-index:1; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:0; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(232,100,10,0.15); border:1px solid rgba(232,100,10,0.3); border-radius:50px; padding:6px 16px; font-size:0.82rem; color:var(--orange-light); margin-bottom:28px; font-weight:500; animation:fadeUp 0.6s ease both; align-self:flex-start; }
.hero-badge-dot { width:6px; height:6px; background:var(--orange); border-radius:50%; animation:pulse 1.5s infinite; }
.hero h1 { font-size:clamp(2.6rem,5vw,4rem); font-weight:800; line-height:1.08; letter-spacing:-0.03em; margin-bottom:24px; animation:fadeUp 0.6s 0.1s ease both; }
.hero h1 em { color:var(--orange); font-style:normal; }
.hero-sub { font-size:1.1rem; color:var(--text-light); line-height:1.7; margin-bottom:40px; font-weight:300; max-width:520px; animation:fadeUp 0.6s 0.2s ease both; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; animation:fadeUp 0.6s 0.3s ease both; }
.hero-trust { display:flex; gap:32px; margin-top:28px; flex-wrap:wrap; animation:fadeUp 0.6s 0.4s ease both; }
.trust-item { display:flex; align-items:center; gap:10px; }
.trust-text { font-size:0.85rem; color:var(--text-muted); }
.trust-text strong { color:var(--white); font-weight:500; display:block; }

/* ── STATS ── */
.stats { background:var(--navy-mid); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:48px 2%; }
.stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); max-width:900px; margin:0 auto; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.stat-item { background:var(--navy-mid); padding:36px 24px; text-align:center; }
.stat-number { font-family:'Syne',sans-serif; font-size:2.4rem; font-weight:800; color:var(--white); line-height:1; margin-bottom:6px; }
.stat-number span { color:var(--orange); }
.stat-label { font-size:0.85rem; color:var(--text-muted); line-height:1.4; }

/* ── CONFIGURATOR ── */
.configurator { background:var(--navy-mid); }
.config-wrap { max-width:900px; margin:0 auto; background:rgba(255,255,255,0.03); border:1px solid var(--border); border-radius:24px; padding:56px; position:relative; overflow:hidden; }
.config-wrap::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--orange),var(--orange-light),transparent); }
.config-step { display:none; }
.config-step.active { display:block; animation:fadeUp 0.4s ease; }
.config-step-label { font-size:0.75rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--orange); margin-bottom:12px; font-weight:500; }
.config-question { font-family:'Syne',sans-serif; font-size:1.6rem; font-weight:700; margin-bottom:36px; line-height:1.3; }
.config-options { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:40px; }
.config-option { border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:20px 24px; cursor:pointer; transition:all 0.2s; background:transparent; color:var(--white); text-align:left; font-family:'DM Sans',sans-serif; font-size:0.95rem; display:flex; align-items:center; gap:14px; }
.config-option:hover { border-color:var(--orange); background:var(--orange-glow); }
.config-option.selected { border-color:var(--orange); background:var(--orange-glow); }
.opt-icon { font-size:1.4rem; }
.opt-label { font-weight:500; }
.opt-desc { font-size:0.8rem; color:var(--text-muted); margin-top:2px; }
.config-nav { display:flex; align-items:center; justify-content:space-between; }
.config-progress { display:flex; gap:8px; }
.prog-dot { width:32px; height:4px; border-radius:2px; background:var(--border); transition:background 0.3s; }
.prog-dot.active { background:var(--orange); }
.config-result { text-align:center; padding:20px 0; animation:fadeUp 0.5s ease; }
.result-tag { display:inline-block; background:rgba(232,100,10,0.15); border:1px solid rgba(232,100,10,0.3); border-radius:50px; padding:6px 18px; font-size:0.8rem; color:var(--orange); margin-bottom:20px; font-weight:500; }
.result-plan { font-family:'Syne',sans-serif; font-size:2.2rem; font-weight:800; margin-bottom:12px; }
.result-desc { color:var(--text-muted); margin-bottom:32px; max-width:480px; margin-left:auto; margin-right:auto; line-height:1.6; }
.result-actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ── STEPS — среден правоъгълник с прави ъгли ── */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.step-card { background:var(--card-bg); border:1px solid var(--border); border-radius:0; padding:40px 32px; transition:border-color 0.3s,transform 0.3s; }
.step-card:first-child { border-radius:var(--radius) 0 0 var(--radius); }
.step-card:last-child { border-radius:0 var(--radius) var(--radius) 0; }
.step-card:hover { border-color:rgba(232,100,10,0.4); transform:translateY(-4px); }
.step-num { width:48px; height:48px; border-radius:50%; background:var(--orange-glow); border:1.5px solid var(--orange); display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-weight:800; font-size:1rem; color:var(--orange); margin-bottom:24px; }
.step-icon { font-size:1.8rem; margin-bottom:16px; }
.step-title { font-family:'Syne',sans-serif; font-size:1.15rem; font-weight:700; margin-bottom:10px; }
.step-desc { font-size:0.9rem; color:var(--text-muted); line-height:1.6; }

/* ── PLANS — 4 колони ── */
.plans-wrap { max-width:1200px; margin:0 auto; }
.plans-tabs { display:flex; gap:4px; background:var(--navy-mid); border:1px solid var(--border); border-radius:50px; padding:4px; width:fit-content; margin:0 auto 48px; }
.plan-tab { padding:10px 28px; border-radius:50px; font-size:0.9rem; cursor:pointer; transition:all 0.2s; color:var(--text-muted); font-family:'DM Sans',sans-serif; border:none; background:transparent; }
.plan-tab.active { background:var(--orange); color:var(--white); font-weight:500; }
.plans-content { display:none; }
.plans-content.active { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; animation:fadeUp 0.4s ease; }
.plan-card { background:var(--card-bg); border:1.5px solid var(--border); border-radius:var(--radius); padding:28px 20px; position:relative; transition:all 0.3s; display:flex; flex-direction:column; }
.plan-card:hover { border-color:rgba(232,100,10,0.5); transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.plan-card.featured { border-color:var(--orange); background:rgba(232,100,10,0.06); }
.plan-badge-popular { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--orange); color:var(--white); font-size:0.72rem; font-weight:600; padding:5px 16px; border-radius:50px; white-space:nowrap; letter-spacing:0.05em; text-transform:uppercase; }
.plan-name { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:800; margin-bottom:6px; }
.plan-tagline { font-size:0.76rem; color:var(--text-muted); margin-bottom:16px; }
.plan-for { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--orange); font-weight:500; margin-bottom:6px; }
.plan-for-desc { font-size:0.82rem; color:var(--text-light); margin-bottom:20px; line-height:1.5; }
.plan-features { list-style:none; flex:1; margin-bottom:24px; }
.plan-features li { display:flex; align-items:flex-start; gap:8px; font-size:0.82rem; color:var(--text-light); padding:7px 0; border-bottom:1px solid var(--border); line-height:1.4; }
.plan-features li:last-child { border-bottom:none; }
.feat-check { color:var(--orange); font-size:0.85rem; margin-top:1px; flex-shrink:0; }
.plan-cta { width:100%; padding:12px; border-radius:50px; font-size:0.88rem; font-weight:500; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all 0.2s; text-align:center; border:1.5px solid var(--orange); background:transparent; color:var(--orange); text-decoration:none; display:block; }
.plan-card.featured .plan-cta { background:var(--orange); color:var(--white); }
.plan-cta:hover { background:var(--orange); color:var(--white); transform:translateY(-1px); }

/* ── PROCESS DIAGRAM ── */
.process-diagram { display:flex; align-items:center; justify-content:center; gap:0; max-width:1100px; margin:0 auto; flex-wrap:wrap; }
.process-step { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:32px 24px; text-align:center; flex:1; min-width:180px; max-width:240px; transition:all 0.3s; }
.process-step:hover { border-color:rgba(232,100,10,0.4); transform:translateY(-4px); }
.process-step-icon { font-size:2.4rem; margin-bottom:16px; }
.process-step-num { width:28px; height:28px; border-radius:50%; background:var(--orange); color:var(--white); font-family:'Syne',sans-serif; font-weight:800; font-size:0.8rem; display:flex; align-items:center; justify-content:center; margin:0 auto 12px; }
.process-step-title { font-family:'Syne',sans-serif; font-weight:700; font-size:0.95rem; margin-bottom:8px; }
.process-step-desc { font-size:0.82rem; color:var(--text-muted); line-height:1.5; }
.process-arrow { color:var(--orange); font-size:1.5rem; flex-shrink:0; opacity:0.6; margin:0 8px; }
.process-note { text-align:center; margin-top:32px; background:rgba(232,100,10,0.08); border:1px solid rgba(232,100,10,0.2); border-radius:var(--radius-sm); padding:14px 24px; display:inline-block; font-size:0.85rem; color:var(--orange-light); font-weight:500; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:all 0.3s; }
.testimonial-card:hover { border-color:rgba(232,100,10,0.3); transform:translateY(-4px); }
.quote-mark { font-size:3rem; color:var(--orange); opacity:0.3; line-height:0.8; margin-bottom:16px; font-family:Georgia,serif; }
.testimonial-text { font-size:0.92rem; color:var(--text-light); line-height:1.7; margin-bottom:24px; font-style:normal; }
.testimonial-author { display:flex; align-items:center; gap:14px; }
.author-avatar { width:44px; height:44px; border-radius:50%; background:var(--navy-light); display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-weight:700; font-size:1rem; color:var(--orange); border:2px solid rgba(232,100,10,0.3); flex-shrink:0; }
.author-name { font-weight:500; font-size:0.9rem; }
.author-company { font-size:0.78rem; color:var(--text-muted); }

/* ── WHY ── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:stretch; max-width:1100px; margin:0 auto; }
.why-visual { background:var(--card-bg); border:1px solid var(--border); border-radius:24px; padding:48px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.why-visual::before { content:'⚡'; position:absolute; font-size:12rem; opacity:0.04; top:50%; left:50%; transform:translate(-50%,-50%); }
.why-center-stat { text-align:center; position:relative; z-index:1; }
.why-big-num { font-family:'Syne',sans-serif; font-size:5rem; font-weight:800; color:var(--orange); line-height:1; }
.why-features { display:flex; flex-direction:column; gap:20px; }
.why-feature { display:flex; gap:16px; padding:24px; border-radius:var(--radius-sm); border:1px solid var(--border); background:var(--card-bg); transition:all 0.3s; }
.why-feature:hover { border-color:rgba(232,100,10,0.3); background:var(--orange-glow); }
.why-icon { width:44px; height:44px; border-radius:10px; background:var(--orange-glow); display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; border:1px solid rgba(232,100,10,0.2); }
.why-feature-title { font-weight:600; font-size:0.95rem; margin-bottom:4px; }
.why-feature-desc { font-size:0.84rem; color:var(--text-muted); line-height:1.5; }

/* ── FAQ ── */
.faq-wrap { max-width:720px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question { width:100%; padding:24px 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; background:none; border:none; color:var(--white); font-family:'DM Sans',sans-serif; font-size:0.98rem; font-weight:500; text-align:left; gap:16px; transition:color 0.2s; }
.faq-question:hover { color:var(--orange); }
.faq-toggle { width:28px; height:28px; border-radius:50%; background:var(--card-bg); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; transition:all 0.3s; color:var(--orange); }
.faq-item.open .faq-toggle { background:var(--orange); border-color:var(--orange); color:white; transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height:500px; }
.faq-answer-inner { padding-bottom:24px; color:var(--text-muted); font-size:0.9rem; line-height:1.7; }

/* ── CONTACT ── */
.contact { background:var(--navy-mid); }

.contact-detail { display:flex; align-items:center; gap:14px; margin-bottom:20px; }

/* ── MESSAGING ── */
.messaging-section { margin-top:36px; }

.messaging-label::before,.messaging-label::after { content:''; flex:1; height:1px; background:var(--border); }
.messaging-btns { display:flex; gap:12px; }
.msg-btn { display:flex; align-items:center; gap:10px; padding:13px 20px; border-radius:50px; border:1px solid var(--border); background:var(--card-bg); text-decoration:none; color:var(--text-muted); font-size:0.88rem; font-family:'DM Sans',sans-serif; font-weight:500; transition:all 0.25s; flex:1; justify-content:center; }
.msg-btn:hover { transform:translateY(-2px); }
.msg-btn.viber:hover { border-color:#7360f2; background:rgba(115,96,242,0.1); color:#b0a4f8; }
.msg-btn.whatsapp:hover { border-color:#25D366; background:rgba(37,211,102,0.1); color:#25D366; }
.msg-icon { width:22px; height:22px; flex-shrink:0; filter:grayscale(1) brightness(0.6); transition:filter 0.25s; }
.msg-btn:hover .msg-icon { filter:none; }

/* ── CONTACT FORM ── */
.contact-form { background:var(--card-bg); border:1px solid var(--border); border-radius:20px; padding:40px; position:relative; overflow:hidden; }
.contact-form::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--orange),transparent); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:0.8rem; color:var(--text-muted); margin-bottom:8px; }
.form-group input,.form-group textarea,.form-group select { width:100%; background:rgba(255,255,255,0.05); border:1px solid var(--border); border-radius:var(--radius-sm); padding:12px 16px; color:var(--white); font-family:'DM Sans',sans-serif; font-size:0.9rem; transition:border-color 0.2s; outline:none; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--orange); }
.form-group textarea { resize:none; height:100px; }
.form-group select option { background:var(--navy-mid); }

/* ── CTA BANNER ── */
.cta-banner { padding:48px 2%; text-align:center; position:relative; overflow:hidden; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 80% at 50% 50%,rgba(232,100,10,0.1),transparent); }
.cta-banner h2 { font-family:'Syne',sans-serif; font-size:clamp(1.8rem,4vw,3rem); font-weight:800; letter-spacing:-0.03em; margin-bottom:16px; position:relative; }
.cta-banner p { color:var(--text-muted); margin-bottom:40px; position:relative; }
.cta-banner-actions { display:flex; justify-content:center; gap:16px; position:relative; flex-wrap:wrap; }

/* ── FOOTER ── */
footer { background:#07142a; border-top:1px solid var(--border); padding:64px 2% 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; max-width:1100px; margin:0 auto 48px; }
.footer-logo-img { height:64px; width:auto; mix-blend-mode:screen; margin-bottom:16px; display:block; }
.footer-desc { font-size:0.85rem; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.footer-social { display:flex; gap:10px; }
.social-btn { width:36px; height:36px; border-radius:50%; background:var(--card-bg); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; transition:all 0.2s; text-decoration:none; padding:7px; }
.social-btn svg { width:18px; height:18px; fill:var(--text-muted); transition:fill 0.2s; display:block; }
.social-btn:hover { transform:translateY(-2px); }
.social-btn.linkedin:hover { border-color:#0A66C2; background:rgba(10,102,194,0.15); }
.social-btn.linkedin:hover svg { fill:#0A66C2; }
.social-btn.facebook:hover { border-color:#1877F2; background:rgba(24,119,242,0.15); }
.social-btn.facebook:hover svg { fill:#1877F2; }
.social-btn.instagram:hover { border-color:#E4405F; background:rgba(228,64,95,0.15); }
.social-btn.instagram:hover svg { fill:#E4405F; }
.footer-col h4 { font-family:'Syne',sans-serif; font-size:0.9rem; font-weight:700; margin-bottom:20px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { color:var(--text-muted); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--border); padding-top:28px; display:flex; justify-content:space-between; align-items:center; max-width:1100px; margin:0 auto; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:0.8rem; color:var(--text-muted); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:0.8rem; color:var(--text-muted); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--white); }

/* ── PAGE HERO ── */
.page-hero { padding:140px 2% 40px; background:var(--navy-mid); border-bottom:1px solid var(--border); position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(232,100,10,0.08),transparent); }
.page-hero-content { position:relative; z-index:1; max-width:640px; }
.page-hero h1 { font-size:clamp(2rem,4vw,3.2rem); font-weight:800; letter-spacing:-0.03em; line-height:1.1; margin-bottom:16px; }
.page-hero h1 em { color:var(--orange); font-style:normal; }
.page-hero p { font-size:1rem; color:var(--text-muted); line-height:1.7; }

/* ── ХАМБУРГЕР ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE ── */
@media(max-width:1100px){.plans-content.active{grid-template-columns:repeat(2,1fr);}}
@media(max-width:900px){
  nav:hover { height: 72px; }
  nav:hover .nav-logo-img { height: 52px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11,29,58,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1rem !important;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid var(--border);
    color: var(--text-light) !important;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    text-align: center;
    border-radius: 50px !important;
    margin-top: 12px;
    padding: 12px 0 !important;
    border-bottom: none !important;
  }
  .stats-grid{grid-template-columns:repeat(3,1fr);}
  .steps-grid{grid-template-columns:1fr;}
  .step-card{border-radius:var(--radius)!important;}
  .plans-content.active{grid-template-columns:1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .config-options{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .messaging-btns{flex-direction:column;}
  .process-diagram{flex-direction:column;align-items:center;}
  .process-arrow{transform:rotate(90deg);}
  .scroll-top-btn{bottom:20px;right:20px;}
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(7, 20, 42, 0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 2%; display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { flex: 1; min-width: 260px; font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.cookie-banner-text strong { color: var(--white); }
.cookie-banner-text a { color: var(--orange); text-decoration: none; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--orange); color: var(--white); border: none; border-radius: 50px; padding: 10px 24px; font-size: 0.88rem; font-weight: 500; cursor: pointer; font-family: 'Rubik', 'DM Sans', sans-serif; transition: background 0.2s; }
.cookie-btn-accept:hover { background: var(--orange-light); }
.cookie-btn-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); border-radius: 50px; padding: 10px 20px; font-size: 0.88rem; cursor: pointer; font-family: 'Rubik', 'DM Sans', sans-serif; transition: all 0.2s; }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.cookie-btn-settings { background: transparent; color: var(--text-muted); border: none; font-size: 0.82rem; cursor: pointer; font-family: 'Rubik', 'DM Sans', sans-serif; text-decoration: underline; padding: 0; }

/* Cookie settings modal */
.cookie-modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.7); align-items: center; justify-content: center; }
.cookie-modal.open { display: flex; }
.cookie-modal-inner { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 20px; padding: 40px; max-width: 520px; width: 90%; }
.cookie-modal-title { font-family: 'Comfortaa', 'Syne', cursive; font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }
.cookie-toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-label { font-size: 0.9rem; font-weight: 500; margin-bottom: 4px; }
.cookie-toggle-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; max-width: 340px; }
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; inset: 0; background: var(--border); border-radius: 24px; cursor: pointer; transition: background 0.3s; }
.cookie-toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform 0.3s; }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--orange); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: 12px; margin-top: 28px; }


/* ══════════════════════════════════════
   HYBRID THEME — Light Sections
══════════════════════════════════════ */
.section-light {
  background: var(--light-bg) !important;
  color: var(--dark-text);
}
.section-light-white {
  background: var(--light-bg-alt) !important;
  color: var(--dark-text);
}

/* Global text override for all elements inside light sections */
.section-light p, .section-light span:not(.feat-check):not(.plan-badge-popular):not(.check):not(.dash),
.section-light div:not(.process-step-num):not(.plan-badge-popular):not(.plan-cta):not(.btn-primary):not(.btn-secondary) {
  color: var(--dark-text);
}

/* Text in light sections */
.section-light .section-title,
.section-light-white .section-title,
.section-light h2, .section-light h3,
.section-light-white h2, .section-light-white h3 {
  color: var(--dark-text);
}
.section-light .section-title em,
.section-light-white .section-title em { color: var(--orange); font-style: normal; }

.section-light .section-sub,
.section-light-white .section-sub {
  color: var(--medium-text);
}

/* Cards in light sections */
.section-light .plan-card,
.section-light .testimonial-card,
.section-light .process-step,
.section-light .help-card,
.section-light .article-card,
.section-light .why-feature,
.section-light .term-card,
.section-light .link-category,
.section-light .plan-detail-card {
  background: var(--light-card);
  border-color: var(--light-border);
  box-shadow: var(--light-shadow);
}
.section-light .plan-card:hover,
.section-light .testimonial-card:hover,
.section-light .process-step:hover,
.section-light .help-card:hover,
.section-light .why-feature:hover {
  border-color: rgba(232,100,10,0.4);
  box-shadow: 0 8px 24px rgba(26,45,72,0.12);
}
.section-light .plan-card.featured,
.section-light .plan-detail-card.featured {
  background: #fff8f3;
  border-color: var(--orange);
}

/* Text inside light cards */
.section-light .plan-name,
.section-light .step-title,
.section-light .process-step-title,
.section-light .why-feature-title,
.section-light .testimonial-text,
.section-light .author-name,
.section-light .help-title,
.section-light .plan-spec-value,
.section-light .plan-detail-card .plan-name {
  color: var(--dark-text);
}
.section-light .plan-tagline,
.section-light .plan-for-desc,
.section-light .step-desc,
.section-light .process-step-desc,
.section-light .why-feature-desc,
.section-light .author-company,
.section-light .help-desc,
.section-light .plan-spec-label,
.section-light .plan-for { 
  color: var(--medium-text);
}
.section-light .plan-features li { color: var(--medium-text); border-bottom-color: var(--light-border); }
.section-light .feat-check { color: var(--orange); }

/* Plans tabs in light */
.section-light .plans-tabs {
  background: #e4eaf4;
  border-color: var(--light-border);
}
.section-light .plan-tab { color: var(--medium-text); }
.section-light .plan-tab.active { background: var(--orange); color: #fff; }

/* Plan spec rows in light */
.section-light .plan-spec-row { border-bottom-color: var(--light-border); }
.section-light .plan-badge-popular { background: var(--orange); color: #fff; }

/* Process diagram in light */
.section-light .process-note {
  background: rgba(232,100,10,0.08);
  border-color: rgba(232,100,10,0.25);
}

/* FAQ in light */
.section-light .faq-item { border-bottom-color: var(--light-border); }
.section-light .faq-question { color: var(--dark-text); }
.section-light .faq-question:hover { color: var(--orange); }
.section-light .faq-answer-inner { color: var(--medium-text); }
.section-light .faq-toggle { background: #e4eaf4; border-color: var(--light-border); }

/* Comparison table in light */
.section-light .compare-wrap { border-color: var(--light-border); }
.section-light .compare-table th { background: #e8eef8; color: var(--dark-text); border-bottom-color: var(--orange); }
.section-light .compare-table td { color: var(--medium-text); border-bottom-color: var(--light-border); }
.section-light .compare-table tr:hover td { background: #f5f8ff; }
.section-light .compare-table td.featured-col { background: #fff8f3; }
.section-light .check { color: var(--orange); }
.section-light .dash { color: var(--light-muted); }

/* Stats in light context */
.section-light .stat-item { background: var(--light-card); }
.section-light .stat-label { color: var(--medium-text); }

/* Page hero lighter variant */
.page-hero-light {
  background: linear-gradient(135deg, #1a3566 0%, #1e4080 100%) !important;
  border-bottom: 1px solid rgba(232,100,10,0.2) !important;
}

/* CTA banner light variant */
.cta-banner-light {
  background: linear-gradient(135deg, #fff8f3 0%, #fdf4ec 100%) !important;
  border-top: 1px solid rgba(232,100,10,0.15);
  border-bottom: 1px solid rgba(232,100,10,0.15);
}
.cta-banner-light::before { display: none; }
.cta-banner-light h2 { color: var(--dark-text); }
.cta-banner-light p { color: var(--medium-text); }

/* SVG Icons — inline icon system */
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.opt-icon svg,
.step-icon svg,
.process-step-icon svg,
.doc-icon svg,
.why-icon svg,
.link-item-icon svg {
  width: 100%;
  height: 100%;
}

/* Fix specific text elements that use pale colors from dark theme */
.section-light .plan-for-desc,
.section-light .plan-tagline,
.section-light .step-desc,
.section-light .process-step-desc,
.section-light .why-feature-desc,
.section-light .help-desc,
.section-light .testimonial-text,
.section-light .author-company,
.section-light .plan-spec-label,
.section-light .field-hint,
.section-light .text-muted { color: #3a5272 !important; }

.section-light .plan-name,
.section-light .process-step-title,
.section-light .why-feature-title,
.section-light .help-title,
.section-light .author-name,
.section-light .plan-spec-value,
.section-light .term-abbr { color: #1a2d48 !important; }

.section-light .term-desc,
.section-light .term-full { color: #3a5272 !important; }

/* SVG icon sizing in containers */
.opt-icon svg { width: 22px; height: 22px; display: block; }
.opt-icon { display: flex; align-items: center; justify-content: center; }

.process-step-icon svg { width: 36px; height: 36px; display: block; margin: 0 auto; }
.process-step-icon { color: var(--orange); }

.why-icon svg { width: 22px; height: 22px; display: block; }
.doc-icon svg { width: 24px; height: 24px; display: block; }
.link-item-icon svg { width: 18px; height: 18px; display: block; }
.cdc-icon svg { width: 20px; height: 20px; display: block; }
.help-icon svg { width: 28px; height: 28px; display: block; margin: 0 auto; }
.success-step-icon svg { width: 28px; height: 28px; display: block; margin: 0 auto; color: var(--orange); }
.upload-icon svg { width: 36px; height: 36px; display: block; margin: 0 auto; color: var(--text-muted); }

/* Process steps on light background */
.section-light .process-step {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}
.section-light .process-step-icon { color: var(--orange); }
.section-light .process-arrow { color: var(--orange); opacity: 0.7; }
.section-light .process-step-num { background: var(--orange); color: white; border-color: var(--orange); }

/* Article cards — smaller images */
.article-card-img { height: 100px !important; font-size: 2rem !important; }
.article-featured-img { font-size: 3.5rem !important; }
.article-card-img svg { width: 36px; height: 36px; display: block; margin: 0 auto; color: var(--orange); }
.article-single-img svg { width: 80px; height: 80px; display: block; margin: 0 auto; color: var(--orange); }

/* Contact form on light background — visible border */
.contact-form-card {
  background: white !important;
  border: 1.5px solid var(--light-border) !important;
  box-shadow: 0 4px 24px rgba(26,45,72,0.12) !important;
}
.section-light .contact-form-card input,
.section-light .contact-form-card textarea,
.section-light .contact-form-card select {
  background: #f8fafc !important;
  border-color: #c8d4e4 !important;
  color: var(--dark-text) !important;
}
.section-light .contact-form-card input:focus,
.section-light .contact-form-card textarea:focus,
.section-light .contact-form-card select:focus {
  border-color: var(--orange) !important;
  background: white !important;
}
.section-light .contact-form-card label { color: #3a5272 !important; }
.section-light .contact-form-card input::placeholder,
.section-light .contact-form-card textarea::placeholder { color: #8aa0bb !important; }
.section-light .form-title { color: var(--dark-text) !important; }
.section-light .form-subtitle { color: #3a5272 !important; }

/* Hours card on light background */
.section-light .hours-card { background: white; border-color: var(--light-border); }
.section-light .hours-row { border-bottom-color: var(--light-border); }
.section-light .hours-row .day { color: #3a5272; }
.section-light .hours-row .time { color: var(--dark-text); }

/* Link items on light background */
.section-light .link-item { background: white; border-color: var(--light-border); color: var(--dark-text); }
.section-light .link-item:hover { background: var(--orange-glow); border-color: rgba(232,100,10,0.4); }
.section-light .link-item-title { color: var(--dark-text) !important; }
.section-light .link-item-url { color: #3a5272 !important; }

/* Summary cards in podpishi on light */
.section-light .summary-card { background: white; border-color: var(--light-border); }
.section-light .summary-row { border-bottom-color: var(--light-border); }
.section-light .s-label { color: #3a5272 !important; }
.section-light .s-value { color: var(--dark-text) !important; }


/* ══ TARGETED FIXES ══ */

/* 1. Nuclear text contrast fix for ALL light sections */
.section-light, .section-light * { color: #1a2d48; }
.section-light .orange, .section-light .feat-check,
.section-light .plan-badge-popular, .section-light .stat-number,
.section-light .section-title em { color: var(--orange) !important; }
.section-light .btn-primary, .section-light .btn-primary * { color: #fff !important; }
.section-light .btn-secondary { color: var(--orange) !important; }
.section-light .plan-cta { color: #fff !important; }
.section-light .plan-cta:hover { color: #fff !important; }
.section-light .faq-question:hover { color: var(--orange) !important; }
.section-light .active, .section-light .faq-question.open { color: var(--orange) !important; }
.section-light .plan-tab.active { color: #fff !important; }
.section-light .nav-cta { color: #fff !important; }

/* Secondary text in light — slightly muted but still very readable */
.section-light .plan-for-desc,
.section-light .plan-tagline,
.section-light .step-desc,
.section-light .process-step-desc,
.section-light .why-feature-desc,
.section-light .help-desc,
.section-light .testimonial-text,
.section-light .author-company,
.section-light .plan-spec-label,
.section-light .field-hint,
.section-light .term-full,
.section-light .term-desc,
.section-light .link-item-url,
.section-light .faq-answer-inner { color: #2e4a68 !important; }

/* 2. SVG icon sizing */
.opt-icon { display:flex; align-items:center; justify-content:center; width:24px; height:24px; flex-shrink:0; }
.opt-icon svg { width:22px; height:22px; display:block; }

.process-step-icon { height:48px; display:flex; align-items:center; justify-content:center; color:var(--orange); }
.process-step-icon svg { width:36px; height:36px; }

.why-icon svg { width:22px; height:22px; }
.doc-icon svg { width:22px; height:22px; }
.link-item-icon svg { width:18px; height:18px; }
.cdc-icon svg { width:20px; height:20px; }
.help-icon { height:36px; display:flex; align-items:center; justify-content:center; color:var(--orange); }
.help-icon svg { width:28px; height:28px; }
.success-step-icon svg { width:28px; height:28px; color:var(--orange); }
.upload-icon svg { width:32px; height:32px; color:var(--text-muted); }
.article-single-img svg { width:80px; height:80px; color:var(--orange); }

/* 3. Article card images — smaller */
.article-card-img { height:100px !important; font-size:2rem !important; }
.article-card-img svg { width:32px; height:32px; color:var(--orange); }
.article-featured-img { font-size:3rem !important; }

/* 4. Process steps on light bg - make content visible */
.section-light .process-step {
  background: #fff;
  border: 1px solid #dde5f0;
  box-shadow: 0 2px 8px rgba(26,45,72,0.08);
}
.section-light .process-step-num {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}
.section-light .process-step-icon { color: var(--orange); }
.section-light .process-step-title { color: #1a2d48 !important; font-weight: 700; }
.section-light .process-step-desc { color: #2e4a68 !important; }
.section-light .process-note {
  background: rgba(232,100,10,0.08);
  border: 1px solid rgba(232,100,10,0.25);
  color: #2e4a68 !important;
}
.section-light .process-note * { color: #2e4a68 !important; }
.section-light .process-arrow { color: var(--orange); }

/* 5. Contact form — visible fields and border */
.contact-form-card {
  background: #fff !important;
  border: 2px solid #dde5f0 !important;
  box-shadow: 0 4px 24px rgba(26,45,72,0.1) !important;
}
.contact-form-card .form-title { color: #1a2d48 !important; }
.contact-form-card .form-subtitle { color: #2e4a68 !important; }
.contact-form-card label { color: #2e4a68 !important; }
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  background: #f4f7fb !important;
  border: 1.5px solid #c0cfe0 !important;
  color: #1a2d48 !important;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  border-color: var(--orange) !important;
  background: #fff !important;
  outline: none;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: #8aa0bb !important; }
.contact-form-card select option { background: #fff; color: #1a2d48; }
.contact-form-card .form-privacy { color: #5a7090 !important; }
.contact-form-card .form-privacy a { color: var(--orange) !important; }

/* 6. Hours card and contact details on light */
.section-light .hours-card { background: #fff; border-color: #dde5f0; }
.section-light .hours-row { border-bottom-color: #e8eef6; }
.section-light .hours-row .day { color: #2e4a68 !important; }
.section-light .hours-row .time { color: #1a2d48 !important; font-weight: 600; }
.section-light .hours-row .closed { color: #6b84a0 !important; }
.section-light .hours-card-title { color: var(--orange) !important; }

.section-light .contact-detail-card { background: #fff; border-color: #dde5f0; color: #1a2d48; }
.section-light .contact-detail-card:hover { background: #fff8f3; border-color: rgba(232,100,10,0.4); }
.section-light .contact-detail-card strong { color: #1a2d48 !important; }
.section-light .contact-detail-card span { color: #2e4a68 !important; }
.section-light .email-reveal-btn { background: #fff; border-color: #dde5f0; color: #1a2d48; }

/* 7. Link items */
.section-light .link-item { background: #fff; border-color: #dde5f0; color: #1a2d48; }
.section-light .link-item:hover { background: #fff8f3; border-color: rgba(232,100,10,0.4); color: #1a2d48; }
.section-light .link-item-title { color: #1a2d48 !important; }
.section-light .link-item-url { color: #4a6080 !important; }
.section-light .link-item-arrow { color: #6b84a0 !important; }
.section-light .link-item:hover .link-item-arrow { color: var(--orange) !important; }

/* ══ ICON COLOR FIX — override section-light * color ══ */
.section-light .process-step-icon,
.section-light .process-step-icon svg,
.section-light .process-step-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .why-icon,
.section-light .why-icon svg,
.section-light .why-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .help-icon,
.section-light .help-icon svg,
.section-light .help-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .doc-icon,
.section-light .doc-icon svg,
.section-light .doc-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .link-item-icon,
.section-light .link-item-icon svg,
.section-light .link-item-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .cdc-icon,
.section-light .cdc-icon svg,
.section-light .cdc-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .opt-icon,
.section-light .opt-icon svg,
.section-light .opt-icon svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

.section-light .article-card-img svg,
.section-light .article-card-img svg * { color: var(--orange) !important; stroke: var(--orange) !important; }

/* Make process step num and arrow visible */
.section-light .process-step-num { 
  background: var(--orange) !important; 
  color: #fff !important; 
  border-color: var(--orange) !important;
}
.section-light .process-arrow { color: var(--orange) !important; }

/* CTA banner light — buttons must stay colored */
.cta-banner-light .btn-primary { background: var(--orange) !important; color: #fff !important; }
.cta-banner-light .btn-secondary { color: var(--orange) !important; border-color: var(--orange) !important; background: transparent !important; }
.cta-banner-light h2 { color: #1a2d48 !important; }
.cta-banner-light p { color: #2e4a68 !important; }


/* ══════════════════════════════════════
   FONT UPDATE — Comfortaa + Rubik
══════════════════════════════════════ */
/* Import in HTML files - added via JS injection below */

/* Apply fonts */
h1, h2, h3, h4, h5, h6,
.section-title, .plan-name, .wizard-card-title,
.plan-detail-card .plan-name, .article-title,
.article-single-title, .success-big-title,
.why-feature-title, .help-title, .term-abbr,
.footer-col h4, .process-step-title,
.hero-content h1, .page-hero-content h1,
nav .nav-logo, .stat-number,
/* Rubik for all body text */
body, p, li, span, div, label, input, textarea, select, button, a,
.section-sub, .plan-tagline, .plan-for-desc, .plan-spec-label,
.plan-spec-value, .process-step-desc, .faq-answer-inner,
.testimonial-text, .help-desc, .why-feature-desc,
.term-desc, .footer-desc, .stat-label { font-family: 'Rubik', 'DM Sans', sans-serif !important; }

/* Headings specifically */
h1, h2, h3, h4, h5, h6,
.section-title, .plan-name, .plan-detail-card .plan-name,
.article-title, .article-single-title, .success-big-title,
.why-feature-title, .help-title, .wizard-card-title,
.footer-col h4, .process-step-title, .hero-content h1,
.page-hero-content h1, .stat-number { font-family: 'Comfortaa', cursive !important; }

/* ══ BUTTON FIXES — всички варианти ══ */

/* btn-primary — NEVER transparent, always orange */
.btn-primary {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}
.btn-primary:hover {
  background: var(--orange-light) !important;
  color: #fff !important;
}

/* btn-secondary — always readable */
.btn-secondary {
  background: transparent !important;
  color: var(--orange) !important;
  border: 1.5px solid var(--orange) !important;
}
.btn-secondary:hover {
  background: var(--orange) !important;
  color: #fff !important;
}

/* Plan CTA buttons */
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--orange) !important;
  transition: all 0.2s;
  font-family: 'Rubik', sans-serif !important;
}
.plan-cta:hover {
  background: transparent !important;
  color: var(--orange) !important;
}

/* Featured plan CTA */
.plan-card.featured .plan-cta {
  background: var(--orange) !important;
  color: #fff !important;
}
/* Plan detail card CTA */
.plan-detail-card .plan-cta,
.plan-detail-card a.btn-primary {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  display: flex !important;
  justify-content: center !important;
}
.plan-detail-card .plan-cta:hover,
.plan-detail-card a.btn-primary:hover {
  background: transparent !important;
  color: var(--orange) !important;
}

/* Section-light overrides — buttons ALWAYS colored */
.section-light .btn-primary,
.section-light .plan-cta,
.section-light .plan-detail-card a.btn-primary {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}
.section-light .btn-secondary {
  background: transparent !important;
  color: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* ══ INFO TABS FIX ══ */
.info-tab {
  color: #4a5568;
}
.info-tab.active {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600;
}

/* ══ PLANS TABS FIX ══ */
.plan-tab {
  color: var(--text-muted);
}
.plan-tab.active {
  background: var(--orange) !important;
  color: #fff !important;
}
.section-light .plan-tab {
  color: #3a5272;
}
.section-light .plan-tab.active {
  background: var(--orange) !important;
  color: #fff !important;
}

/* ══ FEATURED PLAN on light bg ══ */
.section-light .plan-card.featured {
  background: white !important;
  border: 2px solid var(--orange) !important;
}
.section-light .plan-card.featured .plan-name { color: #1a2d48 !important; }
.section-light .plan-badge-popular {
  background: var(--orange) !important;
  color: #fff !important;
}

/* ══ FAQ — bold questions ══ */
.faq-question {
  font-weight: 700 !important;
  font-family: 'Comfortaa', cursive !important;
}
.faq-answer-inner {
  font-weight: 400 !important;
  font-family: 'Rubik', sans-serif !important;
}

/* ══ Plan spec ok/featured values ══ */
.section-light .plan-spec-value.ok { color: var(--orange) !important; font-weight: 600; }
.section-light .plan-badge-popular { background: var(--orange) !important; color: #fff !important; }


/* ══ CTA SECONDARY — solid navy blue ══ */
.btn-secondary {
  background: #1a3566 !important;
  color: #fff !important;
  border: 2px solid #1a3566 !important;
}
.btn-secondary:hover {
  background: #152d57 !important;
  color: #fff !important;
  border-color: #152d57 !important;
}
.cta-banner-light .btn-secondary {
  background: #1a3566 !important;
  color: #fff !important;
  border-color: #1a3566 !important;
}
.cta-banner-light .btn-secondary:hover {
  background: #152d57 !important;
}

/* ══ PROCESS NOTE — orange text ══ */
.process-note { color: var(--orange) !important; }
.process-note * { color: var(--orange) !important; }
.section-light .process-note { 
  color: var(--orange) !important;
  background: rgba(232,100,10,0.08) !important;
  border-color: rgba(232,100,10,0.3) !important;
}
.section-light .process-note * { color: var(--orange) !important; }

/* ══ PLANOVE — tabs bigger, plan names bolder ══ */
.plans-tabs {
  padding: 6px !important;
  gap: 6px !important;
}
.plan-tab {
  padding: 13px 32px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: 'Comfortaa', cursive !important;
  letter-spacing: -0.01em;
}
.plan-name {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}
.plan-detail-card .plan-name {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
}
/* Comparison table header styling */
.compare-table th {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: 'Comfortaa', cursive !important;
  padding: 16px 12px !important;
}
.compare-table td {
  font-size: 0.88rem !important;
  padding: 13px 12px !important;
}
.compare-table td:first-child {
  font-weight: 600 !important;
  color: #1a2d48 !important;
}

/* ══ FAQ — bold questions FORCE ══ */
.faq-question,
button.faq-question {
  font-weight: 700 !important;
  font-family: 'Comfortaa', cursive !important;
  font-size: 0.95rem !important;
}
.faq-answer-inner,
.faq-answer-inner * {
  font-weight: 400 !important;
  font-family: 'Rubik', sans-serif !important;
}

/* ══ INFO TABS — category contrast ══ */
.info-tabs {
  background: #1a3566 !important;
  border-color: #1f3d75 !important;
}
.info-tab {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
}
.info-tab:hover { color: #fff !important; }
.info-tab.active {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

/* FAQ category buttons — more contrast */
.faq-cat-btn {
  background: #f0f5fb !important;
  border-color: #c8d4e4 !important;
  color: #1a2d48 !important;
  font-weight: 500 !important;
}
.faq-cat-btn:hover {
  background: #e4edf8 !important;
  border-color: var(--orange) !important;
  color: #1a2d48 !important;
}
.faq-cat-btn.active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

/* ══ GOOGLE MAPS OVERLAY — always visible hint ══ */
.map-container { cursor: default !important; }
.map-click-hint {
  background: rgba(11,29,58,0.92) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: 1.5px solid rgba(232,100,10,0.6) !important;
  padding: 14px 28px !important;
  pointer-events: none !important;
  /* Always visible — never hidden on hover */
  opacity: 1 !important;
  transition: none !important;
}
/* Override the hover hide */
.map-container:hover .map-overlay { opacity: 0 !important; }
.map-container:hover .map-click-hint { opacity: 1 !important; }

/* ══ MSG BUTTONS — visible borders (Viber/WhatsApp) ══ */
.msg-btn {
  border: 1.5px solid #b0b8c8 !important;
  color: #2e4a68 !important;
  background: #fff !important;
  font-weight: 500 !important;
}
.msg-btn:hover { border-width: 1.5px !important; }
.msg-btn.viber { border-color: #b0b8c8 !important; }
.msg-btn.viber:hover { border-color: #7360f2 !important; background: rgba(115,96,242,0.08) !important; color: #5a4dc8 !important; }
.msg-btn.whatsapp { border-color: #b0b8c8 !important; }
.msg-btn.whatsapp:hover { border-color: #25D366 !important; background: rgba(37,211,102,0.08) !important; color: #1a9e50 !important; }
.msg-icon { filter: none !important; opacity: 0.7; }
.msg-btn:hover .msg-icon { opacity: 1; }

/* ── HERO ANIMATION LAYOUT ── */
.hero-text-col { display:flex; flex-direction:column; }
.hero-anim-col { display:flex; flex-direction:column; align-items:center; gap:10px; }
.anim-btn-row  { display:flex; gap:6px; }
.anim-btn { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:50px; padding:5px 14px; cursor:pointer; color:rgba(255,255,255,0.45); font-size:0.75rem; font-family:inherit; transition:all .2s; }
.anim-btn:hover { border-color:rgba(232,100,10,0.5); color:#fff; }
.anim-btn.active { background:rgba(232,100,10,0.15); border-color:#e8640a; color:#fff; }
@media(max-width:1100px) { .hero-content { grid-template-columns:1fr !important; } .hero-anim-col { display:none; } }

/* Hero columns — text far left, animation far right */
.hero-text-col { padding-left: 1vw; padding-right: 40px; }
.hero-anim-col { padding-right: 1vw; justify-content: flex-end; }