:root {
  --navy: #1f2936;
  --navy-2: #111827;
  --red: #c71f25;
  --red-dark: #9f1117;
  --ink: #172033;
  --muted: #647084;
  --line: #e6e9ee;
  --soft: #f6f7f9;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; }
.section { padding: 86px 0; }
.section.soft { background: var(--soft); }
.section-title { max-width: 720px; margin-bottom: 38px; }
.section-title h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -.035em; }
.section-title p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.topbar { background: var(--navy-2); color: #e7ebf0; font-size: .9rem; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.topbar a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(230,233,238,.85); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 48px; height: 54px; object-fit: cover; object-position: center; border-radius: 6px; }
.brand-text { display:flex; flex-direction:column; line-height:1; }
.brand-name { display:flex; align-items:baseline; gap:.12em; font-size:1.05rem; line-height:1; white-space:nowrap; }
.brand-name .ever { color: var(--navy); }
.brand-name .guard { color: var(--red); }
.brand small { display: block; color: var(--navy); font-size: .68rem; letter-spacing: .11em; margin-top: 4px; white-space:nowrap; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .95rem; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-8px; width:0; height:2px; background:var(--red); transition:.2s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-toggle { display:none; border:0; background:transparent; width:44px; height:44px; cursor:pointer; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--navy); margin:5px auto; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:48px; padding:0 21px; border-radius:8px; border:1px solid transparent; font-weight:800; cursor:pointer; transition:.2s ease; }
.btn-primary { background:var(--red); color:#fff; box-shadow:0 8px 24px rgba(199,31,37,.22); }
.btn-primary:hover { background:var(--red-dark); transform:translateY(-1px); }
.btn-secondary { background:#fff; border-color:#d7dce3; color:var(--navy); }
.btn-secondary:hover { border-color:#b8c0ca; transform:translateY(-1px); }
.btn-dark { background:var(--navy-2); color:#fff; }

.hero { position:relative; overflow:hidden; background:#fff; }
.hero-slideshow { position:absolute; inset:0; z-index:0; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1s ease-in-out; transform:scale(1.03); }
.hero-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.78) 56%, rgba(255,255,255,.46) 100%); }
.hero .container { position:relative; z-index:2; min-height:650px; display:flex; align-items:center; padding-top:76px; padding-bottom:76px; }
.hero-copy { max-width:700px; }
.hero h1 { font-size:clamp(3rem,7vw,5.65rem); line-height:.95; letter-spacing:-.055em; margin:12px 0 24px; max-width:760px; }
.hero h1 .accent { color:var(--red); }
.hero p { color:var(--muted); max-width:650px; font-size:1.16rem; margin:0 0 30px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }
.hero-meta { display:flex; flex-wrap:wrap; gap:20px; margin-top:30px; color:#4d5868; font-size:.94rem; font-weight:700; }
.hero-meta span { display:flex; align-items:center; gap:8px; }
.dot { width:7px; height:7px; background:var(--red); border-radius:50%; display:inline-block; }

.trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.trust-item { padding:24px 28px; border-right:1px solid var(--line); }
.trust-item:last-child { border-right:0; }
.trust-item strong { display:block; color:var(--navy); font-size:1.05rem; }
.trust-item span { color:var(--muted); font-size:.92rem; }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:28px; box-shadow:0 8px 24px rgba(16,24,40,.04); transition:.22s ease; }
.card:hover { transform:translateY(-4px); box-shadow:0 18px 42px rgba(16,24,40,.08); border-color:#d7dce3; }
.icon { width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background:#fff0f1; color:var(--red); margin-bottom:20px; }
.icon svg { width:24px; height:24px; }
.card h3 { margin:0 0 10px; font-size:1.22rem; }
.card p { color:var(--muted); margin:0; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.feature-box { background:var(--navy-2); color:#fff; border-radius:20px; padding:38px; position:relative; overflow:hidden; }
.feature-box::before { content:""; position:absolute; width:240px; height:240px; border-radius:50%; background:rgba(199,31,37,.16); right:-70px; top:-80px; }
.feature-box > * { position:relative; }
.feature-box h3 { font-size:2rem; line-height:1.1; margin:0 0 16px; }
.feature-box p { color:#c7cfda; }
.check-list { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:14px; }
.check-list li { display:flex; gap:11px; align-items:flex-start; }
.check { color:#fff; background:var(--red); width:24px; height:24px; border-radius:50%; display:grid; place-items:center; font-size:.78rem; font-weight:900; flex:0 0 auto; margin-top:2px; }

.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:step; }
.step { border-top:3px solid var(--red); padding:22px 16px 0 0; }
.step::before { counter-increment:step; content:"0" counter(step); color:var(--red); font-size:.84rem; font-weight:900; letter-spacing:.08em; }
.step h3 { margin:9px 0 8px; font-size:1.1rem; }
.step p { margin:0; color:var(--muted); font-size:.95rem; }

.cta { padding:76px 0; background:var(--navy-2); color:#fff; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; }
.cta h2 { font-size:clamp(2rem,4vw,3.4rem); line-height:1.05; margin:0 0 12px; max-width:720px; }
.cta p { color:#c7cfda; margin:0; }
.cta .btn-secondary { border-color:#fff; }

.page-hero { background:linear-gradient(135deg,var(--navy-2),#253142); color:#fff; padding:80px 0; position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:380px; height:380px; border:80px solid rgba(199,31,37,.14); border-radius:50%; right:-120px; top:-180px; }
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(2.8rem,6vw,4.8rem); line-height:1; letter-spacing:-.045em; margin:8px 0 14px; }
.page-hero p { color:#cbd3dd; max-width:750px; font-size:1.12rem; margin:0; }

.service-list { display:grid; gap:18px; }
.service-row { display:grid; grid-template-columns:72px 1fr; gap:20px; border-bottom:1px solid var(--line); padding:26px 0; }
.service-row:last-child { border-bottom:0; }
.service-row .number { color:var(--red); font-weight:900; }
.service-row h3 { margin:0 0 7px; font-size:1.3rem; }
.service-row p { margin:0; color:var(--muted); }

.about-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:52px; align-items:start; }
.about-logo { border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow:var(--shadow); background:#fff; padding:24px; }
.about-logo img { width:100%; height:auto; }
.about-copy p { color:var(--muted); font-size:1.04rem; }
.kpis { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:26px; }
.kpi { background:var(--soft); padding:22px; border-radius:14px; }
.kpi strong { display:block; font-size:1.2rem; }
.kpi span { color:var(--muted); font-size:.9rem; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:42px; align-items:start; }
.contact-card { background:var(--navy-2); color:#fff; padding:34px; border-radius:18px; }
.contact-card h2 { margin-top:0; }
.contact-card p { color:#c7cfda; }
.contact-lines { display:grid; gap:18px; margin-top:28px; }
.contact-line small { display:block; text-transform:uppercase; letter-spacing:.1em; color:#9fa9b8; font-weight:800; font-size:.7rem; }
.contact-line a, .contact-line span { font-size:1.08rem; font-weight:800; }
.form { border:1px solid var(--line); border-radius:18px; padding:32px; background:#fff; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:7px; margin-bottom:16px; }
.field label { font-weight:800; font-size:.91rem; }
.field input, .field textarea, .field select { width:100%; border:1px solid #d8dde5; border-radius:9px; padding:13px 14px; background:#fff; color:var(--ink); outline:none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(199,31,37,.08); }
.field textarea { min-height:140px; resize:vertical; }
.form-note { color:var(--muted); font-size:.86rem; margin-top:12px; }

.site-footer { background:#0b1018; color:#dbe1e8; padding:54px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr; gap:40px; }
.footer-brand { max-width:430px; }
.footer-brand strong { font-size:1.25rem; color:#fff; }
.footer-brand p { color:#9ea8b6; }
.footer-col h4 { color:#fff; margin:0 0 13px; }
.footer-col a { display:block; color:#aeb7c3; margin:7px 0; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid #222b37; padding-top:20px; margin-top:38px; color:#7f8998; font-size:.86rem; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

@media (max-width: 900px) {
  .topbar { display:none; }
  .nav-toggle { display:block; }
  .nav-links { position:absolute; left:0; right:0; top:78px; background:#fff; border-bottom:1px solid var(--line); padding:22px 20px 28px; flex-direction:column; align-items:stretch; gap:18px; transform:translateY(-12px); opacity:0; pointer-events:none; transition:.2s ease; box-shadow:0 18px 35px rgba(16,24,40,.09); }
  .nav-links.open { opacity:1; transform:none; pointer-events:auto; }
  .split, .about-grid, .contact-grid { grid-template-columns:1fr; }
  .hero .container { min-height:auto; padding-top:62px; padding-bottom:62px; }
  .hero-overlay { background:linear-gradient(180deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.82) 55%, rgba(255,255,255,.72) 100%); }
  .cards { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .cta-inner { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}

@media (max-width: 620px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .nav { gap: 12px; min-height: 72px; }
  .brand { gap:8px; flex:1; min-width:0; }
  .brand img { width:40px; height:46px; }
  .brand-text { min-width:0; }
  .brand-name { font-size:.86rem; }
  .brand small { font-size:.48rem; letter-spacing:.08em; }
  .hero h1 { font-size:clamp(2.65rem,16vw,4.1rem); }
  .hero p { font-size:1.04rem; }
  .trust-grid, .cards, .steps, .kpis, .form-row, .footer-grid { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid var(--line); }
  .trust-item:last-child { border-bottom:0; }
  .section { padding:68px 0; }
  .service-row { grid-template-columns:44px 1fr; }
  .contact-card, .form { padding:24px; }
}

@media (max-width: 420px) {
  .brand-name { font-size:.76rem; }
  .brand small { font-size:.42rem; letter-spacing:.07em; }
  .hero-meta { gap:12px; }
  .btn { width:100%; }
  .hero-actions { width:100%; }
}
