/* =========================================================
   G-FORCE FIRE SERVICES — Premium Glassmorphism Stylesheet
   ========================================================= */

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

/* ── CSS Variables ── */
:root {
  --red:        #C8102E;
  --red-dark:   #8B0000;
  --red-light:  #E63950;
  --orange:     #E8500A;
  --amber:      #F4A020;
  --white:      #FFFFFF;
  --off-white:  #FAF9F7;
  --glass-bg:   rgba(255,255,255,0.72);
  --glass-bg2:  rgba(255,255,255,0.50);
  --glass-border: rgba(255,255,255,0.85);
  --glass-shadow: 0 8px 40px rgba(180,40,20,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --text-dark:  #1A1210;
  --text-mid:   #3D2B28;
  --text-muted: #7A6460;
  --surface:    #F5F0EE;
  --gradient-bg: linear-gradient(135deg, #FFF5F3 0%, #FFF8F0 40%, #FFF3EE 70%, #FDF5F0 100%);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-impact:  'Bebas Neue', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Animated Background ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #FFF5F3 0%, #FFF9F5 35%, #FFF5EE 65%, #FDF4F0 100%);
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}
.bg-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #FFCDD2 0%, transparent 70%); top: -200px; right: -150px; animation-delay: 0s; }
.bg-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #FFE0B2 0%, transparent 70%); bottom: 0; left: -150px; animation-delay: -6s; }
.bg-orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, #FFCCBC 0%, transparent 70%); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -12s; }
.bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-40px) scale(1.05); }
  66%       { transform: translateY(20px) scale(0.96); }
}

/* ── Glass Utility ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.glass-2 {
  background: var(--glass-bg2);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 4px 24px rgba(180,40,20,0.08);
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(200,16,46,0.10);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-brand { font-family: var(--font-impact); font-size: 1.55rem; letter-spacing: 0.05em; color: var(--text-dark); line-height: 1; }
.nav-brand span { color: var(--red); }
.nav-tagline { font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: rgba(200,16,46,0.07);
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white !important;
  border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.45);
  background: rgba(200,16,46,0.07) !important;
  background: linear-gradient(135deg, #B00D28 0%, var(--red) 100%) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,16,46,0.10);
  padding: 1.5rem;
  flex-direction: column; gap: 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}
.mobile-menu .nav-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

/* ── Sections Common ── */
.section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em { color: var(--red); font-style: normal; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.20);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-heading em { color: var(--red); font-style: normal; display: block; }
.hero-heading .outline-text {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
  border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(200,16,46,0.38);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,16,46,0.48);
}
.btn-secondary {
  padding: 0.85rem 2rem;
  background: var(--glass-bg);
  color: var(--text-dark);
  border: 1.5px solid rgba(200,16,46,0.25);
  border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover {
  background: rgba(200,16,46,0.07);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-impact);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Hero Float Cards */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-main-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(200,16,46,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.hero-card-icon svg { width: 28px; height: 28px; fill: white; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.hero-card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(180,40,20,0.12);
  animation: float-gentle 5s ease-in-out infinite;
}
.float-card-1 {
  bottom: 80px; right: -20px;
  animation-delay: -2s;
}
.float-card-2 {
  bottom: 0; left: 30px;
  animation-delay: -4s;
}
.float-card-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.3rem; }
.float-card-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text-dark); }
.float-card-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: rgba(200,16,46,0.09);
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; color: var(--red);
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Trust Strip ── */
.trust-strip {
  padding: 2rem;
  border-top: 1px solid rgba(200,16,46,0.10);
  border-bottom: 1px solid rgba(200,16,46,0.10);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(16px);
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
}
.trust-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(200,16,46,0.10) 0%, rgba(232,80,10,0.10) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; fill: var(--red); }
.trust-text { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }
.trust-text span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.73rem; }
.trust-divider { width: 1px; height: 36px; background: rgba(200,16,46,0.15); }

/* ── Product Cards Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0) 60%, rgba(200,16,46,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(200,16,46,0.14), 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(200,16,46,0.22);
}
.product-card:hover::after { opacity: 1; }
.product-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.product-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,16,46,0.10) 0%, rgba(232,80,10,0.10) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.product-icon svg { width: 26px; height: 26px; fill: var(--red); transition: var(--transition); }
.product-card:hover .product-icon svg { fill: white; }
.product-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,16,46,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  opacity: 0;
}
.product-card:hover .product-arrow { opacity: 1; }
.product-arrow svg { width: 14px; height: 14px; fill: var(--red); }
.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.product-tag {
  display: inline-block; margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(200,16,46,0.07);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--red);
}

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.12);
  border-color: rgba(200,16,46,0.20);
}
.industry-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, rgba(232,80,10,0.08) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}
.industry-name {
  font-weight: 600; font-size: 0.9rem;
  color: var(--text-mid);
}

/* ── Featured Systems ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.featured-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(200,16,46,0.15);
}
.featured-card.large {
  grid-row: span 2;
  display: flex; flex-direction: column; justify-content: space-between;
}
.featured-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.featured-card-num {
  font-family: var(--font-impact);
  font-size: 5rem;
  color: rgba(200,16,46,0.06);
  position: absolute; bottom: 1.5rem; right: 2rem;
  line-height: 1;
}
.featured-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; color: var(--red);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.featured-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  margin-bottom: 0.75rem;
}
.featured-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.featured-list {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.featured-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-mid);
}
.featured-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-big-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200,16,46,0.35);
}
.why-big-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.why-big-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.why-big-num {
  font-family: var(--font-impact);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-big-label { font-size: 1rem; opacity: 0.85; line-height: 1.5; }
.why-float-badges {
  position: absolute; bottom: -20px; right: -20px;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.why-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.why-badge-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.why-badge-val { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); }

.why-points {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.why-point {
  display: flex; gap: 1.25rem;
  align-items: flex-start;
}
.why-point-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, rgba(232,80,10,0.08) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,16,46,0.14);
}
.why-point-icon svg { width: 22px; height: 22px; fill: var(--red); }
.why-point-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.why-point-text { font-size: 0.865rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA Section ── */
.cta-section {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  background: linear-gradient(135deg, var(--red) 0%, #B80D25 50%, var(--orange) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(200,16,46,0.35);
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") repeat;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
}
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.80); max-width: 520px; margin: 0 auto 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  padding: 0.9rem 2.2rem;
  background: white;
  color: var(--red);
  border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.20); }
