/* Total Black - Apple Pro Aesthetic */
html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #000000;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1A6;
  /* Silver Gray */
  --text-tertiary: #F5F5F7;
  /* Platinum Gray */

  /* Graphic Charter Colors */
  /* Graphic Charter Colors */
  --accent-primary: #2E5CFF;
  /* Bleu Électrique */
  --accent-secondary: #00F2FF;
  /* Bleu Cyan */
  --accent-mauve: #BD00FF;
  /* Mauve */
  --text-white: #FFFFFF;

  --glass-bg: rgba(0, 0, 0, 0.8);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --backdrop-blur: 20px;


  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  /* Bold/Semibold */
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--accent-secondary);
  -webkit-text-fill-color: var(--accent-secondary);
  background: none;
}

.glow-cyan {
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.2);
}

.glow-violet {
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.2);
}

/* Navbar & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(10, 10, 12, 0.85);
  /* Slightly darker for better contrast */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1100;
}

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

/* 1. Logo (Gauche) */
/* Legacy logo styles removed to prevent conflict */

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2E5CFF 0%, #00F2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Animations de conversion */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 92, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(46, 92, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 92, 255, 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Logo Subtitle removed per request */

/* 2. Liens de Navigation (Centre) */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  /* Reduced from 50px for better fit */
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E5E5EA;
  /* Brighter Silver/White */
  transition: all 0.3s ease;
  /* text-transform: uppercase; Removed */
  letter-spacing: normal;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-secondary);
  /* Bleu Cyan au survol & actif */
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

/* 3. CTA Principal (Droite) */
/* 3. CTA Principal (Droite) */
.nav-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1A1A;
  /* Simple solid dark gray */
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-premium:hover {
  background: #2E2E2E;
  /* Slightly lighter on hover */
  border-color: #FFFFFF;
  transform: translateY(-2px);
}




/* Default: Hide menu toggle and mobile CTA on desktop */
.menu-toggle {
  display: none;
}

.nav-cta-header {
  display: none;
}

