/* ════════════════════════════════════════
   RESET & VARIABLES
════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --c-dark:    #ffffff;
  --c-navy:    #f0f6ff;
  --c-card:    #ffffff;
  --c-border:  #dde5f0;
  --c-orange:  #f97316;
  --c-orange-h:#ea6b00;
  --c-blue:    #1d6feb;
  --c-blue-d:  #1558c0;
  --c-yellow:  #f59e0b;
  --c-green:   #16a34a;
  --c-text:    #374151;
  --c-muted:   #64748b;
  --c-title:   #1e293b;
  --c-white:   #ffffff;
  --c-rail:    #0f2044;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--c-dark);
  color: var(--c-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

::selection { background: var(--c-orange); color: #fff; }

/* ════════════════════════════════════════
   UTILITY
════════════════════════════════════════ */
.container { max-width: 1140px; width: 100%; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }

.label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 700;
  margin-bottom: 12px;
}

h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-title);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 620px;
}

section { padding: 90px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 8px 30px rgba(249,115,22,0.35);
}
.btn-primary:hover { background: var(--c-orange-h); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(249,115,22,0.5); }

.btn-outline {
  background: transparent;
  color: var(--c-blue);
  border: 2px solid var(--c-blue);
}
.btn-outline:hover { background: var(--c-blue); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--c-orange);
  font-weight: 800;
}
.btn-white:hover { background: #fff3eb; transform: translateY(-2px); }

.btn-phone {
  background: var(--c-rail);
  color: #fff;
}
.btn-phone:hover { background: #1a3460; transform: translateY(-2px); }

/* ════════════════════════════════════════
   TOPBAR
════════════════════════════════════════ */
.topbar {
  background: var(--c-rail);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--c-orange); text-decoration: none; font-weight: 700; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 12px rgba(0,0,0,0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--c-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--c-title);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--c-text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--c-navy); color: var(--c-blue); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-rail);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--c-orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--c-title); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--c-title);
  margin-bottom: 16px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--c-title);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 50%, #0d3060 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(249,115,22,0.08));
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  color: #ffb07a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--c-orange); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-orange);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-text p:first-child {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.hero-card-text p:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════
   TRUST BAND
════════════════════════════════════════ */
.trust-band {
  background: var(--c-rail);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ════════════════════════════════════════
   CARDS & GRIDS
════════════════════════════════════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff5ec, #ffe8d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-title);
  margin-bottom: 8px;
}

.card p { color: var(--c-muted); font-size: 0.9rem; line-height: 1.65; }

/* ════════════════════════════════════════
   CHECK LIST
════════════════════════════════════════ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--c-green);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════
   STEPS
════════════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  align-items: stretch;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--c-orange), rgba(249,115,22,0.1));
  margin-top: 8px;
  min-height: 30px;
}
.step-content {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-left: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.step-content h3 { font-size: 1rem; font-weight: 800; color: var(--c-title); margin-bottom: 6px; }
.step-content p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.6; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--c-title);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  user-select: none;
}
.faq-q:hover { background: var(--c-navy); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; color: var(--c-orange); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ════════════════════════════════════════
   REVIEWS CAROUSEL
════════════════════════════════════════ */
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.review-card {
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.review-stars { color: var(--c-yellow); font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.88rem; color: var(--c-text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--c-title); font-size: 0.88rem; }
.review-role { font-size: 0.78rem; color: var(--c-muted); }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { border-color: var(--c-orange); color: var(--c-orange); }

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0f2044, #1a3a6e);
  padding: 80px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
  padding: 80px 0 60px;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 640px; }

/* ════════════════════════════════════════
   INFO BOX
════════════════════════════════════════ */
.info-box {
  border-radius: 16px;
  padding: 28px 32px;
}
.info-box-orange { background: linear-gradient(135deg, #fff5ec, #ffe8d4); border: 1px solid #fdd0a0; }
.info-box-blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid #bfdbfe; }
.info-box-navy { background: linear-gradient(135deg, #f0f6ff, #dbeafe); border: 1px solid #c7d9f5; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--c-rail);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--c-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
footer h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; font-weight: 700; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--c-orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════════════════════
   PHONE STICKY
════════════════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
  z-index: 998;
  transition: all 0.25s;
}
.float-call:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(249,115,22,0.6); }
.float-call-icon { font-size: 1.2rem; }

/* ════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════ */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-orange); }

/* ════════════════════════════════════════
   HIGHLIGHT STAT CARDS
════════════════════════════════════════ */
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .num { font-size: 2rem; font-weight: 900; color: var(--c-orange); display: block; }
.stat-card .lbl { font-size: 0.82rem; color: var(--c-muted); margin-top: 4px; }

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .grid-2-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 0 70px; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .trust-items { gap: 20px; }
  .float-call-label { display: none; }
  .float-call { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; right: 20px; bottom: 20px; }
}
