
/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: #18181b; overflow-x: hidden; }

/* ── TYPOGRAPHY ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ───────────────────────────── */
:root {
  --red:       #dc2626;
  --red-dark:  #b91c1c;
  --red-light: #fef2f2;
  --black:     #0a0a0a;
  --white:     #ffffff;
  --n50:  #fafafa;
  --n100: #f4f4f5;
  --n200: #e4e4e7;
  --n400: #a1a1aa;
  --n500: #71717a;
  --n600: #52525b;
  --n700: #3f3f46;
  --n800: #27272a;
  --n900: #18181b;
}

/* ── HEADER ──────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--n200);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-letters { font-family: Georgia, serif; font-size: 1.6rem; letter-spacing: 1px; line-height: 1; }
.logo-letters .r { color: var(--red); }
.logo-sub { font-size: 0.72rem; color: var(--n500); font-weight: 500; }

/* Desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a {
  padding: 8px 12px; border-radius: 12px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--n700); text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.desktop-nav a:hover { background: var(--n100); color: var(--red); }
.desktop-nav .nav-cta {
  margin-left: 8px; background: var(--red); color: #fff !important;
  font-weight: 600; border-radius: 12px;
}
.desktop-nav .nav-cta:hover { background: var(--red-dark) !important; }
@media (max-width: 767px) { .desktop-nav { display: none; } }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 36px; height: 36px; border: none; background: none;
  cursor: pointer; border-radius: 10px; transition: background 0.18s;
}
.hamburger:hover { background: var(--n100); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--n800); border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 767px) { .hamburger { display: flex; } }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--n100);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 10px 16px; border-radius: 12px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--n700); text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu a:hover { background: var(--n100); color: var(--red); }
.mobile-menu .nav-cta {
  margin-top: 4px; text-align: center;
  background: var(--red); color: #fff !important;
  font-weight: 600;
}
.mobile-menu .nav-cta:hover { background: var(--red-dark) !important; }

/* ── HERO ────────────────────────────────── */
.hero {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 20px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 64px; align-items: center;
}
@media (max-width: 767px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 36px 20px; }
}
.hero-logo { height: 72px; width: auto; margin-bottom: 20px; object-fit: contain; object-position: left; }
@media (max-width: 767px) { .hero-logo { height: 52px; } }
.pill {
  display: inline-flex; align-items: center;
  border: 1px solid #fecaca; background: var(--red-light);
  padding: 5px 14px; border-radius: 9999px;
  font-size: 0.78rem; color: var(--red); font-weight: 500;
  letter-spacing: 0.02em; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 700; line-height: 1.13;
  letter-spacing: -0.01em; color: var(--n900);
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-desc { margin-top: 20px; font-size: 0.92rem; color: var(--n500); line-height: 1.75; max-width: 460px; }
.hero-area { margin-top: 10px; font-size: 0.72rem; color: var(--n400); letter-spacing: 0.04em; }

/* Trust cards */
.trust-col { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  background: var(--n50); border: 1px solid var(--n200);
  border-radius: 18px; padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.trust-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--n400); font-weight: 600; margin-bottom: 6px; }
.trust-value { font-size: 1.1rem; font-weight: 600; color: var(--n900); }
.trust-text  { font-size: 0.82rem; color: var(--n600); line-height: 1.65; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--n50); border: 1px solid var(--n200);
  border-radius: 18px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.stat-num { font-size: 2.5rem; font-weight: 700; color: var(--red); line-height: 1; }
.stat-label { margin-top: 8px; font-size: 0.75rem; color: var(--n600); font-weight: 500; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.btn-primary {
  background: var(--red); color: #fff;
  padding: 12px 22px; border-radius: 14px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: inline-block;
  box-shadow: 0 2px 8px rgba(220,38,38,0.25);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--n200); color: var(--n800);
  padding: 12px 22px; border-radius: 14px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── SERVICES ────────────────────────────── */
#services {
  background: var(--n50);
  border-top: 1px solid var(--n200);
  border-bottom: 1px solid var(--n200);
}
.section-inner { max-width: 1280px; margin: 0 auto; padding: 64px 20px; }
@media (max-width: 767px) { .section-inner { padding: 48px 20px; } }
.section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red); font-weight: 700; }
.section-title { margin-top: 10px; font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; letter-spacing: -0.01em; }
.section-desc { margin-top: 12px; color: var(--n600); line-height: 1.75; font-size: 0.9rem; max-width: 560px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
@media (max-width: 767px)  { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 540px) and (max-width: 767px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 540px) and (max-width: 767px) { .services-grid .card:last-child { grid-column: 1 / -1; } }

.card {
  background: #fff; border: 1px solid var(--n200);
  border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.14); transform: translateY(-3px); }
.card-img-wrap { position: relative; height: 190px; overflow: hidden; }
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.22) 100%);
}
.card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.05rem; font-weight: 600; }
.card-desc { margin-top: 8px; font-size: 0.825rem; color: var(--n500); line-height: 1.65; flex: 1; }
.card-bullets { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card-bullet { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--n700); }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── ABOUT ───────────────────────────────── */
#about { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 48px; align-items: start;
}
@media (max-width: 767px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }
.about-title { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; line-height: 1.25; margin-top: 10px; }
.about-text p { font-size: 0.9rem; color: var(--n600); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { font-weight: 600; color: var(--n800); margin-bottom: 0; }

/* ── CONTACT ─────────────────────────────── */
#contact { background: var(--black); color: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 48px; align-items: center;
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; line-height: 1.2; margin-top: 10px; color: #fff; }
.contact-desc { margin-top: 16px; color: #a1a1aa; font-size: 0.88rem; line-height: 1.75; max-width: 420px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #a1a1aa; }
.trust-check { color: #f87171; font-weight: 700; }
.service-area { margin-top: 12px; font-size: 0.7rem; color: #52525b; letter-spacing: 0.05em; }
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 28px 32px;
}
@media (max-width: 767px) { .contact-card { padding: 22px 24px; } }
.contact-card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: #71717a; font-weight: 600; }
.contact-email {
  display: block; margin-top: 10px;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600; color: #fff; text-decoration: none;
  word-break: break-all; transition: color 0.2s;
}
.contact-email:hover { color: #f87171; }
.btn-quote {
  display: inline-block; margin-top: 24px;
  background: var(--red); color: #fff;
  padding: 13px 26px; border-radius: 14px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(220,38,38,0.3);
  transition: background 0.2s, transform 0.15s;
}
.btn-quote:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center; padding: 18px 20px;
  font-size: 0.75rem; color: #52525b;
}
