@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --black: #06060a;
  --dark: #0c0c14;
  --dark-2: #14141f;
  --gray-900: #1a1a28;
  --gray-800: #262638;
  --gray-700: #3d3d52;
  --gray-600: #555570;
  --gray-500: #7a7a95;
  --gray-400: #a3a3b8;
  --gray-300: #d1d1de;
  --gray-200: #e8e8f0;
  --gray-100: #f4f4f8;
  --gray-50: #fafafc;
  --white: #ffffff;
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --blue-light: #4da3ff;
  --blue-glow: rgba(0, 113, 227, 0.4);
  --blue-soft: rgba(0, 113, 227, 0.06);
  --green: #25d366;
  --green-dark: #1da851;
  --gradient-hero: linear-gradient(160deg, #06060a 0%, #0c1628 40%, #0a1a3a 70%, #06060a 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  --gradient-glow: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(0,113,227,0.12) 0%, transparent 100%);
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 40px rgba(0,113,227,0.3);
  --shadow-green: 0 8px 32px rgba(37,211,102,0.3);
  --shadow-card: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.04);
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 300ms;
  --t-slow: 500ms;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: all var(--t) var(--ease);
}

.navbar.scrolled, .navbar.dark-nav {
  background: rgba(6, 6, 10, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar.light-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.08rem;
  color: var(--white); letter-spacing: -0.03em;
}
.navbar.light-nav .nav-logo { color: var(--black); }

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 12px; display: grid; place-items: center;
  font-size: 1.15rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,113,227,0.3);
}
.nav-logo-img {
  height: 58px; width: auto; flex-shrink: 0;
  border-radius: 50%; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform 0.3s var(--ease-spring), filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.08); filter: drop-shadow(0 4px 16px rgba(0,113,227,0.35)); }
.nav-logo span { color: var(--blue-light); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.75); border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
}
.navbar.light-nav .nav-links a { color: var(--gray-600); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar.light-nav .nav-links a:hover, .navbar.light-nav .nav-links a.active { color: var(--blue); background: var(--blue-soft); }

.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 600 !important; padding: 10px 22px !important;
  border-radius: var(--r-full) !important;
  box-shadow: 0 2px 12px rgba(0,113,227,0.2);
}
.nav-cta:hover { background: var(--blue-dark) !important; box-shadow: var(--shadow-blue); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.navbar.light-nav .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 998; }
.nav-overlay.show { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 600; border-radius: var(--r-full); border: none; cursor: pointer;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(0,113,227,0.25); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-blue); }

.btn-secondary {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

.btn-whatsapp { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { background: var(--green-dark); box-shadow: var(--shadow-green); }

.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 100px;
}

.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,10,0.4) 0%, rgba(6,6,10,0.7) 50%, rgba(6,6,10,0.95) 100%);
}

.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.15) 0%, transparent 60%);
  top: -200px; right: -200px; pointer-events: none;
}

.hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px;
  align-items: center; position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: rgba(0,113,227,0.1);
  border: 1px solid rgba(0,113,227,0.2);
  border-radius: var(--r-full); font-size: 0.82rem; font-weight: 600;
  color: var(--blue-light); margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.hero-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); color: var(--white); margin-bottom: 24px; line-height: 1.08; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #4da3ff 0%, #0071e3 50%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.6); max-width: 500px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phone-stack { position: relative; width: 100%; max-width: 380px; }
.hero-phone-stack .hero-phone {
  width: 100%; border-radius: var(--r-2xl);
  box-shadow: 0 48px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  aspect-ratio: 4/5; object-fit: cover;
}
.hero-phone-stack .hero-phone-placeholder { display: none; }

.floating-badge {
  position: absolute; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 12px 20px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 0.82rem; font-weight: 700; color: var(--gray-800);
  display: flex; align-items: center; gap: 8px; animation: float 5s ease-in-out infinite;
}
.floating-badge.b1 { top: 8%; left: -12%; animation-delay: 0s; }
.floating-badge.b2 { bottom: 12%; right: -10%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 72px;
  background: var(--gradient-hero); text-align: center;
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent); pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue);
  margin-bottom: 14px; padding: 6px 14px;
  background: var(--blue-soft); border-radius: var(--r-full);
}
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--black); margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; }

