/* ============================================
   HYBRID PRINTING PAGE STYLES
   ============================================ */

/* Color Variables */
:root {
  --lime: #bfff00;
}

/* Text outline effect - black fill with lime stroke */
.text-outline-lime {
  color: var(--black);
  -webkit-text-stroke: 2px var(--lime);
  text-stroke: 2px var(--lime);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hybrid-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hybrid-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hybrid-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  gap: 5px;
}

.hybrid-hero .hero-logo {
  margin-bottom: 0;
  max-width: 515px;
  width: 100%;
}

/* Hero Animations - Using CSS keyframes for reliable on-load animations */
@keyframes heroLogoSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hybrid-hero .hero-logo {
  animation: heroLogoSlideDown 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hybrid-hero .hybrid-hero-line {
  animation: heroSlideUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.hybrid-hero .hybrid-hero-h1 {
  animation: heroSlideUp 0.6s ease 0.8s forwards;
  opacity: 0;
}

.hybrid-hero .hybrid-hero-h2 {
  animation: heroZoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.1s forwards;
  opacity: 0;
}

.hybrid-hero .hero-chevron {
  animation: heroSlideUp 0.6s ease 1.4s forwards;
  opacity: 0;
}

.hybrid-hero .hero-logo img {
  max-width: 515px;
  width: 100%;
}

.hybrid-hero-line {
  width: 100%;
  max-width: 700px;
  margin: 15px auto 15px;
}

.hybrid-hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4.4vw, 55px);
  color: var(--white);
  margin: 0;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

.hybrid-hero-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 110px);
  color: var(--white);
  margin: 0;
  margin-top: -40px;
  letter-spacing: 3px;
  text-align: center;
  width: 100%;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

/* Override main.css hero tagline styles */
.hybrid-hero .hero-tagline {
  display: none;
}

.hybrid-hero h1,
.hybrid-hero h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-chevron {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  color: var(--yellow);
  text-decoration: none;
  animation: bounce 2s infinite;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-weight: bold;
}

.hybrid-hero .hero-chevron {
  color: var(--yellow);
}

.hybrid-hero .hero-chevron i {
  font-size: 28px;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--yellow);
}

.hero-chevron:hover {
  opacity: 1;
}

.hero-chevron i {
  font-size: 20px;
  line-height: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ============================================
   WHAT IS HYBRID SECTION
   ============================================ */
.whatis-section {
  position: relative;
  padding: 80px 20px 20px 0;
  min-height: auto;
  background: url('../images/CMYKBG-Top-Right.jpg') no-repeat;
  background-color: var(--black);
  background-size: 108% auto;
  background-position: 100% 0%;
  overflow: hidden;
}

.whatis-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gradient-cmyk);
  z-index: 10;
}

.whatis-splat {
  display: none;
}

.whatis-section .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-left: 0;
  margin-left: 0;
}

.whatis-heading {
  font-size: clamp(2.4rem, 7.2vw, 4.8rem);
  line-height: 0.9;
}

.whatis-gradient-line {
  max-width: 100%;
  width: 100%;
  margin: 10px 0 15px;
}

.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  align-items: center;
}

.whatis-image {
  margin-left: 0;
}

