@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:        #046bd2;
  --blue-dark:   #0353a4;
  --blue-deep:   #023d7a;
  --blue-light:  #4a9de8;
  --blue-pale:   #dbeafe;
  --blue-tint:   #f0f6ff;
  --blue-tint2:  #e8f1ff;
  --navy:        #0d1b3e;
  --text:        #1e293b;
  --muted:       #5a7389;
  --border:      #d1ddf0;
  --border-light:#e8f0fb;
  --white:       #ffffff;
  --bg:          #f7faff;
  --shadow-sm:   0 2px 8px rgba(4,107,210,0.08);
  --shadow-md:   0 6px 24px rgba(4,107,210,0.12);
  --shadow-lg:   0 16px 48px rgba(4,107,210,0.16);
  --r:           14px;
  --r-lg:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-tint); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::selection { background: var(--blue-pale); color: var(--blue-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-tint { background: var(--blue-tint); }

.display {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.label::before {
  content: ''; width: 18px; height: 2px; background: var(--blue); border-radius: 2px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 520px;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4,107,210,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(4,107,210,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--blue-tint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-wa {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,102,255,0.35);
}
.btn-wa:hover {
  background: linear-gradient(135deg, #0055dd 0%, #0033bb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.45);
}
.btn-lg { padding: 17px 36px; font-size: 16px; border-radius: 16px; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(4,107,210,0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 36px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: 10px;
  transition: all 0.2s ease; position: relative;
  white-space: nowrap;
}
.nav-item:hover, .nav-item.active {
  color: var(--blue); background: var(--blue-tint);
}
.nav-item.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--blue); border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  padding: 9px 16px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}
.header-phone:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.header-phone svg { color: var(--blue); flex-shrink: 0; }

.phone-dropdown { position: relative; }
.phone-toggle {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  padding: 9px 14px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: none; cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: all 0.2s; white-space: nowrap;
}
.phone-toggle:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.phone-toggle svg.ph-icon { color: var(--blue); }
.phone-toggle svg.ph-chevron { color: var(--muted); transition: transform 0.2s; }
.phone-dropdown.open .phone-toggle { border-color: var(--blue); background: var(--blue-tint); }
.phone-dropdown.open .ph-chevron { transform: rotate(180deg); }
.phone-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(2,29,73,0.14);
  border: 1.5px solid var(--border-light);
  min-width: 240px; overflow: hidden; z-index: 400;
}
.phone-dropdown.open .phone-menu { display: block; }
.phone-menu-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; text-decoration: none; color: var(--navy);
  transition: background 0.15s; border-bottom: 1px solid var(--border-light);
}
.phone-menu-item:last-child { border-bottom: none; }
.phone-menu-item:hover { background: var(--blue-tint); }
.phone-menu-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-tint2); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.phone-menu-icon svg { color: var(--blue); }
.phone-menu-label { font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.phone-menu-num { font-size: 14px; font-weight: 700; }

.burger {
  display: none; flex-direction: column; gap: 4px;
  padding: 9px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--white); cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 998;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 16px 16px;
  flex-direction: column; gap: 2px;
  box-shadow: 0 12px 32px rgba(4,107,210,0.12);
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
}
.mobile-nav .nav-item {
  padding: 14px 16px; font-size: 15px; font-weight: 600;
  border-radius: 12px; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav .nav-item:active { background: var(--blue-tint); }
.mobile-nav .nav-item.active { color: var(--blue); background: var(--blue-tint); }
.mobile-nav .header-phone { display: none; }
.mobile-nav .btn { display: none; }
.mobile-nav-divider {
  height: 1px; background: var(--border-light); margin: 6px 16px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-wrap { margin-bottom: 18px; }
.footer-brand .logo-wrap img { filter: brightness(0) invert(1); height: 32px; }
.footer-brand p {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 24px; max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.social-icon:hover { background: var(--blue); border-color: var(--blue); color: white; }
.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

.call-bubble { display: none; }

.mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(4,107,210,0.1);
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: center;
}
.mob-bar-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px; border-radius: 14px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  transition: all 0.18s ease; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.mob-bar-btn:active { transform: scale(0.96); }
.mob-bar-call {
  background: var(--blue); color: white;
  box-shadow: 0 3px 12px rgba(4,107,210,0.35);
}
.mob-bar-max {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: white;
  box-shadow: 0 3px 12px rgba(0,102,255,0.35);
}
.wa-bubble {
  position: fixed; bottom: 30px; right: 30px; z-index: 990;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,102,255,0.45);
  transition: all 0.3s ease;
  animation: wa-ring 3.5s infinite;
}
.wa-bubble:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 14px 36px rgba(0,102,255,0.5); }
@keyframes wa-ring {
  0%,100% { box-shadow: 0 8px 24px rgba(0,102,255,0.45), 0 0 0 0 rgba(0,102,255,0.35); }
  60%      { box-shadow: 0 8px 24px rgba(0,102,255,0.45), 0 0 0 14px rgba(0,102,255,0); }
}
.wa-bubble svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .mob-bar { display: flex; }
  .wa-bubble { display: none; }
}

[data-reveal] {
  opacity: 0; transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--white) 60%);
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(4,107,210,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.page-hero-tag::before {
  content: ''; width: 24px; height: 2px; background: var(--blue); border-radius: 2px;
}
.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; color: var(--navy);
  line-height: 1.12; margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px; color: var(--muted); max-width: 540px; line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-top: 28px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--border); font-size: 12px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .header-phone, .header-cta .btn:not(.burger),
  .phone-dropdown { display: none; }
  .burger { display: flex; }

  
  .header-inner { height: 60px; }
  .site-logo img { height: 30px; }

  
  .section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }
  .page-hero { padding: 100px 0 52px; }

  
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-footer { padding: 52px 0 0; }

  
  body { padding-bottom: 74px; }

  
  .section-sub { font-size: 15px; }
  .page-hero p { font-size: 16px; }

  
  .btn-lg { padding: 15px 28px; font-size: 15px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
}

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
