/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060d1a;
  --bg2: #0b1629;
  --bg3: #0f1e38;
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-light: #60a5fa;
  --teal: #14b8a6;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(59,130,246,0.2);
  --card-bg: rgba(14,30,60,0.8);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glow: 0 0 24px rgba(59,130,246,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; gap: 32px; }

.logo { display: flex; align-items: center; gap: 10px; font-family:'Montserrat',sans-serif; font-weight:800; font-size:18px; }
.logo-icon { font-size:24px; }
.accent { color: var(--blue); }

.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px;
  background: var(--blue); transform: scaleX(0); transition: transform 0.2s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: 16px; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.5); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: rgba(59,130,246,0.1); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue-dark); font-weight:700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,58,138,0.4) 0%, transparent 70%), var(--bg);
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  animation: scan 4s linear infinite;
}
@keyframes scan { from { top: 0; } to { top: 100%; } }

.camera-svg { position: absolute; opacity: 0.15; }
.camera-left { left: -30px; top: 30%; width: 200px; animation: floatL 6s ease-in-out infinite; }
.camera-right { right: -30px; top: 40%; width: 200px; animation: floatR 7s ease-in-out infinite; }
@keyframes floatL { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatR { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.blink-dot { animation: blink 1.2s step-start infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px;
  padding: 60px 0;
}

.badge-promo {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.1));
  border: 1px solid rgba(245,158,11,0.5);
  color: #fbbf24; font-weight: 600; font-size: 14px;
  padding: 8px 20px; border-radius: 50px;
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 rgba(245,158,11,0); }
  50% { box-shadow: 0 0 20px rgba(245,158,11,0.3); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
}

