/* ================================================================
   sections.css — Hero | Intro | Services | Decision
   ================================================================ */


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('/assets/img/sections/luke-chesser.jpg');
  background-size: cover;
  background-position: center;
}

.hero-modern .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(10, 10, 25, 0.92) 0%,
    rgba(18, 18, 45, 0.85) 45%,
    rgba(100, 10, 30, 0.55) 100%
  );
  z-index: 1;
}

/* Floating blobs */
.hero-modern .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  z-index: 1;
  animation: floatBlob 8s ease-in-out infinite;
}
.hero-modern .blob-1 {
  width: 500px; height: 500px;
  background: #f5365c;
  top: -120px; right: -80px;
  animation-delay: 0s;
}
.hero-modern .blob-2 {
  width: 320px; height: 320px;
  background: #5e72e4;
  bottom: -60px; left: 10%;
  animation-delay: 3s;
}
.hero-modern .blob-3 {
  width: 200px; height: 200px;
  background: #f5365c;
  top: 40%; left: 38%;
  animation-delay: 5s;
}
@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Grid lines */
.hero-modern .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-modern .hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 54, 92, 0.15);
  border: 1px solid rgba(245, 54, 92, 0.4);
  color: #ff6b8a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: #f5365c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Headline */
.hero-modern h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-modern h1 .accent {
  background: linear-gradient(90deg, #f5365c, #ff8c69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-modern .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Buttons */
.hero-modern .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #f5365c, #d42b50);
  color: #fff !important;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 25px rgba(245, 54, 92, 0.45);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 54, 92, 0.6);
}
.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Stats bar */
.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 32px;
}
.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.hero-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .stat-number span { color: #f5365c; }
.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Floating card mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card-mock {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-card-mock .mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5365c, #ff8c69);
}
.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 10px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f5365c, #ff8c69);
  animation: growBar 2.5s ease-in-out infinite alternate;
}
@keyframes growBar { from { width: 40%; } to { width: 85%; } }
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-top: 16px;
}
.mock-bar-col {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(245,54,92,0.25);
}
.mock-bar-col.active { background: linear-gradient(180deg, #f5365c, #d42b50); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.scroll-indicator:hover { color: rgba(255,255,255,0.8); }
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ── Shared badge & dot ─────────────────────────────────────────── */
.intro-badge,
.decision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 54, 92, 0.08);
  border: 1px solid rgba(245, 54, 92, 0.25);
  color: #f5365c;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #f5365c;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

/* ── Section divider line ───────────────────────────────────────── */
.section-top-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,54,92,0.4) 40%, rgba(245,54,92,0.4) 60%, transparent 100%);
}


/* ================================================================
   INTRO SECTION
   ================================================================ */
.intro-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #f8f9ff;
  background-image:
    radial-gradient(ellipse 700px 550px at 105% -5%, rgba(245,54,92,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 600px 500px at -5% 110%, rgba(94,114,228,0.05) 0%, transparent 100%),
    repeating-linear-gradient(
      -55deg,
      transparent 0px, transparent 24px,
      rgba(94,114,228,0.022) 24px, rgba(94,114,228,0.022) 25px
    );
}

/* Top separator line */
.intro-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,54,92,0.35), transparent);
}

/* Ambient glow */
.intro-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,54,92,0.045) 0%, transparent 65%);
  pointer-events: none;
}

/* Text side */
.intro-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d0d1f;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.intro-description {
  font-size: 0.97rem;
  color: #555570;
  line-height: 1.9;
  font-weight: 400;
}
.intro-description p { margin-bottom: 14px; }
.intro-description p:last-child { margin-bottom: 0; }
.intro-description strong { color: #f5365c; font-weight: 600; }

.intro-description ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
  counter-reset: intro-counter;
}
.intro-description ol li {
  counter-increment: intro-counter;
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
  color: #555570;
  line-height: 1.7;
}
.intro-description ol li::before {
  content: counter(intro-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #f5365c, #d42b50);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 26px;
  text-align: center;
}

/* Image side */
.intro-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245, 54, 92, 0.12),
    0 30px 60px -10px rgba(0, 0, 0, 0.12),
    0 10px 20px -5px rgba(0, 0, 0, 0.08);
}
.intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.intro-image-wrapper:hover img {
  transform: scale(1.04);
}

