:root {
  --primary: #e8192c;
  --primary-dark: #c0111f;
  --primary-light: #ff3347;
  --primary-bg: rgba(232, 25, 44, 0.08);
  --dark: #1a1a2e;
  --dark2: #16213e;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #22c55e;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 50px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ========== HEADER ========== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-media {
  color: var(--primary);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-outline-red {
  padding: 9px 22px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-filled-red {
  padding: 9px 22px;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-filled-red:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ========== HERO ========== */
.hero {
  padding: 120px 0 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf0f0 50%, #f0f4ff 100%);
  clip-path: ellipse(110% 100% at 50% 100%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-left { animation: fadeInLeft 0.8s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  border: 1px solid rgba(232,25,44,0.2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge::before {
  content: '●';
  font-size: 0.6rem;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .red {
  color: var(--primary);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,25,44,0.3);
}
.btn-hero-outline {
  padding: 14px 32px;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease forwards;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  animation: float 5s ease-in-out infinite;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== SECTION BASE ========== */
.section {
  padding: 90px 0;
}
.section-gray {
  background: var(--gray-50);
}
.section-dark {
  background: var(--dark);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
}
.section-header h2 .red { color: var(--primary); }
.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: var(--gray-400); }
.section-header.light .section-label { color: #ff6b7a; }

/* ========== GRID ========== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 4px 0 0 4px;
}
.service-card:hover {
  border-color: rgba(232,25,44,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========== VERTICAL CARDS ========== */
.vertical-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.vertical-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(232,25,44,0.12);
  transform: translateY(-5px);
}
.vertical-card:hover .vertical-icon {
  background: var(--primary);
  color: var(--white);
}
.vertical-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.vertical-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.vertical-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.vertical-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

/* ========== PROCESS STEPS ========== */
.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(232,25,44,0.3);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========== FEATURE LIST ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(232,25,44,0.15);
}
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card .quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card .author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-card .role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #c0111f 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.btn-cta-white {
  display: inline-block;
  padding: 14px 36px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}
.btn-cta-outline-white {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  margin-left: 12px;
}
.btn-cta-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  padding: 50px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-brand .logo .logo-text {
  color: var(--white);
}
.footer-brand .logo .logo-media {
  color: var(--primary);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.footer h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.87rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ========== MISC ========== */
.badge-new {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.4rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); gap: 18px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-right { order: -1; }
  .hero-illustration { max-width: 340px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gray-200); border-top: 1px solid var(--gray-200); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--gray-200); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section h2 { font-size: 1.6rem; }
  .btn-cta-outline-white { margin-left: 0; margin-top: 12px; }
  .hero { padding: 90px 0 50px; min-height: auto; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid var(--gray-200); }
  .stat-item:first-child { border-top: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
}

/* ========== LANDING HERO (sub-pages) ========== */
.landing-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 60%, #1a1a2e 100%);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}
.landing-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.landing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,25,44,0.18);
  border: 1px solid rgba(232,25,44,0.35);
  color: #ff6b7a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.landing-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.landing-hero p { color: rgba(255,255,255,0.65); }
.landing-hero .breadcrumb { margin-bottom: 20px; font-size: 0.85rem; }

/* ========== BTN LEGACY ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,25,44,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ========== BADGE / LABEL ========== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-gold {
  background: rgba(232,25,44,0.1);
  color: var(--primary);
  border: 1px solid rgba(232,25,44,0.2);
}
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.divider-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ========== TRUST BADGES (vertical pages) ========== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 32px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-badge .icon {
  font-size: 1rem;
}

/* ========== SECTION HEADER EXTRA ========== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label { display: block; }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
}
.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 12px auto 0;
}

/* ========== LANDING LAYOUT ========== */
.landing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}
.landing-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.landing-content p {
  color: var(--gray-600);
  line-height: 1.85;
}

/* ========== SERVICES LIST (homeservices detail) ========== */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}
.service-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
}

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s;
  min-width: 20px;
  text-align: center;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-question:hover { background: var(--gray-50); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 20px 18px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ========== LEAD FORM (sidebar) ========== */
.landing-sidebar { position: sticky; top: 90px; }
.lead-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.lead-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ========== BLOG CARDS ========== */
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.blog-card:hover {
  border-color: rgba(232,25,44,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.blog-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.blog-tag:hover { background: var(--primary-bg); color: var(--primary); }

/* ========== FILTER BAR ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-400);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; }

/* ========== BLOG POST CONTENT ========== */
.blog-post-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray-700);
}
.blog-post-content h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 40px 0 16px;
}
.blog-post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 30px 0 12px;
}
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content strong { color: var(--gray-900); font-weight: 700; }
.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-600);
  font-style: italic;
}

/* ========== COMPLIANCE PAGE ========== */
.compliance-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}
.compliance-page h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.compliance-page > p:first-of-type {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.compliance-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 40px 0 12px;
}
.compliance-page p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.compliance-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--gray-600);
}
.compliance-page ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }

/* ========== 404 PAGE ========== */
.page-404 {
  text-align: center;
  padding: 160px 24px 100px;
}
.page-404 h1 {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 900px) {
  .landing-layout { grid-template-columns: 1fr; }
  .landing-sidebar { position: static; }
  .landing-hero h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .services-list { grid-template-columns: 1fr; }
  .compliance-page { padding: 120px 20px 80px; }
  .compliance-page h1 { font-size: 1.8rem; }
  .page-404 h1 { font-size: 5rem; }
}
