:root {
  --green: #1a7f67;
  --green-dark: #145f4e;
  --green-light: #e6f4f0;
  --green-mid: #2a9d82;
  --white: #ffffff;
  --off-white: #f8fbfa;
  --gray-light: #f0f5f3;
  --gray: #6b7b77;
  --dark: #0d1f1a;
  --text: #1c2b26;
  --orange: #ff6b2b;
  --orange-dark: #e55a1f;
  --gold: #f5a623;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(26, 127, 103, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 127, 103, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 127, 103, 0.1);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  color: var(--dark);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 127, 103, 0.3);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #f8fbfa 0%, #e8f5f1 40%, #f8fbfa 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 127, 103, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(26, 127, 103, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(26, 127, 103, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}
.hero-badge::before {
  content: "🏆";
  font-size: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.3;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-sub strong {
  color: var(--green);
  font-weight: 600;
}
.hero-result-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--green-light);
  border-left: 4px solid var(--green);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-result-chip .stat {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-display);
}
.hero-result-chip .label {
  font-size: 13px;
  color: var(--gray);
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.btn-primary {
  background: var(--green);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(26, 127, 103, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 127, 103, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: 2px solid var(--green);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--green-light);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray);
  animation: fadeInUp 0.7s ease 0.5s both;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-left: -8px;
}
.hero-trust-avatars span:first-child {
  margin-left: 0;
}

/* Hero right side */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-card-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 127, 103, 0.1);
}
.hero-card-main h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.metric-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(26, 127, 103, 0.08);
}
.metric-box.green {
  background: var(--green);
}
.metric-box .val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}
.metric-box.green .val {
  color: white;
}
.metric-box .lbl {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.metric-box.green .lbl {
  color: rgba(255, 255, 255, 0.8);
}
.roas-banner {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roas-banner span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.roas-banner strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  font-weight: 800;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.floating-badge.badge-1 {
  top: -20px;
  right: -20px;
  color: var(--green);
}
.floating-badge.badge-2 {
  bottom: -20px;
  left: -20px;
  color: var(--orange);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== VIDEO SLIDER SECTION ===== */
#video-slider {
  padding: 80px 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#video-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--green-mid),
    var(--green)
  );
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}
#video-slider .section-title {
  color: white;
}
#video-slider .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.slider-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.slider-controls {
  display: flex;
  gap: 12px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
}

.video-track-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.video-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #1a2e28;
  aspect-ratio: 9/16;
  max-height: 480px;
}
.video-card:first-child {
  min-width: calc(50% - 12px);
  max-height: 540px;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2e28, #0d1f1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 48px;
  position: relative;
}
.video-thumb-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a30 0%, #0f2219 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.video-thumb-bg .food-emoji {
  font-size: 64px;
  opacity: 0.3;
}
.video-thumb-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 32px rgba(26, 127, 103, 0.5);
  transition: all 0.3s;
  z-index: 2;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(26, 127, 103, 0.7);
}
.video-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.video-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.video-card-meta h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}
.video-card-meta p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ===== AD CREATIVES ===== */
#creatives {
  padding: 100px 5%;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.creatives-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.creative-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.creative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.creative-card:nth-child(1) {
  background: linear-gradient(135deg, #1a7f67 0%, #0d4d3d 100%);
}
.creative-card:nth-child(2) {
  background: linear-gradient(135deg, #ff6b2b 0%, #c44010 100%);
}
.creative-card:nth-child(3) {
  background: linear-gradient(135deg, #1c2b26 0%, #2a4a3a 100%);
}
.creative-card:nth-child(4) {
  background: linear-gradient(135deg, #f5a623 0%, #c47d0a 100%);
}
.creative-card:nth-child(5) {
  background: linear-gradient(135deg, #2a9d82 0%, #1a7f67 100%);
}
.creative-card:nth-child(6) {
  background: linear-gradient(135deg, #e63946 0%, #8b0000 100%);
}
.creative-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad_1.jpeg");
  background-size: cover;
  background-position: center;
}

.creative-inner_1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner_1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad-2.jpeg");
  background-size: cover;
  background-position: center;
}

.creative-inner_2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner_2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad-3.jpeg");
  background-size: cover;
  background-position: center;
}

.creative-inner_3 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner_3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad-4.png");
  background-size: cover;
  background-position: center;
}

.creative-inner_4 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner_4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad-5.png");
  background-size: cover;
  background-position: center;
}
.creative-inner_5 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.creative-inner_5::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("videos/ad-6.png");
  background-size: cover;
  background-position: center;
}

.creative-emoji {
  font-size: 56px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.creative-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.creative-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.creative-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}
.creative-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.creatives-label {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray);
}
.creatives-label strong {
  color: var(--green);
}

