/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', sans-serif; background: #0a0e1a; color: #e0e6f0; line-height: 1.6; overflow-x: hidden; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== VARIABLES ===== */
:root {
  --primary: #00c8ff;
  --primary-dark: #0099cc;
  --secondary: #00e676;
  --accent: #ff6b35;
  --bg-dark: #0a0e1a;
  --bg-card: #111827;
  --bg-card2: #1a2235;
  --border: rgba(0,200,255,0.15);
  --text: #e0e6f0;
  --text-muted: #8899aa;
  --gradient: linear-gradient(135deg, #00c8ff 0%, #0066cc 100%);
  --gradient2: linear-gradient(135deg, #00e676 0%, #00c8ff 100%);
  --shadow: 0 8px 32px rgba(0,200,255,0.12);
  --radius: 12px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #0066cc, #00c8ff, #0066cc);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  position: relative;
}
@keyframes shimmer { to { background-position: 200% center; } }
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 10px; }
.close-announcement { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); opacity: 0.7; }
.close-announcement:hover { opacity: 1; }

/* ===== TOP BAR ===== */
.top-bar { background: #060a14; border-bottom: 1px solid rgba(0,200,255,0.08); padding: 8px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: var(--text-muted); font-size: 13px; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-right { display: flex; gap: 10px; }
.btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 5px 16px; border-radius: 6px; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: all .2s; }
.btn-login:hover { background: var(--primary); color: #000; }
.btn-register { background: var(--gradient); color: #000; padding: 5px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all .2s; }
.btn-register:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== SITE HEADER WRAPPER ===== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 99999; }

/* ===== NAVBAR ===== */
.navbar { background: #0a0e1a; border-bottom: 1px solid var(--border); padding: 0; width: 100%; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; overflow: visible; }
.navbar-brand { display: flex; align-items: center; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #000; font-size: 18px; flex-shrink: 0; }
.logo-main { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.logo-accent { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { color: var(--text); padding: 22px 14px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: color .2s; white-space: nowrap; cursor: pointer; }
.nav-link:hover, .nav-item:hover .nav-link { color: var(--primary); }
.nav-link .fa-chevron-down { font-size: 10px; transition: transform .2s; }
.nav-item:hover .nav-link .fa-chevron-down { transform: rotate(180deg); }
.badge-nav { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.badge-nav.green { background: rgba(0,230,118,0.15); color: var(--secondary); border: 1px solid rgba(0,230,118,0.3); }
.badge-nav.blue { background: rgba(0,200,255,0.15); color: var(--primary); border: 1px solid rgba(0,200,255,0.3); }
.badge-nav.orange { background: rgba(255,107,53,0.15); color: var(--accent); border: 1px solid rgba(255,107,53,0.3); }

/* ===== MEGA MENU ===== */
.dropdown-menu { 
  display: none !important; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: #111827; 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); 
  width: 800px;
  max-width: calc(100vw - 40px);
  z-index: 100000; 
  padding: 25px; 
  margin-top: 0; 
  pointer-events: auto;
}

@media (max-width: 992px) {
  .dropdown-menu { 
    position: static !important; 
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important; 
    border: none !important;
    border-top: 1px solid rgba(0,200,255,0.1) !important;
    padding: 10px 0 !important; 
    display: none !important;
  }
  .nav-item.active .dropdown-menu {
    display: block !important;
  }
  .mega-menu-inner { grid-template-columns: 1fr !important; }
  .mega-col { grid-template-columns: 1fr !important; }
  .mega-promo { display: none; }
}
.nav-item:nth-last-child(-n+4) .dropdown-menu { left: auto; right: 0; }
.nav-item:hover > .dropdown-menu,
.nav-item.active > .dropdown-menu { 
  display: block !important;
}
@keyframes fadeDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }

.mega-menu-inner { display: grid; grid-template-columns: 1fr 240px; gap: 30px; }
.mega-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; align-content: start; }
.mega-col h6 { 
  grid-column: 1 / span 2; 
  font-size: 11px; 
  font-weight: 700; 
  color: var(--primary); 
  text-transform: uppercase; 
  letter-spacing: 1.5px; 
  margin: 15px 0 10px; 
  padding-bottom: 6px; 
  border-bottom: 1px solid rgba(0,200,255,0.1); 
}
.mega-col h6:first-child { margin-top: 0; }
.mega-col a { 
  display: flex; 
  flex-direction: column; 
  padding: 10px 12px; 
  border-radius: 10px; 
  transition: all .2s; 
  background: rgba(255,255,255,0.02); 
  border: 1px solid transparent; 
}
.mega-col a:hover { 
  background: rgba(0,200,255,0.08); 
  border-color: rgba(0,200,255,0.2); 
  transform: translateY(-2px); 
}
.mega-col a strong { 
  font-size: 13px; 
  color: #fff; 
  margin-bottom: 2px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.mega-col a strong i { color: var(--primary); font-size: 14px; width: 18px; text-align: center; }
.mega-col a span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.mega-promo { display: flex; align-items: center; }
.promo-box { background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(0,102,204,0.12)); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; width: 100%; }
.promo-box i { font-size: 28px; color: var(--primary); margin-bottom: 10px; }
.promo-box h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.promo-box p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.promo-box small { font-size: 11px; color: var(--text-muted); display: block; margin-top: 8px; }
.promo-btn { display: inline-block; background: var(--gradient); color: #000; padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 700; margin-top: 8px; transition: opacity .2s; }
.promo-btn:hover { opacity: .85; }

/* ===== NAVBAR TOGGLE ===== */
.navbar-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; min-height: 520px; background: linear-gradient(135deg, #060a14 0%, #0a1628 50%, #060a14 100%); z-index: 1; margin-top: 0; }
.hero-slide { display: none; min-height: 520px; align-items: center; }
.hero-slide.active { display: flex; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.hero-content { max-width: 1280px; margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.3); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-title { font-size: 42px; font-weight: 800; line-height: 1.2; color: #fff; margin-bottom: 16px; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hero-feature i { color: var(--secondary); font-size: 16px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--gradient); color: #000; padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,255,0.3); }
.btn-secondary { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 11px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-secondary:hover { background: var(--primary); color: #000; }
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap img { max-height: 380px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,200,255,0.15); }
.hero-img-placeholder { width: 100%; max-width: 440px; height: 340px; background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(0,102,204,0.12)); border: 1px solid var(--border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.hero-img-placeholder i { font-size: 80px; color: var(--primary); opacity: 0.4; }
.hero-img-placeholder span { font-size: 18px; color: var(--text-muted); }
.slider-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all .2s; border: none; }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,200,255,0.15); border: 1px solid var(--border); color: var(--primary); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; font-size: 16px; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--primary); color: #000; }

/* ===== DOMAIN SEARCH ===== */
.domain-search-section { background: #060a14; padding: 40px 0; border-bottom: 1px solid var(--border); }
.domain-search-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.domain-search-box h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; text-align: center; }
.domain-search-form { display: flex; gap: 0; border-radius: 10px; overflow: hidden; border: 2px solid var(--border); background: #0a0e1a; }
.domain-search-form input { flex: 1; background: transparent; border: none; padding: 14px 20px; color: var(--text); font-size: 15px; outline: none; min-width: 0; }
.domain-search-form input::placeholder { color: var(--text-muted); }
.domain-search-form button { background: var(--gradient); color: #000; border: none; padding: 14px 28px; font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: opacity .2s; white-space: nowrap; flex-shrink: 0; }
.domain-search-form button:hover { opacity: .85; }
.domain-prices { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.domain-price-item { background: rgba(0,200,255,0.05); border: 1px solid var(--border); border-radius: 10px; padding: 12px 20px; text-align: center; min-width: 130px; }
.domain-price-item .badge-indirim { background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; display: inline-block; margin-bottom: 6px; }
.domain-price-item .ext { font-size: 15px; font-weight: 700; color: #fff; }
.domain-price-item .old-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.domain-price-item .new-price { font-size: 16px; font-weight: 800; color: var(--primary); }

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section-dark { background: #060a14; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-title h2 span { color: var(--primary); }
.section-title p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.2); color: var(--primary); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .3s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; background: rgba(0,200,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon i { font-size: 22px; color: var(--primary); }
.feature-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; justify-content: center; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: all .3s; }
.pricing-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.popular { border-color: var(--primary); background: linear-gradient(135deg, rgba(0,200,255,0.06), rgba(0,102,204,0.06)); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #000; font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.pricing-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { margin-bottom: 24px; }
.pricing-price .amount { font-size: 36px; font-weight: 800; color: var(--primary); }
.pricing-price .period { font-size: 14px; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; color: var(--text); }
.pricing-features li i { color: var(--secondary); font-size: 13px; flex-shrink: 0; }
.pricing-features li strong { color: var(--primary); }
.btn-buy { display: block; text-align: center; background: var(--gradient); color: #000; padding: 13px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: all .2s; }
.btn-buy:hover { opacity: .85; transform: translateY(-1px); }
.btn-buy-outline { display: block; text-align: center; border: 2px solid var(--primary); color: var(--primary); padding: 11px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all .2s; }
.btn-buy-outline:hover { background: var(--primary); color: #000; }

/* ===== SPEC TABLE (VDS) ===== */
.spec-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: all .3s; }
.spec-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.spec-card .spec-name { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; }
.spec-row:last-of-type { border-bottom: none; }
.spec-label { color: var(--text-muted); }
.spec-value { color: #fff; font-weight: 600; }
.spec-price { font-size: 24px; font-weight: 800; color: var(--primary); margin: 16px 0 4px; }
.spec-period { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.spec-extras { margin: 12px 0; }
.spec-extras li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.spec-extras li i { color: var(--secondary); font-size: 12px; }
.spec-badge { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.3); color: var(--secondary); font-size: 11px; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.vds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; justify-content: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track { display: flex; gap: 20px; transition: transform .4s ease; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; min-width: 320px; flex-shrink: 0; }
.testimonial-stars { color: #ffd700; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 16px; }
.author-name { font-weight: 600; color: #fff; font-size: 14px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, #060a14 0%, #0a1628 100%); padding: 60px 0 40px; border-bottom: 1px solid var(--border); margin-top: 0; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.3); color: var(--primary); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 16px; }
.page-hero h1 { font-size: 36px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.page-hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.page-hero-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.page-hero-feature i { color: var(--secondary); }
.page-hero-img { background: linear-gradient(135deg, rgba(0,200,255,0.06), rgba(0,102,204,0.1)); border: 1px solid var(--border); border-radius: 16px; height: 280px; display: flex; align-items: center; justify-content: center; }
.page-hero-img i { font-size: 100px; color: var(--primary); opacity: 0.3; }

/* ===== INFO BOX ===== */
.info-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 32px; }
.info-box h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.info-box h3 i { color: var(--primary); }
.info-box p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== SPEED TEST ===== */
.speed-test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.speed-test-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: transform 0.3s ease; }
.speed-test-box:hover { transform: translateY(-5px); border-color: var(--primary); }
.speed-test-box h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.speed-test-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ===== MISSION VISION ===== */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.mv-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.mv-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.mv-card h4 i { color: var(--primary); }
.mv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== FAQ ===== */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #fff; font-size: 15px; transition: background .2s; }
.faq-question:hover { background: rgba(0,200,255,0.05); }
.faq-question i { color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }

/* ===== LEGAL CONTENT ===== */
.legal-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.legal-content h2 { font-size: 24px; color: #fff; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.legal-content h3 { font-size: 18px; color: var(--primary); margin: 24px 0 12px; }
.legal-content p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 20px; }
.legal-content li { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; list-style-type: disc; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 48px; height: 48px; background: rgba(0,200,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon i { font-size: 20px; color: var(--primary); }
.contact-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: #0a0e1a; border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--gradient); color: #000; border: none; padding: 13px 32px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; width: 100%; transition: opacity .2s; }
.btn-submit:hover { opacity: .85; }

/* ===== AUTH PAGES ===== */
.auth-wrapper { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: radial-gradient(circle at center, rgba(0,200,255,0.05) 0%, transparent 70%); }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; width: 100%; max-width: 440px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-title { font-size: 24px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 8px; }
.auth-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
.auth-redirect-info { background: rgba(0,200,255,0.08); border: 1px solid var(--border); border-radius: 10px; padding: 16px; display: flex; gap: 12px; margin-bottom: 24px; font-size: 13px; line-height: 1.5; }
.auth-redirect-info i { color: var(--primary); font-size: 16px; margin-top: 2px; }
.auth-divider { display: flex; align-items: center; gap: 15px; margin: 24px 0; color: var(--text-muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-links { text-align: center; font-size: 14px; color: var(--text-muted); }
.auth-links a { color: var(--primary); font-weight: 600; }
.auth-links a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #060a14; padding: 80px 0 30px; border-top: 1px solid var(--border); }
.footer-top { width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 30px; margin-bottom: 60px; width: 100%; box-sizing: border-box; }
.footer-col h5 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-about p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 20px 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 38px; height: 38px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #000; font-size: 18px; }
.footer-logo .logo-main { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.footer-logo .logo-accent { color: var(--primary); }
.social-links { display: flex; gap: 12px; margin: 16px 0; }
.social-links a { width: 36px; height: 36px; background: rgba(0,200,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: all .2s; }
.social-links a:hover { background: var(--primary); color: #000; transform: translateY(-3px); }
.footer-address { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.footer-address i { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-contact-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-contact-bar span { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.footer-contact-bar span i { color: var(--primary); }
.live-support-btn { background: var(--gradient); color: #000; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: opacity .2s; }
.live-support-btn:hover { opacity: 0.85; }
.footer-contact-bar a { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-contact-bar a:hover { color: var(--primary); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy p { margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content, .page-hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-img-wrap, .page-hero-img, .about-visual { order: -1; margin: 0 auto; }
  .hero-features, .hero-btns, .page-hero-features { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .nav-menu.open { 
    display: flex; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    flex-direction: column; 
    background: rgba(10,14,26,0.98); 
    border-bottom: 1px solid var(--border); 
    padding: 20px;
    padding-top: 80px;
    gap: 0; 
    overflow-y: auto;
    z-index: 99997;
  }
  .nav-menu.open .nav-item { width: 100%; }
  .nav-menu.open .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(0,200,255,0.1); }
  .navbar-toggle { display: flex; }
  .top-bar-left { display: none; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: span 1; }
  .pricing-grid, .features-grid, .vds-grid, .speed-files, .bank-grid, .mission-vision, .stats-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .about-visual { order: -1; height: 260px; }
  .hero-title { font-size: 32px; }
  .page-hero-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bank-row { flex-wrap: wrap; gap: 4px; }
  .bank-row .value { word-break: break-all; }
  .page-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .page-hero h1 { font-size: 24px; }
  .domain-search-form { flex-direction: column; }
  .domain-search-form button { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; justify-content: center; }
}

/* ===== TABS ===== */
.tabs { display: flex; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 6px; gap: 6px; }
.tab-btn { flex: 1; background: transparent; border: none; padding: 10px; border-radius: 8px; color: var(--text-muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.tab-btn.active { background: var(--gradient); color: #000; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== OS GRID ===== */
.os-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.os-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-muted); transition: all .2s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.os-item i { font-size: 24px; color: var(--primary); }
.os-item:hover, .os-item.popular { border-color: var(--primary); color: #fff; background: rgba(0,200,255,0.05); }
.os-item.popular { border-color: var(--primary); }

/* ===== BANK GRID & ALERTS ===== */
.bank-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.bank-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.bank-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.bank-card h4 i { color: var(--primary); }
.bank-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; gap: 8px; }
.bank-row .label { color: var(--text-muted); flex-shrink: 0; }
.bank-row .value { color: #fff; font-weight: 600; text-align: right; word-break: break-word; }
.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; font-size: 14px; display: flex; align-items: center; gap: 12px; }
.alert-info { background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.2); color: var(--primary); }
.alert-warning { background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.2); color: var(--accent); }

/* ===== SPEED TEST ===== */
.speed-test-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.speed-test-box h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.speed-test-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
.speed-files { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.speed-file { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; transition: all .2s; }
.speed-file:hover { border-color: var(--primary); background: rgba(0,200,255,0.05); transform: translateY(-3px); }
.speed-file .size { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.speed-file .label { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.speed-file a { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient); color: #000; padding: 8px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.about-text h2 span { color: var(--primary); }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-visual { background: linear-gradient(135deg, rgba(0,200,255,0.1), rgba(0,102,204,0.1)); border: 1px solid var(--border); border-radius: 20px; height: 340px; display: flex; align-items: center; justify-content: center; }
.about-visual i { font-size: 120px; color: var(--primary); opacity: 0.2; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mv-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.mv-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.mv-card h4 i { color: var(--primary); }
.mv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; text-align: center; }
.stat-card .stat-number { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.stat-card .stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== LEGAL PAGES ===== */
.legal-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; line-height: 1.8; color: var(--text-muted); }
.legal-content h2, .legal-content h3 { color: #fff; margin: 30px 0 15px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 15px; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; }
