*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B2A4A;
  --navy-deep: #111d33;
  --gold: #E8A020;
  --gold-light: #f5b842;
  --white: #ffffff;
  --off-white: #F7F6F3;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #8a8a9a;
}
html { scroll-behavior: smooth; }
body { font-family: "Barlow", sans-serif; font-weight: 400; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(17,29,51,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,160,32,0.2);
  transition: all 0.3s;
}
nav.scrolled { height: 62px; background: rgba(17,29,51,1); }
.nav-logo-img { height: 44px; width: auto; display: block; transition: height 0.3s; }
nav.scrolled .nav-logo-img { height: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy-deep) !important;
  padding: 9px 22px; border-radius: 4px; font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

#hero {
  min-height: 100vh; background: var(--navy-deep);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 130px 5% 90px; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 64px 64px; } }
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }

.hero-logo-wrap {
  margin-bottom: 32px; opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-logo-wrap img { height: 120px; width: auto; filter: drop-shadow(0 4px 24px rgba(232,160,32,0.25)); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.3);
  border-radius: 100px; padding: 6px 18px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
}
.hero-badge span { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }

.hero-title {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(52px, 8.5vw, 104px); line-height: 0.95;
  color: var(--white); letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 10px; opacity: 0; animation: fadeUp 0.7s 0.45s forwards;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(12px, 1.4vw, 15px); font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
}
.hero-desc {
  font-size: clamp(16px, 1.7vw, 18px); font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.75;
  margin-bottom: 44px; opacity: 0; animation: fadeUp 0.7s 0.75s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  font-family: "Barlow", sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 38px;
  border-radius: 4px; text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  font-family: "Barlow", sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 38px;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeUp 0.7s 1.2s forwards;
}
.hero-scroll span { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(232,160,32,0.7), transparent); animation: scrollPulse 2s infinite; }

.stats-band {
  background: var(--gold); padding: 26px 5%;
  display: flex; justify-content: center; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 52px; border-right: 1px solid rgba(27,42,74,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 40px; color: var(--navy-deep); line-height: 1; }
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(27,42,74,0.6); margin-top: 4px; }

section { padding: 100px 5%; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-title {
  font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: clamp(34px, 4.5vw, 56px); color: var(--navy);
  line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 14px;
}
.section-desc { font-size: 17px; font-weight: 300; color: var(--text-mid); line-height: 1.75; max-width: 500px; }

#services { background: var(--off-white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 36px 30px;
  border: 1px solid rgba(27,42,74,0.07);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.32s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(27,42,74,0.11); border-color: rgba(232,160,32,0.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 50px; height: 50px; background: rgba(27,42,74,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: background 0.25s;
}
.service-card:hover .service-icon-wrap { background: rgba(232,160,32,0.12); }
.service-icon-wrap svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.25s; }
.service-card:hover .service-icon-wrap svg { stroke: var(--gold); }
.service-name { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 21px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.service-desc { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.65; }

#why { background: var(--navy); color: var(--white); }
#why .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.why-points { display: flex; flex-direction: column; gap: 34px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-num { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 34px; color: rgba(232,160,32,0.22); line-height: 1; min-width: 44px; }
.why-text h4 { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--white); margin-bottom: 6px; }
.why-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.65; }
.why-callout {
  background: rgba(232,160,32,0.06); border: 1px solid rgba(232,160,32,0.18);
  border-radius: 10px; padding: 48px 40px; text-align: center;
}
.why-callout .big-num { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 90px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.why-callout .free-label { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.why-callout .phone-big { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 38px; color: var(--white); text-decoration: none; display: block; transition: color 0.2s; letter-spacing: 0.03em; }
.why-callout .phone-big:hover { color: var(--gold); }
.why-callout .email-small { font-size: 14px; font-weight: 700; color: var(--white); margin-top: 12px; display: block; }
.why-callout .email-small a { color: var(--white); font-weight: 700; }

#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; margin-top: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-box {
  width: 44px; height: 44px; background: var(--navy); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon-box svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 16px; font-weight: 500; color: var(--navy); text-decoration: none; transition: color 0.2s; line-height: 1.4; }
.contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--white); border-radius: 10px; padding: 44px 40px; border: 1px solid rgba(27,42,74,0.08); }
.contact-form h3 { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  font-family: "Barlow", sans-serif; font-size: 15px; font-weight: 400;
  color: var(--text-dark); background: var(--off-white);
  border: 1px solid rgba(27,42,74,0.1); border-radius: 5px;
  padding: 12px 15px; outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 112px; }
.field-guard {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-family: "Barlow", sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 16px;
  border: none; border-radius: 5px; cursor: pointer; margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-1px); }

footer {
  background: var(--navy-deep); padding: 36px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; border-top: 3px solid var(--gold);
}
.footer-logo-img { height: 36px; width: auto; opacity: 0.9; }
footer p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@keyframes scrollPulse { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { flex-wrap: wrap; gap: 24px; }
  .stat-item { border-right: none; padding: 0 24px; }
  .services-header { flex-direction: column; }
}