/* Floating badge on image */
.intro-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}
.intro-image-badge .badge-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f5365c, #d42b50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.intro-image-badge .badge-icon i {
  color: #fff;
  font-size: 16px;
}
.intro-image-badge .badge-text {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.intro-image-badge .badge-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d0d1f;
  line-height: 1;
}
.intro-image-badge .badge-value span {
  color: #f5365c;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #070718;
  background-image:
    radial-gradient(ellipse 600px 500px at -5% 110%, rgba(245,54,92,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 700px 500px at 105% -10%, rgba(94,114,228,0.1) 0%, transparent 100%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 50px 50px, 50px 50px;
}

/* Decorative top border */
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,54,92,0.45), rgba(94,114,228,0.35), transparent);
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,114,228,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .intro-badge {
  background: rgba(245,54,92,0.12);
  border-color: rgba(245,54,92,0.3);
  color: #ff6b8a;
}
.services-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.services-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card */
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* Gradient top bar on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5365c, #ff8c69);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Subtle glow in corner */
.service-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245, 54, 92, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 8px 16px rgba(245,54,92,0.12);
  border-color: rgba(245,54,92,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

/* Icon */
.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(245, 54, 92, 0.1), rgba(245, 54, 92, 0.04));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #f5365c, #d42b50);
  transform: scale(1.08);
}
.service-icon i {
  font-size: 22px;
  color: #f5365c;
  transition: color 0.3s ease;
}
.service-card:hover .service-icon i { color: #fff; }

/* Title */
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

/* Description */
.service-card .service-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.service-card .service-description ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.service-card .service-description ol li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.service-card .service-description ol li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f5365c;
  font-size: 12px;
  font-weight: 700;
  top: 1px;
}
.service-card .service-description p { margin-bottom: 8px; }
.service-card .service-description strong { color: rgba(255,255,255,0.85); font-weight: 600; }


/* ================================================================
   DECISION SECTION
   ================================================================ */
.decision-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #06061a;
  background-image:
    radial-gradient(ellipse 700px 500px at -5% 50%, rgba(245,54,92,0.09) 0%, transparent 100%),
    radial-gradient(ellipse 600px 500px at 105% 50%, rgba(94,114,228,0.09) 0%, transparent 100%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 50px 50px, 50px 50px;
}

/* Ambient glows */
.decision-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 54, 92, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.decision-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative grid */
.decision-section .decision-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Badge override for dark bg */
.decision-section .decision-badge {
  background: rgba(245, 54, 92, 0.12);
  border-color: rgba(245, 54, 92, 0.3);
  color: #ff6b8a;
}

/* Title */
.decision-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

/* Description box */
.decision-description {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.decision-description ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
  counter-reset: decision-counter;
}
.decision-description ol li {
  counter-increment: decision-counter;
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 0.95rem;
}
.decision-description ol li:last-child { margin-bottom: 0; }
.decision-description ol li::before {
  content: counter(decision-counter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  background: rgba(245, 54, 92, 0.15);
  border: 1px solid rgba(245, 54, 92, 0.3);
  color: #f5365c;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.decision-description strong { color: #fff; font-weight: 600; }
.decision-description p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}
.decision-description p:last-child { margin-bottom: 0; }

/* Solution box */
.decision-solution {
  background: linear-gradient(135deg, rgba(245, 54, 92, 0.12), rgba(94, 114, 228, 0.08));
  border: 1px solid rgba(245, 54, 92, 0.25);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.decision-solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5365c, #ff8c69, #5e72e4);
}
.decision-solution h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #f5365c;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.decision-solution h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 54, 92, 0.2);
}
.decision-solution p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.decision-solution p:last-child { margin-bottom: 0; }
.decision-solution strong { color: #fff; font-weight: 600; }
.decision-solution ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.decision-solution ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.93rem;
}
.decision-solution ol li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #f5365c;
  font-size: 10px;
  top: 3px;
}

/* ================================================================
   FOUNDER SECTION
   ================================================================ */
