/* ========================================
   GLOBAL - BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #0a0a0a;
  overflow-x: hidden;
}

/* ========================================
   GLOBAL - ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5));
  }
}

/* ========================================
   GLOBAL - REUSABLE COMPONENTS
   ======================================== */

/* Badges */
.badge {
  display: inline-block;
  background: rgba(139, 0, 0, 0.08);
  color: #8b0000;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.badge-light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #8b0000, #b00000);
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(139, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(139, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #8b0000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #fafafa;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
}

.section-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header h2 .highlight {
  color: #8b0000;
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(10, 10, 10, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   GLOBAL - BACKGROUND ELEMENTS
   ======================================== */

/* Animated Grid Pattern */
.grid-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  animation: patternMove 20s linear infinite;
  pointer-events: none;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 25s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #8b0000;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #ff4444;
  bottom: -50px;
  right: -50px;
  animation-delay: 5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: #8b0000;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

/* Large Shapes (for about/cta pages) */
.shape-large-1 {
  width: 500px;
  height: 500px;
  filter: blur(80px);
  opacity: 0.1;
}

.shape-large-2 {
  width: 400px;
  height: 400px;
  filter: blur(80px);
  opacity: 0.1;
}

/* ========================================
   GLOBAL - NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 0.7rem 5%;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

/* Active State Logic */
#home-page .home-link,
#about-page .about-link,
#services-page .services-link,
#cases-page .cases-link,
#contact-page .contact-link {
  color: #8b0000;
  font-weight: 700;
}

#home-page .home-link::after,
#about-page .about-link::after,
#services-page .services-link::after,
#cases-page .cases-link::after,
#contact-page .contact-link::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #8b0000;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff4444;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links li:last-child a {
  background: #8b0000;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-links li:last-child a:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
  color: #ffffff;
}

.nav-links li:last-child a::after {
  display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ========================================
   GLOBAL - FOOTER
   ======================================== */
footer {
  background: #0a0a0a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Main Footer Content */
.footer-main {
  padding: 80px 5% 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Brand Column */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.3rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #8b0000;
  border-color: #8b0000;
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Newsletter Column */
.footer-newsletter h4 {
  margin-bottom: 1rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Newsletter CTA Button Styling */
.newsletter-cta {
  margin-top: 1.5rem;
}

.newsletter-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-btn-link i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.newsletter-btn-link:hover {
  background: #8b0000;
  border-color: #8b0000;
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  padding: 30px 5%;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ========================================
   HOME PAGE - HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #0a0a0a 0%, #2d0000 50%, #8b0000 100%);
  overflow: hidden;
  padding-top: 80px; /* Adjust this based on your nav height */
  padding-bottom: 50px; /* Space for the trusted-by section */
}

.hero-content {
  margin-top: auto;
  margin-bottom: auto;
  z-index: 20;
  text-align: center;
  max-width: 1100px;
  padding: 40px 5%;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #ff4444 0%, #8b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(0.8rem, 3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto 3rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 1rem;
}

.hero-proof {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* Trusted By Section */
.trusted-by {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
  z-index: 10;
  margin-top: auto;
  left: 0;
  right: 0;
  text-align: center;
  animation: fadeIn 1s ease 1s both;
}

.trusted-by p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.logo-carousel {
  overflow: hidden;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.logo-track {
  display: flex;
  width: calc(250px * 20);
  animation: scroll 30s linear infinite;
  gap: 3rem;
  align-items: center;
}

.logo-track img {
  width: 150px;
  height: 50px;
  filter: grayscale(1) brightness(2);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* ========================================
   HOME PAGE - STATS SECTION
   ======================================== */
.stats-section {
  position: relative;
  background: #ffffff;
  padding: 100px 5%;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(139, 0, 0, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 0, 0, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid rgba(10, 10, 10, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:nth-child(1) {
  transition-delay: 0.1s;
}
.stat-card:nth-child(2) {
  transition-delay: 0.2s;
}
.stat-card:nth-child(3) {
  transition-delay: 0.3s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #ff4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: rgba(139, 0, 0, 0.15);
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.1);
  transform: translateY(-8px);
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #8b0000;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(10, 10, 10, 0.8);
  font-weight: 600;
  line-height: 1.4;
}

/* ========================================
   HOME PAGE - SERVICES SECTION
   ======================================== */

.services-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 100px 5%;
  overflow: hidden;
  margin-top: -30px;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(139, 0, 0, 0.05);
}

.services-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 0, 0, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(10, 10, 10, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.service-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.03),
    rgba(255, 68, 68, 0.02)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(139, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.12);
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b0000, #b00000);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
  stroke-width: 2px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
}

.service-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-content p {
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(139, 0, 0, 0.1);
  color: #8b0000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b0000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.service-cta:hover {
  gap: 0.75rem;
}

.service-cta:hover::after {
  transform: translateX(4px);
}

.services-bottom-cta {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(135deg, #8b0000, #b00000);
  padding: 4rem 3rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.services-bottom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.services-bottom-cta h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.services-bottom-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   HOME PAGE - HOW IT WORKS SECTION
   ======================================== */

.process-section {
  position: relative;
  background: #ffffff;
  padding: 80px 5%;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(139, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  pointer-events: none;
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(139, 0, 0, 0.2) 0%,
    rgba(139, 0, 0, 0.05) 100%
  );
  border-radius: 2px;
}

.step {
  position: relative;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1) {
  transition-delay: 0.1s;
}
.step:nth-child(2) {
  transition-delay: 0.3s;
}
.step:nth-child(3) {
  transition-delay: 0.5s;
}

.step:last-child {
  margin-bottom: 0;
}

/* Step Content Layout */
.step-content {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left Content (Odd steps) */
.step:nth-child(odd) .step-left {
  text-align: right;
}

.step:nth-child(odd) .step-right {
  opacity: 0;
}

/* Right Content (Even steps) */
.step:nth-child(even) .step-left {
  opacity: 0;
}

.step:nth-child(even) .step-right {
  text-align: left;
}

.step-number {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #8b0000, #b00000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
  z-index: 2;
}

.step-number-inner {
  width: 85px;
  height: 85px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.step-number-digit {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #8b0000;
  line-height: 1;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #8b0000;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.step-details {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(10, 10, 10, 0.06);
  transition: all 0.3s ease;
}

.step:hover .step-details {
  border-color: rgba(139, 0, 0, 0.2);
  box-shadow: 0 15px 50px rgba(139, 0, 0, 0.1);
  transform: translateY(-5px);
}

.step-details h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.step-details p {
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  list-style: none;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.step-features li::before {
  content: "→";
  color: #8b0000;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ========================================
   HOME PAGE - TESTIMONIAL SECTION
   ======================================== */

.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #8b0000 0%, #b00000 100%);
  padding: 100px 5%;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 {
  color: #ffffff;
}

.testimonials-header p {
  color: rgba(255, 255, 255, 0.9);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 1.35rem);
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(139, 0, 0, 0.1);
  line-height: 1;
}

.stars {
  color: #ffb800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 150px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(10, 10, 10, 0.06);
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #8b0000;
  object-fit: cover;
}

.client-details h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.client-details p {
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
  font-weight: 500;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.5rem;
  user-select: none;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
}

.view-all-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ========================================
   HOME PAGE - FOUNDER SECTION
   ======================================== */

.founder-section {
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 120px 5%;
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 0, 0, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.founder-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founder-header {
  margin-bottom: 5px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.founder-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.founder-image-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(139, 0, 0, 0.7), transparent);
  z-index: 1;
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 2rem;
}

.stat-item {
  flex: 1;
  justify-items: center;
}

.stat-item h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.founder-content {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease 0.2s forwards;
}

.founder-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.founder-title {
  font-size: 1.3rem;
  color: #8b0000;
  font-weight: 600;
  margin-bottom: 2rem;
}

.founder-bio {
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.founder-bio strong {
  color: #0a0a0a;
  font-weight: 700;
}

.achievements {
  background: #ffffff;
  border: 2px solid rgba(10, 10, 10, 0.06);
  border-radius: 16px;
  padding: 1.4rem;
  margin: 1.5rem 0;
}

.achievements h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.achievement-list {
  list-style: none;
}

.achievement-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.achievement-list svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(139, 0, 0, 0.1);
  color: #8b0000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(139, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #8b0000;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #8b0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.founder-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ========================================
   HOME PAGE - FINAL CTA SECTION
   ======================================== */

.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #2d0000 50%, #8b0000 100%);
  padding: 80px 5%;
  overflow: hidden;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.cta-headline .highlight {
  background: linear-gradient(135deg, #ff4444 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 500;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  stroke: #ff4444;
  stroke-width: 2px;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.6s ease 1s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 2.5px;
  opacity: 0.9;
}

.trust-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.urgency-note {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 10px;
  display: inline-block;
  animation: pulse 2s ease infinite;
}

.urgency-note p {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========================================
   ABOUT PAGE - HERO SECTION
   ======================================== */

.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #2d0000 50%, #8b0000 100%);
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-headline .highlight {
  color: #ff4444;
}

.hero-headline .underline {
  position: relative;
  display: inline-block;
}

.hero-headline .underline::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255, 68, 68, 0.3);
  z-index: -1;
}

/* Subheadline */
.hero-subheadline {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 3rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.values-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.values-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 2.5rem 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.values-box h3 {
  color: #ffffff; /* Pure white for the title */
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.values-box:hover {
  transform: translateY(-5px);
  border-color: #8b0000; /* Glows red on hover */
}

.values-box .header-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.against .header-icon {
  color: #e71f1f; /* Brand Red */
  filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.3)); /* Subtle glow */
}

.for .header-icon {
  color: #00ff88; /* Success Green */
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3)); /* Subtle glow */
}

.header-icon {
  width: 30px;
  height: 30px;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.values-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.against .values-list li svg {
  color: #ff4d4d;
  opacity: 0.7;
}
.for .values-list li svg {
  color: #00ff88;
  opacity: 0.7;
}

.about-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.about-scroll-indicator::after {
  content: "↓";
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* ========================================
  ABOUT PROBLEM SECTION
  ======================================== */

.problem-section {
  position: relative;
  background: #ffffff;
  padding: 120px 5%;
  overflow: hidden;
}

/* Subtle background decoration */
.problem-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 0, 0, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 80px;
}

.pain-card {
  background: #ffffff;
  border: 2px solid rgba(10, 10, 10, 0.06);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.pain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:nth-child(1) {
  transition-delay: 0.1s;
}
.pain-card:nth-child(2) {
  transition-delay: 0.2s;
}
.pain-card:nth-child(3) {
  transition-delay: 0.3s;
}
.pain-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* Left red accent bar */
.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #8b0000, #ff4444);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card:hover {
  border-color: rgba(139, 0, 0, 0.15);
  box-shadow: 0 15px 50px rgba(139, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Pain Icon */
.pain-icon {
  width: 70px;
  height: 70px;
  background: rgba(139, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.pain-icon svg {
  width: 32px;
  height: 32px;
  stroke: #8b0000;
  stroke-width: 2px;
}

.pain-card:hover .pain-icon {
  background: rgba(139, 0, 0, 0.12);
  transform: scale(1.05);
}

.pain-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 1.05rem;
  color: rgba(10, 10, 10, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* The Reality List */
.reality-list {
  list-style: none;
}

.reality-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-style: italic;
}

.reality-list li::before {
  content: '"';
  color: #8b0000;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Empathy Statement */
.empathy-statement {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.05),
    rgba(255, 68, 68, 0.03)
  );
  border: 2px solid rgba(139, 0, 0, 0.1);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  text-align: center;
  margin-top: 80px;
}

.empathy-statement h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.empathy-statement h3 .highlight {
  color: #8b0000;
}

.empathy-statement p {
  font-size: 1.15rem;
  color: rgba(10, 10, 10, 0.8);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.empathy-statement p strong {
  color: #8b0000;
  font-weight: 700;
}

/* ========================================
   RESPONSIVE - MOBILE & TABLET STYLES
   ======================================== */

/* ----------------------------------------
   LARGE TABLETS & SMALL DESKTOPS (1200px)
   ---------------------------------------- */
@media (max-width: 1200px) {
  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }

  .footer-column:nth-child(3) {
    grid-column: 1 / 2;
  }

  .footer-column:nth-child(4) {
    grid-column: 2 / 3;
  }

  .footer-newsletter {
    grid-column: 3 / 5;
  }
}

/* ----------------------------------------
   TABLETS (1024px)
   ---------------------------------------- */
@media (max-width: 1024px) {
  /* Testimonials */
  .testimonial-card {
    min-width: calc(50% - 1rem);
  }
}

/* ----------------------------------------
   TABLETS & MOBILE LANDSCAPE (968px)
   ---------------------------------------- */
@media (max-width: 968px) {
  /* Stats Section */
  .stats-section {
    padding: 80px 5%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-card {
    padding: 2.5rem 2rem;
  }

  /* Services Section */
  .services-section {
    padding: 80px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem;
  }

  .services-bottom-cta {
    margin-top: 60px;
    padding: 3rem 2rem;
  }

  /* Process Section */
  .process-section {
    padding: 60px 5%;
  }

  /* Move the timeline line to the left edge */
  .timeline::before {
    left: 40px;
    transform: none;
  }

  /* Reset the grid to be Step-Number -> Content */
  .step-content {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    display: grid !important;
  }

  /* Ensure ALL content is visible and aligned left */
  .step:nth-child(odd) .step-left,
  .step:nth-child(even) .step-left,
  .step:nth-child(odd) .step-right,
  .step:nth-child(even) .step-right {
    opacity: 1 !important;
    display: block !important;
    text-align: left !important;
    grid-column: 2;
  }

  /* Position the circle correctly in the first column */
  .step-number {
    grid-column: 1;
    grid-row: 1;
    width: 80px;
    height: 80px;
    margin: 0;
  }

  .step-number-inner {
    width: 60px;
    height: 60px;
  }

  /* Clean up the text for smaller screens */
  .step-details {
    padding: 1.5rem;
    width: 100%;
  }

  .step-details h3 {
    font-size: 1.5rem;
  }

  .step-details p {
    font-size: 1rem;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
  }

  .step:nth-child(odd) .step-right,
  .step:nth-child(even) .step-left {
    display: none !important;
  }

  .step:nth-child(odd) .step-left,
  .step:nth-child(even) .step-right {
    display: block !important;
    grid-column: 2;
    opacity: 1 !important;
    text-align: left !important;
  }

  /* Final CTA Section */
  .final-cta-section {
    padding: 80px 5%;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 2rem;
  }

  /* Footer */
  .footer-main {
    padding: 60px 5% 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .footer-column h4 {
    margin-bottom: 0.7rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  /* About Hero */
  .about-hero {
    padding: 100px 5% 60px;
    min-height: 70vh;
  }

  .values-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-box {
    padding: 2rem;
  }

  /* Founder Section */
  .founder-section {
    padding: 80px 5%;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-image-wrapper {
    order: 1;
  }

  .founder-content {
    order: 2;
  }

  .image-stats {
    gap: 0.5rem;
  }

  .stat-item h4 {
    font-size: 1.4rem;
  }

  .stat-item p {
    font-size: 9px;
  }

  .problem-section {
    padding: 80px 5%;
  }

  .problem-header {
    margin-bottom: 60px;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 60px;
  }

  .empathy-statement {
    padding: 2.5rem 2rem;
    margin-top: 60px;
  }
}

/* ----------------------------------------
   MOBILE LANDSCAPE & TABLETS (768px)
   ---------------------------------------- */
@media (max-width: 768px) {
  /* Navigation - Mobile Menu */
  .logo-container img {
    height: 30px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-links a:hover {
    color: #ff4444;
  }

  /* Hero Content */
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-content: center;
    margin-bottom: 2rem;
  }

  .hero-proof {
    text-transform: none;
  }

  .btn {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  /* Trusted By */
  .trusted-by {
    bottom: 0rem;
    padding-top: 1.5rem;
  }

  .trusted-by p {
    font-size: 11px;
  }

  .client-logos {
    gap: 1.2rem;
  }

  .logo-carousel {
    overflow: hidden;
    padding: 1rem 0;
  }

  .logo-track {
    gap: 1rem;
  }

  .logo-track img {
    width: 90px;
    height: 30px;
  }

  /* Hide floating shapes on mobile */
  .shape-1,
  .shape-2,
  .shape-3 {
    display: none;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 5%;
  }

  .testimonials-header {
    margin-bottom: 60px;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 2rem;
  }

  .testimonial-text {
    min-height: auto;
  }

  .carousel-nav {
    margin-top: 2rem;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  /* Founder Section */
  .image-stats {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .founder-bio {
    font-size: 1rem;
  }

  .achievements {
    padding: 1.5rem;
  }

  .social-links {
    flex-wrap: wrap;
  }

  /* Final CTA */
  .final-cta-section {
    padding: 60px 5%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 350px;
  }

  .benefit-item {
    padding: 1.5rem;
  }
}

/* ----------------------------------------
   MOBILE (640px)
   ---------------------------------------- */
@media (max-width: 640px) {
  /* Footer */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .footer-column h4 {
    margin-bottom: 0.5rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: row;
    gap: 0.4rem;
  }

  /* About Hero */
  .about-hero {
    padding: 80px 5% 60px;
  }

  .values-box {
    padding: 1.5rem;
  }

  .values-list li {
    font-size: 0.95rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 350px;
  }

  .problem-section {
    padding: 60px 5%;
  }

  .pain-card {
    padding: 2rem;
  }

  .pain-icon {
    width: 60px;
    height: 60px;
  }

  .pain-icon svg {
    width: 28px;
    height: 28px;
  }

  .empathy-statement {
    padding: 2rem 1.5rem;
  }
}

/* ----------------------------------------
   SMALL MOBILE (480px)
   ---------------------------------------- */
@media (max-width: 480px) {
  /* Stats Section */
  .stats-section {
    padding: 60px 5%;
  }

  .stats-header {
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Services Section */
  .services-section {
    padding: 60px 5%;
  }

  .service-card {
    padding: 2rem;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .services-bottom-cta {
    padding: 2.5rem 1.5rem;
  }

  /* Process Section - Extra Small Phones */
  .process-section {
    padding: 60px 5%;
  }

  .timeline::before {
    left: 30px;
  }

  .step-content {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .step {
    margin-bottom: 3rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
  }

  .step-number-inner {
    width: 50px;
    height: 50px;
  }

  .step-number-digit {
    font-size: 1.2rem;
  }

  .step-details {
    padding: 2rem;
  }

  .step-details h3 {
    font-size: 1.5rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 5%;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .quote-icon {
    font-size: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .view-all-cta {
    margin-top: 3rem;
  }

  /* Founder Section */
  .founder-section {
    padding: 60px 5%;
  }

  .founder-grid {
    gap: 2rem;
  }

  .founder-image-container {
    border-radius: 16px;
  }

  .image-stats {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .achievements {
    padding: 1.25rem;
  }

  .founder-cta {
    margin-top: 2rem;
  }

  .btn-connect {
    width: 100%;
    text-align: center;
  }

  /* Final CTA */
  .urgency-note {
    padding: 0.75rem 1.5rem;
  }

  .urgency-note p {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-main {
    padding: 50px 5% 30px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/* ========================================
   ABOUT PAGE - STORY SECTION
   ======================================== */

.story-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(229, 62, 62, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-subtitle {
  font-size: 1.25rem;
  color: #666;
  font-weight: 400;
}

.story-timeline {
  position: relative;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, #8b0000, #ff4444);
}

.aboutstep {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutstep.visible {
  opacity: 1;
  transform: translateY(0);
}

.aboutstep-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b0000 0%, #ff4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
  position: relative;
  z-index: 2;
}

.aboutstep-content {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.aboutstep-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.aboutstep-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.aboutstep-content p:last-child {
  margin-bottom: 0;
}

.aboutstep-content strong {
  color: #8b0000;
  font-weight: 600;
}

/* ========================================
   ABOUT PAGE - FOUNDER SECTION
   ======================================== */

.aboutfounder-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #8b0000 0%, #ff4444 100%);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(163, 3, 3, 0.4);
}

.founder-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.founder-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
}

.founder-intro strong {
  color: #8b0000;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}

.founder-stat {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fb;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.founder-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.founder-stat:hover {
  border-color: #ff4444;
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 62, 62, 0.15);
}

.founder-philosophy {
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  border-left: 4px solid #8b0000;
  margin-bottom: 40px;
}

.founder-philosophy h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 20px;
}

.founder-philosophy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.founder-philosophy p:last-child {
  margin-bottom: 0;
}

.founder-philosophy strong {
  color: #8b0000;
}

.aboutfounder-cta {
  display: flex;
  position: relative;
  background: linear-gradient(135deg, #8b0000 0%, #b00000 100%);
  padding: 40px;
  border-radius: 20px;
  gap: 30px;
}

/* ========================================
   ABOUT PAGE - MISSION SECTION
   ======================================== */

.mission-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  position: relative;
}

.mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  border-color: #8b0000;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(229, 62, 62, 0.15);
}

.mission-card.primary {
  grid-column: span 3;
  background: linear-gradient(135deg, #8b0000 0%, #fc0901 100%);
  color: #ffffff;
  border-color: transparent;
}

.mission-card.primary:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 0, 0, 0.12);
}

.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #8b0000 0%, #fc0901 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.mission-card.primary .mission-icon {
  background: rgba(255, 255, 255, 0.2);
}

.mission-icon i {
  width: 40px;
  height: 40px;
}

.mission-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.mission-card.primary h3 {
  color: #ffffff;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

.mission-card.primary p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
}

/* ========================================
   ABOUT PAGE - FINAL CTA SECTION
   ======================================== */
.btn-large {
  margin-bottom: 30px;
  padding: 20px 50px;
  font-size: 1.1rem;
}

.cta-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ========================================
   RESPONSIVE - ABOUT PAGE
   ======================================== */

@media (max-width: 1024px) {
  .aboutfounder-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-card.primary {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .story-subtitle,
  .mission-header p {
    font-size: 1.1rem;
  }

  .story-timeline::before {
    left: 30px;
  }

  .aboutstep {
    gap: 25px;
    margin-bottom: 60px;
  }

  .aboutstep-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .story-timeline .step-content {
    padding: 30px;
  }

  .story-timeline .step-content h3 {
    font-size: 1.4rem;
  }

  .story-timeline .step-content p {
    font-size: 1rem;
  }
  .founder-content h2 {
    font-size: 2rem;
  }

  .founder-intro {
    font-size: 1.05rem;
  }

  .founder-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-stat .stat-number {
    font-size: 2.5rem;
  }

  .founder-philosophy {
    padding: 30px;
  }

  .founder-philosophy h3 {
    font-size: 1.3rem;
  }

  .founder-philosophy p {
    font-size: 1rem;
  }

  .aboutfounder-cta {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .aboutfounder-cta .btn {
    width: 100%;
    text-align: center;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card.primary {
    grid-column: span 1;
  }

  .mission-card {
    padding: 30px;
  }

  .btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .story-section,
  .founder-section,
  .mission-section,
  .final-cta-section {
    padding: 80px 5%;
  }

  .aboutstep {
    flex-direction: column;
    gap: 20px;
  }

  .story-timeline::before {
    display: none;
  }

  .aboutstep-number {
    margin: 0 auto;
  }

  .founder-badge {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
