/* ============================================
   X Defense Film — Premium Landing Page Styles
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
  --red: #D71920;
  --red-dark: #B5151B;
  --red-light: rgba(215, 25, 32, 0.08);
  --black: #000000;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-gray: #E5E5E5;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 3vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* ----- Section Spacing ----- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 70px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }

/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--red);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(215, 25, 32, 0.35);
  color: var(--white);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

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

/* ----- Diagonal SVG Dividers ----- */
.divider-top, .divider-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.divider-top { top: -1px; }
.divider-bottom { bottom: -1px; }

.divider-top svg, .divider-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-xd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar-xd.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.navbar-logo .logo-x {
  width: 44px;
  height: 44px;
}

.navbar-logo span.logo-defense {
  font-weight: 400;
  color: var(--text-muted);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}


.navbar-nav a:hover {
  color: var(--red);
}


.navbar-cta {
  padding: 11px 28px !important;
  font-size: 0.85rem !important;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 6px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%), url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 100px;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.hero-geometric {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-geometric::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
  transform: skewX(-8deg);
  transform-origin: top right;
}

.hero-geometric::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 4px;
  background: var(--red);
  transform: skewX(-25deg);
}

.hero-accent-line {
  position: absolute;
  top: 25%;
  right: 35%;
  width: 80px;
  height: 3px;
  background: var(--red);
  transform: skewX(-25deg);
  z-index: 2;
}

.hero-accent-dot {
  position: absolute;
  bottom: 30%;
  left: 8%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--red);
  border-radius: 50%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(215, 25, 32, 0.15);
}

.hero-badge i { font-size: 0.65rem; }

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
  border-top: none;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-icon {
  background: rgba(215, 25, 32, 0.8);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(215, 25, 32, 0.3);
}

.hero-stat p {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.hero-image-wrapper {
  position: relative;
  z-index: 3;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-image-badge i {
  color: var(--red);
  font-size: 1.1rem;
}

/* ============================================
   TRUSTED BY BAR
   ============================================ */
.trusted-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-gray);
  background: var(--white);
}

.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.trusted-logo:hover {
  color: var(--text-muted);
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.feature-icon i {
  font-size: 1.3rem;
  color: var(--red);
}

.feature-card:hover .feature-icon {
  background: var(--red);
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefit-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.benefit-row.reverse {
  flex-direction: row-reverse;
}

.benefit-image {
  flex: 1;
  min-width: 0;
}

.benefit-image-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}



.benefit-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}

.benefit-content {
  flex: 1;
  min-width: 0;
}

.benefit-content h2 {
  margin-bottom: 20px;
}

.benefit-content > p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.benefit-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-list-item .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--red-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-list-item .check i {
  font-size: 0.75rem;
  color: var(--red);
}

.benefit-list-item p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.benefit-list-item strong {
  color: var(--text-dark);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 15px);
  right: calc(12.5% + 15px);
  height: 2px;
  background: var(--border-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all var(--transition);
}

.process-step:hover .process-number {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   PRODUCTS SHOWCASE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 6px;
}

.product-card-body {
  padding: 28px;
}

.product-card-body h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-features span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--light-gray);
  border-radius: 6px;
  color: var(--text-body);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-price strong {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.product-link:hover {
  gap: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #FFC107;
  font-size: 0.85rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
}

.testimonial-author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-question i {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: var(--red);
  opacity: 0.08;
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================
   SAMPLE REQUEST FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 18px;
}

.form-info > p {
  margin-bottom: 32px;
  color: var(--text-muted);
}

.form-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.form-info-item .icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-info-item .icon-circle i {
  color: var(--red);
  font-size: 1rem;
}

.form-info-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-info-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sample-form {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--red);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  background: var(--light-gray);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-note i {
  color: var(--red);
  margin-right: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .navbar-logo {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
  .hero-geometric { width: 50%; }
  .benefit-row { gap: 50px; }
}

@media (max-width: 991px) {
  .section { padding: 70px 0; }
  
  .navbar-nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  
  .navbar-nav.active { display: flex; }
  .navbar-toggle { display: block; }
  
  .hero > .container > div[style] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .hero-geometric { display: none; }
  
  .features-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .process-timeline::before { display: none; }
  
  .benefit-row,
  .benefit-row.reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .section { padding: 55px 0; }
  
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  
  .hero-image img { height: 300px; }
  
  .features-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-white {
    width: 100%;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .trusted-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============================================
   UTILITY: CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-lg {
  max-width: 1320px;
}

/* ============================================
   COOKIE / NOTIFICATION BAR (optional)
   ============================================ */
.notification-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-gray);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.notification-bar.visible {
  transform: translateY(0);
}

.notification-bar p {
  font-size: 0.85rem;
  color: var(--text-body);
}

.notification-bar .btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ============================================
   COUNTER ANIMATION SUPPORT
   ============================================ */
.counter-animated {
  display: inline;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-gray);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   CUSTOM ADDITIONS FOR PREMIUM LOOK
   ============================================ */

.cta-premium {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background-color: #050505;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.z-10 {
  z-index: 10;
  position: relative;
}

.process-timeline-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline-5::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-gray);
  z-index: 0;
}

@media (max-width: 991px) {
  .process-timeline-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline-5::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .process-timeline-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .process-timeline-5 {
    grid-template-columns: 1fr;
  }
}
