﻿:root {
  --brand-red: #E31E24;
  --dark-red: #9B111E;
  --bg: #FFFFFF;
  --light: #F8F9FA;
  --text: #1A1A1A;
  --muted: #555;
  --footer: #190708;
  --border: #e7e7e7;
}
html {
  overflow-y: scroll;
}


* { box-sizing: border-box; }
/* html 
{ 
  scroll-behavior: smooth; 
} */
body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 80rem;   /* 1280px same as max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 130px;   /* 24px */
  padding-right: 130px;  /* 24px */
}


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.logo span { color: var(--brand-red); }

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu a {
  font-weight: 600;
  transition: color .25s ease;
}
.menu a:hover,
.menu a.active { color: var(--brand-red); }

.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 700;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--brand-red);
  color: #fff;
}
.btn-primary:hover { background: var(--dark-red); }
.btn-outline {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-red);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--dark-red);
}
.btn-light:hover {
  background: var(--brand-red);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(227, 30, 36, .12), rgba(227, 30, 36, 0));
}
.hero::after {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(227, 30, 36, .1), rgba(227, 30, 36, 0));
}

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

.lead {
  font-size: 1.1rem;
  color: #444;
  max-width: 68ch;
}
.highlight { color: var(--brand-red); }

.section {
  padding: 78px 0;
}
.section-light { background: var(--light); }
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.eyebrow {
  color: var(--brand-red);
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.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: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.service-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(227, 30, 36, 0.14);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(227, 30, 36, .25);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split-panel {
  background: linear-gradient(145deg, #fff, #f7f7f7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.bullet-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.bullet-list .dot {
  color: var(--brand-red);
  font-weight: 700;
}

.process-step {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.process-step .n {
  color: var(--brand-red);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

.cta-block {
  background: var(--dark-red);
  color: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 56px 20px;
}

.footer {
  background: var(--footer);
  color: #fff;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer a {
  color: #f0f0f0;
  transition: color .25s ease;
}
.footer a:hover { color: var(--brand-red); }
.footer small {
  display: block;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #c8c8c8;
}

.social {
  display: flex;
  gap: 10px;
}
.social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 120;
  transition: background .25s ease;
}
.whatsapp-float:hover { background: var(--dark-red); }

.page-hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, #fff, #fafafa);
  border-bottom: 1px solid var(--border);
}
.page-hero p { max-width: 70ch; }

.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(227, 30, 36, .18);
  border-color: var(--brand-red);
}

.hide-mobile { display: inline-flex; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .menu.open { display: flex; }
  .hide-mobile { display: none; }
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid { grid-template-columns: 1fr; }
  .hero,
  .section { padding: 64px 0; }
}