@media (max-width: 1050px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  /* Adjust desktop links - Hide them */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 80px 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border-left: none;
    transform: none;
    left: auto;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger animation for links */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    display: block;
    padding: 10px 0;
  }

  /* Hide desktop CTA on small screens */
  .nav-cta {
    display: none;
  }

  /* Show mobile toggle */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    order: 3;
    /* Always on the far right */
  }

  .menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Hamburger Animation */
  #mobile-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  #mobile-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile CTA visible in header but small */
  .nav-cta-header {
    display: block;
    margin-right: 15px;
    margin-left: auto;
    /* Push relative to logo */
    order: 2;
    /* To the left of the hamburger */
  }

  .nav-btn-header-mobile {
    background: var(--accent-primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    white-space: nowrap;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Specific adjustment for very small screens */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .nav-btn-header-mobile {
    padding: 7px 10px;
    font-size: 0.65rem;
  }
}

/* Blog Section */
.blog-section {
  padding: 120px 0;
  background: var(--bg-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.blog-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 12px;
}

.blog-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 1.05rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-read-more {
  margin-top: auto;
  text-decoration: none;
  color: var(--accent-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
}

.blog-view-all {
  display: inline-block;
  margin-top: 60px;
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.blog-view-all:hover {
  background: #fff;
  font-weight: 500;
  color: var(--text-tertiary);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-trust-badges {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  /* Distance augmentée */
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 255, 0.05);
  /* Cyan tint */
  /* Slightly stronger bg for visibility without border */
  border: none;
  /* No border as requested */
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00F2FF;
  /* Electric Cyan Text */
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}

.trust-badge i {
  font-size: 1rem;
  color: var(--accent-primary);
  transition: color 0.3s ease;
}

.trust-badge:hover {
  background: rgba(46, 92, 255, 0.15);
  transform: translateY(-2px);
  /* No border on hover either */
}

.trust-badge:hover i {
  color: var(--accent-primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Outfit', var(--font-display);
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-white);
  text-shadow: 0 0 30px rgba(46, 92, 255, 0.3);
  letter-spacing: -0.03em;
  font-weight: 900;
  /* text-transform: uppercase; Removed for mixed case support */
}

.hero-title .text-gradient {
  font-style: normal;
  padding-right: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E5E5EA;
  /* Platinum Silver */
  /* Silver/Platinum for better readability */
  margin-bottom: 50px;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.section-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
  opacity: 0.5;
  margin: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 10px var(--accent-primary);
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2E5CFF;
  /* Electric Blue Solid */
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: normal;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(46, 92, 255, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: #1B45E0;
  /* Slightly darker/richer on hover */
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(46, 92, 255, 0.6);
}

/* Conflicting hover style removed */

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  /* Solid Gray */
  color: #E0E0E0;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: normal;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-secondary:hover {
  background: #2E2E2E;
  /* Lighter gray on hover */
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Trust Badges - Premium Style */
.hero-trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  /* Center them on mobile/desktop as hero is centered */
  margin-bottom: 30px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #E0E0E0;
  /* Improved contrast */
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: var(--accent-primary);
  opacity: 0.9;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(46, 92, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background-size: cover;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 90%);
  pointer-events: none;
}

.hero {
  padding-bottom: 60px;
  /* Reduced from 120px */
}

.hero-glow-left {
  position: absolute;
  left: -20%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(46, 92, 255, 0.4) 0%, rgba(46, 92, 255, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.5;
  /* Reduced from 0.8 */
}

.hero-glow-right {
  position: absolute;
  right: -20%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(46, 92, 255, 0.4) 0%, rgba(46, 92, 255, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.3;
  /* Decreased opacity */
}

/* New Top Radiant - Electric Blue */
.hero-glow-top {
  position: absolute;
  top: -10%;
  /* Center vertical glow at the top edge */
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  /* Wide spread */
  height: 40%;
  /* Adjust height for the glow strength */
  background: radial-gradient(ellipse at center, rgba(46, 92, 255, 0.6) 0%, rgba(46, 92, 255, 0.2) 50%, transparent 80%);
  z-index: 1;
  /* Sit above grid but below text */
  filter: blur(80px);
  /* Soft diffuse look */
  pointer-events: none;
  opacity: 0.7;
  /* Reduced slightly from 0.8 */
}


/* Section Spacing */
section {
  padding: 120px 0;
}

/* Section Typography */
.section-title {
  text-align: center;
  font-family: 'Outfit', var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.section-title span,
h1 span.text-gradient,
h2 span.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Problem Section - Triple Pillar Redesign */
.problem-pillars {
  padding: 140px 0;
  background: var(--bg-color);
}

.pillar-header {
  text-align: center;
  margin-bottom: 80px;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.pillar-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.pillar-item:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pillar-item.featured {
  background: rgba(0, 242, 255, 0.03);
  border-color: rgba(0, 242, 255, 0.2);
}

.pillar-item.featured:hover {
  background: rgba(0, 242, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 242, 255, 0.1);
}

.pillar-number {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.pillar-icon {
  font-size: 2.2rem;
  /* Reduced from 3.5rem */
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.2));
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pillar-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
}

@media (max-width: 1024px) {
  .pillars-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-item:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pillars-container {
    grid-template-columns: 1fr;
  }

  .pillar-item:nth-child(3) {
    grid-column: span 1;
  }

  .pillar-item {
    padding: 40px 30px;
  }
}



/* Solution Section - Sémantique Grid Redesign */
.semantique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.semantique-card {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 60px 40px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.semantique-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(46, 92, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.semantique-card:hover .card-bg-glow {
  opacity: 1;
}

.card-number-large {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 0.8;
  z-index: 0;
  user-select: none;
  transition: all 0.6s ease;
}

.semantique-card:hover .card-number-large {
  transform: translate(-10px, -10px);
  color: rgba(255, 255, 255, 0.04);
}

.card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  display: block;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.card-slogan {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.4;
}

.card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: auto;
}

/* Variants */
.color-blue .card-tag {
  color: var(--accent-primary);
}

.color-blue .card-bg-glow {
  background: radial-gradient(circle at 70% 70%, rgba(46, 92, 255, 0.1) 0%, transparent 60%);
}

.color-cyan .card-tag {
  color: var(--accent-secondary);
}

.color-cyan .card-bg-glow {
  background: radial-gradient(circle at 70% 70%, rgba(0, 242, 255, 0.1) 0%, transparent 60%);
}

.color-mauve .card-tag {
  color: var(--accent-mauve);
}

.color-mauve .card-bg-glow {
  background: radial-gradient(circle at 70% 70%, rgba(189, 0, 255, 0.1) 0%, transparent 60%);
}

@media (max-width: 1024px) {
  .semantique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .semantique-grid {
    grid-template-columns: 1fr;
  }

  .semantique-card {
    padding: 40px 30px;
  }

  .card-number-large {
    font-size: 7rem;
  }
}





/* Strategy Section - The Strategic Monoliths Design */
.strategy-monolith-section {
  padding: 140px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.monolith-container {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}

.monolith {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 80px 50px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.monolith-bg-text {
  position: absolute;
  top: 10%;
  left: -5%;
  font-size: 11rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: all 0.7s ease;
}

.monolith:hover .monolith-bg-text {
  transform: scale(1.1) rotate(-1deg);
  color: rgba(255, 255, 255, 0.04);
}

.monolith-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.monolith-icon-wrapper {
  font-size: 3.5rem;
  margin-bottom: 30px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.monolith:hover .monolith-icon-wrapper {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.06);
}

.monolith-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.04em;
}

.monolith-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.25em;
  margin-bottom: 40px;
}

.monolith-body {
  margin-bottom: 50px;
}

.monolith-intro {
  font-size: 1.2rem;
  color: var(--text-tertiary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.monolith-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.defense .m-dot {
  background: var(--accent-mauve);
  box-shadow: 0 0 10px var(--accent-mauve);
}

.attack .m-dot {
  background: var(--accent-secondary);
  box-shadow: 0 0 10px var(--accent-secondary);
}

.m-feature p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.m-feature strong {
  color: #fff;
}

.monolith-footer {
  margin-top: auto;
}

.monolith-result-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 35px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.res-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.monolith-result-box p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

/* Specific variants */
.monolith.defense {
  border-color: rgba(189, 0, 255, 0.3);
  /* Contour Mauve permanent */
}

.monolith.attack {
  border-color: rgba(0, 242, 255, 0.3);
  /* Contour Bleu Cyan permanent */
}

.monolith.defense:hover {
  border-color: rgba(189, 0, 255, 0.6);
  box-shadow: 0 40px 100px rgba(189, 0, 255, 0.15);
  background: rgba(189, 0, 255, 0.03);
}

.monolith.attack:hover {
  border-color: rgba(0, 242, 255, 0.6);
  box-shadow: 0 40px 100px rgba(0, 242, 255, 0.15);
  background: rgba(0, 242, 255, 0.03);
}

@media (max-width: 1100px) {
  .monolith-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .monolith {
    padding: 60px 40px;
  }

  .monolith-title {
    font-size: 2.2rem;
  }

  .monolith-bg-text {
    font-size: 8rem;
  }
}





/* Offers Section - Premium Redesign */
.offers-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}

.offer-card-premium {
  background: rgba(22, 22, 23, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Minimal border */
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: visible;
}

/* Featured / Best Seller Highlight */
.offer-card-premium.featured {
  background: rgba(22, 22, 23, 0.9);
  border: 2px solid var(--accent-secondary);
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(0, 242, 255, 0.1);
  z-index: 5;
}

.best-seller-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  color: #000;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.4);
}

.offer-header {
  margin-bottom: 30px;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.offer-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.offer-for {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.offer-price-box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-price-box .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-secondary);
  vertical-align: top;
  margin-right: 4px;
}

.offer-price-box .amount {
  font-size: 4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.offer-price-box .period {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-main-goal {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.offer-main-goal p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
}

.offer-features-list {
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
}

.offer-features-list h4 {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-features-list ul {
  list-style: none;
}

.offer-features-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.offer-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

.offer-cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-fix .offer-icon,
.tech-fix .offer-price-box .amount {
  color: var(--accent-primary);
}

.semantic-sprint .offer-icon,
.semantic-sprint .offer-price-box .amount {
  color: var(--accent-secondary);
}

.absolute-authority .offer-icon,
.absolute-authority .offer-price-box .amount {
  color: var(--accent-mauve);
}

.featured-btn {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  color: #000;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}

.offer-card-premium:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.featured:hover {
  transform: scale(1.07) translateY(-15px);
  border-color: var(--accent-secondary);
}

.offer-cta-btn:not(.featured-btn):hover {
  background: #fff;
  color: #000;
}

@media (max-width: 1100px) {
  .offers-grid-premium {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card-premium.featured {
    transform: none;
  }

  .featured:hover {
    transform: translateY(-10px);
  }
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-color);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.1) 0%, rgba(0, 242, 255, 0.05) 50%, transparent 100%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.cta-glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
}

.cta-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.premium-cta-btn {
  background: #FFFFFF;
  color: #000000;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.premium-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.premium-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: #f0f0f0;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.premium-cta-btn:hover svg {
  transform: translateX(5px);
}

.cta-info {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.8;
}

/* Option 1 : Le "Status Bar" Footer */
/* Option 1 : Le "Status Bar" Footer - Premium Redesign */
.status-footer {
  background: #050505;
  position: relative;
  padding: 100px 0 40px 0;
  color: #FFFFFF;
}

.status-footer .container {
  max-width: 1200px;
}

/* Gradient Top Border Effect */
.status-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(2, 0, 36, 0) 0%,
      rgba(46, 92, 255, 0.5) 50%,
      rgba(0, 212, 255, 0) 100%);
}

.status-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 80px;
}

/* Colonne 1 : Identité */
.status-footer .logo {
  margin-bottom: 24px;
}

.dot-orange {
  color: #FF6B00;
}

.footer-slogan {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

/* Colonne 2 : Disponibilité */
.status-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: linear-gradient(to right, #fff, #999);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 25px;
  text-transform: uppercase;
  opacity: 0.8;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #39FF14;
  /* Neon Green */
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #39FF14;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 4px solid #39FF14;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

.busy-dot,
.available-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}

.busy-dot {
  background-color: #FF3939;
  /* Neon Red */
  box-shadow: 0 0 10px #FF3939;
}

.available-dot {
  background-color: #22c55e;
  /* Green */
  box-shadow: 0 0 10px #22c55e;
}

.busy-dot::after,
.available-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

.busy-dot::after {
  border: 4px solid #FF3939;
}

.available-dot::after {
  border: 4px solid #22c55e;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.status-text {
  font-weight: 600;
  font-size: 1rem;
}

.status-info {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Colonne 3 : Contact */
.contact-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-secondary);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

/* Update bottom separator */
.footer-bottom-full {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom-full p {
  font-size: 0.85rem;
  color: #444;
}

@media (max-width: 900px) {
  .status-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-slogan {
    margin: 0 auto;
    max-width: 100%;
  }

  .status-indicator,
  .social-links {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }

  .cta-glass-card {
    padding: 60px 20px;
    border-radius: 24px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-nav {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* About Section - Design 4: The Cinematic Split */
.about-cinematic {
  padding: 100px 0;
  background: #000;
}

.container-large {
  max-width: 1300px;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(46, 92, 255, 0.03);
  /* Subtle blue radial glow */
}

.cinematic-visual {
  height: 100%;
  min-height: 550px;
  padding: 80px;
  opacity: 1;
}

.image-mask {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.portrait-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  /* Strong radial mask to hide image background */
  mask-image: radial-gradient(ellipse at center 30%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center 30%, black 40%, transparent 75%);
}

.vignette-overlay {
  position: absolute;
  inset: 0;
  /* Custom Radiant Black Vignette (Corner Blocker) */
  /* Custom Radiant Black Vignette (Nano 10%) */
  background:
    radial-gradient(circle at top left, #000 0%, transparent 10%),
    radial-gradient(circle at top right, #000 0%, transparent 10%),
    linear-gradient(to top, #000 0%, transparent 10%);
  pointer-events: none;
  z-index: 2;
  pointer-events: none;
  z-index: 2;
}

.cinematic-content {
  padding: 60px 80px 60px 0;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.cinematic-h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.text-blue {
  color: var(--accent-primary);
}

.message-block {
  margin-bottom: 60px;
}

.highlight-p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}

.secondary-p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cinematic-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.name-display {
  display: flex;
  flex-direction: column;
}

.name-display strong {
  font-size: 1.25rem;
  color: #fff;
}

.name-display span {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hover dynamic */
.cinematic-grid:hover .portrait-main {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .cinematic-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cinematic-visual {
    min-height: 400px;
    padding: 40px;
  }

  .cinematic-content {
    padding: 60px 40px;
  }

  .cinematic-h2 {
    font-size: 2.2rem;
  }
}


/* Reviews Section - Infinite Scroll */
#reviews {
  padding: 80px 0 100px 0;
  overflow: hidden;
  background: var(--bg-color);
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Mask edges for smooth fade out */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move half the length since duplicated */
  }
}

.review-card {
  flex: 0 0 260px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 180px;
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 220px;
  }
}

.review-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #000000 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-card:hover .author-name {
  color: #000000 !important;
}

.review-card:hover .review-date {
  color: #666666 !important;
}

.review-card:hover .review-text {
  color: #333333 !important;
}

/* Header: Avatar | Name+Date | G Logo */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  /* Bg color set inline or via utility classes */
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.google-logo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Rating Row: Stars + Badge */
.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-stars {
  color: #FFD700;
  /* Gold */
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 0;
  /* Remove previous margin */
}

.verified-badge {
  width: 16px;
  height: 16px;
  color: #1A73E8;
  /* Google Blue */
  fill: currentColor;
}

/* Body */
.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #E5E5EA;
  font-style: normal;
  /* Removed italic */
  margin: 0;
  /* Let flex gap handle spacing */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* FAQ Section - Premium Redesign */
#faq {
  padding: 140px 0;
  background: var(--bg-color);
}

.faq-list {
  max-width: 900px;
  /* Slightly wider */
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Spaced items instead of borders */
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Slightly more visible border */
  border-radius: 20px;
  /* Slightly tighter radius */
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.faq-item.active {
  background: rgba(20, 20, 25, 0.6);
  /* Darker bg when open for contrast */
  border-color: var(--accent-primary);
  /* Clear highlight */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 28px 32px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--accent-secondary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--accent-secondary);
  color: #000;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding: 0 32px 32px 32px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 20px 24px;
  }

  .faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .faq-question {
    font-size: 1.1rem;
    padding: 24px 0;
  }
}

/* Sub-pages Styles (Hero Minor, Portfolio, Contact) */
.hero-minor {
  padding: 160px 0 120px;
  background: var(--bg-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-minor .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-minor .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.overview-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(46, 92, 255, 0.4);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.overview-item.featured {
  border: 1px solid rgba(0, 242, 255, 0.3) !important;
  background: rgba(0, 242, 255, 0.02) !important;
}

.overview-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.o-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.o-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid var(--accent-primary);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.o-link:hover {
  color: var(--accent-primary);
  letter-spacing: 0.05em;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-action .price-tag {
  margin-top: 0;
}


/* Portfolio Cards */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.p-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.p-client {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.p-card-results {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.p-lab {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.p-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.semantique-card {
  /* Ensure a base glass style */
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Explicit border added */
  display: flex;
  flex-direction: column;
}

.contact-pills {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pro-form .form-group {
  margin-bottom: 25px;
}

.pro-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.pro-form input,
.pro-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  color: #fff;
  font-family: var(--font-display);
  transition: all 0.3s ease;
}

.pro-form input:focus,
.pro-form textarea:focus {
  outline: none;
  border-color: var(--accent-secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.3);
}

.pro-form textarea {
  height: 150px;
  resize: none;
}

@media (max-width: 900px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Detailed Pages Style System */
.portfolio-detailed,
.contact-detailed,
.vision-detailed,
.blog-detailed,
.offers-detailed {
  padding: 80px 0 120px;
  background: var(--bg-color);
}

.offers-stats {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(46, 92, 255, 0.05) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-counter-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-counter-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-secondary);
  transform: translateY(-5px);
}

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

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.qual-box {
  padding: 50px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.qual-box.for-you {
  background: linear-gradient(145deg, rgba(0, 242, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(0, 242, 255, 0.15);
  box-shadow: 0 40px 100px rgba(0, 242, 255, 0.03);
}

.qual-box.not-for-you {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.qual-box:hover {
  transform: translateY(-10px) scale(1.02);
}

.qual-box .qual-icon {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: block;
}

.qual-box h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.qual-box.for-you h4 {
  color: #fff;
}

.qual-box.not-for-you h4 {
  color: rgba(255, 255, 255, 0.6);
}

.qual-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qual-box li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 35px;
  position: relative;
}

.qual-box.for-you li {
  color: #fff;
}

.qual-box.not-for-you li {
  color: rgba(255, 255, 255, 0.4);
}

.qual-box.for-you li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300f2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.qual-box.not-for-you li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
}

/* Offer Testimonial */
.offer-testimonial {
  padding: 100px 0;
  text-align: center;
}

.quote-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  position: relative;
}

.quote-text {
  font-size: 1.8rem;
  line-height: 1.5;
  font-style: italic;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 500;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
}

.author-meta {
  text-align: left;
}

.author-meta strong {
  display: block;
  font-size: 1.1rem;
}

.author-meta span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .qualification-grid {
    grid-template-columns: 1fr;
  }

  .quote-text {
    font-size: 1.4rem;
  }
}

.offer-deep-dive {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.deep-dive-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.methodology h3,
.deliverables h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.methodology ul {
  list-style: none;
  padding: 0;
}

.methodology li {
  margin-bottom: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.methodology li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.price-tag {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: rgba(46, 92, 255, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-weight: 700;
  color: var(--accent-primary);
}

.offer-deep-dive-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 80px 0;
}

.success-process {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
}

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

.process-grid {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
  gap: 30px;
}

/* Central Timeline Line */
.process-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      var(--accent-primary) 10%,
      var(--accent-secondary) 90%,
      transparent);
  transform: translateX(-50%);
  opacity: 0.2;
}

.process-step {
  width: calc(50% - 40px);
  padding: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Positioning */
.process-step:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
}

.process-step:nth-child(even) {
  align-self: flex-end;
  text-align: left;
}

/* Node circle on the line */
.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--bg-color);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 0 15px var(--accent-primary);
}

.process-step:nth-child(odd)::after {
  right: -58px;
}

.process-step:nth-child(even)::after {
  left: -58px;
}

/* Connecting Horizontal Line to Main Timeline */
.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.process-step:nth-child(odd)::before {
  right: -40px;
}

.process-step:nth-child(even)::before {
  left: -40px;
}

.p-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(0, 242, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
}

.process-step h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FFF;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .process-grid {
    margin: 40px 20px 0;
  }

  .process-grid::before {
    left: 0;
    transform: none;
  }

  .process-step {
    width: 100%;
    margin: 0 0 20px 20px !important;
    padding: 30px;
    text-align: left !important;
  }

  .process-step::after {
    left: -27px !important;
  }

  .process-step::before {
    left: -20px !important;
    width: 20px;
  }
}

/* Vision Detailed */
.vision-manifesto h2 {
  margin-bottom: 60px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.vision-text-block h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--accent-secondary);
}

.vision-text-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.methodology-breakdown {
  margin-top: 150px;
  margin-bottom: 150px;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.method-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
}

/* Portfolio Detailed */
.case-study {
  margin-bottom: 120px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.case-study-grid.reflect {
  grid-template-columns: 1.2fr 1fr;
}

.case-study-grid.reflect .case-study-image {
  order: 2;
}

.case-study-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
  /* Placeholder background */
  min-height: 300px;
}

.case-study-image img {
  width: 100%;
  display: block;
}

.stat-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--accent-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.case-detail-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.case-results {
  display: flex;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.res-item .res-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-secondary);
  margin-bottom: 5px;
}

.res-item .res-lab {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Blog Detailed */
.featured-article {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 100px;
}

.f-article-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.f-article-image {
  position: relative;
  height: 500px;
}

.f-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.f-article-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f-article-content h2 {
  font-size: 2.8rem;
  margin: 25px 0;
  line-height: 1.2;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.post-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.03);
}

.post-image {
  height: 250px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 40px;
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  line-height: 1.4;
}

.blog-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  width: fit-content;
  transition: all 0.3s ease;
}

.blog-btn-link:hover {
  background: #fff;
  color: #000;
  transform: translateX(5px);
}

.post-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.post-link:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Contact Detailed */
.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

.step-card {
  display: flex;
  gap: 30px;
}

.step-num {
  width: 60px;
  height: 60px;
  background: rgba(46, 92, 255, 0.1);
  border: 1px solid rgba(46, 92, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-body p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-card-premium {
  background: rgba(255, 255, 255, 0.02);
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.premium-form .form-group {
  margin-bottom: 25px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
  border-color: var(--accent-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.3);
}

.form-submit-btn {
  width: 100%;
  padding: 22px;
  background: var(--accent-primary);
  color: #fff;
  border: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.form-submit-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 10px 30px rgba(46, 92, 255, 0.3);
}

@media (max-width: 1024px) {

  .case-study-grid,
  .f-article-grid,
  .contact-dual-grid,
  .vision-grid {
    grid-template-columns: 1fr !important;
    gap: 60px;
  }

  .case-study-grid.reflect {
    direction: ltr;
  }

  .f-article-image {
    height: 350px;
  }

  .method-cards {
    grid-template-columns: 1fr;
  }
}

/* Offers Stats Section */
.offers-stats {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-counter-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.stat-counter-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-secondary);
}

.counter-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
}

.counter-suffix {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.counter-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-counter-grid {
    grid-template-columns: 1fr;
  }
}

/* Tech Focus & Methodology Modern */
.tech-structure-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  margin-top: 50px;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.m-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.m-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 92, 255, 0.1);
  border: 1px solid rgba(46, 92, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.m-text strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.m-text span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tech-action-card {
  position: sticky;
  top: 100px;
}

.card-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.card-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.deliverables-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.deliverables-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 900;
}

.card-pricing {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 30px;
}

.card-pricing .price {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.card-pricing .price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.full-width {
  width: 100%;
  text-align: center;
}

.featured-card .card-inner {
  border: 1px solid rgba(0, 242, 255, 0.4) !important;
  background: rgba(0, 242, 255, 0.05) !important;
  box-shadow: 0 40px 100px rgba(0, 242, 255, 0.1) !important;
}

.elite-card .card-inner {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  box-shadow: 0 40px 100px rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 1024px) {
  .tech-structure-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tech-action-card {
    position: static;
  }
}

/* Blog Article Pages */
.article-page {
  background: #000;
}

.article-hero {
  padding: 220px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  z-index: 1;
}

.container-medium {
  max-width: 850px;
  margin: 0 auto;
}

.article-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 20px 0 30px;
  letter-spacing: -0.03em;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.article-body {
  padding: 80px 0 120px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ccc;
}

.article-body h2 {
  font-size: 2.2rem;
  color: #fff;
  margin: 60px 0 30px;
  font-weight: 700;
}

.article-body h3 {
  font-size: 1.6rem;
  color: #fff;
  margin: 40px 0 20px;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 30px;
}

.article-body strong {
  color: var(--accent-secondary);
}

.article-body a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body-image {
  width: 100%;
  border-radius: 24px;
  margin: 40px 0 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  display: block;
}

.article-body-image.align-left {
  float: left;
  width: 45%;
  margin: 10px 40px 30px 0;
}

.article-body-image.align-right {
  float: right;
  width: 45%;
  margin: 10px 0 30px 40px;
}

/* Clearfix for the article container */
.article-body::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {

  .article-body-image.align-left,
  .article-body-image.align-right {
    float: none;
    width: 100%;
    margin: 30px 0;
  }
}

.article-footer-cta {
  margin-top: 100px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  text-align: center;
}

.article-footer-cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.article-footer-cta p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.article-footer-cta .nav-btn-premium {
  background: var(--accent-secondary);
}

.article-footer-cta .nav-btn-premium:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2.5rem;
  }

  .article-body {
    font-size: 1.1rem;
  }

  .article-footer-cta {
    padding: 40px 20px;
  }
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES (GLOBAL)
   ========================================= */

@media (max-width: 768px) {

  /* 1. Global Typography & Spacing */
  body {
    font-size: 15px;
    /* Slight reduction for better fit */
  }

  h1,
  .hero-title {
    font-size: 2.5rem !important;
    /* Force smaller size on mobile */
    line-height: 1.2 !important;
  }

  h2,
  .section-title {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  section {
    padding: 60px 0 !important;
    /* Reduce vertical spacing */
  }

  .container {
    padding: 0 20px !important;
    /* Ensure side padding */
  }

  /* 2. Header & Navigation */
  .navbar {
    padding: 15px 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    padding-top: 100px;
    /* More space for the menu content */
  }

  /* 3. Hero Section (Home) */
  .hero {
    padding-top: 120px !important;
    min-height: auto;
    /* Allow content to dictate height on mobile */
    padding-bottom: 60px !important;
  }

  .hero-minor {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    /* Larger touch targets */
  }

  .hero-minor .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  /* 4. Grids & Layouts (Offres, Vision, etc.) */
  .deep-dive-grid,
  .tech-structure-grid,
  .vision-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .tech-action-card {
    margin-top: 30px;
  }

  /* 5. Specific Elements */
  .quote-card {
    padding: 30px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .article-hero {
    height: auto;
    min-height: 400px;
    padding-top: 100px;
  }

  .article-title {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 480px) {

  .h1,
  .hero-title {
    font-size: 2rem !important;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

/* HERO SECTION SPECIFIC FIXES */
@media (max-width: 768px) {
  .hero {
    /* Force height to adapt to content */
    height: auto !important;
    min-height: auto !important;
    padding-top: 140px !important;
    /* Account for fixed navbar */
    padding-bottom: 80px !important;
    align-items: flex-start !important;
    /* Align to top */
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    /* Prevent overflow */
    margin-bottom: 30px !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    display: block;
    max-width: none;
    padding: 16px 24px;
    /* Easier to tap */
  }

  .hero-visual,
  .hero-grid,
  .hero-glow-left,
  .hero-glow-right {
    /* Ensure background elements don't cause scrolling or layout issues */
    max-width: 100vw;
    overflow: hidden;
  }

  /* Hide br tags on mobile for better flow */
  .hero-title br,
  .hero-subtitle br {
    display: none;
  }
}

/* =========================================
   LOGO DESIGN (SVG)
   ========================================= */

.logo {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 35px;
  /* Reduced from 50px */
  height: auto;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.star-shape {
  filter: drop-shadow(0 0 10px rgba(46, 92, 255, 0.6));
  animation: pulse-star 3s infinite ease-in-out;
}

.star-core {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.logo:hover .logo-icon {
  transform: rotate(90deg) scale(1.1);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes pulse-star {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(46, 92, 255, 0.4));
    opacity: 0.9;
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.8));
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .logo-subtitle {
    display: none;
    /* Hide subtitle on very small screens to save space */
  }
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-secondary);
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}

/* HERO ENTRANCE ANIMATIONS */
.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem !important;
    /* Scale down for mobile to prevent overflow */
    word-wrap: break-word;
  }
}

.hero-tagline {
  text-align: left;
  margin-left: 0;
  max-width: 900px;
  margin-right: auto;
  width: 100%;
  margin-bottom: 5px;
  /* Adjust spacing as needed */
  padding-left: 5px;
  /* Optional visual alignment */
}

/* Hero Review Badge (Pill Style) */
.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 25, 47, 0.6);
  /* Sombre bleuté pour style premium */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 40px;
  /* Added spacing from top */
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
  width: fit-content;
}

.hero-review-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 92, 255, 0.4);
  background: rgba(10, 25, 47, 0.8);
}

.hero-review-badge .stars {
  color: #FFD700;
  /* Gold */
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.hero-review-badge .review-count {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hero Logo Carousel */

.logo-slide img {
  height: 35px;
  /* Reduced height */
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  /* Grayscale added */
  transition: all 0.3s ease;
}

.logo-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.trusted-by-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
  padding-left: 60px;
  /* Offset to start */
}

.logo-slide {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-shrink: 0;
}

/* Hero Logo Carousel */
.hero-logo-carousel {
  margin-top: 110px;
  /* Reduced from 60px */
  width: 100%;
  max-width: 650px;
  /* Tighter width */
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 35%, black 65%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 35%, black 65%, transparent);
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 10px 0;
  /* Reduced padding from 15px */
}

/* ... existing Trusted By Text ... */

.logo-slide img {
  height: 35px;
  width: auto;
  min-width: 40px;
  /* Force White/Silver for Visibility on Dark Background */
  filter: brightness(0) invert(1);
  opacity: 0.6;
  /* Looks Silver/Gray */
  transition: all 0.3s ease;
  object-fit: contain;
  mix-blend-mode: normal;
}

/* Specific Logo Sizing Overrides */
.logo-slide img[src*="merle-eclat.png"],
.logo-slide img[alt="Merle Éclat"] {
  height: 85px !important;
  width: auto !important;
  max-height: none !important;
  opacity: 1 !important;
}

.logo-slide img[alt="DMB"],
.logo-slide img[src*="dmb.png"] {
  filter: invert(1) grayscale(100%) brightness(2);
  mix-blend-mode: screen;
  opacity: 1 !important;
  height: 40px !important;
}

/* On hover, keep DMB White (re-apply hack) but increase opacity/scale */
.logo-slide img[alt="DMB"]:hover {
  filter: invert(1) grayscale(100%) brightness(10);
  /* Force absolute white */
  transform: scale(1.05);
  opacity: 1;
}

/* For all other logos: Force White on hover */
/* For all other logos (and overriding general rules): Force White on hover */
.logo-slide img:hover {
  opacity: 1 !important;
  transform: scale(1.05);
  filter: brightness(0) invert(1) !important;
  /* Force White */
}

/* Specific fix for DMB to keep transparency while being white */
.logo-slide img[alt="DMB"]:hover {
  filter: invert(1) grayscale(100%) brightness(10) !important;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .logo-slide {
    gap: 40px;
  }

  .logo-track {
    gap: 40px;
  }

  .hero-logo-carousel {
    margin-top: 40px;
  }

  .logo-slide img {
    height: 24px;
  }
}

/* Solution Section - Luminous Premium Design */

.subsection-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 60px;
  margin-bottom: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), #fff, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: block;
  opacity: 0.9;
}

/* Featured Animation Pulse for Solution Cards */
.small-pillar,
.semantique-card,
.overview-item.featured,
.process-step,
.qual-box,
.tech-action-card .card-inner {
  /* animation: featured-pulse 4s infinite ease-in-out; REMOVED to stop flickering */
  background: rgba(0, 242, 255, 0.03) !important;
  /* Force the base tint */
  border-color: rgba(0, 242, 255, 0.2) !important;
  border-radius: 40px !important;
  /* Rounded corners */
}

.small-pillar:hover,
.semantique-card:hover,
.overview-item.featured:hover,
.process-step:hover,
.qual-box:hover,
.tech-action-card:hover .card-inner {
  background: rgba(0, 242, 255, 0.05) !important;
  box-shadow: 0 30px 60px rgba(0, 242, 255, 0.2) !important;
  transform: translateY(-10px) !important;
  border-color: rgba(0, 242, 255, 0.4) !important;
  border-radius: 40px !important;
}



@keyframes featured-pulse {
  0% {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
  }
}

.small-pillar .pillar-icon,
.semantique-card .card-number-large,
.process-step .p-num,
.qual-box .qual-icon {
  filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.3));
  /* Cyan glow on icons */
}

.small-pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(0, 242, 255, 0.6));
}

.small-pillar .pillar-title {
  font-size: 1.8rem;
  /* Matched to GEO Strategy (1.8rem) */
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* Hero Eyebrow (Consultant SEO & IA) */
.hero-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Hero Mini Trust Badge (Google) */
.hero-mini-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 8px 16px 8px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  margin-bottom: 24px;
}

.hmt-icon-box {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hmt-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hmt-stars {
  color: #FFA500;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.hmt-text {
  font-size: 0.75rem;
  color: #D1D1D6;
  white-space: nowrap;
}

.hmt-text strong {
  color: #fff;
  font-weight: 600;
}


/* Force Build Wed Dec 24 21:51:34 CET 2025 */
/* Split Layout for Hero */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  /* Text on Left (larger), Image on Right */
  gap: 60px;
  align-items: center;
  text-align: left;
  margin-bottom: 60px;
}

/* LEFT COLUMN = TEXT */
.hero-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.hero-left-column .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: 100%;
}

/* RIGHT COLUMN = IMAGE */
.hero-right-column {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Radiant Glow behind Photo */
.hero-right-column::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.3) 0%, rgba(0, 242, 255, 0.1) 50%, transparent 80%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-portrait {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  /* Deep shadow */
  transform: perspective(1000px) rotateY(-12deg);
  /* Turn Left towards Content */
  transition: all 0.5s ease;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(10%);
}

.hero-portrait:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  filter: grayscale(0%);
  box-shadow: 0 20px 100px rgba(46, 92, 255, 0.25);
  border-color: rgba(46, 92, 255, 0.3);
}

/* Overrides clean up */
.hero-right-column .hero-cta-group,
.hero-right-column .hero-trust-badges {
  /* No longer needed as text is in left column */
  justify-content: flex-start;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-left-column {
    justify-content: center;
    order: 1;
    /* Photo first on mobile to establish person brand */
    margin-bottom: 20px;
  }

  .hero-portrait {
    max-width: 280px;
    /* Smaller on mobile */
    transform: none;
    /* No 3D on mobile */
  }

  .hero-right-column {
    align-items: center;
    order: 2;
  }

  .hero-right-column .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right-column .hero-cta-group {
    justify-content: center;
  }

  .hero-right-column .hero-trust-badges {
    justify-content: center;
  }
}

/* =========================================
   OFFRES.HTML SPECIFIC SECTIONS
   ========================================= */

.comparison-container {
  margin-top: 60px;
  position: relative;
}

.comparison-battle-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.battle-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.battle-card:hover {
  transform: translateY(-12px) scale(1.02);
  z-index: 2;
}

.battle-card.classical {
  opacity: 0.7;
  border-color: rgba(255, 255, 255, 0.1);
}

.battle-card.classical:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.battle-card.hybrid {
  border: 1px solid rgba(0, 242, 255, 0.3);
  background: rgba(0, 242, 255, 0.03);
  box-shadow: 0 30px 60px rgba(0, 242, 255, 0.05);
}

.battle-card.hybrid:hover {
  background: rgba(0, 242, 255, 0.06);
  border-color: rgba(0, 242, 255, 0.6);
  box-shadow: 0 40px 100px rgba(0, 242, 255, 0.15);
}

.battle-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 35px;
  color: #FFF;
}

.battle-card.hybrid h3 {
  color: var(--accent-secondary);
}

.card-status {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-neutral {
  background: rgba(255, 255, 255, 0.05);
  color: #888;
}

.status-good {
  background: rgba(0, 242, 255, 0.1);
  color: var(--accent-secondary);
}

.battle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.battle-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.battle-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #666;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.battle-icon.check {
  background: rgba(0, 242, 255, 0.1);
  color: var(--accent-secondary);
  border-color: rgba(0, 242, 255, 0.3);
}

.battle-text strong {
  display: block;
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 4px;
}

.battle-text p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
  line-height: 1.4;
}