/* Slide in from left animation for robot */
.whatis-image.zoom-in-left {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.whatis-image.zoom-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.whatis-image img {
  max-width: 500px;
  width: 100%;
}

/* Image hover switch effect - instant swap like live site */
.image-hover-switch {
  position: relative;
  display: inline-block;
}

.image-hover-switch .img-after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.image-hover-switch:hover .img-before {
  opacity: 0;
}

.image-hover-switch:hover .img-after {
  opacity: 1;
}

/* Flashing yellow traffic light effect */
@keyframes flashYellow {
  0%, 100% {
    opacity: 0;
    box-shadow: 0 0 8px 4px rgba(255, 230, 0, 0.6);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px 10px rgba(255, 230, 0, 0.9);
  }
}

.image-hover-switch::after {
  content: '';
  position: absolute;
  /* Position over the yellow light on the robot's traffic light */
  /* Using percentages so it scales with the image */
  top: 5.1%;
  left: 61%;
  width: 2%;
  height: 2%;
  background: radial-gradient(circle, rgba(255, 230, 0, 1) 0%, rgba(255, 200, 0, 0.8) 50%, transparent 70%);
  border-radius: 50%;
  animation: flashYellow 1s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.whatis-content .section-heading {
  margin-bottom: 0;
}

.whatis-content .body-text {
  margin-bottom: 20px;
}

.whatis-content a.text-cyan {
  text-decoration: underline;
}

.whatis-content a.text-cyan:hover {
  color: var(--white);
}

/* ============================================
   WHY IS HYBRID BETTER SECTION
   ============================================ */
.why-better-section {
  padding: 30px 20px 40px;
  background: var(--black);
}

.why-better-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.benefits-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.check-icon.green {
  background: var(--lime);
  color: var(--black);
}

.benefits-list li span:last-child {
  color: var(--white);
  line-height: 1.6;
}

/* ============================================
   COMPARISON SLIDER
   ============================================ */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 425px;  /* 15% smaller than 500px */
  margin: 0 auto;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 8px;
}

.comparison-slider img {
  width: 100%;
  display: block;
}

.comparison-before {
  position: relative;
  width: 100%;
}

.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
}

.comparison-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 25;
}

.handle-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 10px;
  gap: 2px;
}

.comparison-label {
  position: absolute;
  bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.comparison-label-left,
.comparison-label-right {
  position: absolute;
  top: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  z-index: 5;
  pointer-events: none;
}

.comparison-label-left {
  left: 20px;
}

.comparison-label-right {
  right: 20px;
  text-align: right;
}

.comparison-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  text-align: center;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
}

.comparison-instruction {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Comparison slider bottom labels (DTG vs Hybrid) */
.comparison-labels {
  display: flex;
  justify-content: space-between;
  max-width: 425px;  /* Match slider width */
  margin: 15px auto 0;
  padding: 0;
}

.comparison-label-dtg,
.comparison-label-hybrid {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);  /* Grey when inactive */
  transition: color 0.3s ease;
}

.comparison-label-dtg.active {
  color: var(--yellow);  /* Yellow when active */
}

.comparison-label-hybrid.active {
  color: var(--magenta);  /* Magenta when active */
}

/* ============================================
   ENVIRONMENTAL SECTION
   ============================================ */
.environmental-section {
  padding: 40px 0 0;
  background: var(--black);
  overflow: visible;
  position: relative;
}

.environmental-section .container {
  overflow: visible;
  padding-left: 0;
}

.environmental-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 0;
  align-items: end;
  overflow: visible;
}

.environmental-content {
  grid-column: 2;
  padding-right: 60px;
}

.environmental-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.environmental-image img {
  max-width: none;
  width: 130%;
  height: auto;
  overflow: visible !important;
  overflow-clip-margin: unset !important;
}

.environmental-content .section-heading {
  margin-bottom: -10px;
  line-height: 0.9;
}

/* Line break control for environmental heading */
.environmental-heading .env-line-break {
  display: block;
}

@media (max-width: 1200px) {
  .environmental-heading .env-line-break {
    display: inline;
  }
}

.environmental-answer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.text-lime {
  color: var(--lime);
}

.green-checks .check-icon {
  background: var(--lime);
  color: var(--black);
}

.environmental-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 10;
}

/* ============================================
   BUT MY SHIRTS SECTION
   ============================================ */
.but-my-shirts-section {
  padding: 0;
  background: url('../images/RaindowSqueegee.jpg') no-repeat;
  background-position: 100% 0%;
  background-size: cover;
  position: relative;
}

.but-my-shirts-section .container {
  padding: 112px 0;
  position: relative;
}

.but-my-shirts-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Halftone-Reveal-10px.png') repeat;
  pointer-events: none;
}

.but-my-shirts-section .centered-content {
  position: relative;
  z-index: 1;
}

.but-my-shirts-bottom-line {
  width: 100%;
  height: 4px;
}

