﻿:root {
  --bg: #f4f6f8;
  --bg-accent: #eef2f6;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #111827;
  --muted: #5b6472;
  --line: #d9e0e7;
  --primary: #cf1238;
  --primary-dark: #a50f2d;
  --dark: #0f172a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.04), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(217, 224, 231, 0.9);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 220px; height: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 0.96rem; font-weight: 600; transition: color 0.2s ease; }
.nav a.active, .nav a:hover, .nav a:focus-visible { color: var(--primary); }
.button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 12px 28px rgba(207, 18, 56, 0.18); }
.button:hover, .button:focus-visible { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.ghost-button { background: rgba(255,255,255,0.75); border-color: var(--line); color: var(--dark); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 0.2s ease;
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }
.mobile-panel { display: none; padding: 0 0 18px; }
.mobile-panel nav { display: grid; gap: 10px; }
.mobile-panel a { width: 100%; }
main { padding: 34px 0 0; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 34px;
  border: 1px solid rgba(217, 224, 231, 0.9);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244, 247, 250, 0.98)), #fff;
  box-shadow: var(--shadow);
}
.hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.07);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 { margin: 0 0 14px; font-size: clamp(2.4rem, 4.2vw, 4.4rem); line-height: 0.98; letter-spacing: -0.04em; }
.hero p { margin: 0; max-width: 64ch; color: var(--muted); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.section { padding: 34px 0 0; }
.card { background: var(--surface); border: 1px solid rgba(217, 224, 231, 0.9); border-radius: var(--radius-xl); box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05); }
.panel { padding: 34px; }
.section-header { max-width: 760px; margin-bottom: 24px; }
.section-header h2 { margin: 0 0 10px; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -0.03em; }
.section-header p { margin: 0; color: var(--muted); line-height: 1.8; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature, .blog-card, .stat, .service-card, .contact-card { padding: 24px; border-radius: 22px; border: 1px solid rgba(217, 224, 231, 0.9); background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.feature-number { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 16px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; }
.feature h3, .service-card h3, .blog-card h3, .contact-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.feature p, .service-card p, .blog-card p, .contact-card p, .stat p, .rich-text p, .rich-text li { margin: 0; color: var(--muted); line-height: 1.8; }
.rich-text p + p, .rich-text ul, .rich-text ol { margin-top: 16px; }
.rich-text ul, .rich-text ol { padding-left: 20px; }
.media-card { overflow: hidden; }
.media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.logo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.logo-item { min-height: 116px; display: grid; place-items: center; padding: 18px; border-radius: 20px; background: var(--surface-alt); border: 1px solid rgba(217, 224, 231, 0.85); }
.logo-item img { max-height: 58px; width: auto; object-fit: contain; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid rgba(217, 224, 231, 0.9); border-radius: 20px; overflow: hidden; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; border: 0; background: transparent; font: inherit; font-weight: 700; text-align: left; cursor: pointer; }
.faq-icon { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(15, 23, 42, 0.08); color: var(--dark); font-weight: 800; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.8; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-icon { background: var(--primary); color: #fff; }
.cta-band { padding: 38px; border-radius: 30px; background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); color: #fff; box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18); }
.cta-band h2 { margin: 0 0 12px; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.08; }
.cta-band p { margin: 0; max-width: 58ch; color: rgba(255,255,255,0.8); line-height: 1.8; }
.cta-band .button { margin-top: 22px; }
.blog-meta { display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(15, 23, 42, 0.07); color: var(--dark); font-size: 0.82rem; font-weight: 700; }
form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 8px; font-size: 0.95rem; font-weight: 600; }
input, textarea, select { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font: inherit; color: var(--text); }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.success-box { display: none; padding: 16px 18px; border-radius: 16px; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; font-weight: 600; }
.site-footer { padding: 40px 0 28px; }
.footer-card { padding: 34px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr; gap: 24px; }
.footer-title { margin: 0 0 14px; color: var(--primary); font-size: 1.05rem; }
.footer-logo { width: 220px; height: auto; margin: 0 0 14px; object-fit: contain; }
.footer-copy, .footer-links a, .footer-contact a, .footer-social a, .footer-contact span { color: var(--muted); line-height: 1.9; }
.footer-links, .footer-contact, .footer-social { display: grid; gap: 4px; }
.footer-links a:hover, .footer-contact a:hover, .footer-social a:hover { color: var(--primary); }
.footer-bottom { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.94rem; text-align: center; }
@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4, .logo-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav, .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-panel.is-open { display: block; }
  .hero, .panel, .cta-band, .footer-card { padding: 24px; }
  .grid-2, .grid-3, .grid-4, .logo-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .brand img { width: 180px; }
}