/* VS Badge */
.battle-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  z-index: 5;
}

.battle-vs span {
  width: 50px;
  height: 50px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: #444;
  font-size: 0.8rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.hybrid-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 900px) {
  .comparison-battle-grid {
    flex-direction: column;
    gap: 40px;
  }

  .battle-vs {
    width: 100%;
    margin: -20px 0;
  }
}

.target-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.target-bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 60px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.target-bento-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.target-bento-card.ecommerce {
  background: linear-gradient(145deg, rgba(46, 92, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.target-bento-card.saas {
  background: linear-gradient(145deg, rgba(0, 242, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.target-bento-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.target-bento-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.7;
  color: #E5E5EA;
  max-width: 400px;
}

.bento-accent {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  filter: blur(80px);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.ecommerce .bento-accent {
  background: #2E5CFF;
}

.saas .bento-accent {
  background: #00F2FF;
}

@media (max-width: 1024px) {
  .target-bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .target-bento-card {
    padding: 40px;
    min-height: auto;
  }
}

/* Premium Resources Section */
.resources-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(46, 92, 255, 0.02) 100%);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 45px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(46, 92, 255, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.resource-type {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-secondary);
  margin-bottom: 25px;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 242, 255, 0.08);
  border-radius: 10px;
  width: fit-content;
}

.resource-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #FFF;
  line-height: 1.3;
}

.resource-card p {
  font-size: 1rem;
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 35px;
  flex-grow: 1;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.resource-card:hover .resource-btn {
  color: var(--accent-secondary);
  border-top-color: rgba(46, 92, 255, 0.2);
}

.resource-card:hover .resource-btn svg {
  transform: translateY(3px);
}

/* Resource Filters */
.resource-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(46, 92, 255, 0.4);
  font-weight: 600;
}

/* Stop flickering on these specific boxes */
.qual-box,
.overview-item.featured {
  animation: none !important;
  transform: translateZ(0);
  /* Hardware acceleration fix */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.qual-box:hover,
.overview-item.featured:hover {
  /* Ensure hover doesn't trigger a flicker re-layout */
  transform: translateY(-5px) !important;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}


@media (max-width: 768px) {

  /* 1. Typography Scaling for Readability */
  html {
    font-size: 15px;
    /* Base size slightly smaller but readable */
  }

  h1,
  .hero-title {
    font-size: 2.8rem !important;
    /* Prevent reckless headers */
    line-height: 1.15;
    word-wrap: break-word;
    /* Prevent overflow */
  }

  h2,
  .section-title {
    font-size: 2rem !important;
  }

  p {
    font-size: 1.05rem;
    /* Text large enough for thumbs */
    line-height: 1.6;
  }

  /* 2. Touch Targets (Google Requirement: 48x48px min area) */
  button,
  .nav-btn,
  .nav-btn-premium,
  .cta-btn,
  .resource-btn,
  .blog-read-more,
  a {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links li a {
    padding: 15px;
    /* Increase tap area in mobile menus */
    display: block;
    width: 100%;
  }

  /* 3. Layout Stability (CLS Protection) */
  img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Removes bottom spacing gap */
  }

  .hero-minor,
  .hero-split-layout {
    min-height: auto;
    /* Avoid forced heights causing layout shifts */
    padding-top: 100px;
    padding-bottom: 50px;
  }

  /* 4. Grid Stack Fixes (No horizontal scroll) */
  .grid-2,
  .grid-3,
  .grid-4,
  .blog-grid,
  .comparison-battle-grid,
  .target-bento-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow-x: hidden;
    /* Critical safety */
  }

  /* 5. Interactive Elements Spacing */
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 20px;
    /* Easier to tap */
  }
}

/* Blog Table Styles */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.premium-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-table td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.premium-table tr:last-child td {
  border-bottom: none;
}

.premium-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.premium-table strong {
  color: var(--accent-primary);
}

@media (max-width: 600px) {
  .premium-table {
    font-size: 0.85rem;
  }

  .premium-table th,
  .premium-table td {
    padding: 12px 15px;
  }
}

/* Landing Page Specific Components */
.urgency-block {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 60, 0, 0.05) 100%);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to {
    left: 200%;
  }
}

