﻿/* =====================================================
   SEFKOM BÄ°LÄ°ÅžÄ°M TEKNOLOJÄ°LERÄ° - ANA STÄ°L DOSYASI
   Kurumsal Renkler: KÄ±rmÄ±zÄ± #E8001A | Koyu Mavi #1E4DB7 | AÃ§Ä±k Mavi #5BB8F5
   ===================================================== */

/* Google Fonts artık HTML <head> içinde <link> etiketiyle yüklenmektedir */

/* ===================== CSS TOKENS ===================== */
:root {
  /* Kurumsal Renkler */
  --red:         #E8001A;
  --red-dark:    #C0001A;
  --red-light:   #FF3344;
  --blue-dark:   #1E4DB7;
  --blue-mid:    #2B5CE6;
  --blue-light:  #5BB8F5;
  --blue-pale:   #AAD8F9;

  /* Gradients */
  --grad-hero:       linear-gradient(135deg, #0a0f2e 0%, #0d1b4b 40%, #1a0a1a 100%);
  --grad-brand:      linear-gradient(135deg, var(--blue-dark) 0%, var(--red) 100%);
  --grad-blue:       linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
  --grad-red:        linear-gradient(135deg, var(--red) 0%, #ff6b35 100%);
  --grad-card:       linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  --grad-section:    linear-gradient(180deg, #f0f4ff 0%, #fff 100%);

  /* Dark BG */
  --bg-dark:     #080d24;
  --bg-dark-2:   #0d1535;
  --bg-dark-3:   #111c42;
  --surface:     rgba(255,255,255,0.06);
  --surface-2:   rgba(255,255,255,0.10);
  --border-glass: rgba(255,255,255,0.12);

  /* Text */
  --text-white:  #f8fafc;
  --text-muted:  #94a3b8;
  --text-dark:   #0f172a;
  --text-body:   #334155;

  /* Light BG */
  --bg-light:    #f8fafc;
  --bg-section:  #f0f5ff;

  /* Layout */
  --max-w:       1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.25);
  --shadow-red:  0 8px 32px rgba(232,0,26,0.35);
  --shadow-blue: 0 8px 32px rgba(30,77,183,0.35);
  --shadow-glow: 0 0 40px rgba(91,184,245,0.2);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-mid:     300ms;
  --dur-slow:    600ms;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===================== SCROLL BAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--grad-brand); border-radius: 3px; }

/* ===================== SELECTION ===================== */
::selection { background: var(--red); color: #fff; }

/* ===================== UTILITIES ===================== */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden      { display: none !important; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--blue-dark);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1000;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-pale);
  transition: color var(--dur-fast) var(--ease);
}
.topbar a:hover { color: #fff; }
.topbar a svg { width: 14px; height: 14px; stroke: currentColor; }
.topbar__pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  display: inline-block;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8, 13, 36, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  transition: all var(--dur-mid) var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 13, 36, 0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(91,184,245,0.12);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 240px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown__menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
}
.nav-dropdown__item:hover {
  background: var(--surface-2);
  color: #fff;
  padding-left: 1.25rem;
}
.nav-dropdown__item .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--dur-mid) var(--ease-spring);
  box-shadow: var(--shadow-red);
}
.btn-call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,0,26,0.45);
}
.btn-call svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--dur-mid) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--bg-dark-2);
  border-left: 1px solid var(--border-glass);
  z-index: 9999;
  transition: right var(--dur-slow) var(--ease);
  overflow-y: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { right: 0; }
.mobile-nav__close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.mobile-nav__logo { margin-bottom: 1.5rem; }
.mobile-nav__logo img { height: 44px; }
.mobile-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--surface);
  border-color: var(--border-glass);
  color: #fff;
}
.mobile-nav__sub { padding-left: 1rem; }
.mobile-nav__sub a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1rem;
}
.mobile-nav__divider {
  height: 1px;
  background: var(--border-glass);
  margin: 0.5rem 0;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease);
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ===================== CYBERCORE BACKGROUND ===================== */
@keyframes cybercore-rise {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100vh); }
}
@keyframes cybercore-fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { opacity: 0; }
}
@keyframes cybercore-floor-glow {
  0%, 100% { transform: scaleX(1); opacity: 0.6; }
  50%       { transform: scaleX(1.08); opacity: 1; }
}
@keyframes cybercore-main-glow {
  0%, 100% { filter: blur(18px); opacity: 0.5; }
  50%       { filter: blur(28px); opacity: 0.9; }
}

