/* ===========================
   DESIGN TOKENS & RESET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

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

:root {
  /* Colors */
  --color-accent: #C5D83B;
  --color-accent-hover: #d4e64a;
  --color-bg-dark: #0D0D0D;
  --color-bg-card: #1A1A1A;
  --color-bg-card-hover: #222222;
  --color-border: #2A2A2A;
  --color-border-light: #333333;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #999999;
  --color-text-muted: #777777;
  --color-star: #C5D83B;

  /* Fonts */
  --font-serif: 'Instrument Serif', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 80px 60px;
  --container-max: 1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  z-index: 1000;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, var(--specular-alpha, 0.1)) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border-radius: 60px 60px 0 0;
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

@property --cta-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-bg-dark);
  background: var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border: none;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 52px;
  background: conic-gradient(from var(--cta-angle), transparent 60%, rgba(255, 255, 255, 0.9) 85%, transparent 100%);
  z-index: -2;
  animation: spin-glow 3s linear infinite;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0px;
  border-radius: 50px;
  background: var(--color-accent);
  z-index: -1;
}

@keyframes spin-glow {
  0% {
    --cta-angle: 0deg;
  }

  100% {
    --cta-angle: 360deg;
  }
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 216, 59, 0.3);
}

.nav-cta .arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-cta:hover .arrow {
  transform: translate(2px, -2px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 40px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 300px);
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 180%;
  /* Keeps vertical position, resets horizontal so transform takes over */

  /* SIMPLE LEFT/RIGHT MOVEMENT: 
     Change the translateX value in pixels. 
     - Negative numbers (e.g., -50px) move it LEFT 
     - Positive numbers (e.g., 50px) move it RIGHT 
     Scale is set to 1.05 so you have some extra image edge to move without showing blank space. */
  transform: scale(1.10) translate(40px, -50px);
  transform-origin: 50% 0%;
}

/* Smooth gradient transition from hero image to dark section */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 95%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(13, 13, 13, 0.08) 30%,
      rgba(13, 13, 13, 0.35) 60%,
      rgba(13, 13, 13, 0.8) 80%,
      rgba(13, 13, 13, 0.98) 95%,
      #0D0D0D 100%);
  z-index: 1;
}

/* Left side fade for better text readability */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at top right, rgba(13, 13, 13, 0.5) 0%, transparent 35%),
    radial-gradient(ellipse at top left, rgba(13, 13, 13, 0.8) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(13, 13, 13, 0.3) 0%, transparent 15%),
    linear-gradient(to right, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.1) 40%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-intro {
  font-size: 1.05rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-top: 17px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-intro .name {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 600px;
  color: var(--color-text-primary);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  padding-top: 10px;
}

.hero-heading .highlight {
  color: var(--color-accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-description {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 450px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.doodle-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

.doodle-highlight::before {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -8px;
  right: -8px;
  border: 2px solid var(--color-accent);
  border-radius: 255px 25px 225px 25px / 25px 225px 25px 255px;
  z-index: -1;
  transform: rotate(-1deg);
  pointer-events: none;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: #0D0D0D;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 216, 59, 0.25);
}

.btn-primary .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translate(2px, -2px);
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--font-sans);
  padding: 0;
}

.btn-watch:hover {
  color: var(--color-accent);
}

.btn-watch .play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-watch:hover .play-icon {
  background: var(--color-accent);
}

.btn-watch .play-icon svg {
  width: 14px;
  height: 14px;
  fill: #0D0D0D;
  margin-left: 2px;
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

/* Icon placeholders floating in hero */
.hero-icons {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 90px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
  animation: float-subtle 8s ease-in-out infinite;
  pointer-events: auto;
  cursor: pointer;
  transition: translate 0.25s ease-out,
    filter 0.4s ease;
}

.floating-icon:hover {
  filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.6));
  z-index: 10;
}

.icon-pr {
  top: 15%;
  right: calc(28% + 2in);
  margin-top: 0.5in;
  margin-right: -2.3in;
  width: 85px;
  animation-delay: 0s;
}

.icon-ae {
  top: 18%;
  right: calc(8% + 2in);
  margin-top: 1.3in;
  margin-right: -2.1in;
  width: 110px;
  animation-delay: 2s;
}

.icon-davinci {
  top: 30%;
  right: calc(42% + 2in);
  margin-right: -0.4in;
  animation-delay: 1.5s;
}

.icon-fcp {
  top: 40%;
  right: calc(30% + 2in);
  margin-top: 1in;
  margin-right: 1in;
  width: 95px;
  animation-delay: 0.8s;
}

@keyframes float-subtle {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-4px) rotate(1deg);
  }

  66% {
    transform: translateY(3px) rotate(-1deg);
  }
}