.urgency-title {
  color: #FF6B00;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
  animation: slideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.floating-cta.visible {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.premium-blockquote {
  border-left: 4px solid var(--accent-primary);
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 20px 20px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.hero-lp {
  padding: 160px 0 100px;
  background: radial-gradient(circle at top right, rgba(46, 92, 255, 0.05), transparent),
    radial-gradient(circle at bottom left, rgba(0, 242, 255, 0.05), transparent);
}

.hero-lp .hero-title {
  font-size: 4rem;
  max-width: 900px;
  margin: 0 auto 30px;
}

@media (max-width: 768px) {
  .hero-lp .hero-title {
    font-size: 2.5rem;
  }
}

/* Newsletter Section - Monochrome Premium Card */
.newsletter-section {
  padding: 100px 0;
  position: relative;
  /* No overflow hidden to allow subtle shadows to breathe if needed, but safe to keep */
  overflow: visible;
}

.newsletter-box {
  background: #080808;
  /* Deepest black */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 700px;
  /* Wider for stance */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Subtle gradient top border for depth */
.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.newsletter-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.newsletter-byline {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.newsletter-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 16px auto;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(90deg, #2E5CFF, #00F2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.newsletter-subtitle {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  background: #111;
  border: 1px solid #333;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #fff;
  /* Stark contrast on focus */
  background: #111;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.newsletter-input::placeholder {
  color: #555;
}

.newsletter-btn {
  padding: 16px 32px;
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}

.newsletter-btn:hover {
  background: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.newsletter-privacy {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.newsletter-privacy a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid #333;
}

.newsletter-privacy a:hover {
  color: #888;
  border-color: #555;
}

/* Response Mobile */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-box {
    padding: 40px 20px;
  }

  .newsletter-subtitle {
    max-width: 100%;
  }
}

/* =========================================
   NEWSLETTER POPUP (Monochrome Premium)
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  /* Deep dark overlay */
  backdrop-filter: blur(12px);
  /* Strong blur for focus */
  z-index: 10000;
  /* Top level */
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.popup-overlay.width-visible {
  display: flex;
  opacity: 1;
}

.popup-card {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* Top light for depth */
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.popup-overlay.width-visible .popup-card {
  transform: scale(1) translateY(0);
}

/* Close Button */
.popup-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #888;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: rotate(90deg);
}

/* Reusing Newsletter Styles but scoped adjustments if needed */
.popup-card .newsletter-logo {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px auto;
  display: block;
}

.popup-card .newsletter-title {
  font-size: 2rem;
  /* Slightly smaller for popup */
  margin-bottom: 10px;
}

.popup-card .newsletter-subtitle {
  font-size: 1rem;
  margin: 0 auto 30px auto;
  color: #aaa;
  max-width: 100%;
  text-align: center;
}

/* =========================================
   MOBILE RESPONSIVE FIXES (GLOBAL)
   ========================================= */

@media (max-width: 1024px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-title {
    font-size: 4rem;
  }

  /* Footer Grid Tablet */
  .status-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* Global Section Spacing */
  section,
  .strategy-monolith-section,
  .offers-section,
  .faq-section {
    padding: 60px 0 !important;
  }

  .hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    min-height: auto;
  }

  /* Typography Scaling */
  html {
    font-size: 14px;
    /* Slight scale down */
  }

  .hero-title {
    font-size: 2.5rem !important;
    /* Control Hero Title Overflow */
    line-height: 1.2;
  }

  .section-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
    max-width: 100%;
  }

  /* Grids to Single Column */
  .grid-3,
  .grid-2,
  .features-grid,
  .semantique-grid,
  .offers-grid-premium,
  .blog-posts-grid {
    grid-template-columns: 1fr !important;
  }

  .status-footer .footer-grid {
    grid-template-columns: 1fr !important;
    /* Footer Stack */
    text-align: center;
    /* Center footer on mobile */
  }

  .footer-col {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Hide complex background elements causing overflow */
  .monolith-bg-text,
  .hero-glow-left,
  .hero-glow-right {
    opacity: 0.3;
    transform: none !important;
  }

  /* CTA Buttons Mobile */
  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group a {
    width: 100%;
    justify-content: center;
  }

  /* Newsletter Popup Mobile */
  .popup-card {
    width: 90%;
    padding: 30px 20px;
  }

  .newsletter-title {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }
}