.italic {
  font-style: italic;
}

.centered-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.centered-content .section-heading {
  margin-bottom: 30px;
}

.but-my-shirts-section .section-heading {
  font-size: 77px;
  white-space: nowrap;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Mobile-only line breaks - hidden by default */
.mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .but-my-shirts-section .section-heading {
    white-space: normal;
  }

  /* Keep "just fine" together on one line */
  .but-my-shirts-section .section-heading .text-magenta {
    white-space: nowrap;
  }

  /* Show mobile line breaks */
  .mobile-break {
    display: block;
  }
}

.centered-content .body-text {
  margin: 0 auto 20px;
}

/* ============================================
   EXPERIENCE DIVIDER
   ============================================ */
.experience-divider {
  padding: 15px 20px;
  background: var(--black);
  text-align: center;
}

.experience-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  margin: 0;
}

/* ============================================
   COMPARED SECTIONS
   ============================================ */
.compared-section {
  padding: 34px 20px;
  background: var(--black);
}

.compared-section .section-heading {
  font-size: 51px;
  line-height: 51px;
  letter-spacing: -0.77px;
}

.compared-section .body-text {
  margin-bottom: 17px;
  font-size: 15px;
}

.compared-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.compared-content {
  display: flex;
  flex-direction: column;
  padding-left: 60px;
}

.compared-grid.reverse {
  direction: rtl;
}

.compared-grid.reverse > * {
  direction: ltr;
}

.compared-images {
  padding-right: 10px;
}

.compared-images img {
  width: 100%;
  max-width: 425px;
  border-radius: 7px;
  margin-bottom: 25px;
}

/* Override max-width for comparison slider images (must come AFTER .compared-images img) */
.compared-images .comparison-slider img {
  max-width: none;
  margin-bottom: 0;
  border-radius: 0;
}

.wash-comparison,
.astronaut-comparison {
  margin-top: 0;
}

/* Astronaut comparison specific styles */
.astronaut-comparison .comparison-slider {
  max-width: 600px;
  border-radius: 0;
}

.astronaut-comparison .comparison-instruction {
  margin-bottom: 20px;
  color: var(--white);
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-container {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 8px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.23px;
  text-transform: none;
  color: #fff;
}

.accordion-item.active .accordion-title {
  color: rgb(247, 210, 0);
}

.accordion-icon {
  color: var(--magenta);
  font-size: 14px;
}

/* Active accordion icon - cyan minus */
.accordion-item.active .accordion-icon {
  color: var(--cyan);
}

.accordion-item.active .accordion-icon i::before {
  content: '\f068';
}

.accordion-header:hover .accordion-title {
  color: var(--magenta);
}

/* Compared section divider - solid yellow */
.compared-section .section-divider {
  height: 1px;
  background: rgb(247, 210, 0);
  width: 85px;
  margin: 17px 0;
}

.accordion-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.accordion-item.active .accordion-wrapper {
  grid-template-rows: 1fr;
}

.accordion-content {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.accordion-content p {
  padding: 10px 0 17px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   BEST OF BOTH WORLDS SECTION
   ============================================ */
.best-both-section {
  padding: 0;
  background: linear-gradient(90deg, #9b1bb3 0%, var(--magenta) 100%);
  position: relative;
}

.best-both-section::before,
.best-both-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cmyk);
  z-index: 10;
}

.best-both-section::before {
  top: 0;
}

.best-both-section::after {
  bottom: 0;
}

.best-both-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.best-both-video {
  position: relative;
  overflow: hidden;
}

.video-thumbnail-link {
  display: block;
  position: relative;
  height: 100%;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-button i {
  font-size: 28px;
  color: var(--black);
  margin-left: 5px;
}

.video-thumbnail-link:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.best-both-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.best-both-content .section-heading {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 30px;
  line-height: 1.1;
}

/* ============================================
   I'M SOLD SECTION
   ============================================ */
.im-sold-section {
  padding: 80px 0 0;
  background: var(--black);
  position: relative;
  overflow-y: hidden;
  overflow-x: clip;
}

.im-sold-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-bottom: 50px;
}

.im-sold-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 260px;
  z-index: 2;
  box-sizing: border-box;
}

.im-sold-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

/* Robots positioned at edges */
.sold-mascot-left,
.sold-mascot-right {
  position: absolute;
  bottom: 120px;
  z-index: 2;
}

.sold-mascot-left {
  left: 0;
}

.sold-mascot-left img {
  max-width: 220px;
  height: auto;
}

.sold-mascot-right {
  right: -65px;
  bottom: 60px;
}

.sold-mascot-right img {
  max-width: 395px;
  height: auto;
}

/* Left column styles */
.sold-left-column .accordion-container {
  margin-bottom: 20px;
}

/* I'm Sold section accordion styling */
.sold-accordion .accordion-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  padding: 15px 0;
}

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