.hero-sim {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.3);
  color: var(--text); padding: 12px 24px; border-radius: 12px;
  font-size: 14px; max-width: 600px;
}
.sim-icon { font-size: 20px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: 0;
}
.stat { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--blue-light); font-family:'Montserrat',sans-serif; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== GIFT BANNER ===== */
.gift-banner {
  background: linear-gradient(135deg, #78350f 0%, #92400e 50%, #78350f 100%);
  border-top: 1px solid rgba(245,158,11,0.3);
  border-bottom: 1px solid rgba(245,158,11,0.3);
  padding: 20px 0;
}
.gift-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.gift-icon { font-size: 36px; animation: bounce 1s ease infinite alternate; }
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-6px); } }
.gift-text { display: flex; flex-direction: column; gap: 2px; }
.gift-text strong { font-size: 18px; color: #fef3c7; }
.gift-text span { font-size: 14px; color: rgba(254,243,199,0.8); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.2;
  text-align: center; margin-bottom: 12px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  text-align: center; max-width: 600px; margin: 0 auto 60px;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(12px);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
  border-color: rgba(59,130,246,0.5);
}
.card-highlight {
  border-color: rgba(245,158,11,0.5);
  background: linear-gradient(135deg, rgba(120,53,15,0.3), rgba(14,30,60,0.8));
}
.card-highlight:hover { border-color: #f59e0b; box-shadow: 0 0 24px rgba(245,158,11,0.3); }

.card-badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
}
.card-icon { font-size: 40px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.card-list li { font-size: 13px; color: var(--text-muted); }
.card-list li::first-letter { font-size: 14px; }

/* ===== STEPS ===== */
.steps {
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 200px; max-width: 240px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); }
.step-arrow { font-size: 24px; color: var(--blue); opacity: 0.5; align-self: center; margin-top: -20px; }

/* ===== PHONE VIEW ===== */
.phone-view-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.phone-mock { display: flex; justify-content: center; }
.phone-frame {
  width: 280px;
  background: #0b1629;
  border: 3px solid var(--border);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow);
  position: relative;
}
.phone-notch {
  width: 80px; height: 10px;
  background: #0f2744; border-radius: 50px;
  margin: 0 auto 8px;
}
.phone-screen { background: #060d1a; border-radius: 28px; overflow: hidden; }
.screen-header {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #0f1e38;
  border-bottom: 1px solid var(--border);
}
.screen-dot { width: 8px; height: 8px; border-radius: 50%; }
.screen-dot.red { background: var(--red); }
.screen-dot.orange { background: var(--orange); }
.screen-dot.green { background: var(--green); }
.screen-title { font-size: 12px; font-weight: 600; margin-left: auto; color: var(--text-muted); }
.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.cam-cell { position: relative; }
.cam-label { font-size: 8px; color: var(--text-muted); padding: 4px 6px; background: #0f1e38; }
.cam-visual {
  height: 80px;
  position: relative;
  overflow: hidden;
}
.cam-1 { background: linear-gradient(135deg, #1a3a2a, #0d1f16); }
.cam-2 { background: linear-gradient(135deg, #1a2a3a, #0d1620); }
.cam-3 { background: linear-gradient(135deg, #2a1a1a, #1a0d0d); }
.cam-4 { background: linear-gradient(135deg, #2a2a1a, #1a1a0d); }
.cam-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 4px);
  animation: scan-cam 3s linear infinite;
}
@keyframes scan-cam { from { background-position: 0 0; } to { background-position: 0 100%; } }
.cam-overlay {
  position: absolute; top: 4px; right: 4px;
  font-size: 7px; font-weight: 700; color: #ef4444;
  animation: blink 1.5s step-start infinite;
}
.phone-bottom-bar {
  padding: 8px 12px; background: #0f1e38;
  font-size: 9px; color: var(--green); text-align: center;
  border-top: 1px solid var(--border);
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature-list strong { display: block; font-size: 15px; margin-bottom: 2px; }
.feature-list p { font-size: 13px; color: var(--text-muted); }

/* ===== SMART HOME ===== */
.smart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }
.smart-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.smart-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.smart-icon { font-size: 48px; margin-bottom: 16px; }
.smart-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.smart-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.smart-badge {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--teal);
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.3);
  padding: 4px 14px; border-radius: 50px;
}
.smart-note {
  display: flex; align-items: center; gap: 16px;
  background: rgba(59,130,246,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 24px;
}
.smart-note span { font-size: 28px; }
.smart-note p { font-size: 14px; color: var(--text-muted); }

/* ===== CONTACTS ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  backdrop-filter: blur(12px);
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text); font-family: inherit; font-size: 14px;
  outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(59,130,246,0.05);
}
.form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.form-success {
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.4);
  color: var(--green); border-radius: var(--radius-sm); padding: 12px 16px;
  text-align: center; font-size: 14px; margin-top: 12px;
}
.hidden { display: none; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 28px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 15px; font-weight: 500; }
.contact-item a:hover { color: var(--blue-light); }

.sim-block {
  display: flex; gap: 16px; align-items: center;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius-sm); padding: 20px;
  margin-top: 8px;
}
.sim-icon-big { font-size: 36px; }
.sim-block strong { display: block; font-size: 14px; margin-bottom: 4px; }
.sim-block p { font-size: 13px; color: var(--text-muted); }

/* ===== MESSENGER BUTTONS ===== */
.messengers-block {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
}
.messengers-title {
  font-size: 13px; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.messenger-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.msg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}
.msg-btn:hover { transform: translateY(-2px); }
.msg-wa  { background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.msg-wa:hover  { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.msg-tg  { background: #2AABEE; box-shadow: 0 4px 14px rgba(42,171,238,0.3); }
.msg-tg:hover  { box-shadow: 0 6px 20px rgba(42,171,238,0.5); }
.msg-max { background: linear-gradient(135deg, #7c3aed, #5b21b6); box-shadow: 0 4px 14px rgba(124,58,237,0.3); }
.msg-max:hover { box-shadow: 0 6px 20px rgba(124,58,237,0.5); }
.messengers-note { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PRICE ===== */
.price-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.price-card {
  background: linear-gradient(135deg, rgba(30,58,138,0.4), rgba(14,30,60,0.9));
  border: 2px solid var(--blue); border-radius: 24px; padding: 40px;
  position: relative; box-shadow: var(--glow);
}
.price-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 5px 20px; border-radius: 50px; white-space: nowrap;
}
.price-header { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.price-icon { font-size: 48px; }
.price-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.price-desc { font-size: 13px; color: var(--text-muted); }
.price-amount { margin-bottom: 24px; }
.price-num { display: block; font-size: 52px; font-weight: 900; color: var(--blue-light); font-family:'Montserrat',sans-serif; line-height:1; }
.price-all { font-size: 14px; color: var(--text-muted); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li { font-size: 15px; display: flex; align-items: center; gap: 10px; }
.pl-check { color: var(--green); font-weight: 700; }
.pl-gift { background: rgba(245,158,11,0.15); color: #fbbf24; font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 50px; margin-left: 6px; }
.price-cta { margin-bottom: 12px; }
.price-note { font-size: 12px; color: var(--text-muted); text-align: center; }
.price-extras { display: flex; flex-direction: column; gap: 16px; }
.price-extra-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  transition: border-color 0.2s;
}
.price-extra-card:hover { border-color: rgba(59,130,246,0.4); }
.pe-icon { font-size: 28px; flex-shrink: 0; }
.price-extra-card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.price-extra-card span { font-size: 13px; color: var(--text-muted); }
.price-guarantee {
  display: flex; gap: 16px; align-items: center;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-sm); padding: 20px;
}
.pg-icon { font-size: 36px; flex-shrink: 0; }
.price-guarantee strong { display: block; font-size: 15px; margin-bottom: 4px; }
.price-guarantee p { font-size: 13px; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.gallery-slot {
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  position: relative; background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-slot:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.gallery-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-slot:hover .gallery-img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: #fff;
  opacity: 0; transition: opacity 0.3s;
  border-radius: var(--radius-sm);
}
.gallery-slot:hover .gallery-hover { opacity: 1; }
.gallery-placeholder {
  height: 200px; background: var(--card-bg);
  border: 2px dashed rgba(59,130,246,0.25);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-placeholder:hover { border-color: var(--blue); background: rgba(59,130,246,0.05); }
.gp-icon { font-size: 36px; opacity: 0.4; }
.gallery-placeholder span { font-size: 12px; color: var(--text-muted); }
.gallery-label { font-size: 12px; color: var(--text-muted); padding: 8px 10px; background: var(--bg); }
.gallery-note { text-align: center; font-size: 13px; color: var(--text-muted); opacity: 0.7; margin-top: 12px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; padding: 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.lightbox img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  cursor: default;
}
.lightbox p { color: rgba(255,255,255,0.7); font-size: 14px; text-align: center; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ===== VIDEO ===== */
.video-wrapper { max-width: 800px; margin: 0 auto; }
.video-placeholder {
  height: 380px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b1629, #0f2744);
}
.video-play-btn {
  width: 72px; height: 72px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer;
  box-shadow: 0 0 32px rgba(59,130,246,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulseGlow 2s ease-in-out infinite;
}
.video-play-btn:hover { transform: scale(1.1); }
.video-info { text-align: center; }
.video-info strong { display: block; font-size: 16px; margin-bottom: 6px; }
.video-info span { font-size: 13px; color: var(--text-muted); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.review-stars { color: #fbbf24; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; gap: 12px; align-items: center; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: var(--text-muted); }

/* ===== ZONE / MAP ===== */
.zone-wrapper { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.zone-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.zone-list { display: flex; flex-direction: column; gap: 20px; }
.zone-list h3 { font-size: 18px; font-weight: 700; }
.zone-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.zone-item {
  font-size: 13px; color: var(--text-muted); padding: 8px 12px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color 0.2s;
}
.zone-item:hover { border-color: rgba(59,130,246,0.4); color: var(--text); }
.zi-main { color: var(--blue-light); border-color: rgba(59,130,246,0.4); font-weight: 600; }
.zone-radius {
  display: flex; gap: 12px; align-items: center;
  background: rgba(20,184,166,0.08); border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius-sm); padding: 16px;
}
.zr-icon { font-size: 28px; }
.zone-radius strong { display: block; font-size: 14px; margin-bottom: 2px; }
.zone-radius p { font-size: 12px; color: var(--text-muted); }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.float-btn:hover { transform: scale(1.12); }
.fb-phone { background: var(--blue); box-shadow: 0 4px 16px rgba(59,130,246,0.5); }
.fb-wa    { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.5); }
.fb-tg    { background: #2AABEE; box-shadow: 0 4px 16px rgba(42,171,238,0.5); }
.fb-chat  { background: linear-gradient(135deg, #7c3aed, #5b21b6); box-shadow: 0 4px 16px rgba(124,58,237,0.5); animation: pulseGlow 2.5s ease-in-out infinite; }

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed; bottom: 90px; right: 24px; z-index: 199;
  width: 320px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-widget.open { display: flex; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.chat-avatar { font-size: 28px; }
.chat-title strong { display: block; font-size: 14px; }
.chat-status { font-size: 11px; color: var(--green); }
.chat-close {
  margin-left: auto; background: none; border: none;
  color: var(--text-muted); font-size: 16px; cursor: pointer;
  padding: 4px; transition: color 0.2s;
}
.chat-close:hover { color: var(--text); }
.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 120px; max-height: 220px; overflow-y: auto; }
.chat-msg { font-size: 13px; line-height: 1.5; }
.chat-msg-in {
  background: var(--bg3); border-radius: 12px 12px 12px 2px;
  padding: 10px 14px; align-self: flex-start; max-width: 90%;
}
.chat-msg-out {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px 12px 2px 12px;
  padding: 10px 14px; align-self: flex-end; max-width: 90%;
}
.chat-quick-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-quick {
  font-size: 12px; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; color: #fff; transition: opacity 0.2s;
}
.chat-quick:hover { opacity: 0.85; }
.chat-quick.wa { background: #25D366; }
.chat-quick.tg { background: #2AABEE; }
.chat-quick.ph { background: var(--blue); }
.chat-input-row {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chat-input-row input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 8px 14px; color: var(--text); font-size: 13px; outline: none;
}
.chat-input-row input:focus { border-color: var(--blue); }
#chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer; font-size: 14px;
  transition: background 0.2s;
}
#chat-send:hover { background: var(--blue-dark); }

/* ===== IMPROVED RESPONSIVE ===== */
@media (max-width: 900px) {
  .phone-view-inner { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }
  .hero-stats { padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .price-wrapper { grid-template-columns: 1fr; }
  .zone-wrapper { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg2); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: 36px; }
  .camera-svg { display: none; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .gift-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .zone-items { grid-template-columns: 1fr; }
  .price-num { font-size: 40px; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; }
  .float-btns { bottom: 16px; right: 16px; }
  .section { padding: 60px 0; }
  .video-placeholder { height: 220px; }
}
