:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --surface: #ffffff;
  --surface-soft: #f3f6fb;
  --text: #1f2a3d;
  --text-light: #5f6b7a;
  --primary: #1f3f75;
  --primary-2: #2b5aa3;
  --accent: #c7a45a;
  --border: #e3e9f2;
  --shadow: 0 15px 40px rgba(16, 32, 62, 0.12);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #f0d38f);
  color: #3f2c06;
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.92);
}

.main-nav a:hover {
  color: #fff;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-sm { padding: 10px 14px; }

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

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

.btn-secondary {
  background: #fff;
  border-color: #d0d9e8;
  color: var(--primary);
}

.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #233b68 0%, #0c1526 60%, #09101d 100%);
  color: #fff;
  padding: 64px 0 58px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.kicker,
.section-kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

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

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section {
  padding: 78px 0;
}

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

.section-head {
  margin-bottom: 28px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

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

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

.info-card,
.service-card,
.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(19, 35, 67, 0.06);
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef3ff, #f8fbff);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.info-card h3,
.service-card h3,
.trust-item h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}

.info-card p,
.service-card p,
.trust-item p,
.section p {
  color: var(--text-light);
}

.two-col {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

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

.feature-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.feature-item span {
  color: #1f8f4d;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.map-embed iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p { margin-top: 10px; }

.cta-final {
  background: linear-gradient(135deg, #0f1c34, #182d55);
  color: #fff;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-final .section-kicker,
.cta-final p { color: rgba(255,255,255,0.86); }

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0a1220;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 24px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3, .trust-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    width: min(320px, 92vw);
    flex-direction: column;
    align-items: stretch;
    background: #0d1830;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px;
    display: none;
  }

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

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

  .section { padding: 62px 0; }
}