.cybercore-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.cybercore-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5BB8F5 30%, #2B5CE6 50%, #5BB8F5 70%, transparent);
  box-shadow: 0 0 18px 4px rgba(91,184,245,0.5), 0 0 40px 8px rgba(43,92,230,0.3);
  animation: cybercore-floor-glow 4s ease-in-out infinite;
}
.cybercore-column {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(to top, #2B5CE6, transparent);
  filter: blur(18px);
  opacity: 0.5;
  animation: cybercore-main-glow 5s ease-in-out infinite;
}
.cybercore-streams {
  position: absolute;
  inset: 0;
}
.cybercore-beam {
  position: absolute;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, transparent, #5BB8F5 40%, #AAD8F9);
  box-shadow: 0 0 6px 1px rgba(91,184,245,0.6);
  border-radius: 2px;
  opacity: 0;
  animation-name: cybercore-rise, cybercore-fade;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite;
}
.cybercore-beam--secondary {
  background: linear-gradient(to top, transparent, #E8001A 40%, #FF3344);
  box-shadow: 0 0 6px 1px rgba(232,0,26,0.6);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--grad-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30,77,183,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232,0,26,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(91,184,245,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle var(--dur) ease-in-out infinite alternate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}
.hero__grid > div:first-child {
  background: rgba(5, 8, 25, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mascot-wrap {
  position: relative;
  z-index: 2;
  animation: mascot-float 4s ease-in-out infinite;
}
.hero__mascot-wrap img {
  width: min(520px, 100%);
  filter: drop-shadow(0 30px 60px rgba(30,77,183,0.4));
}
.hero__mascot-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,184,245,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero__floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float-card 5s ease-in-out infinite;
  white-space: nowrap;
}
.hero__float-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__float-card:nth-child(1) { top: 10%; right: -5%; animation-delay: 0s; }
.hero__float-card:nth-child(2) { top: 55%; right: -10%; animation-delay: 1.5s; }
.hero__float-card:nth-child(3) { bottom: 10%; left: 5%; animation-delay: 3s; }
.hero__scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.hero__scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--dur-mid) var(--ease-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast) var(--ease);
}
.btn:hover::before { background: rgba(255,255,255,0.1); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--dur-mid) var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232,0,26,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}
.btn-blue {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(30,77,183,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.825rem; }

/* ===================== SECTION HEADERS ===================== */
.section { padding: 6rem 0; }
.section--dark { background: var(--bg-dark); }
.section--dark-2 { background: var(--bg-dark-2); }
.section--gray { background: var(--bg-section); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30,77,183,0.1);
  border: 1px solid rgba(30,77,183,0.2);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.section-tag--white {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--blue-pale);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title--white { color: #fff; }
.section-title span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc--white { color: var(--text-muted); }

/* ===================== TRUST BANNER ===================== */
.trust-banner {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 2.5rem 0;
}
.trust-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
}
.trust-banner__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--border-glass);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-dark-2);
  position: relative;
  z-index: 1;
  gap: 0.5rem;
  transition: background var(--dur-mid) var(--ease);
}
.trust-item:hover { background: var(--bg-dark-3); }
.trust-item__num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #e2e8f0;
}

/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1.5px solid #e2e8f0;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-gradient, var(--grad-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--card-bg, rgba(30,77,183,0.12));
  color: var(--card-color, var(--blue-light));
  transition: transform var(--dur-mid) var(--ease-spring);
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-5deg); }
.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
}
.service-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-dot, var(--blue-dark));
  flex-shrink: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-color, var(--blue-dark));
  transition: gap var(--dur-fast) var(--ease);
  margin-top: auto;
}
.service-card__link:hover { gap: 0.75rem; }
.service-card__link svg { width: 16px; height: 16px; }