.founder-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fafbff;
  background-image:
    radial-gradient(ellipse 650px 500px at 105% 0%, rgba(245,54,92,0.055) 0%, transparent 100%),
    radial-gradient(ellipse 550px 450px at -5% 110%, rgba(94,114,228,0.045) 0%, transparent 100%),
    radial-gradient(circle, rgba(13,13,40,0.035) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,54,92,0.35), transparent);
}

.founder-section::after {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,54,92,0.04) 0%, transparent 65%);
  pointer-events: none;
}

/* Photo */
.founder-photo-wrapper {
  position: relative;
  display: inline-block;
}

.founder-photo {
  width: 300px;
  height: 370px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(245,54,92,0.1),
    0 30px 70px -10px rgba(0,0,0,0.18),
    0 10px 20px -5px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.founder-photo:hover {
  transform: translateY(-6px);
}

.founder-photo-wrapper::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 56px; height: 56px;
  border-top: 3px solid #f5365c;
  border-left: 3px solid #f5365c;
  border-radius: 8px 0 0 0;
  opacity: 0.55;
}

.founder-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 56px; height: 56px;
  border-bottom: 3px solid #f5365c;
  border-right: 3px solid #f5365c;
  border-radius: 0 0 8px 0;
  opacity: 0.55;
}

.founder-photo-placeholder {
  width: 300px;
  height: 370px;
  border-radius: 24px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,54,92,0.06), rgba(94,114,228,0.05));
  border: 2px dashed rgba(245,54,92,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder i {
  font-size: 80px;
  color: rgba(245,54,92,0.2);
}

/* Content */
.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0d0d1f;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.founder-position {
  font-size: 11px;
  font-weight: 700;
  color: #f5365c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.founder-divider {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #f5365c, #ff8c69);
  border-radius: 2px;
  margin-bottom: 24px;
}

.founder-bio {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #555570;
}
.founder-bio p { margin-bottom: 14px; }
.founder-bio p:last-child { margin-bottom: 0; }
.founder-bio strong { color: #0d0d1f; font-weight: 600; }

/* LinkedIn button */
.btn-founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0077b5 !important;
  text-decoration: none !important;
  border: 1.5px solid rgba(0,119,181,0.3);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  margin-top: 28px;
}

.btn-founder-linkedin:hover {
  background: rgba(0,119,181,0.06);
  border-color: #0077b5;
  transform: translateY(-2px);
}


/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .intro-section,
  .services-section,
  .decision-section,
  .founder-section,
  .news-section,
  .clients-section { padding: 64px 0; }

  .intro-image-badge { padding: 12px 16px; }
  .intro-image-badge .badge-value { font-size: 18px; }

  .decision-description,
  .decision-solution { padding: 24px; }

  .service-card { padding: 28px 24px; }

  .founder-photo,
  .founder-photo-placeholder {
    width: 240px;
    height: 300px;
  }
}


/* ================================================================
   NEWS SECTION
   ================================================================ */
.news-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #f5f6ff;
  background-image:
    radial-gradient(ellipse 600px 450px at 100% 0%, rgba(245,54,92,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 500px 400px at 0% 100%, rgba(94,114,228,0.04) 0%, transparent 100%),
    radial-gradient(circle, rgba(94,114,228,0.04) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px;
}
.news-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,114,228,0.3), rgba(245,54,92,0.3), transparent);
}

.news-section .news-header {
  text-align: center;
  margin-bottom: 56px;
}
.news-section .news-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d0d1f;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.news-section .news-header p {
  color: #6c6c8a;
  font-size: 1rem;
  line-height: 1.7;
}

.card-blog {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(94,114,228,0.08), 0 1px 4px rgba(0,0,0,0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  height: 100%;
  background: #fff !important;
}
.card-blog:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(94,114,228,0.14), 0 4px 12px rgba(0,0,0,0.06) !important;
}
.news-title-link { color: #0d0d1f !important; text-decoration: none !important; }
.news-title-link:hover { color: #f5365c !important; }

/* ================================================================
   CLIENTS SECTION
   ================================================================ */
.clients-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #06061a;
  background-image:
    radial-gradient(ellipse 700px 500px at 50% 110%, rgba(245,54,92,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 600px 450px at 50% -10%, rgba(94,114,228,0.07) 0%, transparent 100%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, auto, 50px 50px, 50px 50px;
}
.clients-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,114,228,0.4), rgba(245,54,92,0.4), transparent);
}