.btn-outline-white {
  padding: 0.9rem 2.2rem;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ── Footer ── */
footer {
  background: rgba(20,8,6,0.96);
  backdrop-filter: blur(20px);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 20px; height: 20px; fill: white; }
.footer-brand-name { font-family: var(--font-impact); font-size: 1.4rem; color: white; letter-spacing: 0.05em; }
.footer-brand-name span { color: var(--red); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.6rem; font-size: 0.82rem;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: white; margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.86rem; color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-link:hover { color: white; }
.footer-link::before { content: '→'; font-size: 0.7rem; color: var(--red); opacity: 0; transition: var(--transition); }
.footer-link:hover::before { opacity: 1; }
.footer-cert-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem;
}
.footer-cert {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(200,16,46,0.10);
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-links-row { display: flex; gap: 1.5rem; }
.footer-links-row a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-links-row a:hover { color: white; }

/* ── About Page ── */
.about-hero {
  padding: 9rem 2rem 5rem;
  position: relative;
}
.about-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.about-hero-text h1 em { color: var(--red); font-style: normal; }
.about-hero-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.85rem; }
.about-card-stack { position: relative; height: 400px; }
.about-card-main, .about-card-float {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
}
.about-card-main { inset: 0 40px 40px 0; }
.about-card-float {
  bottom: 0; right: 0; width: 200px;
  text-align: center;
  animation: float-gentle 5s ease-in-out infinite;
}
.about-card-float-num {
  font-family: var(--font-impact);
  font-size: 2.8rem; color: var(--red); line-height: 1;
}
.about-card-float-label { font-size: 0.78rem; color: var(--text-muted); }

.vmv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.vmv-card {
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
}
.vmv-card::before {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(200,16,46,0.05);
  border-radius: 50%;
}
.vmv-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(200,16,46,0.30);
}
.vmv-icon svg { width: 24px; height: 24px; fill: white; }
.vmv-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem;
}
.vmv-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(200,16,46,0.25) 15%, rgba(200,16,46,0.25) 85%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: start; margin-bottom: 3rem;
}
.timeline-left { padding-right: 2.5rem; text-align: right; }
.timeline-right { padding-left: 2.5rem; }
.timeline-item:nth-child(even) .timeline-left { order: 3; text-align: left; padding-left: 2.5rem; padding-right: 0; }
.timeline-item:nth-child(even) .timeline-center { order: 2; }
.timeline-item:nth-child(even) .timeline-right { order: 1; text-align: right; padding-right: 2.5rem; padding-left: 0; }
.timeline-center { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,16,46,0.40);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-dot svg { width: 20px; height: 20px; fill: white; }
.timeline-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
}
.timeline-year {
  font-family: var(--font-impact);
  font-size: 1.6rem; color: var(--red); margin-bottom: 0.25rem;
}
.timeline-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.timeline-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Cert grid */
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.cert-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(200,16,46,0.12); }
.cert-logo {
  font-family: var(--font-impact);
  font-size: 2rem; color: var(--red); margin-bottom: 0.5rem;
}
.cert-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.3rem; }
.cert-detail { font-size: 0.78rem; color: var(--text-muted); }

/* ── Contact Page ── */
.contact-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 16px 60px rgba(200,16,46,0.10);
  position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 0.45rem;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(200,16,46,0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.10);
}
.form-control.textarea { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }

.contact-info-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(200,16,46,0.12); }
.contact-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(200,16,46,0.30);
}
.contact-info-icon svg { width: 22px; height: 22px; fill: white; }
.contact-info-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; }
.contact-info-val { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); line-height: 1.5; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-weight: 600; font-size: 0.93rem;
  transition: var(--transition);
  gap: 1rem;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200,16,46,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--red); transition: transform 0.3s ease; }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── Entrance Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }
.fade-up-delay-5 { transition-delay: 0.60s; }
.fade-up-delay-6 { transition-delay: 0.72s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 0 60px 1fr; }
  .timeline-left { display: none; }
  .timeline-item:nth-child(even) .timeline-left { display: none; }
  .timeline-item:nth-child(even) .timeline-right { order: 3; text-align: left; padding-left: 2.5rem; padding-right: 0; }
  .timeline-item:nth-child(even) .timeline-center { order: 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card.large { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-card-stack { display: none; }
  .vmv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .timeline-center { margin-left: 0; }
  .timeline-item { grid-template-columns: 0 44px 1fr; }
}
