/* ============================================
   SERIK OTO LASTİK - ANA STIL DOSYASI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #e63012;
  --primary-dark: #b8220d;
  --primary-light: #ff6b4a;
  --dark: #0f1923;
  --dark2: #1a2735;
  --dark3: #243447;
  --light: #f4f6f9;
  --text: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;
  --green: #16a34a;
  --green-light: #22c55e;
  --yellow: #fbbf24;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* ======= TOP BAR ======= */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(230,48,18,0.3);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: var(--primary-light); display: flex; align-items: center; gap: 0.3rem; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-right span { display: flex; align-items: center; gap: 0.3rem; }

/* ======= HEADER / NAV ======= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(230,48,18,0.35);
  flex-shrink: 0;
}
.logo-text span { color: var(--primary); }
.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: #fef2f0;
  color: var(--primary);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230,48,18,0.3);
}
.btn-call:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(230,48,18,0.4); }
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #128C7E; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark2); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,48,18,0.2) 0%, transparent 70%);
  z-index: -1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,48,18,0.15);
  border: 1px solid rgba(230,48,18,0.4);
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--primary-light); }
.hero .lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-chip i { color: var(--green-light); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-actions .btn { padding: 0.75rem 1.5rem; font-size: 1rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.7rem;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-light);
}
.stat-box span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.hero-img-grid img {
  border-radius: 1rem;
  object-fit: cover;
  height: 170px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.hero-img-grid img:first-child { grid-column: span 2; height: 210px; }
.hero-live-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ======= SECTION HEADER ======= */
section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: #fef2f0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

/* ======= SERVICES SECTION ======= */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: rgba(230,48,18,0.2);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.svc-icon.red { background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 6px 20px rgba(230,48,18,0.3); }
.svc-icon.green { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 6px 20px rgba(22,163,74,0.3); }
.svc-icon.blue { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 6px 20px rgba(2,132,199,0.3); }
.svc-icon.orange { background: linear-gradient(135deg, #d97706, #fbbf24); box-shadow: 0 6px 20px rgba(217,119,6,0.3); }
.svc-icon.purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 6px 20px rgba(124,58,237,0.3); }
.svc-icon.dark { background: linear-gradient(135deg, #0f1923, #243447); box-shadow: 0 6px 20px rgba(15,25,35,0.3); }
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.3rem; }
.svc-tags span {
  background: #fef2f0;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

/* ======= REGIONS SECTION ======= */
.regions { background: var(--white); }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.region-card {
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.region-card:hover, .region-card.active {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(230,48,18,0.12);
  transform: translateY(-3px);
}
.region-card .region-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(230,48,18,0.25);
}
.region-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.region-card p { font-size: 0.78rem; color: var(--text-muted); }
.region-card .region-link {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ======= WHY US ======= */
.why { background: var(--dark); color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.why h2 span { color: var(--primary-light); }
.why .lead { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.why-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
}
.why-item .wi-icon {
  width: 36px;
  height: 36px;
  background: rgba(230,48,18,0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.why-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.why-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.why-visual { position: relative; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.why-card h3 i { color: var(--primary-light); }
.call-highlight {
  background: linear-gradient(135deg, rgba(230,48,18,0.2), rgba(230,48,18,0.05));
  border: 1px solid rgba(230,48,18,0.3);
  border-radius: 0.75rem;
  padding: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}
.call-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-light);
  letter-spacing: -1px;
}
.call-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.why-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.why-actions .btn { width: 100%; justify-content: center; padding: 0.75rem; }

/* ======= REVIEWS ======= */
.reviews { background: var(--light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.75rem; color: var(--text-muted); }
.stars { color: var(--yellow); font-size: 0.85rem; }
.review-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.review-date { font-size: 0.72rem; color: #9ca3af; }

/* ======= MAP + FORM ======= */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.form-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,48,18,0.1);
}
textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-submit:hover { background: #128C7E; transform: translateY(-1px); }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; text-align: center; }

/* ======= FOOTER ======= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.footer-top { padding: 3rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.footer-contact-item i { color: var(--primary-light); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary-light); }

/* ======= FLOATING CTA ======= */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--primary); }
.float-wa { background: #25D366; }
.float-label {
  background: rgba(15,25,35,0.9);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.float-item { display: flex; align-items: center; }
.float-item:hover .float-label { opacity: 1; transform: translateX(0); }

/* ======= BREADCRUMB ======= */
.breadcrumb {
  background: var(--light);
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 0.4rem; }

/* ======= PAGE HERO (İç Sayfalar) ======= */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(230,48,18,0.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.page-hero h1 span { color: var(--primary-light); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 1.2rem; }
.page-hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ======= CONTENT SECTIONS ======= */
.content-section { padding: 3.5rem 0; }
.content-section.bg-light { background: var(--light); }
.content-section.bg-dark { background: var(--dark); color: #fff; }
.text-col h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.text-col h2 span { color: var(--primary); }
.text-col p { color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.75; }
.text-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.text-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.text-col ul li i { color: var(--green); margin-top: 0.15rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.info-box {
  background: #fef2f0;
  border-left: 4px solid var(--primary);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  margin: 1rem 0;
}
.info-box strong { color: var(--primary-dark); }

/* ======= FAQ ======= */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  transition: var(--transition);
}
.faq-q:hover { background: #fef2f0; color: var(--primary-dark); }
.faq-q.open { background: #fef2f0; color: var(--primary-dark); }
.faq-q i { transition: var(--transition); color: var(--primary); }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: #fff;
}
.faq-a.open { max-height: 300px; padding: 0.75rem 1.25rem 1rem; }

/* ======= CTA BAND ======= */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.cta-band p { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-actions .btn { padding: 0.8rem 1.75rem; font-size: 1rem; }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: #fef2f0; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.6rem 1rem; border-radius: 0.5rem; }
  .nav-cta .btn-call span { display: none; }
  
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero { min-height: 75vh; }
  
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .top-bar { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