/* ===== PROBLEM SECTION ===== */
#problem {
  padding: 100px 5%;
  background: white;
}
.problem-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem-visual {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.commission-calc {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.commission-calc h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
}
.calc-row:last-child {
  border: none;
}
.calc-row .label {
  color: var(--text);
}
.calc-row .val {
  font-weight: 700;
  color: var(--text);
}
.calc-row.loss .val {
  color: #e63946;
}
.calc-row.profit .val {
  color: var(--green);
  font-size: 18px;
}
.pain-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pain-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-light);
  border-left: 4px solid transparent;
  transition: all 0.3s;
}
.pain-card:hover {
  border-left-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.pain-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.pain-card .highlight-stat {
  font-size: 22px;
  font-weight: 800;
  color: #e63946;
  font-family: var(--font-display);
}

/* ===== SOLUTION ===== */
#solution {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}
.steps-container {
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}
.steps-line {
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(26, 127, 103, 0.1));
  z-index: 0;
}
.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  animation: fadeInLeft 0.5s ease both;
}
.step-number {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--green-light);
}
.step-content {
  flex: 1;
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 127, 103, 0.08);
  transition: all 0.3s;
}
.step-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}
.step-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-box {
  max-width: 800px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.result-item .r-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 6px;
}
.result-item .r-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== CASE STUDY ===== */
#case-study {
  padding: 100px 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#case-study::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(26, 127, 103, 0.12) 0%,
    transparent 70%
  );
}
#case-study .section-title {
  color: white;
}
#case-study .section-eyebrow {
  color: var(--green);
}
#case-study .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}
#case-study p,
#case-study li {
  color: rgba(255, 255, 255, 0.75);
}
#case-study h2,
#case-study h3,
#case-study h4 {
  color: white;
}
#video-slider .section-eyebrow {
  color: var(--green);
}
/* Ensure dark bg containers have visible text */
.ba-col .ba-stat .s-label {
  color: rgba(255, 255, 255, 0.65) !important;
}
.ba-col .ba-stat .s-val {
  color: white !important;
}
.roas-mega .roas-detail {
  color: rgba(255, 255, 255, 0.8) !important;
}
footer .footer-brand p {
  color: rgba(255, 255, 255, 0.65) !important;
}
footer .footer-col a {
  color: rgba(255, 255, 255, 0.65) !important;
}
footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5) !important;
}
.case-header {
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: center;
}
.case-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}
.ba-col {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ba-col.after {
  border-color: rgba(26, 127, 103, 0.4);
  background: rgba(26, 127, 103, 0.08);
}
.ba-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-label.before-l {
  color: #e63946;
}
.ba-label.after-l {
  color: var(--green);
}
.ba-stat {
  margin-bottom: 20px;
}
.ba-stat .s-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.ba-stat .s-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.ba-stat .s-val.bad {
  color: #e63946;
}
.ba-stat .s-val.good {
  color: #2ecc71;
}

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.vs-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(26, 127, 103, 0.5);
}
.vs-line {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.roas-mega {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.roas-mega h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.roas-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.roas-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  line-height: 1.6;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(26, 127, 103, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 120px;
  color: rgba(26, 127, 103, 0.15);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.testimonial-author .name {
  font-weight: 700;
  color: white;
}
.testimonial-author .role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}

/* ===== PRICING ===== */
#pricing {
  padding: 100px 5%;
  background: white;
}
.pricing-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.pricing-card.popular {
  border-color: var(--green);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.popular-badge {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-header {
  padding: 32px 32px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.pricing-card.popular .pricing-header {
  background: var(--green-light);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-for {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
}
.pricing-price .period {
  font-size: 14px;
  color: var(--gray);
}
.pricing-result {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: 12px;
  background: var(--green-light);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-features {
  padding: 28px 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 14px;
}
.feature-item:last-child {
  border: none;
}
.feature-icon {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-footer {
  padding: 0 32px 32px;
}

.addons-section {
  max-width: 1100px;
  margin: 48px auto 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.addon-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.addon-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.addon-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.addon-price {
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
}

.guarantee-box {
  max-width: 800px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, var(--green-light), #d0ede6);
  border: 2px solid rgba(26, 127, 103, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.guarantee-icon {
  font-size: 48px;
  flex-shrink: 0;
}
.guarantee-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ===== WHY US ===== */
#why-us {
  padding: 100px 5%;
  background: var(--off-white);
}
.pillars-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(26, 127, 103, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26, 127, 103, 0.2);
}
.pillar-icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Testimonials strip */
.testimonials-strip {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-mini {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(26, 127, 103, 0.08);
  transition: all 0.3s;
}
.testi-mini:hover {
  box-shadow: var(--shadow);
}
.testi-mini .stars {
  font-size: 14px;
  margin-bottom: 14px;
}
.testi-mini p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-mini .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.testi-mini .biz {
  font-size: 12px;
  color: var(--gray);
}

/* ===== CTA SECTION ===== */
#cta {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(26, 127, 103, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-left h2 em {
  color: var(--green);
  font-style: normal;
}
.cta-left p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Form */
.cta-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 127, 103, 0.12);
  position: relative;
}
.cta-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cta-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.cta-form .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26, 127, 103, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 127, 103, 0.12);
  background: white;
}
.btn-orange {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255, 107, 43, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.45);
}
.form-footer {
  text-align: center;
  margin-top: 16px;
}
.form-footer p {
  font-size: 13px;
  color: var(--gray);
}
.form-footer strong {
  color: var(--green);
}
.urgency-bar {
  background: var(--green-light);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Social proof strip */
.proof-strip {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: center;
}
.proof-strip p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-item {
  background: var(--off-white);
  border: 1px solid rgba(26, 127, 103, 0.15);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: flex;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .vs-divider {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-strip {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .result-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .addons-section {
    grid-template-columns: 1fr;
  }
  .metric-row {
    grid-template-columns: 1fr 1fr;
  }
  .creatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Mobile: JS controls card widths for infinite slider */
  .video-card,
  .video-card:first-child {
    min-width: unset !important;
    max-height: 420px;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .creatives-grid {
    grid-template-columns: 1fr;
  }
  .logo-strip {
    gap: 16px;
  }
  .roas-mega {
    flex-direction: column;
  }
}

/* ===== VIDEO POPUP MODAL ===== 
  #videoPopup {
    display: none;
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.88);
    align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.25s ease;
  }
  #videoPopup.open { display: flex; }
  .video-popup-inner {
    position: relative;
    width: 90vw; max-width: 480px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    animation: fadeInUp 0.35s ease;
  }
  .video-popup-inner video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-popup-close {
    position: absolute; top: 14px; right: 14px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.65); border: none;
    color: white; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: background 0.2s;
    backdrop-filter: blur(4px);
  }
  .video-popup-close:hover { background: rgba(255,255,255,0.25); }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }*/

/* Inline video fills the card, above fallback thumb */
.video-card .inline-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  /* Show video immediately; thumb fades out once video is confirmed playing */
  opacity: 1;
}
.video-card .video-thumb-bg {
  transition: opacity 0.5s ease;
  /* Thumb sits behind the video by default */
  z-index: 1 !important;
}
/* When video is NOT yet loaded/playing, show thumb as fallback */
.video-slider {
  display: flex;
  gap: 20px;
}

.video-card {
  width: 300px;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  border-radius: 10px;
}

/* Popup */
/* 🔥 Proper Fullscreen Modal */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999; /* 🔥 VERY IMPORTANT */

  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

/* Video */
.popup video {
  width: 100%;
  border-radius: 10px;
  height: 650px !important;
}

/* Close button */
.close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.video-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  overflow: hidden;
}

#video-slider {
  overflow: hidden;
}

.video-card video {
  pointer-events: none;
}

/* 🔥 Wrapper hides overflow */
.slider-wrapper {
  overflow: hidden;
}

/* 🔥 Slider track */
.video-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Card */
.video-card {
  min-width: 300px;
  cursor: pointer;
}
.slider-wrapper {
  overflow: hidden;
}

.video-slider {
  display: flex;
  gap: 20px;
}

.video-card {
  min-width: 300px;
}

.slider-wrapper {
  overflow: hidden; /* hides cards outside view */
  width: 100%;
}

.video-slider {
  display: flex;
  flex-wrap: nowrap; /* keeps all cards in one row */
  gap: 20px; /* or whatever your gap is */
  width: max-content; /* lets slider expand beyond wrapper */
}

.video-card {
  flex: 0 0 auto; /* prevents shrinking */
  width: 300px; /* set your desired card width */
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* LinkedIn hover effect (brand color) */
.social-icon:hover {
  background-color: var(--green);
}

#video-section {
  background: linear-gradient(135deg, #021c18, #063c32);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.section-eyebrow {
  color: #1abc9c;
  letter-spacing: 2px;
  font-size: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 40px;
  opacity: 0.7;
}

/* Slider */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 calc(100% / 3 - 14px); /* 3 per view */
  aspect-ratio: 1 / 1; /* square cards */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0a3d33;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 90%;
  max-width: 1000px;
  height: 650px;
  background: #000;
  position: relative;
}

@media (max-width: 768px) {
  .modal-content {
    height: 400px;
  }
}

.modal-content video {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* 📱 Mobile: 1 slide per view */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
  }
}

body.modal-open .nav-btn {
  display: none;
}
