@font-face { font-family: "Nunito Sans"; src: url("assets/fonts/nunito-sans-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Nunito Sans"; src: url("assets/fonts/nunito-sans-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Nunito Sans"; src: url("assets/fonts/nunito-sans-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Nunito Sans"; src: url("assets/fonts/nunito-sans-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --ink: #17202b;
  --muted: #5f6975;
  --pink: #d90b55;
  --pink-dark: #ad073f;
  --soft: #f5f7f9;
  --line: #dde2e7;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 108px;
  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: clamp(1.25rem, 3vw, 1.75rem); line-height: 1.1; }
.brand small { display: block; color: var(--muted); margin-top: 3px; }
.logo-crop {
  display: block;
  width: 98px;
  height: 98px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
}
.logo-crop img { width: 750px; max-width: none; height: 97px; display: block; }
.header-phone { font-weight: 750; text-decoration: none; color: var(--pink-dark); }
.hero {
  min-height: 565px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding: 72px 0 82px;
  border-top: 1px solid var(--line);
}
.eyebrow { margin: 0 0 12px; color: var(--pink-dark); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; }
h1 { margin: 0; max-width: 760px; font-size: clamp(2.55rem, 5.5vw, 4.8rem); line-height: 1.02; letter-spacing: -.04em; }
.lead { max-width: 730px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-block; padding: 13px 19px; border-radius: 10px; font-weight: 750; text-decoration: none; }
.primary { color: white; background: var(--pink); box-shadow: 0 9px 24px rgb(217 11 85 / 20%); }
.primary:hover { background: var(--pink-dark); }
.secondary { border: 1px solid var(--line); background: white; }
.service-card { padding: 32px; border-radius: 22px; background: var(--soft); box-shadow: 0 28px 70px rgb(23 32 43 / 10%); }
.service-card h2 { margin: 0 0 20px; font-size: 1.35rem; }
.service-card ul { list-style: none; margin: 0; padding: 0; }
.service-card li { padding: 12px 0 12px 29px; border-top: 1px solid var(--line); position: relative; }
.service-card li::before { content: "✓"; position: absolute; left: 2px; color: var(--pink); font-weight: 900; }
.security { margin-bottom: 88px; padding: clamp(36px, 6vw, 64px); border-radius: 24px; background: #f7f3f5; color: var(--ink); }
.security-intro { max-width: 860px; }
.security h2 { margin: 0; max-width: 760px; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -.025em; }
.security-intro > p:last-child { max-width: 800px; margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }
.security-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 42px; padding-top: 34px; border-top: 1px solid #ddcfd5; }
.security-points article { padding: 0 22px 0 0; }
.security-points article + article { padding-left: 28px; border-left: 1px solid #ddcfd5; }
.security-points h3 { margin: 0 0 10px; color: var(--pink-dark); font-size: 1.15rem; }
.security-points p { margin: 0; color: var(--muted); }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 26px 0 38px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
footer nav { display: flex; gap: 18px; }
.legal-page { width: min(760px, calc(100% - 40px)); margin-inline: auto; padding: 64px 0 90px; }
.legal-page > a { color: var(--pink-dark); font-weight: 700; }
.legal-page h1 { margin: 54px 0 12px; font-size: clamp(2.5rem, 7vw, 4.5rem); }
.legal-page h2 { margin: 36px 0 8px; font-size: 1.3rem; }
.legal-page p { color: var(--muted); }
.legal-page hr { margin: 64px 0; border: 0; border-top: 1px solid var(--line); }
.legal-page a { color: var(--pink-dark); }

@media (max-width: 760px) {
  .site-header { min-height: 92px; }
  .logo-crop { width: 72px; height: 72px; }
  .logo-crop img { height: 72px; width: auto; }
  .header-phone { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 0; gap: 40px; }
  .security { margin-bottom: 60px; }
  .security-points { grid-template-columns: 1fr; }
  .security-points article { padding: 0; }
  .security-points article + article { padding: 24px 0 0; border-left: 0; border-top: 1px solid #ddcfd5; }
  footer { flex-direction: column; }
}