.bg-gray { background: var(--gray-50); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark .section-header h2 { color: var(--white); }
.bg-dark .section-header p { color: var(--gray-400); }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 48px;
  padding: 24px 28px; background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: relative; z-index: 3;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.trust-item span:first-child { font-size: 1.2rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 36px 28px;
  transition: all var(--t) var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(0,113,227,0.12));
  border-radius: var(--r-md); display: grid; place-items: center;
  margin-bottom: 24px; transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-icon svg { width: 28px; height: 28px; }

.si-apple { background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.04) 100%); }
.si-apple svg { fill: #333; }
.si-samsung { background: linear-gradient(135deg, rgba(30,80,200,0.12) 0%, rgba(30,80,200,0.05) 100%); }
.si-samsung svg { fill: #1428a0; }
.si-servis { background: linear-gradient(135deg, rgba(234,88,12,0.12) 0%, rgba(234,88,12,0.05) 100%); }
.si-servis svg { fill: #ea580c; }
.si-aksesuar { background: linear-gradient(135deg, rgba(14,165,233,0.12) 0%, rgba(14,165,233,0.05) 100%); }
.si-aksesuar svg { fill: #0ea5e9; }
.si-takas { background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(16,185,129,0.05) 100%); }
.si-takas svg { fill: #10b981; }
.si-ps { background: linear-gradient(135deg, rgba(0,55,145,0.12) 0%, rgba(0,55,145,0.05) 100%); }
.si-ps svg { fill: #003791; }
.service-card h3 { font-size: 1.12rem; color: var(--black); margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.service-link {
  font-size: 0.88rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--t) var(--ease);
}
.service-link:hover { gap: 10px; }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card {
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--t) var(--ease); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.product-img {
  aspect-ratio: 1; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img.has-photo { font-size: 0; }
.product-img.has-photo img { width: 100%; height: 100%; object-fit: cover; }

.product-body { padding: 22px; }
.product-body h3 { font-size: 0.98rem; color: var(--black); margin-bottom: 6px; }
.product-body p { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 14px; }

.product-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-full);
  background: var(--blue-soft); color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--black); margin-bottom: 20px; }
.why-content > p { color: var(--gray-500); margin-bottom: 36px; font-size: 1.02rem; line-height: 1.8; }

.why-list li { display: flex; gap: 16px; margin-bottom: 24px; }
.why-check {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); border-radius: 50%; display: grid; place-items: center;
  font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 4px 12px rgba(0,113,227,0.2);
}
.why-list strong { display: block; color: var(--black); font-size: 0.95rem; margin-bottom: 4px; font-weight: 700; }
.why-list span { font-size: 0.88rem; color: var(--gray-500); }

.why-image {
  border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/3;
  background: var(--gray-200); position: relative;
  box-shadow: var(--shadow-xl);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.why-image:hover img { transform: scale(1.04); }
.why-image-placeholder { display: none; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative; background: var(--gray-200);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0);
  transition: background var(--t); border-radius: inherit;
}
.gallery-item:hover::after { background: rgba(0,0,0,0.12); }
.gallery-placeholder { display: none; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--black); gap: 16px; transition: color var(--t);
}
.faq-question:hover { color: var(--blue); }
.faq-question svg { flex-shrink: 0; transition: transform var(--t); color: var(--blue); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.8; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #0051a8 0%, var(--blue) 50%, #1a8cff 100%);
  border-radius: var(--r-2xl); padding: 64px 56px; text-align: center;
  color: var(--white); max-width: 1100px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; position: relative; }
.cta-band p { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.35); }

/* ===== LOCATION ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.location-info h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon {
  width: 48px; height: 48px; background: var(--blue-soft);
  border-radius: var(--r-sm); display: grid; place-items: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 0.95rem; color: var(--gray-700); font-weight: 500; }
.info-item a:hover { color: var(--blue); }

.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--gray-200); aspect-ratio: 16/11; background: var(--gray-100); box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--t) var(--ease); background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,0.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 36px;
  transition: all var(--t) var(--ease);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.service-detail-card .service-icon { margin-bottom: 20px; }
.service-detail-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--black); }
.service-detail-card p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 18px; }
.service-detail-card ul li {
  font-size: 0.88rem; color: var(--gray-500); padding: 7px 0;
  padding-left: 22px; position: relative;
}
.service-detail-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-step {
  text-align: center; padding: 32px 20px; background: var(--white);
  border-radius: var(--r-xl); border: 1px solid var(--gray-200);
  counter-increment: step; transition: all var(--t); 
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-step::before {
  content: counter(step); display: grid; place-items: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  margin: 0 auto 18px; box-shadow: 0 4px 12px rgba(0,113,227,0.25);
}
.process-step h4 { font-size: 0.95rem; color: var(--black); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); }

/* ===== SEO CONTENT ===== */
.seo-content { max-width: 860px; margin: 0 auto; }
.seo-content h2 { font-size: 1.5rem; color: var(--black); margin: 32px 0 14px; }
.seo-content h3 { font-size: 1.15rem; color: var(--gray-800); margin: 24px 0 10px; }
.seo-content p { color: var(--gray-500); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.85; }
.seo-content ul { margin: 12px 0 20px 20px; list-style: disc; }
.seo-content ul li { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 8px; }

