@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ============================================================
   EFEİPTV — Reference Design
   Light background · Yellow/Gold accent · Card grid layout
   ============================================================ */
:root {
  --bg:        #F8F8FA;
  --bg2:       #FFFFFF;
  --bg3:       #F2F2F5;
  --card:      #FFFFFF;
  --yellow:    #FFC107;
  --yellow2:   #FFB300;
  --yellow3:   #FF9800;
  --ydark:     #E65100;
  --ygrad:     linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  --ygrad2:    linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
  --dark:      #0D0D14;
  --dark2:     #1A1A2E;
  --t1:        #111827;
  --t2:        #4B5563;
  --t3:        #9CA3AF;
  --border:    #E5E7EB;
  --borderY:   rgba(255,193,7,0.4);
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadowY:   0 8px 32px rgba(255,193,7,0.25);
  --font:      'Plus Jakarta Sans', system-ui, sans-serif;
  --r:         14px;
  --rs:        8px;
  --nav:       72px;
  --tr:        0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--t1); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
::selection { background: var(--yellow); color: #000; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: var(--font); font-weight: 800; line-height: 1.2; color: var(--t1); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

/* ============================================================
   NAVBAR — dark background like reference
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav);
  background: var(--dark2);
  transition: var(--tr);
}
.navbar.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.logo a { display: flex; align-items: center; gap: 9px; }
.logo-icon {
  width: 38px; height: 38px; background: var(--ygrad);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #000; flex-shrink: 0;
}
.logo-name { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.logo-name span { color: var(--yellow); }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: var(--rs); transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--yellow); background: rgba(255,193,7,0.1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Lang select */
.lang-wrap { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rs); padding: 7px 11px; cursor: pointer;
  font-family: var(--font); font-size: 0.82rem; font-weight: 600; color: #fff;
  transition: var(--tr);
}
.lang-btn img { width: 19px; height: 13px; object-fit: cover; border-radius: 2px; }
.lang-btn svg { width: 11px; height: 11px; transition: transform var(--tr); }
.lang-btn.open svg { transform: rotate(180deg); }
.lang-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 6px; min-width: 158px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: var(--tr);
  box-shadow: var(--shadow); z-index: 100;
}
.lang-drop.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: var(--rs);
  font-size: 0.85rem; font-weight: 600; color: var(--t2); transition: var(--tr); cursor: pointer;
}
.lang-opt:hover, .lang-opt.active { background: rgba(255,193,7,0.08); color: var(--t1); }
.lang-opt img { width: 19px; height: 13px; object-fit: cover; border-radius: 2px; }

/* Butonlar nav */
.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ygrad); color: #000;
  font-family: var(--font); font-size: 0.88rem; font-weight: 800;
  padding: 9px 18px; border-radius: var(--rs); transition: var(--tr);
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-glow:hover { transform: translateY(-1px); box-shadow: var(--shadowY); filter: brightness(1.05); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — matching reference style
   ============================================================ */
.hero {
  background: var(--dark2);
  padding-top: calc(var(--nav) + 32px);
  padding-bottom: 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,193,7,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding-bottom: 48px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--tr); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg { width: 10px; height: 10px; }
.breadcrumb span { color: rgba(255,255,255,0.8); }

.hero h1 { color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.hero h1 span { color: var(--yellow); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 28px; max-width: 480px; }

.hero-feats { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-feat {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-feat svg { width: 13px; height: 13px; color: var(--yellow); flex-shrink: 0; }

/* Hero right image */
.hero-img-wrap {
  display: flex; justify-content: flex-end; align-items: flex-end;
  position: relative;
}
.hero-img-wrap img {
  max-height: 380px; width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  position: relative; z-index: 1;
}
.hero-img-glow {
  position: absolute; bottom: 0; right: 10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,193,7,0.2) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero placeholder when no image */
.hero-visual-placeholder {
  display: flex; justify-content: center; align-items: center;
  font-size: 8rem; line-height: 1;
  filter: drop-shadow(0 20px 40px rgba(255,193,7,0.3));
}

/* ============================================================
   PACKAGES SECTION — white bg, cards
   ============================================================ */
.pkg-section {
  background: var(--bg);
  padding: 48px 0 56px;
}
.pkg-section-header {
  margin-bottom: 32px;
}
.pkg-section-header h2 { font-size: 1.3rem; color: var(--t2); font-weight: 600; margin-bottom: 4px; }

/* Cards grid */
.cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 20px;
}
.deal-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: var(--tr); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.deal-card.featured {
  border-color: var(--yellow2);
  box-shadow: 0 4px 32px rgba(255,193,7,0.2);
}
.deal-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--ygrad);
}

.pop-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--ygrad); color: #000;
  font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase;
}

