/* ============================================
   ALLO CT — Styles
   Black & Red Premium Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  --red: #D41920;
  --red-dark: #B01118;
  --red-light: #FF2D35;
  --black: #111111;
  --black-soft: #1A1A1A;
  --gray-900: #222222;
  --gray-800: #333333;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #E0E0E0;
  --gray-100: #F3F3F3;
  --white: #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 32px rgba(212, 25, 32, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Defaults --- */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ============================
   HEADER / NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212, 25, 32, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================
   HERO
   ============================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.93) 0%, rgba(34, 34, 34, 0.88) 50%, rgba(42, 10, 12, 0.92) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 25, 32, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 25, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-benefits li .icon-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-benefits li .icon-check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Hero Visual (right side) --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-central-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(212, 25, 32, 0.5);
  box-shadow: 0 0 60px rgba(212, 25, 32, 0.2), 0 0 120px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-central-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.float-card-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Pulse animation for incoming call */
.float-card-pulse {
  width: 10px;
  height: 10px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  margin-left: auto;
  flex-shrink: 0;
}

/* Card positions and animations */
.float-card-1 {
  top: 20px;
  left: 10px;
  animation: floatCard1 6s ease-in-out infinite;
}

.float-card-2 {
  top: 140px;
  right: 0;
  animation: floatCard2 7s ease-in-out infinite;
}

.float-card-3 {
  bottom: 120px;
  left: 0;
  animation: floatCard3 8s ease-in-out infinite;
}

.float-card-4 {
  bottom: 20px;
  right: 20px;
  animation: floatCard4 6.5s ease-in-out infinite;
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(8px, -12px);
  }

  50% {
    transform: translate(-5px, -8px);
  }

  75% {
    transform: translate(10px, 5px);
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-10px, 8px);
  }

  50% {
    transform: translate(6px, 14px);
  }

  75% {
    transform: translate(-8px, -6px);
  }
}

@keyframes floatCard3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(12px, 6px);
  }

  50% {
    transform: translate(-8px, -10px);
  }

  75% {
    transform: translate(5px, 12px);
  }
}

@keyframes floatCard4 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-6px, -14px);
  }

  50% {
    transform: translate(10px, -6px);
  }

  75% {
    transform: translate(-12px, 8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(212, 25, 32, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212, 25, 32, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}


/* ============================
   PROBLEM SECTION
   ============================ */
.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-visual {
  position: relative;
}

.problem-visual-card {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.problem-visual-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.problem-visual-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-visual-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.stat-card .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}

.stat-card .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.problem-text .section-subtitle {
  margin-bottom: 24px;
}

.problem-solution {
  background: var(--gray-100);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.problem-solution p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.problem-solution strong {
  color: var(--red);
  font-weight: 700;
}


/* ============================
   SERVICES SECTION
   ============================ */
.services {
  background: var(--gray-100);
}

.services-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}

.services-header-text {
  flex: 1;
}

.services-header-img {
  width: 280px;
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.5;
}


/* ============================
   STEPS SECTION
   ============================ */
.steps {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(212, 25, 32, 0.1);
  transform: translateY(-4px);
}

.step-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-card:hover .step-img img {
  transform: scale(1.08);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--black), var(--gray-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: -26px auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0.4;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  padding: 0 24px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 24px 32px;
}

/* Connector lines between steps */
.steps-grid .step-card:not(:last-child)::after {
  display: none;
}


/* ============================
   TARGET AUDIENCE
   ============================ */
.audience {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 60%, #2a0a0c 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.audience::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 25, 32, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.audience .section-title {
  color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  transition: var(--transition);
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
  transform: translateX(8px);
}

.audience-item .item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-item .item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.audience-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}


/* ============================
   BENEFITS SECTION
   ============================ */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--gray-100);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.benefit-check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-check svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 500;
}

.benefits-callout {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.benefits-callout::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
}

.benefits-callout .callout-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-callout .callout-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.benefits-callout p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}


/* ============================
   PRICING SECTION
   ============================ */
.pricing {
  background: var(--gray-100);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--red);
}

.pricing-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.pricing-card ul li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--red);
  margin-top: 2px;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
}

.pricing-option {
  max-width: 800px;
  margin: 28px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 36px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-option .option-badge {
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  flex-shrink: 0;
}

.pricing-option p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}


/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  opacity: 0.3;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  max-width: 780px;
}

.about-content .section-subtitle {
  margin-bottom: 20px;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 16px;
}


/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 60%, #2a0a0c 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 25, 32, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 25, 32, 0.15);
}

.form-group select option {
  background: var(--gray-900);
  color: var(--white);
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  margin-top: 8px;
}

/* Form feedback message */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
  animation: fadeInMessage 0.3s ease;
}

.form-message-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  color: #66d98a;
}

.form-message-error {
  background: rgba(212, 25, 32, 0.15);
  border: 1px solid rgba(212, 25, 32, 0.4);
  color: #ff6b6b;
}

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-item .detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-item .detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-detail-item .detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-item .detail-text span {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}


/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(10);
}

.footer p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--red);
}


/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual-wrapper {
    height: 380px;
  }

  .hero-central-image {
    width: 200px;
    height: 200px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-header {
    flex-direction: column;
    text-align: center;
  }

  .services-header-img {
    width: 100%;
    height: 220px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefits-callout {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }
}