.clients-section .clients-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.clients-section .clients-header p {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  line-height: 1.7;
}

.client-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  padding: 32px 24px !important;
  transition: background 0.3s, border-color 0.3s, transform 0.3s !important;
  backdrop-filter: blur(8px);
}
.client-card:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(245,54,92,0.25) !important;
  transform: translateY(-6px);
}
.client-card .card-title { color: #fff !important; }
.client-card .card-text  { color: rgba(255,255,255,0.5) !important; }
.client-card .client-initials {
  background: linear-gradient(135deg, rgba(245,54,92,0.2), rgba(94,114,228,0.2)) !important;
  border: 1px solid rgba(245,54,92,0.3) !important;
}
.client-card .client-initials span { color: #f5365c !important; }


/* ================================================================
   GALLERY SECTION (Home Preview)
   ================================================================ */
.gallery-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #05050f;
  background-image:
    radial-gradient(ellipse 700px 550px at -5% 50%, rgba(245,54,92,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 600px 500px at 105% 50%, rgba(94,114,228,0.08) 0%, transparent 100%),
    radial-gradient(circle, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,54,92,0.4), transparent);
}

/* Ambient glows */
.gallery-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,114,228,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.gallery-section .glow-left {
  position: absolute;
  top: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,54,92,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.gallery-section .gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-section .gallery-header-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  line-height: 1.2;
}
.gallery-section .gallery-header-text p {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 0;
}

/* "View all" link */
.btn-gallery-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}
.btn-gallery-all:hover {
  background: rgba(245,54,92,0.12);
  border-color: rgba(245,54,92,0.4);
  color: #ff6b8a !important;
}
.btn-gallery-all i { font-size: 11px; }

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
}

/* Featured: first item spans 2 rows */
.gallery-item:first-child {
  grid-row: span 2;
}

/* Each item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 10, 25, 0.55) 65%,
    rgba(10, 10, 25, 0.88) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay .gallery-item-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5365c;
  margin-bottom: 4px;
}

.gallery-item-overlay .gallery-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 4px;
}

.gallery-item-overlay .gallery-item-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Placeholder when no image */
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 14px;
}
.gallery-item-placeholder i {
  font-size: 32px;
  color: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-section { padding: 64px 0; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════════════════════
   HERO — entrance animations (above fold, CSS keyframes)
   ══════════════════════════════════════════════════════ */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(48px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-modern .hero-badge        { animation: heroEntrance 0.65s cubic-bezier(.25,.46,.45,.94) 0.15s both; }
.hero-modern .hero-content h1   { animation: heroEntrance 0.7s  cubic-bezier(.25,.46,.45,.94) 0.35s both; }
.hero-modern .hero-subtitle     { animation: heroEntrance 0.65s cubic-bezier(.25,.46,.45,.94) 0.5s  both; }
.hero-modern .hero-actions      { animation: heroEntrance 0.65s cubic-bezier(.25,.46,.45,.94) 0.65s both; }
.hero-modern .hero-stats        { animation: heroEntrance 0.65s cubic-bezier(.25,.46,.45,.94) 0.8s  both; }
.hero-modern .hero-visual       { animation: heroVisualIn  0.8s  cubic-bezier(.25,.46,.45,.94) 0.3s  both; }

/* Counter number slot */
.count-num { display: inline-block; }

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS — Intersection Observer (data-aos)
   ══════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.72s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"]    { transform: translateY(48px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-64px); }
[data-aos="fade-left"]  { transform: translateX(64px); }
[data-aos="zoom-in"]    { transform: scale(0.82); }
[data-aos="fade"]       { transform: none; }

[data-aos].aos-animate  { opacity: 1; transform: none; }

/* Honour the OS "reduce motion" preference */
@media (prefers-reduced-motion: reduce) {
  [data-aos],
  [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-modern .hero-badge,
  .hero-modern .hero-content h1,
  .hero-modern .hero-subtitle,
  .hero-modern .hero-actions,
  .hero-modern .hero-stats,
  .hero-modern .hero-visual { animation: none !important; opacity: 1 !important; }
}