.card-deco {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.card-flag { width: 32px; height: 22px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }
.card-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.card-sub { font-size: 0.74rem; color: var(--t3); text-transform: uppercase; letter-spacing: 1px; }

/* Feature grid inside card — 2×3 like reference */
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 20px 0;
  flex: 1;
}
.feat-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.feat-ico {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,193,7,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; font-size: 0.7rem; color: var(--yellow3);
}
.feat-val { font-size: 0.82rem; font-weight: 700; color: var(--t1); }
.feat-desc { font-size: 0.7rem; color: var(--t3); margin-top: 2px; }

.card-price-box {
  border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 14px;
}
.card-price { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--t1); }
.card-price sub { font-size: 1.1rem; color: var(--t3); vertical-align: baseline; font-weight: 500; }
.card-pdesc { font-size: 0.76rem; color: var(--t3); margin-top: 4px; }

.card-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 12px; border-radius: var(--rs);
  font-family: var(--font); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--tr); border: none;
}
.card-btn.yellow { background: var(--ygrad); color: #000; }
.card-btn.yellow:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: var(--shadowY); }
.card-btn.outline { background: transparent; border: 2px solid var(--yellow); color: var(--ydark); }
.card-btn.outline:hover { background: var(--ygrad); color: #000; transform: translateY(-1px); }

/* Pricing table card */
.prices-list { flex: 1; display: flex; flex-direction: column; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-lbl { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: var(--t2); }
.price-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow2); flex-shrink: 0; }
.price-val {
  font-size: 0.88rem; font-weight: 700; color: #000;
  background: var(--ygrad); padding: 2px 10px; border-radius: 100px;
}

/* Info bar */
.info-bar {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: var(--shadow);
}
.ib-left { display: flex; align-items: center; gap: 12px; }
.ib-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,193,7,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; color: var(--yellow3);
}
.ib-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.ib-text { font-size: 0.82rem; color: var(--t2); }
.credit-pill {
  background: var(--ygrad); color: #000;
  font-size: 1.1rem; font-weight: 800;
  padding: 9px 18px; border-radius: var(--rs); white-space: nowrap;
}

/* ============================================================
   SPEED SECTION — yellow bg like reference
   ============================================================ */
.speed-section { background: var(--bg); padding: 80px 0 0; }
.speed-inner {
  background: var(--dark2);
  border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
  align-items: center; margin-bottom: 0;
}
.speed-img-side {
  display: flex; align-items: flex-end; justify-content: center;
  padding: 40px 40px 0;
  background: linear-gradient(135deg, rgba(255,193,7,0.06), transparent);
  min-height: 280px;
}
.speed-graphic { font-size: 7rem; line-height: 1; filter: drop-shadow(0 10px 30px rgba(255,193,7,0.3)); }
.speed-text-side { padding: 48px 48px 48px 24px; }
.speed-text-side h2 { color: #fff; margin-bottom: 14px; }
.speed-text-side p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 28px; }

/* Req cards below speed section */
.req-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.req-card {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--tr);
}
.req-card:last-child { border-right: none; }
.req-card:hover { background: rgba(255,193,7,0.04); }
.req-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,193,7,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 12px;
}
.req-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.req-card p { font-size: 0.76rem; color: var(--t3); }

/* ============================================================
   HOW IT WORKS — 2 column text like reference
   ============================================================ */
.how-section { background: var(--bg); padding: 80px 0; }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.how-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.how-text p { font-size: 0.9rem; color: var(--t2); margin-bottom: 14px; line-height: 1.75; }
.how-text p:last-child { margin-bottom: 0; }

.reseller-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.reseller-list { display: flex; flex-direction: column; gap: 0; }
.reseller-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.reseller-item:last-child { border-bottom: none; }
.ri-bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow2); flex-shrink: 0; margin-top: 7px;
}
.reseller-item p { font-size: 0.88rem; color: var(--t2); line-height: 1.7; }

/* ============================================================
   FAQ — accordion style like reference
   ============================================================ */