/* ===========================
   PROOF OF WORK SECTION
   =========================== */

.proof-of-work {
  padding: 40px 60px 60px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.proof-of-work .section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.proof-header h2 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--color-text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-sans);
}

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

.btn-outline .arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.btn-outline:hover .arrow {
  transform: translate(2px, -2px);
}

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

.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 216, 59, 0.3);
}

.play-button svg {
  width: 14px;
  height: 14px;
  fill: #0D0D0D;
  margin-left: 2px;
}

.video-card:hover .play-button {
  transform: scale(1.1);
}

.video-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-title {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}

.video-duration {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.youtube-icon {
  width: 18px;
  height: 18px;
}

.youtube-icon svg {
  width: 100%;
  height: 100%;
}

/* ===========================
   KIND WORDS (TESTIMONIALS)
   =========================== */

.kind-words {
  padding: 60px 60px 20px;
  background: var(--color-bg-dark);
}

.kind-words .section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.kind-words-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.kind-words-heading h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.kind-words-heading p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  position: relative;
  padding-bottom: 24px;
}

.kind-words-heading p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
}

.featured-quote {
  position: relative;
  padding-left: 40px;
}

.featured-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--color-accent);
  line-height: 0.8;
  position: absolute;
  top: -10px;
  left: -5px;
}

.featured-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.featured-quote .attribution {
  font-family: var(--font-sans);
}

.featured-quote .attribution .author {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.featured-quote .attribution .role {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  font-size: 0.9rem;
  color: var(--color-star);
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-card .attribution .author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.testimonial-card .attribution .role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ===========================
   CTA / HILLS SECTION
   =========================== */

.cta-section {
  position: relative;
  padding: 80px 60px 80px;
  background: var(--color-bg-dark);
  text-align: center;
  overflow: hidden;
  min-height: 420px;
}

.cta-section .section-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.cta-section .btn-primary {
  font-size: 1rem;
  padding: 16px 32px;
}

/* Hills container — left and right for future PNG placement */
.hills-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hills-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 100%;
}

.hills-left img {
  position: absolute;
  bottom: -125px;
  /* Adjust this to move it up or down (e.g., -10px, 20px) */
  left: -250px;
  /* Adjust this to move it left or right (e.g., -10px, 20px) */
  width: 100%;
  max-width: 500px;
  /* Adjust max-width to scale the image */
  object-fit: contain;
  object-position: bottom left;
  transform: scale(1.7);
  /* Change to 1.2, 1.5, etc. to zoom in */
  transform-origin: bottom left;
  /* Keeps the bottom-left corner pinned when zooming */
}

.hills-right {
  position: absolute;
  bottom: 90px;
  right: -40px;
  width: 45%;
  height: 100%;
  transform: scale(1.2);
}

.hills-right img {
  position: absolute;
  bottom: -150px;
  /* Adjust this to move it up or down (e.g., -10px, 20px) */
  right: -70px;
  /* Adjust this to move it left or right (e.g., -10px, 20px) */
  width: 100%;
  max-width: 500px;
  /* Adjust max-width to scale the image */
  object-fit: contain;
  object-position: bottom right;
  transform: scale(1.5);
  /* Change to 1.2, 1.5, etc. to zoom in */
  transform-origin: bottom right;
  /* Keeps the bottom-right corner pinned when zooming */
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  padding: 12px 60px;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}

.footer .footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(197, 216, 59, 0.08);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-email a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 40px;
  }

  .navbar {
    width: calc(100% - 80px);
    max-width: 960px;
  }

  .hero {
    padding: 120px 40px 0;
  }

  .hero-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .proof-of-work,
  .kind-words,
  .cta-section,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-icons {
    width: 45%;
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 24px 0;
  }

  .hero-heading {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 0 48px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-icons {
    display: none;
  }

  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .kind-words-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proof-of-work,
  .kind-words,
  .cta-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-email {
    position: static;
    transform: none;
  }

  .proof-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}