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

:root {
  /* Brand Colors */
  --primary-red: #c00e1a;
  --primary-red-hover: #e52b38;
  --primary-red-glow: rgba(192, 14, 26, 0.08);
  --primary-red-glow-strong: rgba(192, 14, 26, 0.25);
  
  /* Neutral Palette - Slate Dark theme & off-white light theme */
  --neutral-100: #0c0d10; /* Deep Slate-Black for main dark sections */
  --neutral-200: #14171f; /* Premium dark Slate-Black for dark cards */
  --neutral-300: #1f2430; /* Borders on dark sections */
  --neutral-900: #ffffff; /* White background */
  --neutral-800: #f8fafc; /* Crisp cool off-white light background */
  --neutral-700: #f1f5f9; /* Soft grey background for elements */
  
  /* Text Colors */
  --text-dark-primary: #f8fafc; /* White text on dark bg */
  --text-dark-secondary: #94a3b8; /* Slate gray text on dark bg */
  --text-light-primary: #0f172a; /* Deep slate text on light bg */
  --text-light-secondary: #475569; /* Medium slate text on light bg */
  --text-muted: #64748b; /* Soft slate for captions */
  
  /* Borders & Shadows */
  --border-light: rgba(15, 23, 42, 0.08);
  --border-light-hover: rgba(192, 14, 26, 0.2);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(255, 255, 255, 0.2);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 30px 0 rgba(192, 14, 26, 0.15);
  
  /* Core variables */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1200px;
  --pad: 2rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  
  /* Legacy compatibility overrides for HTML inline files */
  --red: var(--primary-red);
  --red-dark: var(--primary-red-hover);
  --red-glow: var(--primary-red-glow);
  --black: var(--neutral-100);
  --black-soft: var(--neutral-200);
  --white: var(--neutral-900);
  --light: var(--neutral-800);
  --border: var(--border-light);
  --text: var(--text-light-secondary);
}

/* === BASICS & RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) var(--neutral-100);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-100);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-hover);
}

body {
  font-family: var(--font);
  background: var(--neutral-900);
  color: var(--text-light-primary);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary-red);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* === HEADER & NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.header.solid {
  background: rgba(12, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  position: relative;
}

.nav a:not(.cta):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Highlight active page */
.nav a.active:not(.cta) {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

/* Nav Dropdown */
.nav-drop {
  position: relative;
}

.nav-drop .drop-trigger {
  cursor: pointer;
  user-select: none;
}

.nav-drop .drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neutral-200);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 230px;
  z-index: 200;
  margin-top: 0.625rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drop .drop-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.nav-drop .drop-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.nav-drop .drop-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-drop:hover .drop-menu {
  display: block;
}

/* Header Call to Action */
.nav .cta {
  background: linear-gradient(135deg, var(--primary-red) 0%, #aa000a 100%);
  color: #fff;
  padding: 0.625rem 1.375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-left: 0.75rem;
  box-shadow: 0 4px 15px rgba(192, 14, 26, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 14, 26, 0.4);
  color: #fff;
}

/* Mobile Toggle */
.toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0.625rem;
  color: #fff;
  transition: all 0.2s;
}

.toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.toggle svg {
  width: 22px;
  height: 22px;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--neutral-100);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(10%) contrast(105%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(105deg, rgba(12, 13, 16, 0.82) 25%, rgba(12, 13, 16, 0.55) 60%, rgba(12, 13, 16, 0.25) 100%),
    radial-gradient(circle at 80% 30%, rgba(192, 14, 26, 0.05) 0%, transparent 60%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-main {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(192, 14, 26, 0.3);
  border-radius: 50px;
  background: rgba(192, 14, 26, 0.08);
  box-shadow: 0 4px 15px rgba(192, 14, 26, 0.1);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(192, 14, 26, 0.1); border-color: rgba(192, 14, 26, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(192, 14, 26, 0.25); border-color: rgba(192, 14, 26, 0.6); }
  100% { box-shadow: 0 4px 15px rgba(192, 14, 26, 0.1); border-color: rgba(192, 14, 26, 0.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .hl {
  color: #fff;
  background: linear-gradient(135deg, #e52b38 0%, #a00000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-dark-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust Cards Layout */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.625rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trust-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(192, 14, 26, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(192, 14, 26, 0.12);
  border: 1px solid rgba(192, 14, 26, 0.2);
  color: #e52b38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(192, 14, 26, 0.1);
}

.trust-badge-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.trust-badge-sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dark-secondary);
  margin-top: 0.125rem;
}

/* === COMPACT HERO FOR SUBPAGES === */
.hero-sm {
  min-height: clamp(320px, 45vh, 480px);
}

.hero-sm .hero-bg img {
  opacity: 0.2;
}

.hero-sm .hero-inner {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.hero-sm .hero-main {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.hero-sm h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.hero-sm .hero-badge {
  margin-bottom: 1.25rem;
}

.hero-sm p {
  max-width: 620px;
  margin: 0 auto 2rem auto;
}

.hero-sm .hero-actions {
  justify-content: center;
}

.hero-sm .hero-trust {
  display: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 2.25rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: linear-gradient(135deg, var(--primary-red) 0%, #aa000a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(192, 14, 26, 0.2);
}

/* Button sheen effect on hover */
.btn-red::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-red:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--primary-red-hover) 0%, var(--primary-red) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 14, 26, 0.35);
}

.btn-white {
  background: #fff;
  color: var(--text-light-primary);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.btn-white:hover {
  background: var(--neutral-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary-red-hover);
  color: #fff;
  background: rgba(192, 14, 26, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(192, 14, 26, 0.15);
}

/* === SECTIONS === */
.section {
  padding: 7.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--neutral-100);
  color: #fff;
}

.section-light {
  background: var(--neutral-800);
}

/* Radial Glow effects inside dark/light sections */
.section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 14, 26, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark::before {
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, rgba(192, 14, 26, 0.04) 0%, transparent 70%);
}

.section-light::before {
  bottom: 5%;
  left: 5%;
  background: radial-gradient(circle, rgba(192, 14, 26, 0.02) 0%, transparent 70%);
}

.s-head {
  margin-bottom: 4rem;
  position: relative;
}

.s-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-red);
  margin-bottom: 1.125rem;
  padding: 0.375rem 0.875rem;
  background: var(--primary-red-glow);
  border-radius: 4px;
  border: 1px solid rgba(192, 14, 26, 0.15);
}

.section-dark .s-label {
  background: var(--primary-red);
  color: #fff;
  border: none;
  letter-spacing: 0.14em;
  padding: 0.375rem 1rem;
}

.s-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
  margin-bottom: 1rem;
}

.s-title .hl {
  color: var(--primary-red);
}

.section-dark .s-title .hl {
  color: #fff;
  background: linear-gradient(135deg, #e52b38 0%, #b80d19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.s-sub {
  color: var(--text-light-secondary);
  font-size: 1.125rem;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 0;
}

.section-dark .s-sub {
  color: var(--text-dark-secondary);
}

/* === GRID SYSTEM === */
.s-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* === CARDS === */
.s-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.s-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.s-card:hover::after {
  transform: scaleX(1);
}

.s-card:hover {
  border-color: rgba(192, 14, 26, 0.15);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(192, 14, 26, 0.05);
  transform: translateY(-6px);
}

.s-card .ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--primary-red-glow);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.s-card:hover .ico {
  background: var(--primary-red);
  color: #fff;
  transform: scale(1.05);
}

.s-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--text-light-primary);
}

