*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8001A;
  --red2: #FF2D20;
  --orange: #FF6B00;
  --bg: #06080f;
  --bg2: #080b14;
  --bg3: #0d1120;
  --card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #8892a4;
  --muted2: #5a6478;
  --green: #25D366;
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,8,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
.header-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 70px;
}
.logo { font-size: 24px; font-weight: 900; letter-spacing: -0.5px; text-decoration: none; }
.logo-img-wrap { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.logo-img-footer { height: 40px; max-width: 140px; }
.logo-tek { color: #fff; }
.logo-vag { color: var(--red); }
.logo-com { color: var(--muted2); font-weight: 400; }

nav.nav { display: flex; gap: 28px; margin-left: auto; }
nav.nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; position: relative; }
nav.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.3s; border-radius: 2px; }
nav.nav a:hover { color: #fff; }
nav.nav a:hover::after { width: 100%; }

.btn-wp-header {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-wp-header:hover { background: #1ebe5a; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

.mobile-menu { display: none; flex-direction: column; background: var(--bg2); border-top: 1px solid var(--border); padding: 16px 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 15px; transition: color 0.2s; }
.mobile-menu a:hover { color: #fff; }
.btn-wp-mobile { margin-top: 14px; background: var(--green); color: #fff !important; text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; border: none !important; }

/* ─── HERO SLIDER ─── */
.hero-slider { position: relative; height: 100vh; min-height: 700px; max-height: 1000px; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); will-change: transform; }

.slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; display: flex; align-items: center; }

.slide-bg { position: absolute; inset: 0; }
.slide-bg-1 { background: radial-gradient(ellipse at 70% 50%, rgba(232,0,26,0.18) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(232,0,26,0.08) 0%, transparent 50%), linear-gradient(135deg, #06080f, #0a0d18); }
.slide-bg-2 { background: radial-gradient(ellipse at 60% 40%, rgba(0,120,255,0.15) 0%, transparent 55%), linear-gradient(135deg, #06080f, #080d1a); }
.slide-bg-3 { background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.12) 0%, transparent 55%), linear-gradient(135deg, #06080f, #0f0c07); }
.slide-bg-4 { background: radial-gradient(ellipse at 65% 45%, rgba(50,200,100,0.1) 0%, transparent 55%), linear-gradient(135deg, #06080f, #080f0b); }

.slide-grid-overlay {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.slide-inner { position: relative; z-index: 1; width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 70px; }

.slide-content { max-width: 580px; }

.slide-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #aab; padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

.slide-title { font-size: clamp(40px, 5.5vw, 76px); font-weight: 900; line-height: 1.05; letter-spacing: -3px; margin-bottom: 22px; }
.slide-title em { font-style: normal; background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.slide-desc { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }

.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-red { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--red), #c41000); color: #fff; padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 24px rgba(232,0,26,0.35); border: none; cursor: pointer; }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(232,0,26,0.45); }
.btn-red.btn-large { padding: 17px 38px; font-size: 17px; }

.btn-ghost { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.05); color: #fff; padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid var(--border2); transition: all 0.25s; }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }

/* Slide Visuals */
.slide-visual { flex-shrink: 0; position: relative; width: 380px; height: 380px; }

/* Visual 1 — rings */
.sv-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(232,0,26,0.2); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.sv-ring-1 { width: 340px; height: 340px; animation: spin-slow 20s linear infinite; border-style: dashed; }
.sv-ring-2 { width: 260px; height: 260px; animation: spin-slow 15s linear infinite reverse; border-color: rgba(232,0,26,0.3); }
.sv-ring-3 { width: 180px; height: 180px; animation: spin-slow 10s linear infinite; border-color: rgba(232,0,26,0.15); }
@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.sv-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; background: rgba(232,0,26,0.1); border: 1px solid rgba(232,0,26,0.3); border-radius: 50%; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.sv-icon { font-size: 32px; }
.sv-label { font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: 2px; }

.sv-tag { position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); padding: 8px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; color: #ccc; white-space: nowrap; backdrop-filter: blur(8px); }
.sv-tag-1 { top: 20px; left: 10px; }
.sv-tag-2 { top: 20px; right: 10px; }
.sv-tag-3 { bottom: 20px; left: 10px; }
.sv-tag-4 { bottom: 20px; right: 10px; }

/* Visual 2 — phone */
.slide-visual-2 { display: flex; align-items: center; justify-content: center; }
.phone-mockup { width: 180px; height: 320px; background: linear-gradient(135deg, #1a1f2e, #111827); border: 2px solid rgba(0,120,255,0.3); border-radius: 28px; padding: 20px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 60px rgba(0,120,255,0.2); }
.phone-screen { text-align: center; }
.phone-icon { font-size: 40px; margin-bottom: 12px; }
.phone-text { font-size: 13px; font-weight: 700; color: #4af; margin-bottom: 16px; line-height: 1.4; }
.phone-bar { height: 4px; border-radius: 4px; background: rgba(0,160,255,0.4); margin-bottom: 8px; }
.phone-bar-2 { width: 70%; margin-left: 15%; }
.phone-bar-3 { width: 50%; margin-left: 25%; }
.wifi-waves { position: absolute; top: -50px; right: -40px; }
.wave { border: 2px solid rgba(0,120,255,0.3); border-radius: 50%; animation: wave-out 2s ease-out infinite; }
.w1 { width: 60px; height: 60px; animation-delay: 0s; }
.w2 { width: 100px; height: 100px; animation-delay: 0.5s; }
.w3 { width: 140px; height: 140px; animation-delay: 1s; }
@keyframes wave-out { 0% { transform:scale(0.8); opacity:1; } 100% { transform:scale(1.4); opacity:0; } }

/* Visual 3 — brand orbit */
.brand-orbit { position: relative; width: 320px; height: 320px; }
.orbit-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 90px; height: 90px; background: linear-gradient(135deg, var(--red), #c41000); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; text-align: center; line-height: 1.2; color: #fff; }
.orbit-center small { font-size: 11px; font-weight: 500; display: block; }
.orbit-item { position: absolute; width: 50px; height: 50px; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #ccc; animation: orbit-float 3s ease-in-out infinite alternate; }
.oi-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.oi-2 { top: 50px; right: 0; animation-delay: 0.3s; }
.oi-3 { bottom: 50px; right: 0; animation-delay: 0.6s; }
.oi-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }
.oi-5 { bottom: 50px; left: 0; animation-delay: 1.2s; }
.oi-6 { top: 50px; left: 0; animation-delay: 1.5s; }
@keyframes orbit-float { 0% { transform:translateY(0) translateX(0); } 100% { transform:translateY(-8px) translateX(3px); } }

/* Visual 4 — shield */
.shield-visual { background: linear-gradient(135deg, rgba(50,200,100,0.08), rgba(0,100,50,0.05)); border: 1px solid rgba(50,200,100,0.2); border-radius: 24px; padding: 40px 48px; text-align: center; }
.shield-icon { font-size: 56px; margin-bottom: 14px; }
.shield-text { font-size: 28px; font-weight: 900; letter-spacing: 2px; color: #5de; margin-bottom: 4px; }
.shield-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; letter-spacing: 2px; }
.shield-stats { display: flex; gap: 32px; justify-content: center; }
.ss-item { display: flex; flex-direction: column; gap: 4px; }
.ss-item strong { font-size: 26px; font-weight: 900; color: #5de; }
.ss-item span { font-size: 12px; color: var(--muted); }

/* Slider Controls */
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid var(--border2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s; margin-top: -30px; }
.slider-arrow:hover { background: rgba(255,255,255,0.14); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.dot.active { width: 28px; border-radius: 4px; background: var(--red); }

/* Hero Stats Bar */
.hero-stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: rgba(6,8,15,0.8); backdrop-filter: blur(16px); border-top: 1px solid var(--border); }
.hsb-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 0; height: 72px; }
.hsb-item { display: flex; align-items: center; gap: 8px; padding: 0 36px; }
.hsb-num { font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; }
.hsb-plus { font-size: 20px; font-weight: 900; color: var(--red); line-height: 1; }
.hsb-label { font-size: 13px; color: var(--muted); }
.hsb-div { width: 1px; height: 32px; background: var(--border); }

/* ─── MARQUEE ─── */
.marquee-wrap { background: linear-gradient(90deg, #E8001A 0%, #ff4500 25%, #ff8c00 50%, #ff4500 75%, #E8001A 100%); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 32px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); white-space: nowrap; letter-spacing: 0.5px; }
.marquee-dot { color: rgba(255,255,255,0.5) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS COMMON ─── */
.brands-section, .services-section, .faq-section { padding: 100px 0; }
.process-section, .why-section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; background: rgba(232,0,26,0.1); color: var(--red); border: 1px solid rgba(232,0,26,0.25); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── BRANDS ─── */
.brands-section { background: var(--bg2); }
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 16px; text-align: center; transition: all 0.35s; cursor: default; position: relative; overflow: hidden; }
.brand-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,0,26,0.06), transparent); opacity: 0; transition: opacity 0.3s; }
.brand-card:hover { border-color: rgba(232,0,26,0.3); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.brand-card:hover::before { opacity: 1; }
.brand-logo { margin-bottom: 14px; display: flex; justify-content: center; }
.brand-name { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.brand-models { font-size: 11px; color: var(--muted2); line-height: 1.5; margin-bottom: 10px; }
.brand-badge { display: inline-block; background: rgba(232,0,26,0.1); color: var(--red); border: 1px solid rgba(232,0,26,0.2); padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }

/* ─── SERVICES ─── */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden; transition: all 0.35s; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.svc-card:hover { border-color: rgba(232,0,26,0.25); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-featured { border-color: rgba(232,0,26,0.2); }
.svc-card-featured::after { transform: scaleX(1); }
.svc-num { font-size: 48px; font-weight: 900; color: rgba(232,0,26,0.12); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.svc-icon { font-size: 28px; margin-bottom: 14px; }
.svc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 13px; font-weight: 700; text-decoration: none; transition: gap 0.2s; }
.svc-link:hover { gap: 10px; }

/* ─── PROCESS ─── */
.process-section { background: var(--bg2); }
.process-grid { display: flex; align-items: flex-start; gap: 0; }
.process-card { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.3s; }
.process-card:hover { border-color: rgba(232,0,26,0.3); transform: translateY(-6px); }
.process-step { font-size: 48px; font-weight: 900; color: rgba(232,0,26,0.15); line-height: 1; margin-bottom: 12px; letter-spacing: -2px; }
.process-icon { font-size: 36px; margin-bottom: 16px; }
.process-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.process-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.process-arrow { font-size: 28px; color: rgba(232,0,26,0.4); padding: 0 16px; padding-top: 80px; flex-shrink: 0; }

/* ─── WHY US ─── */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-tag { display: inline-block; margin-bottom: 16px; }
.why-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.15; }
.why-text > p { color: var(--muted); font-size: 15px; margin-bottom: 36px; line-height: 1.75; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.why-visual { display: flex; justify-content: center; }
.why-big-card { position: relative; background: linear-gradient(135deg, #0f1120, #080b14); border: 1px solid rgba(232,0,26,0.2); border-radius: 28px; padding: 48px 40px; text-align: center; width: 100%; max-width: 340px; overflow: hidden; }
.wbc-glow { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(232,0,26,0.15), transparent 70%); pointer-events: none; }
.wbc-content { position: relative; z-index: 1; }
.wbc-icon { font-size: 52px; margin-bottom: 14px; }
.wbc-title { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.wbc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.wbc-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.wbc-stats { display: flex; justify-content: space-around; margin-bottom: 32px; }
.wbc-stat { display: flex; flex-direction: column; gap: 5px; }
.wbc-num { font-size: 24px; font-weight: 900; color: var(--red); }
.wbc-lbl { font-size: 12px; color: var(--muted); }
.wbc-btn { display: block; background: var(--green); color: #fff; padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }
.wbc-btn:hover { opacity: 0.9; }

/* ─── FAQ ─── */
.faq-section { background: var(--bg2); }
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(232,0,26,0.3); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; font-size: 15px; font-weight: 600; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-arrow { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 400; color: var(--red); flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(232,0,26,0.12); }
.faq-a { display: none; padding: 0 24px 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* ─── CTA ─── */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,0,26,0.14) 0%, transparent 65%), linear-gradient(135deg, #06080f, #0a080f); }
.cta-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; }
.cta-inner { position: relative; z-index: 1; }
.cta-badge { display: inline-block; background: rgba(232,0,26,0.12); color: var(--red); border: 1px solid rgba(232,0,26,0.25); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.cta-inner h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; letter-spacing: -2px; margin-bottom: 18px; line-height: 1.1; }
.cta-inner p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.cta-inner .btn-red { margin: 0 auto; }
.cta-note { margin-top: 20px; font-size: 14px; color: var(--muted2); }

/* ─── FOOTER ─── */
footer { background: #040508; border-top: 1px solid var(--border); padding: 70px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 14px; }
.footer-brand p { color: var(--muted2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-wp { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,211,102,0.1); color: var(--green); border: 1px solid rgba(37,211,102,0.25); padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.footer-wp:hover { background: rgba(37,211,102,0.18); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.footer-col a { color: var(--muted2); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #ccc; }
.footer-col a[href^="tel:"]:hover { color: #4fc3f7; }
.footer-col a[href*="wa.me"]:hover { color: #25D366; }
.footer-col a[href*="instagram"]:hover { color: #e1306c; }
.footer-col p { color: var(--muted2); font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--muted2); font-size: 13px; }

/* ─── GALLERY ─── */
.gallery-section { padding: 100px 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-bottom: 40px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; }
.gi-wide { grid-column: span 2; }
.gallery-ph { height: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; }
.gallery-ph:hover { border-color: rgba(232,0,26,0.3); background: rgba(232,0,26,0.05); }
.gph-icon { font-size: 32px; }
.gph-text { font-size: 13px; font-weight: 700; color: #ccc; }
.gph-sub { font-size: 11px; color: var(--muted2); }

/* Gallery real image support */
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }

.gallery-cta { text-align: center; }
.gallery-cta p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.btn-instagram { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; padding: 13px 26px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── FLOATING WP ─── */
.floating-wp { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; z-index: 999; transition: transform 0.25s; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.floating-wp:hover { transform: scale(1.1); }
.floating-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.5); animation: fp 2s ease-out infinite; }
@keyframes fp { 0% { transform:scale(1); opacity:1; } 100% { transform:scale(1.5); opacity:0; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-visual { width: 280px; height: 280px; }
  .sv-ring-1 { width: 260px; height: 260px; }
  .sv-ring-2 { width: 200px; height: 200px; }
  .sv-ring-3 { width: 140px; height: 140px; }
}

@media (max-width: 900px) {
  nav.nav, .btn-wp-header { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .slide-visual { display: none; }
  .slide-inner { justify-content: center; }
  .slide-content { text-align: center; }
  .slide-badge { margin: 0 auto 28px; }
  .slide-actions { justify-content: center; }
  .slide-desc { margin: 0 auto 36px; }
  .process-grid { flex-direction: column; gap: 16px; }
  .process-arrow { display: none; }
}

@media (max-width: 640px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hsb-item { padding: 0 16px; }
  .hsb-num { font-size: 20px; }
  .hsb-label { display: none; }
  .slide-title { letter-spacing: -1.5px; }
  .hero-stats-bar { display: none; }
  .hero-slider { max-height: 100vh; }
}