/* ===== GOOGLE REVIEW ===== */
.google-review-section { padding: 0 0 80px; }
.review-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow var(--t) var(--ease);
}
.review-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.review-left { display: flex; align-items: center; gap: 24px; }
.review-google-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: white; display: grid; place-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); flex-shrink: 0;
}
.review-text h3 { font-size: 1.2rem; color: var(--black); margin-bottom: 6px; }
.review-text p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 10px; }
.review-stars { display: flex; gap: 4px; }
.review-stars svg { width: 22px; height: 22px; }
.btn-google-review {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 60px;
  background: linear-gradient(135deg, #4285F4 0%, #3367d6 100%);
  color: white; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(66,133,244,0.35);
  transition: all 0.3s var(--ease-spring); white-space: nowrap;
  text-decoration: none;
}
.btn-google-review:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(66,133,244,0.45);
}
@media (max-width: 640px) {
  .review-card { padding: 28px 24px; flex-direction: column; text-align: center; }
  .review-left { flex-direction: column; }
  .review-stars { justify-content: center; }
}

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin: 16px 0 20px; }
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand .nav-logo-img { height: 68px; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.88rem; transition: color var(--t); }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}
.footer-seo {
  font-size: 0.72rem; color: rgba(255,255,255,0.25); line-height: 1.7;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===== FLOAT BUTTONS ===== */
.float-buttons {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.whatsapp-float, .phone-float {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none; position: relative;
  transition: all 0.35s var(--ease-spring);
}
.whatsapp-float::before, .phone-float::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: inherit; opacity: 0; filter: blur(12px);
  transition: opacity 0.35s ease; z-index: -1;
}
.whatsapp-float:hover::before, .phone-float:hover::before { opacity: 0.5; }
.whatsapp-float {
  background: linear-gradient(145deg, #25d366 0%, #128c47 100%);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.12);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)); }
.phone-float {
  background: linear-gradient(145deg, #3a8fff 0%, var(--blue-dark) 100%);
  box-shadow: 0 4px 20px rgba(0,113,227,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.12);
}
.phone-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px rgba(0,113,227,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.phone-float svg { width: 28px; height: 28px; fill: white; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
}
.whatsapp-float { animation: float-pulse 3s ease-in-out infinite; }
@keyframes float-pulse-blue {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,113,227,0.35), inset 0 1px 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 4px 28px rgba(0,113,227,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
}
.phone-float { animation: float-pulse-blue 3s ease-in-out infinite 1.5s; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.94); align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-lg); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: all var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* ===== PHONE HIGHLIGHT ===== */
.phone-highlight { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; margin-top: 8px; }
.phone-highlight a { color: inherit; }
.phone-highlight a:hover { opacity: 0.8; }

.nav-logo-sub {
  font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-top: -2px;
}
.navbar.light-nav .nav-logo-sub { color: var(--gray-400); }

/* ===== LP ===== */
.lp-minimal .nav-links a:not(.nav-cta) { display: none; }
.lp-hero {
  padding: calc(var(--nav-h) + 56px) 0 72px;
  background: var(--gradient-hero); text-align: center;
  position: relative;
}
.lp-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--white), transparent); pointer-events: none;
}
.lp-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-hero .hero-desc { margin: 0 auto 32px; text-align: center; }
.lp-cta-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.lp-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 36px; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.lp-trust-row span { display: flex; align-items: center; gap: 6px; }

/* ===== STICKY CTA ===== */
.sticky-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 10px 16px; gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.sticky-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: var(--r-full); font-weight: 700; font-size: 0.9rem;
}
.sticky-cta-call { background: var(--blue); color: var(--white); box-shadow: 0 2px 8px rgba(0,113,227,0.2); }
.sticky-cta-wa { background: var(--green); color: var(--white); box-shadow: 0 2px 8px rgba(37,211,102,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-phone-stack { max-width: 260px; margin: 0 auto; }
  .floating-badge.b1 { left: -5%; }
  .floating-badge.b2 { right: -5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .float-buttons { bottom: 88px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); right: -100%;
    width: min(320px, 85vw); height: calc(100vh - var(--nav-h));
    background: var(--dark); flex-direction: column; align-items: stretch;
    padding: 24px; gap: 4px;
    transition: right var(--t) var(--ease); z-index: 999; overflow-y: auto;
  }
  .navbar.light-nav .nav-links { background: var(--white); border-left: 1px solid var(--gray-200); }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }

  .services-grid, .products-grid, .gallery-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .cta-band { padding: 48px 28px; border-radius: var(--r-xl); }
  .hero { padding-bottom: 120px; }
  .hero h1 { font-size: 2.2rem; }
  .trust-bar { gap: 16px 28px; }
}