.s-card p {
  color: var(--text-light-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* === DARK SECTION CARDS === */
.section-dark .s-card {
  background: var(--neutral-200);
  border-color: var(--neutral-300);
}

.section-dark .s-card h3 {
  color: #fff;
}

.section-dark .s-card p {
  color: var(--text-dark-secondary);
}

.section-dark .s-card:hover {
  border-color: rgba(192, 14, 26, 0.3);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(192, 14, 26, 0.1);
}

/* === CONTENT BLOCKS === */
.c {
  max-width: 560px;
}

.c p {
  color: var(--text-light-secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.section-dark .c p {
  color: var(--text-dark-secondary);
}

.c h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: inherit;
  letter-spacing: -0.01em;
}

.c ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.c ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.section-dark .c ul li {
  color: var(--text-dark-secondary);
}

.c ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-red);
}

/* === IMAGE FRAMES === */
.img-fr {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
}

.img-fr img {
  border-radius: 0;
  width: 100%;
  transition: transform 0.5s ease;
}

.img-fr:hover img {
  transform: scale(1.03);
}

/* === GUARANTEE BAND === */
.band {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band-red {
  background: linear-gradient(135deg, var(--primary-red) 0%, #990008 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.band-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.band .container {
  position: relative;
  z-index: 2;
}

.band h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.375rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.band p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === STATS BLOCK === */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.stat:last-child {
  border-right: none;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat .ico {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-red-hover);
  display: inline-block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(192, 14, 26, 0.2));
}

.stat:hover .ico {
  transform: scale(1.1);
}

.stat h3 {
  font-size: 3.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.625rem;
  letter-spacing: -0.03em;
}

.stat p {
  color: var(--text-dark-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === TESTIMONIALS === */
.t3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.t-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 14, 26, 0.12);
}

.t-card .mq {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-red);
  opacity: 0.06;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  pointer-events: none;
}

.t-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.t-card .t-stars {
  font-size: 0.875rem;
  color: #f59e0b;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-align: left;
}

.t-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--primary-red);
  font-size: 0.875rem;
  display: block;
}

/* === MULTISTEP FORM & UTILITIES === */
.f-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.steps {
  position: relative;
}

.step-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-dot {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  transition: background 0.4s;
}

.step-dot.active {
  background: #fff;
}

.step-dot.done {
  background: rgba(255, 255, 255, 0.4);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fade 0.4s ease;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-hdr {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.f {
  display: grid;
  gap: 1.25rem;
}

.f label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark-secondary);
  margin-bottom: 0.375rem;
}

.f input, .f select, .f textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: all 0.3s ease;
}

.f input:focus, .f select:focus, .f textarea:focus {
  outline: none;
  border-color: var(--primary-red-hover);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(192, 14, 26, 0.15);
}

.f textarea {
  min-height: 100px;
  resize: vertical;
}

.f select option {
  color: var(--text-light-primary);
  background: #fff;
}

.step-act {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* === BRANCH LOCATOR === */
.branch-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.branch-card:hover::before {
  transform: scaleY(1);
}

.branch-card:hover {
  border-color: rgba(192, 14, 26, 0.15);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(192, 14, 26, 0.05);
  transform: translateX(4px);
}

.branch-card h3 {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  color: var(--text-light-primary);
}

.branch-card span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === CONTACT US PAGE / COLS === */
.contact-cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-info-col {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: rgba(192, 14, 26, 0.15);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(192, 14, 26, 0.05);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(192, 14, 26, 0.04);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary-red);
  transform: scale(1.06) rotate(6deg);
}

.contact-card:hover .contact-card-icon svg {
  stroke: #fff;
}

.contact-card-phone {
  background: linear-gradient(135deg, rgba(192, 14, 26, 0.03) 0%, #fff 60%);
  border-color: rgba(192, 14, 26, 0.18);
  position: relative;
}

.contact-card-phone .contact-card-value {
  font-size: 1.5rem;
  color: var(--primary-red);
  letter-spacing: -0.01em;
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-light-primary);
  line-height: 1.4;
}

.contact-card-sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light-secondary);
  margin-top: 0.375rem;
}

.contact-form-col {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg), 0 20px 50px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.contact-form-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, #ff4d5a 100%);
}

.cf {
  display: grid;
  gap: 1.5rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-group label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-primary);
  margin-bottom: 0.125rem;
}

.cf-group input, .cf-group select, .cf-group textarea {
  padding: 0.9375rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9375rem;
  background: var(--neutral-800);
  color: var(--text-light-primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cf-group input:hover, .cf-group select:hover, .cf-group textarea:hover {
  border-color: rgba(192, 14, 26, 0.25);
  background: #fff;
}

.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  outline: none;
  border-color: var(--primary-red-hover);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 14, 26, 0.08);
}

