@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root { --red: #d51f2a; --ink: #26272a; --muted: #6a6b6e; --line: #e9e9ea; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; font-family: 'Manrope', Arial, sans-serif; color: var(--ink); background: #f6f6f4; }
.page-shell { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 10% 0%, #fff 0, transparent 38%), linear-gradient(145deg, #f7f7f5, #ececea); }
.card { width: min(100%, 1080px); min-height: 680px; overflow: hidden; display: grid; grid-template-columns: 42% 58%; grid-template-rows: 1fr auto; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.9); border-radius: 26px; box-shadow: 0 24px 70px rgba(41, 42, 43, .13); }
.brand-wrap { grid-row: 1 / 2; display: grid; place-items: center; padding: 46px; background: #fff; border-right: 1px solid var(--line); }
.brand { width: min(100%, 380px); height: auto; display: block; }
.content { align-self: center; padding: 64px 68px 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(213,31,42,.11); }
h1 { margin: 22px 0 20px; font-size: clamp(35px, 4.3vw, 60px); line-height: 1.08; letter-spacing: -.055em; }
h1 em { color: var(--red); font-style: normal; }
.intro { max-width: 500px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 38px; }
.contact-card { display: flex; align-items: center; gap: 12px; min-height: 76px; padding: 14px; color: inherit; text-decoration: none; border: 1px solid var(--line); border-radius: 14px; transition: .2s ease; }
.contact-card:hover { border-color: rgba(213,31,42,.45); transform: translateY(-2px); box-shadow: 0 9px 22px rgba(41,42,43,.08); }
.icon { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--red); font-size: 18px; }
.phone { font-size: 21px; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { margin-bottom: 4px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.contact-card strong { font-size: 12px; overflow-wrap: anywhere; }
footer { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding: 20px 32px; color: #898a8c; border-top: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
footer span:first-child { color: var(--red); }
@media (max-width: 760px) { .page-shell { padding: 14px; } .card { display: block; min-height: 0; border-radius: 20px; } .brand-wrap { padding: 38px 34px 28px; border-right: 0; border-bottom: 1px solid var(--line); } .brand { max-width: 360px; } .content { padding: 42px 28px 38px; } h1 { font-size: clamp(35px, 11vw, 52px); } .contact-grid { grid-template-columns: 1fr; margin-top: 30px; } footer { padding: 18px 24px; flex-direction: column; gap: 7px; } }
