﻿:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #64748b;
  --primary: #e03145;
  --primary-2: #f25f3a;
  --secondary: #1f2c44;
  --card: #ffffff;
  --border: #e2e8f0;
  --soft: #f8fafc;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, #fff4f5 0%, transparent 24%),
    radial-gradient(circle at 100% 0%, #fff7ee 0%, transparent 26%),
    var(--bg);
  line-height: 1.55;
}
.container { width: min(1180px, 92%); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,23,42,.06);
}
.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-title { font-size: 1rem; font-weight: 800; line-height: 1.2; }
.brand-sub { font-size: .72rem; color: var(--muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .94rem;
  font-weight: 600;
}
.nav a, .drop-toggle {
  color: #334155;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 8px 0;
}
.nav a:hover, .drop-toggle:hover, .nav a.active, .drop-toggle.active { color: var(--primary); }

.dropdown { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.chev { border: solid currentColor; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); margin-top: -2px; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 370px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15,23,42,.16);
  padding: 10px;
  display: none;
}
.dropdown.open .drop-menu { display: block; }
.drop-item {
  display: block;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
}
.drop-item:hover { background: linear-gradient(90deg, #fff1f3, #fff8ef); }
.drop-item strong { display: block; color: var(--text); }
.drop-item span { display: block; color: var(--muted); font-size: .84rem; }

.quote-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
  padding: 10px 14px !important;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(224,49,69,.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  white-space: nowrap;
}
.quote-btn:hover { filter: brightness(.96); transform: translateY(-1px); color: #fff !important; }
.nav .quote-btn, .mobile-nav .quote-btn { color: #fff !important; }

.mobile-menu-btn { display: none; background:none; border:0; font-size: 1.5rem; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 10px 0 14px;
}
.mobile-nav a, .mobile-drop-toggle {
  display: block;
  text-decoration: none;
  color: #334155;
  padding: 10px 8px;
  font-weight: 600;
}
.mobile-sub { display: none; padding-left: 14px; }
.mobile-sub a { font-weight: 500; color: #475569; }
.mobile-sub.open { display: block; }
.mobile-quote {
  margin: 10px 8px 2px;
  width: calc(100% - 16px);
  text-align: center;
}
.mobile-quote-top { display: none; }

.page-hero {
  background: linear-gradient(135deg, rgba(224,49,69,.94), rgba(31,44,68,.92));
  color: #fff;
  padding: 78px 0;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(2rem, 4.8vw, 3.6rem); }
.page-hero p { margin: 0; opacity: .94; font-size: clamp(1rem, 2.1vw, 1.2rem); max-width: 900px; }

.hero-home {
  position: relative;
  min-height: 92vh;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,49,69,.78), rgba(31,44,68,.58)), url('https://images.unsplash.com/photo-1576446470246-499c738d1c8e?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NjA2ODl8MHwxfHNlYXJjaHwyfHxlbGVjdHJpY2FsJTIwcGFuZWx8ZW58MHx8fHwxNzcxMjk4NjYzfDA&ixlib=rb-4.1.0&q=85') center/cover no-repeat;
}
.hero-home > .container { position: relative; z-index: 2; text-align: center; }
.hero-home h1 { margin: 0; font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -.02em; }
.hero-home p { font-size: clamp(1.05rem, 2.2vw, 1.5rem); max-width: 860px; margin: 22px auto 28px; }
.actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--primary); box-shadow: 0 10px 20px rgba(2,6,23,.18); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-solid { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 12px 24px rgba(224,49,69,.22); }
.btn-outline:hover { background:#fff; color:var(--primary); }

.ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(224,49,69,.92);
  border-top: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  white-space: nowrap;
  overflow: hidden;
  padding: 12px 0;
  font-weight: 700;
}
.ticker-track { display: inline-flex; gap: 28px; padding-left: 100%; animation: scrollText 24s linear infinite; }

section { padding: 72px 0; }
.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #f7fbff 100%);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3.8vw, 2.7rem); letter-spacing: -.01em; }
.lead { color: var(--muted); }
.center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.05);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #fed7dc;
  box-shadow: 0 18px 35px rgba(15,23,42,.09);
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 10px 0 0 18px; padding: 0; }

.image-card img, .thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.collage img { width:100%; height: 200px; object-fit:cover; border-radius:10px; box-shadow: 0 10px 20px rgba(15,23,42,.12); }
.pills { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.pill { background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.32); border-radius:10px; padding:10px; font-size:.86rem; font-weight:600; }

.list-check { list-style: none; margin: 10px 0 0; padding: 0; }
.list-check li { margin: 8px 0; padding-left: 22px; position: relative; }
.list-check li::before { content: '✓'; color: var(--primary); position: absolute; left: 0; font-weight: 800; }

.badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.badge { background:#fff1f3; border:1px solid #ffd4d9; border-radius:999px; padding:6px 12px; font-size:.84rem; }

.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 54px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 20px; }
.footer h4 { margin: 0 0 10px; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.copy { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 14px; color: var(--muted); text-align: center; font-size: .9rem; }

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .pills { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav.open { display: block; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .collage, .pills { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .nav-row { min-height: 72px; }
  .brand img { width: 44px; height: 44px; }
  .quote-btn { min-height: 46px; font-size: .95rem; }
  .mobile-quote-top {
    display: inline-flex;
    padding: 8px 12px !important;
    min-height: 40px;
    font-size: .88rem;
    margin-left: auto;
    margin-right: 8px;
  }
}

.header .nav a.quote-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 108px;
  margin-left: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 14px !important;
  box-shadow: 0 10px 24px rgba(224,49,69,.28);
}
.header .nav a.quote-btn:link,
.header .nav a.quote-btn:visited,
.header .nav a.quote-btn:hover,
.header .nav a.quote-btn:active,
.header .nav a.quote-btn:focus {
  color: #fff !important;
}

.social-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #ffd2d8;
  background: #fff1f4;
  color: #9f1239 !important;
  font-size: 13px;
  font-weight: 700;
}
.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
}

.client-card {
  text-align: center;
}
.client-logo {
  width: 110px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eef2f7;
  padding: 6px;
}

