﻿:root {
  --primary: #1a3c6e;
  --accent: #e63946;
  --dark: #10233f;
  --text: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #dbe4ee;
  --shadow: 0 16px 40px rgba(16, 35, 63, 0.12);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section-sm {
  padding: 36px 0;
}

.section-title {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: clamp(1.45rem, 5vw, 2.5rem);
  line-height: 1.2;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.16);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.topbar {
  background: var(--dark);
  color: #d9e4f2;
  font-size: 0.92rem;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0;
}

.topbar-info,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a:hover,
.footer a:hover,
.service-list a:hover {
  color: var(--accent);
}

.topbar-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--dark);
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
}

.site-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(26, 60, 110, 0.08);
  color: var(--primary);
}

.nav-actions {
  display: none;
}

.hero {
  background:
    linear-gradient(135deg,
      rgba(19, 43, 77, 0.411) 0%,
      rgba(26, 60, 110, 0.479) 55%,
      rgba(40, 79, 135, 0.301) 100%),
    url('../img/hero-1.png') center / cover no-repeat;
  color: var(--white);
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero p {
  color: #dde8f6;
  max-width: 700px;
  font-size: 0.97rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 20px 0 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f6f9fc;
}

.hero-card {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.15);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-points div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card,
.service-card,
.review-card,
.info-card,
.stat-card,
.policy-card,
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-icon,
.reason-icon,
.step-icon,
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
  font-size: 1.25rem;
}

.service-card h3,
.reason-card h3,
.review-card h3,
.info-card h3,
.policy-card h3 {
  margin: 0;
  color: var(--dark);
}

.service-card p,
.reason-card p,
.review-card p,
.policy-card p,
.info-card p,
.info-card a,
.footer p,
.footer li {
  color: var(--muted);
}

.service-card .btn {
  margin-top: auto;
}

.reason-grid,
.stat-grid,
.review-grid,
.policy-grid,
.steps-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.reason-card {
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.about-split,
.contact-grid,
.cta-box,
.page-intro {
  display: grid;
  gap: 24px;
  align-items: center;
}

.about-image img,
.page-photo img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 20px;
  background: #e7eef7;
}

.check-list,
.policy-list,
.footer-links,
.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li,
.policy-list li,
.service-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
}

.check-list i,
.policy-list i,
.service-list i,
.star-row i {
  color: #f59e0b;
}

.stats {
  background: linear-gradient(135deg, #18345d 0%, #10233f 100%);
  color: var(--white);
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.banner {
  background: linear-gradient(135deg, rgba(26, 60, 110, 0.96), rgba(16, 35, 63, 0.96));
  color: var(--white);
  border-radius: 20px;
  padding: 24px 20px;
}

.banner p {
  color: #d9e4f2;
}

.reviews {
  background: #f8fbff;
}

.review-card {
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 3rem;
  color: rgba(26, 60, 110, 0.12);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  background: var(--white);
  color: var(--dark);
}

textarea {
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(26, 60, 110, 0.15);
  border-color: var(--primary);
}

.form-note,
.small-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
}

.page-hero {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  padding: 36px 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 56px;
}

.footer-grid {
  grid-template-columns: 1fr;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-links a,
.service-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #d9e4f2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding: 18px 0;
  color: #d9e4f2;
  font-size: 0.92rem;
}

.footer-bottom-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom-wrap a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom-wrap a:hover {
  color: #fff;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 70px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.back-top {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 999;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.notice {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(26, 60, 110, 0.08);
  color: var(--primary);
  display: none;
}

.notice.show {
  display: block;
}

@media (min-width: 560px) {
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .topbar-inner,
  .footer-bottom-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid,
  .review-grid,
  .steps-grid,
  .policy-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .hero {
    padding: 96px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

  .about-split,
  .contact-grid,
  .page-intro,
  .cta-box {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid,
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .policy-grid,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floating-call {
    bottom: 16px;
  }
}

/* ── Extra mobile polish ─────────────────────────────── */
h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 699px) {
  .page-hero {
    padding: 30px 0;
  }

  .about-image,
  .page-photo {
    display: none;
  }

  .banner {
    padding: 22px 16px;
  }

  .card,
  .service-card,
  .review-card,
  .info-card,
  .stat-card,
  .policy-card,
  .step-card,
  .reason-card {
    padding: 18px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand img {
    width: 140px;
  }

  .topbar-info {
    font-size: 0.82rem;
    gap: 10px;
  }

  .topbar-social {
    display: none;
  }

  .hero-actions .btn {
    flex: 1 1 140px;
    text-align: center;
  }

  .desktop-banner {
    display: none;
  }

  .legal-bar {
    display: none;
  }

  .hero {
    padding: 48px 0 40px;
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .about-image img,
  .page-photo img {
    min-height: 320px;
  }

  .page-hero {
    padding: 56px 0;
  }
}
