:root {
  --pink: #ed1685;
  --pink-light: #ff5ab0;
  --navy: #181c33;
  --purple: #4b163d;
  --text: #293142;
  --muted: #6b7280;
  --white: #ffffff;
  --soft: #f7f3f6;
  --border: rgba(237, 22, 133, 0.22);
  --shadow: 0 24px 60px rgba(26, 18, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

.site-header {
  background: #fff;
  height: 150px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
}

.logo {
  display: block;
  height: 150px;
  width: 180px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 165px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #2d3446;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--pink);
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  padding: 17px 25px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(237, 22, 133, 0.25);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 35%, rgba(237, 22, 133, 0.32), transparent 36%),
    linear-gradient(112deg, #171b31 0%, #23243c 45%, #5d173f 100%);
}

.pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(237, 22, 133, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.hero-inner {
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(720px, 100%);
  text-align: left;
  margin-left: 180px;
}

.eyebrow,
.section-kicker {
  color: var(--pink-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  color: var(--pink-light);
}

.hero-subtitle {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 38px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 16px 36px rgba(237, 22, 133, 0.28);
}

.btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.trust-note {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border: 2px solid rgba(237, 22, 133, 0.65);
  background: rgba(237, 22, 133, 0.16);
  border-radius: 14px;
  padding: 20px 34px;
  font-size: 18px;
  font-weight: 700;
}

.shield {
  font-size: 27px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 95px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.82), #fff);
}

.section {
  padding: 95px 0;
}

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

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0;
}

p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.narrow {
  max-width: 650px;
}

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

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

.service-card,
.why-item,
.quote-card {
  background: #fff;
  border: 1px solid rgba(24, 28, 51, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(22, 24, 48, 0.06);
}

.service-card {
  padding: 34px;
}

.icon {
  display: inline-flex;
  height: 54px;
  width: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(237, 22, 133, 0.1);
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3,
.why-item h3 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 21px;
}

.service-card p,
.why-item p {
  margin: 0;
  font-size: 15.5px;
}

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

.why-item {
  padding: 28px;
  border-top: 4px solid var(--pink);
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(24, 28, 51, 0.95), rgba(93, 23, 63, 0.92)),
    radial-gradient(circle at top right, rgba(237, 22, 133, 0.3), transparent);
}

.quote-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 48px;
  align-items: start;
}

.quote-card h2,
.quote-card p {
  color: #fff;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.75);
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 15px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-btn {
  border: 0;
  width: fit-content;
}

.site-footer {
  padding: 30px 0;
  background: #111425;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 12px 0;
  }

  .nav-wrap {
    grid-template-columns: 110px 1fr auto;
  }

  .logo {
    height: auto;
    width: 110px;
  }

  .logo img {
    width: 110px;
    height: auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    justify-self: end;
    border: 0;
    background: var(--pink);
    color: #fff;
    border-radius: 8px;
    height: 42px;
    width: 42px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .phone-btn {
    display: none;
  }

  .hero-copy {
    margin-left: 0;
    text-align: center;
  }

  .hero-actions,
  .trust-note {
    justify-content: center;
  }

  .two-col,
  .quote-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

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

  .hero-subtitle {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .trust-note {
    text-align: left;
    padding: 18px;
    font-size: 15px;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .why-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
