* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #1a2233;
  --muted: #5d6a86;
  --primary: #2f5bff;
  --secondary: #00a6a6;
  --border: #d8e2f6;
  --shadow: 0 14px 30px rgba(37, 66, 166, 0.14);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  font-size: 1.55rem;
}

.logo-text strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--primary);
}

.menu-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  padding: 86px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: #e3ecff;
  color: #2e4cb2;
  border: 1px solid #cfdfff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  line-height: 1.17;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.24;
  margin-bottom: 10px;
}

.hero-content p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
}

.btn-outline {
  color: var(--primary);
  border: 1px solid #b8ccff;
  background: #eef4ff;
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.btn-light {
  color: #2343ab;
  background: #ffffff;
}

.hero-points {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 7px;
  color: #34435f;
}

.hero-media {
  background: var(--surface);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-title.no-margin {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(13, 42, 92, 0.08);
}

.card-icon {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.why-grid,
.trust-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.check-list {
  margin-top: 16px;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 8px;
}

.highlight-box {
  border-radius: 22px;
  background: linear-gradient(150deg, #2349d8 0%, #00a6a6 100%);
  color: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.highlight-box p {
  margin: 10px 0 18px;
  color: #e9f2ff;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.info-list {
  margin: 16px 0 20px;
  display: grid;
  gap: 6px;
}

.info-list a {
  color: var(--primary);
  text-decoration: none;
}

.map-wrapper {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  min-height: 330px;
  background: #fff;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 330px;
  height: 100%;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 15px 16px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.final-cta {
  padding-top: 30px;
}

.cta-box {
  border-radius: 24px;
  background: linear-gradient(130deg, #13224d, #2f5bff 60%, #00a6a6);
  padding: 42px 22px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #e3edff;
}

.site-footer {
  background: #0e1730;
  color: #d7e2fa;
  margin-top: 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 46px 0 26px;
}

.site-footer a {
  color: #b8d3ff;
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 14px;
  color: #9fb1d8;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 600;
  margin-top: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #b7c8ff;
  border-color: #8aa7ff;
}

@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .trust-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: absolute;
    right: 4%;
    top: 78px;
    width: min(320px, 92vw);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 680px) {
  .cards-4,
  .cards-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 300px;
  }
}