.sold-bullet-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.sold-bullet-list .bullet-icon {
  color: var(--cyan);
  font-size: 12px;
}

/* Right column styles */
.sold-right-column {
  text-align: center;
  padding-top: 20px;
}

.sold-right-column .section-heading {
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  margin-bottom: 40px;
  line-height: 1.2;
}

/* CMYK splatter background */
.cmyk-splatter-bottom {
  height: 250px;
  background: url('../images/CMYKBG-Bottom-Left.jpg') no-repeat bottom left;
  background-size: cover;
  position: relative;
  z-index: 0;
  margin-top: -200px;
}

.btn-large {
  padding: 15px 60px;
  font-size: 24px;
  border-width: 2.5px;
  letter-spacing: 0.36px;
  white-space: nowrap;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta-section {
  padding: 80px 20px;
  background: var(--black);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-mascot img {
  max-width: 300px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .whatis-grid,
  .why-better-grid,
  .environmental-grid,
  .compared-grid,
  .best-both-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compared-grid.reverse {
    direction: ltr;
  }

  .whatis-image {
    text-align: center;
  }

  /* Fix environmental image - must override position: absolute */
  .environmental-image {
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
    order: 1; /* Show image below content */
  }

  .environmental-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .environmental-content {
    grid-column: 1;
    padding: 0 20px;
  }

  .environmental-grid {
    display: flex;
    flex-direction: column;
  }

  .im-sold-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .im-sold-content {
    padding: 0 20px;
  }

  .sold-mascot-left,
  .sold-mascot-right {
    display: none;
  }

  .sold-left-column,
  .sold-right-column {
    text-align: center;
  }

  .sold-bullet-list li {
    justify-content: center;
  }

  /* Bigger "Contact Us" heading on mobile */
  .sold-right-column .section-heading {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .hybrid-hero-h1 {
    font-size: 28px;
  }

  .hybrid-hero-h2 {
    font-size: 48px;
  }

  .hybrid-hero .hero-logo {
    margin: 0 auto;
    text-align: center;
  }

  .hybrid-hero .hero-logo img {
    max-width: 280px;
    margin: 0 auto;
  }

  /* What Is section - add left padding on mobile */
  .whatis-section {
    padding: 60px 20px 40px 20px;
  }

  .whatis-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Compared section - symmetrical padding on mobile */
  .compared-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Traditional section - move astronaut slider below text on mobile */
  .traditional-section .compared-grid {
    display: flex;
    flex-direction: column;
  }

  .traditional-section .compared-images {
    order: 2;
  }

  .traditional-section .accordion-container {
    order: 1;
  }

  .whatis-accent-bar {
    width: 100px;
    height: 50px;
  }

  .comparison-slider {
    max-width: 100%;
  }

  .accordion-title {
    font-size: 18px;
  }

  .hybrid-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hybrid-hero-h1 {
    font-size: 24px;
  }

  .hybrid-hero-h2 {
    font-size: 36px;
    margin-top: -10px;  /* Reduce negative margin on mobile to prevent overlap */
  }

  .benefit-card {
    padding: 20px;
  }

  .btn-large {
    padding: 12px 40px;
    font-size: 18px;
  }
}
