:root {
  --primary: #ff3366;
  --primary-dark: #e62e5c;
  --ink: #161616;
  --muted: #5c6670;
  --bg: #f6f7f9;
  --card: #ffffff;
  --border: #e5e7eb;
  --success: #0f8f5f;
  --danger: #b42318;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
  --radius: 18px;
}

* { 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(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 999;
}
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 220px; max-height: 54px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.94rem; font-weight: 700; }
.main-nav a { text-decoration: none; color: #333; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.phone-link { font-weight: 800; text-decoration: none; }
.phone-link:hover { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; text-decoration: none; border: 0;
  cursor: pointer; font-weight: 800; line-height: 1.1; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 22px rgba(255, 51, 102, .25); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-block { width: 100%; }
.hero {
  position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden;
  color: #fff; background: #111;
}
.hero.compact { min-height: 460px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.52) 52%, rgba(0,0,0,.25));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 88px 0; }
.eyebrow { color: var(--primary); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; margin: 0 0 12px; }
.hero .eyebrow { color: #ff8aac; }
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: .96; letter-spacing: -0.055em; margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 18px; }
h3 { font-size: 1.35rem; line-height: 1.2; margin: 0 0 10px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.25rem); color: #4b5563; margin: 0; }
.hero .lead { color: rgba(255,255,255,.92); margin-top: 22px; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.section { padding: 88px 0; }
.section-sm { padding: 48px 0 56px; }
.bg-white { background: #fff; }
.bg-dark { background: #151515; color: #fff; }
.center { text-align: center; }
.max-760 { max-width: 760px; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, .05);
}
.card:hover { box-shadow: var(--shadow); }
.card .kicker { color: var(--primary); font-weight: 900; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.card p { color: var(--muted); margin: 10px 0 0; }
.card a.stretched { display: inline-block; margin-top: 18px; color: var(--primary); font-weight: 900; text-decoration: none; }
.answer-box {
  background: #fff; border-left: 5px solid var(--primary); border-radius: 14px; padding: 24px 28px;
  box-shadow: var(--shadow); margin-top: 0; position: relative; z-index: 5;
}
.answer-box strong { color: var(--ink); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: start; }
.prose { font-size: 1.06rem; color: #30343a; }
.prose p { margin: 0 0 18px; }
.prose h2 { margin-top: 46px; }
.prose h3 { margin-top: 30px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 10px 0; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: #3f4650; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900;
}
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.stat { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.22); padding: 20px; border-radius: 16px; }
.stat strong { display: block; font-size: 1.8rem; line-height: 1; }
.stat span { display: block; color: rgba(255,255,255,.78); margin-top: 8px; font-size: .94rem; }
.logo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.logo-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 16px; display: grid; place-items: center; align-content: center; gap: 10px; min-height: 112px; margin: 0; text-align: center; }
.logo-card img { max-height: 48px; object-fit: contain; filter: grayscale(16%); }
.logo-card img:hover { filter: grayscale(0); }
.logo-card figcaption { color: var(--muted); font-size: .78rem; font-weight: 800; line-height: 1.2; }
.inline-logo-section { margin: 32px 0 12px; padding: 24px; background: #f8fafc; border: 1px solid var(--border); border-radius: 18px; }
.inline-logo-section h3 { margin-top: 0; }
.inline-logo-section .logo-grid { margin-top: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.inline-logo-section .logo-card { min-height: 100px; padding: 14px; }
.logo-note { margin: 24px auto 0; max-width: 760px; color: var(--muted); }
.faq-list { display: grid; gap: 14px; margin-top: 32px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; background: transparent; border: 0; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; text-align: left; font-weight: 900; font-size: 1rem; cursor: pointer; color: var(--ink); }
.faq-question span:last-child { color: var(--primary); font-size: 1.4rem; line-height: 1; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.related-list { display: grid; gap: 12px; }
.related-list a { display: block; padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: 12px; text-decoration: none; font-weight: 800; }
.related-list a:hover { border-color: var(--primary); color: var(--primary); }
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 18px; }
.field label { display: block; font-weight: 800; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; border: 1px solid #cfd5dd; border-radius: 12px; padding: 13px 14px; font: inherit; background: #fff;
}
.field input:focus, .field textarea:focus { outline: 3px solid rgba(255,51,102,.18); border-color: var(--primary); }
.hp-field { display: none; }
.success-message, .error-message { padding: 14px 16px; border-radius: 12px; margin: 0 0 18px; }
.success-message { color: #fff; background: var(--success); font-weight: 800; }
.error-message { background: #fff1f0; color: var(--danger); border: 1px solid #ffd1cc; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.powered-section { background: linear-gradient(135deg, var(--primary), #151515); color: #fff; padding: 52px 0; }
.powered-inner { text-align: center; max-width: 740px; }
.powered-inner img { margin: 8px auto 18px; }
.powered-inner .eyebrow { color: #fff; }
.site-footer { background: #121212; color: #d7d7d7; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h2, .site-footer h3 { color: #fff; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ff8aac; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; color: #aaa; }
.article-meta { color: var(--muted); font-weight: 700; margin: 18px 0 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
th { background: #f9fafb; font-weight: 900; }

@media (max-width: 1080px) {
  .header-inner { flex-wrap: wrap; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .inline-logo-section .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-nav { order: 3; width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 22px, 1180px); }
  .header-inner { align-items: flex-start; }
  .brand-logo { width: 180px; }
  .header-actions { width: 100%; justify-content: space-between; gap: 10px; }
  .main-nav { justify-content: flex-start; gap: 10px 14px; }
  .hero { min-height: 560px; }
  .section { padding: 62px 0; }
  .section-sm { padding: 34px 0 44px; }
  .grid-2, .grid-4, .stat-strip { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card, .form-card { padding: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (max-width: 440px) {
  .logo-grid { grid-template-columns: 1fr; }
}
