:root {
  --navy: #0a1128;
  --navy-light: #1a2342;
  --navy-lighter: #2a3a5f;
  --black: #000000;
  --black-light: #1a1a1a;
  --black-lighter: #333333;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --orange: #ff4a17;
  --orange-dark: #e85a28;
  --orange-light: #ff8c61;
  --orange-glow: rgba(255, 107, 53, 0.2);
  --coral: #f77f5e;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--black);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hide default scrollbar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: none;
}

/* Scroll Progress Bar - Replaces default scrollbar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-light) 100%);
  z-index: 9999;
  transition: height 0.1s ease-out;
  box-shadow: -2px 0 8px rgba(255, 107, 53, 0.5);
  /* border-radius: 4px 0 0 4px; */
}

.scroll-progress-bar::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Backgrounds */
.section-dark {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
  color: var(--white);
  position: relative;
  width: inherit;
  overflow: hidden;
}

.section-white {
  background: var(--white);
  color: var(--gray-900);
  width: inherit;
}

.section-gray {
  background: #eee;
  color: var(--gray-900);
  width: inherit;
}

/* Background Effects for Dark Sections */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: linear-gradient(
      rgba(255, 107, 53, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: float 25s ease-in-out infinite;
}

.orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--orange) 0%, var(--orange-dark) 50%, transparent 100%);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, var(--orange) 0%, rgba(255, 74, 23, 0.8) 30%, transparent 70%);
  bottom: -400px;
  right: -300px;
  animation-delay: 12s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* Header */
header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  max-width: 100%;
  padding-top: 1.7rem;
  padding-right: 3.8rem;
  padding-left: 3.8rem;
  border-bottom: 1px solid transparent;
}

/* header.scrolled {
  background: rgba(10, 17, 40, 0.98);
  border-bottom-color: rgba(255, 107, 53, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
} */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--orange);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: var(--gray-300);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-dropdown-toggle:hover {
  color: var(--orange);
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: var(--black);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  list-style: none;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  padding-left: 1.5rem;
}

.nav-dropdown-menu a .dropdown-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.nav-dropdown-menu a .dropdown-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-dropdown-menu a .dropdown-title {
  font-weight: 600;
  color: var(--white);
}

.nav-dropdown-menu a:hover .dropdown-title {
  color: var(--orange);
}

.nav-dropdown-menu a .dropdown-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Material Button Customizations */
.btn-header-custom {
  --mdc-theme-primary: var(--orange);
  border-color: var(--gray-500);
  color: var(--gray-300);
  border-radius: 32px;
}

.btn-header-custom:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.05);
}

.btn-primary-custom {
  --mdc-theme-primary: var(--orange);
  background-color: var(--orange);
  color: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.btn-primary-custom .mdc-button__ripple {
  border-radius: 32px;
}

.btn-primary-custom:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-secondary-custom {
  --mdc-theme-primary: var(--orange);
  border-color: var(--border-dark);
  color: var(--white);
  border-radius: 32px;
}

.btn-secondary-custom:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.05);
}

.btn-submit-custom,
.btn-reset-custom {
  --mdc-theme-primary: var(--orange);
  border-color: var(--orange);
  color: var(--orange);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-submit-custom:hover,
.btn-reset-custom:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(255, 74, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

/* Hero SVG Animated Lines */
.hero-svg-lines {
  position: absolute;
  width: 40%;
  height: 100%;
  top: -15%;
  left: 5%;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

#orange-1 {
  stroke-dasharray: 630px;
  stroke-dashoffset: 630px;
  animation: drawLine 3s ease-out forwards;
}

#orange-2 {
  stroke-dasharray: 1030px;
  stroke-dashoffset: 1030px;
  animation: drawLine 2s ease-out forwards;
}

#orange-3 {
  stroke-dasharray: 800px;
  stroke-dashoffset: 800px;
  animation: drawLine 3s ease-out forwards;
}

#orange-4 {
  stroke-dasharray: 820px;
  stroke-dashoffset: 820px;
  animation: drawLine 2s 0.5s ease-out forwards;
}

#orange-5 {
  stroke-dasharray: 950px;
  stroke-dashoffset: 950px;
  animation: drawLine 3s 1s ease-out forwards;
}

#orange-fork-1 {
  stroke-dasharray: 100px;
  stroke-dashoffset: 100px;
  animation: drawLine 0.76s 0.45s ease-out forwards;
}

#orange-fork-2 {
  stroke-dasharray: 115px;
  stroke-dashoffset: 115px;
  animation: drawLine 0.5s 0.75s ease-out forwards;
}