.cf-group textarea {
  min-height: 110px;
  resize: vertical;
}

.cf-group select option {
  color: var(--text-light-primary);
  background: #fff;
}

/* === FOOTER === */
.footer {
  background: var(--neutral-100);
  color: var(--text-dark-secondary);
  padding: 5.5rem 0 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-link {
  display: inline-block;
}

.f-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover .f-logo {
  transform: scale(1.02);
}

.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4.5rem;
}

.f-col h3 {
  color: #fff;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.f-col p {
  color: var(--text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.f-col ul {
  list-style: none;
}

.f-col ul li {
  margin-bottom: 0.75rem;
}

.f-col ul li a {
  color: var(--text-dark-secondary);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.f-col ul li a:hover {
  color: var(--primary-red-hover);
}

.f-col .ci li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.f-col .ci .ico {
  color: var(--primary-red-hover);
  width: 1.125rem;
  text-align: center;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
}

.f-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.f-bottom a:hover {
  color: var(--primary-red-hover);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .s-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .two, .f-wrap, .t3, .contact-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .section {
    padding: 5rem 0;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
  }
  .s-head {
    margin-bottom: 3rem;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    background: var(--neutral-100);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .header.solid {
    padding: 0.875rem 0;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero .container {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-main {
    max-width: 100%;
  }
  
  .hero-badge {
    font-size: 0.6875rem;
  }
  
  /* Mobile Menu Toggle & Open State */
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-100);
    padding: 1.5rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .nav.open {
    display: flex;
  }
  
  .nav a {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
  }
  
  .nav .cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  /* Submenu for Mobile */
  .nav-drop .drop-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin-top: 0.25rem;
    min-width: auto;
    box-shadow: none;
  }
  
  .nav-drop:hover .drop-menu {
    display: none;
  }
  
  .nav-drop.open .drop-menu {
    display: block;
  }
  
  .toggle {
    display: block;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 1rem;
  }
  
  .stat:last-child {
    border-bottom: none;
  }
  
  .stat h3 {
    font-size: 2.75rem;
  }
  
  .t3, .g3, .s-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .f-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .band {
    padding: 4rem 0;
  }
  
  .band h2 {
    font-size: 1.5rem;
  }
  
  .cf-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .contact-form-col {
    padding: 2rem 1.5rem;
  }
}

/* === ABOUT PAGE ADDITIONS === */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge-item {
  background: var(--neutral-800);
  border: 1px solid var(--border-light);
  color: var(--text-light-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: default;
}

.badge-item:hover {
  background: var(--primary-red-glow);
  border-color: var(--primary-red-hover);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.section-dark .badge-item {
  background: var(--neutral-200);
  border-color: var(--neutral-300);
  color: var(--text-dark-secondary);
}

.section-dark .badge-item:hover {
  background: rgba(192, 14, 26, 0.12);
  border-color: var(--primary-red-hover);
  color: #fff;
}

.about-highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-highlight-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
  font-weight: 600;
}

.about-highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary-red-hover);
  font-weight: 900;
  font-size: 1.125rem;
}

/* === RESPONSIVE VIDEO === */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  background-color: #20ba5a;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0; }
}
@media (max-width: 767px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  animation: modalFadeIn 0.25s ease;
}

.modal-overlay.show { display: block; }

.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 301;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  max-width: 400px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: modalPop 0.35s ease;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.modal-icon.success {
  background: #dcfce7;
  color: #166534;
}

.modal-icon.error {
  background: #fce4e4;
  color: #991b1b;
}

.modal-text {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-btn {
  display: inline-block;
  padding: 0.7rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-btn.success {
  background: #c00e1a;
  color: #fff;
}

.modal-btn.success:hover {
  background: #e52b38;
}

.modal-btn.error {
  background: #c00e1a;
  color: #fff;
}

.modal-btn.error:hover {
  background: #e52b38;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