/* Card color variants */
.card--blue { --card-gradient: var(--grad-blue); --card-bg: rgba(91,184,245,0.14); --card-dot: var(--blue-dark); --card-color: #5BB8F5; }
.card--red { --card-gradient: var(--grad-red); --card-bg: rgba(232,0,26,0.12); --card-dot: var(--red); --card-color: #ff4d63; }
.card--cyan { --card-gradient: linear-gradient(135deg, #06b6d4, #0ea5e9); --card-bg: rgba(6,182,212,0.12); --card-dot: #0891b2; --card-color: #22d3ee; }
.card--green { --card-gradient: linear-gradient(135deg, #10b981, #059669); --card-bg: rgba(16,185,129,0.12); --card-dot: #059669; --card-color: #34d399; }

/* Dark Service Cards */
.service-card--dark {
  background: var(--surface);
  border-color: var(--border-glass);
  backdrop-filter: blur(12px);
}
.service-card--dark .service-card__title { color: #fff; }
.service-card--dark .service-card__desc { color: var(--text-muted); }
.service-card--dark .service-card__list li { color: rgba(255,255,255,0.7); }
.service-card--dark:hover { background: var(--surface-2); }

/* ===================== PROCESS SECTION ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--red));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background: var(--bg-dark-2);
  transition: all var(--dur-mid) var(--ease-spring);
  position: relative;
}
.process-step__num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(91,184,245,0.2);
}
.process-step:hover .process-step__num {
  background: var(--blue-dark);
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(91,184,245,0.4);
}
.process-step__icon {
  font-size: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91,184,245,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(91,184,245,0.25);
}
.process-step__title { font-size: 1rem; font-weight: 700; color: #fff; }
.process-step__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--bg-dark-2);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(232,0,26,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,77,183,0.25) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-desc { font-size: 1.05rem; color: var(--text-muted); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== CONTACT SECTION ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid #e2e8f0;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateX(4px);
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-card__content { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.contact-card__value {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-card__value a { color: inherit; transition: color var(--dur-fast); }
.contact-card__value a:hover { color: var(--blue-dark); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-subtitle { font-size: 0.9rem; color: var(--text-body); margin-bottom: 2rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #f8fafc;
  transition: all var(--dur-fast) var(--ease);
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,77,183,0.1);
}
.form-field textarea { min-height: 120px; }
.form-submit { margin-top: 1rem; width: 100%; justify-content: center; border-radius: var(--radius-sd); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #059669;
}
.form-success svg { width: 48px; height: 48px; margin: 0 auto 1rem; }

/* ===================== MAP ===================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1.5px solid #e2e8f0;
  margin-top: 2rem;
}
.map-wrap iframe { width: 100%; height: 100%; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-glass);
}
.footer__brand img { height: 50px; margin-bottom: 1.5rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--dur-fast) var(--ease);
}
.footer__social:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.footer__col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__col a:hover { color: #fff; padding-left: 0.25rem; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom a { color: var(--blue-light); }

/* ===================== WHATSAPP BTN ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 888;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: wa-pulse 3s ease-in-out infinite;
  transition: all var(--dur-mid) var(--ease-spring);
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 887;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-mid) var(--ease);
  white-space: nowrap;
}
.whatsapp-float:hover + .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== PAGE HERO (Inner Pages) ===================== */
.page-hero {
  background: var(--grad-hero);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(30,77,183,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(232,0,26,0.15) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a { color: var(--blue-pale); transition: color var(--dur-fast); }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb span { color: var(--text-muted); }
.page-hero__tag { margin-bottom: 1.25rem; }
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.page-hero__title span { color: var(--blue-light); }
.page-hero__desc { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ===================== SERVICE DETAIL ===================== */
.service-detail { padding: 6rem 0; }
.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: all var(--dur-mid) var(--ease);
}
.feature-item:hover {
  border-color: var(--blue-dark);
  background: #fff;
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.feature-item__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-item__title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.feature-item__desc { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: 'âœ“';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-card__header {
  background: var(--grad-brand);
  padding: 1.5rem;
  color: #fff;
}
.sidebar-card__header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.sidebar-card__header p { font-size: 0.82rem; opacity: 0.85; }
.sidebar-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--dur-mid) var(--ease-spring);
  width: 100%;
  border: 1.5px solid transparent;
}
.sidebar-action--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,0,26,0.3);
}
.sidebar-action--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.sidebar-action--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.sidebar-action--wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.sidebar-action--blue {
  background: var(--bg-section);
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.sidebar-action--blue:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
}
.sidebar-other h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 1rem 1.5rem 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.sidebar-other ul { padding: 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-other a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: all var(--dur-fast);
  padding: 0.4rem 0;
}
.sidebar-other a:hover { color: var(--blue-dark); padding-left: 0.25rem; }


/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ===================== ANIMATIONS ===================== */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.3); opacity: 0.3; }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 0 0 15px rgba(37,211,102,0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: all var(--dur-mid) var(--ease-spring);
  box-shadow: 0 40px 120px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal__header {
  background: var(--grad-brand);
  padding: 2rem;
  color: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}
.modal__close:hover { background: rgba(255,255,255,0.3); }
.modal__body { padding: 2rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__mascot-wrap img { width: 300px; }
  .hero__float-card:nth-child(3) { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .trust-banner__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__actions { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 0; }
  .hero { min-height: auto; padding: 2rem 0 3rem; }
  .hero__grid { padding: 3rem 0 1rem; }
  .hero__float-card { display: none; }
  .hero__visual { display: none; }
  .hero__scroll-indicator { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .service-features { grid-template-columns: 1fr; }
  .trust-banner__grid { grid-template-columns: repeat(2, 1fr); }
  .topbar__inner { height: auto; padding: 0.5rem 0; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .topbar { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__mascot-wrap img { width: 240px; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-banner__grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* ===================== CHECKLIST ===================== */
.checklist { display:flex; flex-direction:column; gap:0.6rem; margin-bottom:2rem; }
.checklist li { display:flex; align-items:center; gap:0.85rem; font-size:0.92rem; font-weight:500; color:#334155; padding:0.65rem 1rem; border-radius:8px; background:#f8fafc; border:1px solid #e8eef6; transition:all 150ms; list-style:none; }
.checklist li:hover { background:#eff4ff; border-color:rgba(30,77,183,0.2); color:#0f172a; transform:translateX(4px); }
.checklist li::before { content:''; width:22px; height:22px; min-width:22px; border-radius:50%; background-color:#1E4DB7; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size:13px 13px; background-repeat:no-repeat; background-position:center; flex-shrink:0; }

/* ===================== SERVICE DETAIL ===================== */
.service-detail { padding:5rem 0; background:#f8fafc; }
.service-detail__grid { display:grid; grid-template-columns:1fr 360px; gap:3rem; align-items:start; }
.service-features { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin-bottom:3rem; }
.feature-item { display:flex; align-items:flex-start; gap:1rem; padding:1.5rem; background:#fff; border-radius:16px; border:1.5px solid #e2e8f0; box-shadow:0 2px 8px rgba(0,0,0,0.08); transition:all 300ms; }
.feature-item:hover { border-color:#1E4DB7; box-shadow:0 8px 32px rgba(30,77,183,0.35); transform:translateY(-4px); }
.feature-item__icon { width:48px; height:48px; min-width:48px; border-radius:8px; background:rgba(30,77,183,0.08); display:flex; align-items:center; justify-content:center; font-size:1.4rem; }
.feature-item__title { font-size:0.975rem; font-weight:700; color:#0f172a; margin-bottom:0.35rem; }
.feature-item__desc { font-size:0.85rem; color:#334155; line-height:1.5; }

/* Page Hero */
.page-hero { background:linear-gradient(135deg,#0a0f2e 0%,#0d1b4b 40%,#1a0a1a 100%); padding:5rem 0 4rem; position:relative; overflow:hidden; }
.page-hero .cybercore-scene { z-index: 0; }
.page-hero .cybercore-floor { opacity: 0.5; }
.page-hero .cybercore-column { opacity: 0.3; }
.page-hero .cybercore-beam { height: 80px; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 60% at 80% 50%,rgba(30,77,183,0.3) 0%,transparent 60%),radial-gradient(ellipse 40% 40% at 20% 80%,rgba(232,0,26,0.15) 0%,transparent 60%); pointer-events:none; }
.page-hero__inner { position:relative; z-index:2; text-align:center; max-width:740px; margin:0 auto; }
.page-hero__breadcrumb { display:flex; align-items:center; justify-content:center; gap:0.5rem; font-size:0.82rem; color:rgba(255,255,255,0.5); margin-bottom:1.5rem; }
.page-hero__breadcrumb a { color:#AAD8F9; }
.page-hero__breadcrumb a:hover { color:#fff; }
.page-hero__tag { margin-bottom:1.25rem; }
.page-hero__title { font-size:clamp(2rem,5vw,3.2rem); font-weight:900; color:#fff; line-height:1.15; margin-bottom:1.25rem; letter-spacing:-0.02em; }
.page-hero__title span { background:linear-gradient(135deg,#5BB8F5,#FF3344); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.page-hero__desc { font-size:1.05rem; color:rgba(255,255,255,0.7); line-height:1.7; max-width:580px; margin:0 auto; }

/* Sidebar */
.service-sidebar { display:flex; flex-direction:column; gap:1.5rem; }
.sidebar-card { background:#f0f5ff; border-radius:24px; overflow:hidden; border:1.5px solid #e2e8f0; box-shadow:0 2px 8px rgba(0,0,0,0.08); }
.sidebar-card__header { background:linear-gradient(135deg,#1E4DB7 0%,#E8001A 100%); padding:1.5rem; color:#fff; }
.sidebar-card__header h3 { font-size:1.05rem; font-weight:700; margin-bottom:0.25rem; }
.sidebar-card__header p { font-size:0.82rem; opacity:0.8; }
.sidebar-card__body { padding:1.25rem; display:flex; flex-direction:column; gap:0.75rem; }
.sidebar-action { display:flex; align-items:center; gap:0.6rem; padding:0.85rem 1.25rem; border-radius:8px; font-size:0.9rem; font-weight:600; transition:all 150ms; text-align:center; justify-content:center; }
.sidebar-action--red { background:#E8001A; color:#fff; }
.sidebar-action--red:hover { background:#C0001A; transform:translateY(-2px); }
.sidebar-action--wa { background:#25d366; color:#fff; }
.sidebar-action--wa:hover { background:#1ebe5d; transform:translateY(-2px); }
.sidebar-action--blue { background:#1E4DB7; color:#fff; }
.sidebar-action--blue:hover { background:#2B5CE6; transform:translateY(-2px); }
.sidebar-other { padding:1.25rem; border-top:1px solid #e2e8f0; }
.sidebar-other h4 { font-size:0.82rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:#94a3b8; margin-bottom:0.75rem; }
.sidebar-other ul { display:flex; flex-direction:column; gap:0.5rem; }
.sidebar-other a { font-size:0.875rem; color:#334155; display:flex; align-items:center; gap:0.5rem; padding:0.4rem; border-radius:6px; transition:all 150ms; }
.sidebar-other a:hover { color:#1E4DB7; background:rgba(30,77,183,0.06); padding-left:0.75rem; }

/* ===================== LUCIDE ICONS ===================== */
.lucide { display:inline-block; vertical-align:-0.125em; flex-shrink:0; }
.service-card__icon .lucide { width:2.25rem; height:2.25rem; stroke:currentColor; }
.feature-item__icon .lucide { width:1.5rem; height:1.5rem; stroke:currentColor; }
.trust-item__icon .lucide { width:2rem; height:2rem; stroke:currentColor; }
.process-step__icon .lucide { width:2rem; height:2rem; stroke:currentColor; }
.benefit-card__icon .lucide { width:2rem; height:2rem; stroke:currentColor; }
.contact-card__icon .lucide { width:2rem; height:2rem; stroke:currentColor; }
.nav-dropdown__item .icon .lucide { width:1.25rem; height:1.25rem; stroke:currentColor; }
.sidebar-card__header .lucide { width:1.1rem; height:1.1rem; vertical-align:-0.15em; stroke:currentColor; }
.sidebar-action .lucide { width:1rem; height:1rem; flex-shrink:0; stroke:currentColor; }
.sidebar-other a .lucide { width:1rem; height:1rem; flex-shrink:0; stroke:currentColor; }
.mobile-nav a .lucide { width:1rem; height:1rem; flex-shrink:0; stroke:currentColor; }
.mobile-nav__sub a .lucide { width:0.9rem; height:0.9rem; flex-shrink:0; stroke:currentColor; }
.footer__col a .lucide { width:0.9rem; height:0.9rem; flex-shrink:0; stroke:currentColor; }
.section-tag .lucide { width:1em; height:1em; vertical-align:-0.125em; stroke:currentColor; }
.btn .lucide { width:1.1rem; height:1.1rem; vertical-align:-0.15em; stroke:currentColor; }
.hours-card .lucide { width:2rem; height:2rem; stroke:currentColor; }
.checklist-item .lucide { width:1rem; height:1rem; flex-shrink:0; stroke:currentColor; }
.package-icon .lucide { width:2.25rem; height:2.25rem; stroke:currentColor; }
.package-badge .lucide { width:0.9rem; height:0.9rem; vertical-align:-0.1em; stroke:currentColor; }
[style*="font-size:3rem"] .lucide { width:3rem; height:3rem; stroke:currentColor; }

/* ===================== FAQ ACCORDION ===================== */
.faq-section { padding: 5rem 0; background: var(--bg-dark); }
.faq-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.faq-intro p { color: #cbd5e1; font-size: 1.05rem; }
.faq-category { margin-bottom: 3rem; }
.faq-category__header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.faq-category__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-category__icon .lucide { width: 1.25rem; height: 1.25rem; stroke: currentColor; }
.faq-category__title { font-size: 1.15rem; font-weight: 700; color: #fff; }
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.faq-item:hover { border-color: rgba(91,184,245,0.3); background: rgba(255,255,255,0.07); }
.faq-item.open { border-color: rgba(91,184,245,0.4); background: rgba(30,77,183,0.1); }
.faq-item__question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem; text-align: left;
}
.faq-item__question span {
  font-size: 0.95rem; font-weight: 600; color: #e2e8f0; line-height: 1.4;
}
.faq-item__chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: #94a3b8; transition: transform var(--dur-fast) var(--ease);
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); color: var(--blue-light); }
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-item__answer { max-height: 400px; padding: 0 1.25rem 1.1rem; }
.faq-item__answer p {
  font-size: 0.9rem; color: #94a3b8; line-height: 1.7; margin: 0;
}