#orange-fork-3 {
  stroke-dasharray: 90px;
  stroke-dashoffset: 90px;
  animation: drawLine 1s 1.2s ease-out forwards;
}

#orange-turn {
  stroke-dasharray: 300px;
  stroke-dashoffset: 300px;
  animation: drawLine 1.5s 2.2s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.eyebrow {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--orange-light);
  font-weight: 700;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gray-300);
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.trust-bar {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  /* border-top: 1px solid var(--border-dark); */
  animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.trust-icon {
  color: var(--orange);
}

/* Metrics Bar */
.metrics-bar {
  position: relative;
  /* background: linear-gradient(135deg, rgba(26, 35, 66, 0.95), rgba(42, 58, 95, 0.95)); */
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  margin: -3rem 0 6rem;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item {
  padding: 1.5rem;
}

.metric-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.metric-label {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.metric-source {
  color: var(--gray-500);
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0.25rem;
}

/* Sections */
section {
  position: relative;
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.section-dark .section-intro {
  color: var(--gray-300);
}

.section-white .section-intro {
  color: var(--gray-700);
}

/* Problem Cards - Material Design */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.problem-card.mdc-card {
  border-left: 4px solid var(--orange);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.problem-card.mdc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}

.problem-card.mdc-card > div {
  position: relative;
  z-index: 1;
}

.problem-card.mdc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(255, 107, 53, 0.25), inset 2px 0 0 0 var(--orange);
  border-left-width: 4px;
}

.problem-card.mdc-card:hover::before {
  opacity: 1;
}

.problem-card h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.problem-card p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.problem-impact {
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
}

.problem-impact strong {
  color: var(--orange);
  font-style: normal;
}

/* Solution Visual */
.solution-visual {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 4rem 3rem;
  margin: 3rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.section-dark .solution-visual {
  background: linear-gradient(135deg, rgba(26, 35, 66, 0.8) 0%, rgba(42, 58, 95, 0.6) 100%);
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
}

.workflow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  min-height: -webkit-fill-available;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--black);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient border effect */
.workflow-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
  transition: all 0.4s;
}

/* Gradient background glow */
.workflow-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.workflow-step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.workflow-step:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 25%, var(--orange-light) 50%, var(--orange) 75%, var(--orange-light) 100%);
  background-size: 200% 200%;
  animation: gradientRotate 3s linear infinite;
}

.workflow-step:hover::after {
  opacity: 1;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.workflow-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  flex: 0;
}

.workflow-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.workflow-step p {
  color: var(--gray-300);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.workflow-step img {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  filter: brightness(0) invert(1);
}

.workflow-step:hover img {
  transform: scale(1.1);
}

/* Differentiators - Zigzag Layout */
.differentiators-section {
  position: relative;
  overflow: hidden;
}

.section-white.differentiators-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
}

.diff-zigzag {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 4rem;
}

.diff-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.diff-feature.visible {
  opacity: 1;
}

.fade-in-left {
  transform: translateX(-60px);
}

.fade-in-left.visible {
  transform: translateX(0);
}

.fade-in-right {
  transform: translateX(60px);
}

.fade-in-right.visible {
  transform: translateX(0);
}

.diff-feature-reverse {
  grid-template-columns: 1fr 1fr;
}

.diff-feature-reverse .diff-content {
  order: 2;
}

.diff-feature-reverse .diff-visual {
  order: 1;
}

.diff-content {
  position: relative;
  z-index: 1;
}

.diff-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.diff-feature:hover .diff-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.diff-content h3 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.diff-feature:hover .diff-content h3 {
  color: var(--orange);
}

