* {
  box-sizing: border-box;
}

:root {
  --navy: #101827;
  --navy-2: #0a1020;
  --gold: #c6922e;
  --gold-light: #e2b85d;
  --text: #1f2937;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f6f7f9;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  background: rgba(16, 24, 39, 0.96);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: .02em;
}

.brand span {
  display: block;
  color: #cbd5e1;
  font-size: 13px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

nav {
  display: flex;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
}

nav a {
  color: #f8fafc;
  text-decoration: none;
}

nav a:hover {
  color: var(--gold-light);
}

.hero {
  min-height: 740px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10,16,32,.94) 0%, rgba(10,16,32,.83) 48%, rgba(10,16,32,.48) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 850px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.lead {
  font-size: 21px;
  color: #e5e7eb;
  max-width: 760px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: var(--navy-2);
}

.btn.outline {
  color: var(--white);
  border: 2px solid rgba(255,255,255,.9);
}

.full {
  width: 100%;
}

.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  border-top: 6px solid var(--gold);
}

.hero-card h2 {
  font-size: 30px;
}

.card-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 26px 0;
}

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

.trust-grid div {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.trust-grid strong {
  display: block;
  font-size: 18px;
}

.trust-grid span {
  color: #cbd5e1;
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p,
.split p,
.cta p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.feature-list,
.contact-card,
.cta-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(16,24,39,.07);
}

.service-card {
  min-height: 218px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gold);
}

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

.dark-section {
  background: var(--navy);
  color: var(--white);
}

.dark-section p {
  color: #d1d5db;
}

.split {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 48px;
  align-items: center;
}

.feature-list {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.feature-list p {
  color: var(--white);
  font-weight: 800;
  margin: 14px 0;
}

.about {
  background: var(--bg);
}

.photo-panel {
  min-height: 430px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(16,24,39,.12), rgba(16,24,39,.12)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(16,24,39,.14);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.cta {
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-top: 6px solid var(--gold);
}

.cta-box p {
  max-width: 760px;
}

.contact-section {
  background: var(--navy-2);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  color: var(--text);
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
}

footer {
  background: #050914;
  color: #cbd5e1;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 920px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }
}


.reviews{background:#f8f9fb;}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px;}
.review-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:26px;box-shadow:0 12px 35px rgba(0,0,0,.08);}
.stars{color:#d4af37;font-size:24px;margin-bottom:12px;}
@media(max-width:920px){.reviews-grid{grid-template-columns:1fr;}}


.review-form-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(16,24,39,.08);
}

.review-form {
  display: grid;
  gap: 16px;
}

.review-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #101827;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
  color: #1f2937;
  background: #ffffff;
}

.review-form textarea {
  resize: vertical;
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 700 !important;
  color: #667085 !important;
}

.checkbox-line input {
  width: auto;
  margin-top: 5px;
}

.hidden {
  display: none;
}

@media(max-width:920px){
  .review-form-wrap {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