.faq-section { background: var(--bg3); padding: 80px 0; }
.faq-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-bottom: 36px;
}
.faq-header h2 { flex: 1; }
.faq-header p { font-size: 0.9rem; color: var(--t2); max-width: 400px; }
.faq-header-left { flex: 1; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; cursor: pointer; transition: var(--tr);
}
.faq-item.open { border-color: var(--yellow); box-shadow: 0 2px 16px rgba(255,193,7,0.12); }
.faq-q {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px;
}
.faq-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--t3); flex-shrink: 0;
}
.faq-item.open .faq-num { background: var(--ygrad); color: #000; border-color: transparent; }
.faq-q h3 { font-size: 0.94rem; font-weight: 700; flex: 1; color: var(--t1); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400; color: var(--t3); flex-shrink: 0; transition: var(--tr);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--ygrad); border-color: transparent; color: #000; }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-ans { max-height: 200px; }
.faq-ans-inner { padding: 0 22px 18px 68px; font-size: 0.88rem; color: var(--t2); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark2); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-logo-name { font-size: 1.25rem; font-weight: 800; color: #fff; }
.footer-logo-name span { color: var(--yellow); }
.footer-about { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-contact-item svg { color: var(--yellow); width: 14px; height: 14px; flex-shrink: 0; }
.footer-col h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: var(--tr); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-soc { display: flex; gap: 9px; margin-top: 4px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--tr);
}
.soc-btn:hover { background: var(--ygrad); border-color: transparent; color: #000; }
.soc-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: var(--tr); }
.footer-legal a:hover { color: var(--yellow); }

/* ============================================================
   FIXED BOTTOM BAR — like reference
   ============================================================ */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bottom-bar-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.bottom-bar-text strong { color: var(--yellow); }
.bottom-bar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ygrad); color: #000;
  font-family: var(--font); font-size: 0.88rem; font-weight: 800;
  padding: 9px 22px; border-radius: var(--rs); white-space: nowrap;
  transition: var(--tr);
}
.bottom-bar-btn:hover { filter: brightness(1.08); }

/* ============================================================
   FLOATING WA — reference style
   ============================================================ */
.float-wa {
  position: fixed; bottom: 72px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  border-radius: 100px; padding: 12px 18px 12px 12px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--tr); animation: wafloat 3s ease-in-out infinite;
}
.float-wa:hover { box-shadow: 0 14px 36px rgba(37,211,102,0.55); animation: none; transform: translateY(-2px); }
@keyframes wafloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
.fwa-ico {
  width: 38px; height: 38px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.fwa-ico svg { width: 20px; height: 20px; }
.fwa-title { font-size: 0.86rem; font-weight: 700; display: block; }
.fwa-status { font-size: 0.7rem; opacity: 0.85; display: block; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-a] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-a].vis { opacity: 1; transform: translateY(0); }
[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.2s; }
[data-d="3"] { transition-delay: 0.3s; }
[data-d="4"] { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS (general)
   ============================================================ */
.btn-yellow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ygrad); color: #000;
  font-family: var(--font); font-size: 0.94rem; font-weight: 800;
  padding: 13px 28px; border-radius: var(--rs); border: none; cursor: pointer; transition: var(--tr);
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: var(--shadowY); filter: brightness(1.05); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dark); color: #fff;
  font-family: var(--font); font-size: 0.94rem; font-weight: 700;
  padding: 12px 28px; border-radius: var(--rs); border: none; cursor: pointer; transition: var(--tr);
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-1px); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--t1);
  font-family: var(--font); font-size: 0.94rem; font-weight: 700;
  padding: 12px 28px; border-radius: var(--rs);
  border: 2px solid var(--border); cursor: pointer; transition: var(--tr);
}
.btn-outline-dark:hover { border-color: var(--yellow); color: var(--ydark); background: rgba(255,193,7,0.05); }

/* Section labels */
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; color: var(--yellow3);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.sec-tag::before { content: ''; width: 18px; height: 2px; background: var(--yellow3); border-radius: 2px; }
.sec-tag.dark { color: var(--yellow); }
.sec-tag.dark::before { background: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 44px; }
  .speed-inner { grid-template-columns: 1fr; }
  .speed-img-side { display: none; }
  .speed-text-side { padding: 44px 32px; }
  .req-row { grid-template-columns: 1fr 1fr; }
  .req-card:nth-child(2) { border-right: none; }
  .req-card:nth-child(3) { border-top: 1px solid var(--border); }
  .faq-header { flex-direction: column; gap: 12px; }
  .cards-row { grid-template-columns: 1fr; }
  .nav-menu { position: fixed; top: var(--nav); left: 0; right: 0; bottom: 0; background: var(--dark2); flex-direction: column; align-items: flex-start; padding: 28px 22px; gap: 4px; transform: translateX(-100%); transition: var(--tr); border-top: 1px solid rgba(255,255,255,0.08); overflow-y: auto; z-index: 999; }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.05rem; padding: 12px 14px; width: 100%; color: rgba(255,255,255,0.8); }
  .hamburger { display: flex; }
  .lang-drop { right: auto; left: 0; }
  .bottom-bar-text { font-size: 0.8rem; }
}
@media (max-width: 600px) {
  .info-bar { flex-direction: column; text-align: center; }
  .fwa-title, .fwa-status { display: none; }
  .float-wa { padding: 12px; border-radius: 50%; }
}
