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

:root {
  --blue: #102a43;
  --blue-2: #183b56;
  --gold: #b08d57;
  --gold-light: #f6efe4;
  --text: #243b53;
  --muted: #627d98;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(16, 42, 67, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.22);
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero-decoration-one {
  width: 380px;
  height: 380px;
  right: -110px;
  top: 30px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.22), transparent 67%);
}

.hero-decoration-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 0;
  background: radial-gradient(circle, rgba(16, 42, 67, 0.12), transparent 67%);
}

.label,
.section-heading span,
.contact-box span,
.final-cta span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.label {
  background: var(--gold-light);
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  color: var(--blue);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 22px;
  color: var(--muted);
  max-width: 620px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(16, 42, 67, 0.24);
}

.btn-secondary {
  border: 2px solid #d8c3a5;
  color: var(--blue);
  background: var(--white);
}

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

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

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel:before {
  content: "";
  width: 170px;
  height: 170px;
  background: var(--gold-light);
  border-radius: 50%;
  position: absolute;
  right: -64px;
  top: -64px;
}

.line {
  width: 95px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin-bottom: 26px;
  position: relative;
}

.hero-panel h2 {
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 22px;
  position: relative;
}

.area-card {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  position: relative;
}

.area-card span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.area-card strong {
  color: var(--blue);
}

.quick-info {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 16px;
}

.quick-info article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.07);
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 5px;
}

.quick-info strong {
  color: var(--blue);
}

.services {
  background: var(--soft);
  padding: 82px 24px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  color: var(--blue);
  font-size: clamp(34px, 5vw, 48px);
  margin-top: 8px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 8px;
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.number {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}

.service h3 {
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 12px;
}

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

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-box {
  border-radius: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.location {
  background: linear-gradient(135deg, var(--white), var(--soft));
}

.phone {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
}

.phone span {
  color: #d8c3a5;
}

.contact-box h2 {
  font-size: 31px;
  margin-top: 14px;
}

.location h2 {
  color: var(--blue);
}

.final-cta {
  max-width: 1080px;
  margin: 8px auto 86px;
  padding: 52px 24px;
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(176, 141, 87, 0.26), transparent 35%),
    linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  margin: 8px auto 10px;
}

.final-cta p {
  color: #d9e2ec;
  margin-bottom: 26px;
}

.footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 34px 24px;
  color: var(--muted);
}

.footer strong {
  color: var(--blue);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero,
  .quick-info,
  .services-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-links a:not(.nav-cta) {
    width: calc(50% - 9px);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }
}