.diff-content p {
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Dark section overrides */
.section-dark .diff-content h3 {
  color: var(--white);
}

.section-dark .diff-feature:hover .diff-content h3 {
  color: var(--orange-light);
}

.section-dark .diff-content p {
  color: var(--gray-300);
}

.diff-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.section-dark .diff-badge {
  color: var(--orange-light);
}

.diff-feature:hover .diff-badge {
  background: rgba(255, 107, 53, 0.25);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.diff-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.visual-card {
  background: var(--white);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  min-width: 280px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.section-dark .visual-card {
  background: linear-gradient(135deg, var(--black-light) 0%, rgba(42, 58, 95, 0.5) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.diff-feature:hover .visual-card {
  transform: translateY(-12px) scale(1.05);
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.diff-feature:hover .visual-card::before {
  opacity: 1;
}

.visual-icon {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s;
}

.diff-feature:hover .visual-icon {
  transform: scale(1.15);
}

.visual-card span {
  color: var(--gray-700);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.section-dark .visual-card span {
  color: var(--gray-300);
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .diff-feature,
  .diff-feature-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .diff-feature-reverse .diff-content,
  .diff-feature-reverse .diff-visual {
    order: initial;
  }

  .diff-zigzag {
    gap: 4rem;
  }

  .diff-icon {
    width: 100px;
    height: 100px;
  }

  .diff-content h3 {
    font-size: 1.5rem;
  }
}

/* Feature Grid - Material Design */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card.mdc-card {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.feature-card.mdc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card.mdc-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.feature-card.mdc-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  position: relative;
  transition: transform 0.3s;
}

.feature-card.mdc-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--white);
}

.feature-card p {
  color: var(--gray-300);
  line-height: 1.7;
}

/* Testimonials - Material Design */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial.mdc-card {
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial.mdc-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(255, 107, 53, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial.mdc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.author {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.company {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Testimonials Modern - Redesigned */
.section-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.testimonial-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-modern {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.testimonial-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.testimonial-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-modern:hover::before {
  opacity: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s;
}

.testimonial-modern:hover .testimonial-avatar {
  transform: scale(1.1);
}

.avatar-initial {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.testimonial-author-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.3;
}

.testimonial-rating {
  margin-left: auto;
  display: flex;
  gap: 0.15rem;
  flex-shrink: 0;
}

.star {
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

.testimonial-modern blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testimonial-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.testimonial-modern:hover .testimonial-badge {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--orange);
  transform: translateX(4px);
}

/* Modern Stats Grid */
.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-modern {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}

.stat-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-modern:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
  border-top-width: 5px;
}

.stat-modern:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s;
}

.stat-modern:hover .stat-icon {
  transform: scale(1.15) rotateY(180deg);
}

.stat-number-modern {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.stat-label-modern {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Stats - Material Design */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.stat.mdc-card {
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border-top: 3px solid var(--orange);
}

.stat.mdc-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2);
  border-top-width: 5px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--gray-600);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 50%, var(--black-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  margin: 8rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact section - New Design */
.contact-section {
  /* background: var(--white); */
  padding: 8rem 0;
}

.contact-card-new {
  max-width: 332px;
  max-height: 827px;
  margin: 0 auto;
  background: #1f1e1e;
  border-radius: 32px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-card-new h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-new label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.form-group-full-new {
  width: 100%;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-textarea-new {
  border-radius: 24px;
  resize: vertical;
  min-height: 120px;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: var(--gray-400);
}

.gdpr-notice {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.privacy-link {
  color: #4a7cff;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-link:hover {
  color: #3461d9;
  text-decoration: underline;
}

.btn-submit-new {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  margin-top: 0.5rem;
}

.btn-submit-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.btn-submit-new:active {
  transform: translateY(-1px);
}

.form-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-footer p {
  font-size: 0.825rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.recaptcha-notice {
  font-size: 0.8rem !important;
  color: var(--gray-500);
}

.contact-form-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.underline {
  width: 80px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-input,
.form-textarea {
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.9);
  background: var(--white);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: 0 2px 4px rgba(255, 74, 23, 0.1);
  padding: calc(1rem - 1px) calc(1.25rem - 1px);
}

.form-input:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: var(--gray-400);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
  text-transform: uppercase;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: space-between;
}


.contact-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
}

.contact-info-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-item {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.3rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--black);
}

.contact-link {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 22px;
}

.contact-phone {
  text-decoration: none;
  color: var(--orange);
  font-weight: 700;
  font-size: 22px;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact-card-new {
    max-width: 95%;
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .contact-card-new h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

/* Footer */
footer {
  margin-top: 8rem;
  padding: 4rem 0 2rem;
  background: var(--black) !important;
  /* border-top: 1px solid rgba(255, 107, 53, 0.1); */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for grids */
.problem-grid .fade-in:nth-child(1) { transition-delay: 0.1s; }
.problem-grid .fade-in:nth-child(2) { transition-delay: 0.2s; }
.problem-grid .fade-in:nth-child(3) { transition-delay: 0.3s; }

.diff-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.diff-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.diff-grid .fade-in:nth-child(3) { transition-delay: 0.15s; }
.diff-grid .fade-in:nth-child(4) { transition-delay: 0.2s; }
.diff-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.diff-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }
.diff-grid .fade-in:nth-child(7) { transition-delay: 0.35s; }
.diff-grid .fade-in:nth-child(8) { transition-delay: 0.4s; }

.feature-grid .fade-in:nth-child(1) { transition-delay: 0.1s; }
.feature-grid .fade-in:nth-child(2) { transition-delay: 0.15s; }
.feature-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.feature-grid .fade-in:nth-child(4) { transition-delay: 0.25s; }
.feature-grid .fade-in:nth-child(5) { transition-delay: 0.3s; }
.feature-grid .fade-in:nth-child(6) { transition-delay: 0.35s; }

/* Footer Custom Layout */
.footer-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 8rem;
  align-items: start;
}

.footer-brand-logo-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-300);
}

.footer-brand-section {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  color: var(--gray-300);
  height: -webkit-fill-available;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin: 0;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  align-items: baseline;
}

.footer-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav-link:hover {
  color: var(--orange);
}

.footer-nav-link-primary {
  color: var(--orange);
  font-weight: 500;
}

.footer-nav-de {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flag-icon {
  font-size: 1rem;
}

/* Footer Right Section */
.footer-right-section {
  display: flex;
  flex-direction: row;
  gap: 15rem;
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Outfit", sans-serif;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-legal-link:hover {
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-300);
}

.footer-contact-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.footer-contact-address {
  line-height: 1.6;
  margin: 0;
}

.footer-contact-phone {
  text-decoration: none;
  transition: color 0.3s;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-svg-lines {
    width: 60%;
    height: 60%;
    top: 20%;
    left: -10%;
    opacity: 0.25;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .workflow {
    flex-direction: column;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-grid-custom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-right-section {
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav-link {
    font-size: 1.1rem;
  }
}

/* ============================================
   INDUSTRY PAGES STYLES
   ============================================ */

/* Swiper Carousel Styles */
.swiper-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.swiper-container .swiper {
  flex: 1;
  min-width: 0;
}

.swiper {
  width: 100%;
  padding: 1.5rem 0 4rem;
  position: relative;
}

.swiper-wrapper {
  padding-bottom: 1rem;
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

.swiper-slide > * {
  width: 100%;
}

.swiper-pagination {
  bottom: 0 !important;
  top: auto !important;
  position: absolute !important;
}

.swiper-pagination-bullet {
  background: var(--gray-600) !important;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--orange) !important;
  /* background: rgba(0, 0, 0, 0.5); */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--orange);
  color: var(--white);
} */

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  position: static;
  margin-top: 0;
  flex-shrink: 0;
}

/* Challenge Cards */
.challenge-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  box-sizing: border-box;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.challenge-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
}

.challenge-card:hover::before {
  opacity: 1;
}

.challenge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.challenge-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.challenge-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Use Case Cards */
.usecase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 280px;
  box-sizing: border-box;
}

.usecase-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.usecase-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.usecase-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.usecase-card p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.usecase-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usecase-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--gray-300);
  font-size: 0.8rem;
}

.usecase-features li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sector Cards (Critical Infrastructure) */
.sector-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 300px;
  box-sizing: border-box;
}

.sector-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.sector-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.sector-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.sector-card p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.sector-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sector-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--gray-300);
  font-size: 0.8rem;
}

.sector-features li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* Protection Cards */
.protection-card {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  transition: all 0.3s;
  height: 100%;
  min-height: 150px;
  box-sizing: border-box;
}

.protection-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.protection-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.protection-card h5 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.protection-card p {
  color: var(--gray-400);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Protection Visual Container (Automotive) */
.protection-visual {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.protection-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.protectionSwiper {
  position: relative;
  z-index: 1;
}

/* Compliance Grid (Insurance & Banking) */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.compliance-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  transition: all 0.3s;
}

.compliance-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.compliance-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.compliance-item h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.compliance-item p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Sovereignty Section (Public Sector) */
.sovereignty-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.sovereignty-content h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.sovereignty-content p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sovereignty-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sovereignty-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--gray-300);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sovereignty-features li:last-child {
  border-bottom: none;
}

.sovereignty-features li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

.sovereignty-map {
  background: rgba(255, 107, 53, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.sovereignty-map .map-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.sovereignty-map h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sovereignty-map p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.location-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Industry Pages Responsive */
@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sovereignty-visual {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 720px;
  background: var(--black);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 1.25rem 1.5rem;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner__link {
  color: #ff6b35;
  text-decoration: underline;
}

.cookie-banner__link:hover {
  color: #ff8c61;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  font-family: inherit;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

.cookie-banner__btn--primary {
  background: #ff6b35;
  color: #fff;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 540px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
