:root {
  --navy: #1e3a5f;
  --navy2: #2d4a6f;
  --accent: #c9a962;
  --accent2: #b8954f;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --bg2: #f8fafc;
  --card: #ffffff;
  --ring: rgba(201, 169, 98, 0.25);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand__name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #fff;
}
.brand__accent {
  color: var(--accent);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
}
.header-phone:hover {
  color: var(--accent2);
}
.header-phone__text {
  display: none;
}
@media (min-width: 640px) {
  .header-phone__text {
    display: inline;
  }
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
}
.icon--sm {
  width: 18px;
  height: 18px;
}
.quote-icon {
  width: 128px;
  height: 128px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  cursor: pointer;
  user-select: none;
}
.btn--lg {
  padding: 16px 22px;
  font-size: 16px;
}
.btn--accent {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(201, 169, 98, 0.25);
}
.btn--accent:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
}
.btn--navy:hover {
  background: var(--navy2);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(30, 58, 95, 0.2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.icon-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  /* position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center; */
  /* background-image: url("/img/hero.jpg"); */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 58, 95, 0.95),
    rgba(30, 58, 95, 0.85),
    rgba(30, 58, 95, 0.7)
  );
}
.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}
.hero-blob--a {
  top: 80px;
  right: 80px;
  width: 288px;
  height: 288px;
  background: rgba(201, 169, 98, 0.1);
}
.hero-blob--b {
  bottom: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(201, 169, 98, 0.06);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}
.hero-badge .icon {
  color: var(--accent);
}
.hero-title {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero-title__accent {
  display: block;
  color: var(--accent);
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 68px;
  }
}
.hero-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.trust-item .icon {
  color: var(--accent);
}

.hero-stats {
  display: none;
}
@media (min-width: 1024px) {
  .hero-stats {
    display: block;
  }
}
.stats-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 14px;
}
.stat__num {
  font-weight: 800;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section {
  padding: 96px 0;
}
.section--alt {
  background: linear-gradient(180deg, #f9fafb, #fff);
}
.section--fade {
  background: linear-gradient(180deg, #fff, #f9fafb);
}
.section--navy {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.kicker--accent {
  color: var(--accent);
}
.h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy);
}
.h2--light {
  color: #fff;
}
.subhead {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}
.subhead--light {
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 1024px) {
  .h2 {
    font-size: 46px;
  }
}

/* Cards grid */
.cards {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  min-height: 210px;
}
.card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}
.card__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover .card__bg {
  opacity: 1;
}
.card__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}
.card:hover .card__icon {
  background: var(--accent);
}
.card__icon .icon {
  color: #fff;
  width: 26px;
  height: 26px;
}
.card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.card__desc {
  margin: 0;
  color: #5b677a;
  line-height: 1.65;
}

/* Why */
.decor--full {
  position: absolute;
  inset: 0;
}
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}
.blob--left {
  top: 70px;
  left: 30px;
  width: 260px;
  height: 260px;
  background: rgba(201, 169, 98, 0.1);
}
.blob--right {
  bottom: 70px;
  right: 70px;
  width: 420px;
  height: 420px;
  background: rgba(201, 169, 98, 0.06);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 54px;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.why-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-image__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(30, 58, 95, 0.55));
}

.why-float {
  position: absolute;
  right: -16px;
  bottom: -16px;
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-media {
  position: relative;
}
.why-float__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-float__icon .icon {
  color: #fff;
  width: 26px;
  height: 26px;
}
.why-float__num {
  font-size: 28px;
  font-weight: 900;
}
.why-float__label {
  font-size: 13px;
  color: #64748b;
}

.feature-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  transition: background 0.2s ease;
}
.feature:hover {
  background: rgba(255, 255, 255, 0.1);
}
.feature .icon {
  color: var(--accent);
  width: 30px;
  height: 30px;
}
.feature h3 {
  margin: 10px 0 8px;
  font-size: 15px;
  font-weight: 800;
}
.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

/* Testimonials */
.testimonials {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.quote-decor {
  position: absolute;
  top: -34px;
  left: 0;
  opacity: 0.1;
  color: var(--navy);
}
.testimonial-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
@media (min-width: 1024px) {
  .testimonial-card {
    padding: 38px;
  }
}
.testimonial-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
@media (min-width: 1024px) {
  .testimonial-inner {
    flex-direction: row;
    gap: 34px;
    align-items: center;
  }
}
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.2);
}
@media (min-width: 1024px) {
  .avatar {
    width: 128px;
    height: 128px;
  }
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcopy {
  text-align: center;
}
@media (min-width: 1024px) {
  .tcopy {
    text-align: left;
  }
}
.stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .stars {
    justify-content: flex-start;
  }
}
.star {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.star.filled {
  fill: var(--accent);
}
.ttext {
  margin: 0 0 18px;
  color: #334155;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
}
@media (min-width: 1024px) {
  .ttext {
    font-size: 20px;
  }
}
.tname {
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
}
.trole {
  color: #64748b;
  margin-top: 4px;
}
.tnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d5db;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dot:hover {
  background: #9ca3af;
}
.dot.active {
  background: var(--accent);
  width: 34px;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 44px;
  }
}

.info-list {
  display: grid;
  gap: 14px;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px;
  transition: background 0.2s ease;
}
.info-item:hover {
  background: #f1f5f9;
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.info-icon .icon {
  color: var(--accent);
  width: 20px;
  height: 20px;
}
.info-title {
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}
.info-main {
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 3px;
}
.info-sub {
  color: #6b7280;
  font-size: 13px;
  margin: 0;
}

.emergency {
  margin-top: 16px;
  background: linear-gradient(90deg, var(--navy), var(--navy2));
  border-radius: 18px;
  padding: 20px;
  color: #fff;
}
.emergency h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.emergency p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.emergency .btn {
  width: 100%;
  border-radius: 12px;
}

.form-card {
  background: #f8fafc;
  border-radius: 28px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .form-card {
    padding: 34px;
  }
}
.form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  background: #fff;
}
.field input {
  height: 48px;
}
.field textarea {
  resize: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--ring);
}

.form-success {
  text-align: center;
  padding: 34px 10px;
}
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon .icon {
  color: #16a34a;
  width: 42px;
  height: 42px;
}
.form-success h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}
.form-success p {
  margin: 0;
  color: #64748b;
}

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
}
.footer-top {
  padding: 64px 0;
  display: grid;
  gap: 34px;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand__name {
  font-weight: 900;
  font-size: 22px;
}
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 16px;
}
.social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-btn:hover {
  background: var(--accent);
}

.footer-h {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 900;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icon .icon {
  color: var(--accent);
}
.fc-main {
  font-weight: 800;
}
.fc-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom__inner {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
  }
}
.fineprint {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.fine-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.fine-links a {
  color: rgba(255, 255, 255, 0.6);
}
.fine-links a:hover {
  color: #fff;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .card,
  .icon-btn {
    transition: none;
  }
}
