.container::before {
  content: "";
  position: absolute;
  margin-top: -60px;
  inset: 0;
  background-image: url("../../images/2025/11/hero-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
  opacity: 1;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: 740px;
  margin-top: 200px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #111;
  letter-spacing: -0.02em;
  z-index: 2;
}

p.subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  z-index: 2;
}

.hero-image {
  position: relative;
  width: 1400px;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.1s ease-out;
}

.hero-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    var(--bg-color) 100%
  );
  pointer-events: none;
  z-index: 10;
}

.hero-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-search-graphics {
  position: relative;
  width: 50%;
  height: 50%;
  margin: 0 auto;
  top: 90px;
}

.hero-search-background {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  border-radius: 40px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  min-width: 300px;
  transition:
    opacity 0.6s 0.2s,
    transform 1.4s cubic-bezier(0.4, 0, 0, 1) 0.1s;
}

.hero-search-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.hero-connector-container-left,
.hero-connector-container-right {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-connector-container-left {
  left: 0;
  align-items: flex-start;
}

.hero-connector-container-left img:last-child {
  position: relative;
  left: -30px;
}

.hero-connector-container-right {
  top: -60px;
  right: 0;
  align-items: flex-end;
  padding-right: 20px;
}

.hero-connector-container-right img:last-child {
  position: relative;
  right: -50px;
}

.hero-connector {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.6s ease,
    opacity 0.4s;
  animation: floatConnector 6s ease-in-out infinite;
}

.hero-connector:hover {
  transform: scale(1.05);
  z-index: 10;
}

.connector-2 {
  animation: floatConnector 6s ease-in-out infinite 0.9s;
}
.connector-3 {
  animation: floatConnector 6s ease-in-out infinite 1.5s;
}
.connector-4 {
  animation: floatConnector 6s ease-in-out infinite 0.9s;
}
.connector-5 {
  animation: floatConnector 6s ease-in-out infinite 2.25s;
}

@keyframes floatConnector {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mf1-prereveal {
  opacity: 0;
}

.connector-2.mf1-prereveal {
  transform: translateX(100px) rotate(10deg);
}
.connector-3.mf1-prereveal {
  transform: translateX(100px) rotate(15deg);
}
.connector-4.mf1-prereveal {
  transform: translateX(-100px) rotate(-15deg);
}
.connector-5.mf1-prereveal {
  transform: translateX(-100px) rotate(-5deg);
}

.hero-connector {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

.hero-section.fade-out {
  opacity: 0;
  pointer-events: none;
}

.features-section {
  position: relative;
  background: linear-gradient(to bottom, #ffffff, var(--bg-color));
  width: 100%;
  padding: 60px 20px 40px 20px;
}

.features-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-text);
  margin: 80px 0px 20px 0px;
}

.features-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto 80px auto;
}

.features-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  gap: 24px;
}

.features-column-left,
.features-column-right {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease-out;
}

.features-column-center {
  position: sticky;
  top: 8vh;
  align-self: flex-start;
  z-index: 10;
}

.feature-card {
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card.card-center {
  background: #fff3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
  width: 450px;
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--brand-orange-primary);
  font-size: 32px;
  margin-top: 8px;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
  max-width: 80%;
}

.card-center h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-orange-primary);
  letter-spacing: 1px;
  margin: 0;
}

.card-purple {
  position: sticky;
  background: #f7ccff;
}

.card-purple .card-header {
  width: 288px;
}

.card-beige {
  position: sticky;
  background: #fff5f0;
}
.card-purple {
  background: #f7ccff;
}

.card-purple::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  transform: rotate(30deg);
  width: 120px;
  height: 600px;
  background: #190066;
  z-index: 0;
  opacity: 0.8;
}

.card-beige {
  background: #fff5f0;
}

.card-beige::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 200px;
  transform: rotate(30deg);
  background: #eac2ff;
  z-index: 0;
  opacity: 0.7;
}

.card-green {
  background: #b8e986;
}

.card-green::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 300px;
  height: 70px;
  background: #013330;
  z-index: 0;
  opacity: 0.6;
}

.card-coral {
  background: #ffd6c5;
  padding: 32px 32px 0px 0px;
}

.card-coral::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 140px;
  height: 300px;
  background: #ff5c16;
  z-index: 0;
  opacity: 0.7;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}

.card-coral .card-header {
  padding-left: 32px;
  padding-right: 32px;
}

.model-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.model-container.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.canvas-wrapper {
  width: 100%;
  height: 100%;
}

#dogCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- App Features Section --- */
.app-features {
  position: relative;
  width: 100%;
  padding: 90px 30px 90px;
}

.app-features-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-text);
}

.app-features-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.app-features-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.app-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 30px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.2s ease,
    transform 0.1s ease;
}

.app-feature-row.visible {
  opacity: 1;
  transform: translate(100px, 0px);
}

.app-feature-row.reverse {
  flex-direction: row-reverse;
}

.app-feature-text {
  flex: 1;
  min-width: 0;
}

.app-feature-text h3 {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.app-feature-text p {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.app-feature-cta {
  display: flex;
  gap: 14px;
}

.app-feature-image {
  flex: 1;
  overflow: visible;
  position: relative;
}

.app-feature-image img {
  width: auto;
  height: 900px;
  object-fit: cover;
  object-position: center top;
}

.app-feature-image-2,
.app-feature-image-3 {
  margin-top: -60px;
}

.app-feature-image-2 img {
  margin-left: -130px;
}

.app-feature-image-3 img {
  margin-top: 60px;
}

/* Feature separator */
.app-feature-row + .app-feature-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.app-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--secondary-text);
  font-family: "Harmonia Sans Pro", sans-serif;
}

.app-check-icon {
  color: var(--brand-orange-primary);
  font-size: 22px;
  flex-shrink: 0;
}

.reviews-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 120px 20px 40px 20px;
}

.reviews-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-text);
  z-index: 1;
}

.reviews-subtitle {
  font-size: 18px;
  color: var(--secondary-text);
  margin-bottom: 80px;
  z-index: 1;
}

.reviews-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
  z-index: 1;
}

.reviews-scroll {
  display: flex;
  gap: 32px;
  padding: 0 20px;
  width: max-content;
  transition: transform 0.1s ease-out;
}

.reviews-scroll.reverse {
  transition: transform 0.1s ease-out;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 420px;
  min-width: 420px;
  height: 320px;
  border-radius: 32px;
  padding: 40px 32px 32px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0px;
  width: 200px;
  height: 320px;
  opacity: 0.25;
  z-index: 0;
  clip-path: polygon(0 0, 40% 17%, 40% 100%, 0% 100%);
  transition: opacity 0.3s ease;
}

.review-card:hover::after {
  opacity: 0.35;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.review-quote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 10px;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author strong {
  font-size: 18px;
  color: #000;
}

.review-author span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

.review-lime {
  background: #b9f94c;
}
.review-lime::after {
  background: #6a00ff;
}
.review-lime .review-quote {
  color: #4b0082;
}

.review-coral {
  background: #ffd6c5;
}
.review-coral::after {
  background: #ff5c16;
}
.review-coral .review-quote {
  color: #8b2800;
}

.review-purple {
  background: #f7ccff;
}
.review-purple::after {
  background: #8b2cff;
}
.review-purple .review-quote {
  color: #4a0070;
}

.review-cream {
  background: #fff5f0;
}
.review-cream::after {
  background: #ff8a50;
}
.review-cream .review-quote {
  color: #6a2c00;
}

.review-mint {
  background: #a7f3d0;
}
.review-mint::after {
  background: #059669;
}
.review-mint .review-quote {
  color: #065f46;
}

.review-sky {
  background: #bae6fd;
}
.review-sky::after {
  background: #0284c7;
}
.review-sky .review-quote {
  color: #075985;
}

.review-peach {
  background: #fecaca;
}
.review-peach::after {
  background: #dc2626;
}
.review-peach .review-quote {
  color: #991b1b;
}

.review-lavender {
  background: #e9d5ff;
}
.review-lavender::after {
  background: #9333ea;
}
.review-lavender .review-quote {
  color: #6b21a8;
}

.review-yellow {
  background: #fef08a;
}
.review-yellow::after {
  background: #ca8a04;
}
.review-yellow .review-quote {
  color: #713f12;
}

.review-rose {
  background: #fecdd3;
}
.review-rose::after {
  background: #e11d48;
}
.review-rose .review-quote {
  color: #881337;
}

.how-it-works {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 90px 20px 60px;
  overflow: hidden;
}

.how-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  z-index: 2;
}

.how-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #666;
  z-index: 2;
}

.steps {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1400px;
  margin: 100px auto 0;
}

.step {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.step-number {
  position: relative;
  left: 20%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 800;
  color: rgba(25, 0, 102, 0.08);
  z-index: 0;
  transition: all 0.3s ease;
}

.step-card {
  position: sticky;
  top: 30vh;
  border-radius: 32px;
  padding: 32px 32px 64px 32px;
  z-index: 1;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    #ff00b8 0%,
    #b009fe 34%,
    #3e1ffc 60%,
    #00deff 100%
  );
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #ffffff;
  z-index: -1;
}

.step-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 200px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 92, 22, 0.3) 100%
  );
  z-index: 0;
  opacity: 0.5;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.step-card:hover::before {
  opacity: 0.8;
  transform: translateX(-10px) translateY(-10px);
}

.step-image {
  width: 120px;
  margin: 0 auto;
  display: block;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.step-card h3 {
  font-size: 42px;
  width: 80%;
  font-weight: 600;
  color: #3d065f;
  margin: 0 auto;
  transition: transform 0.3s ease;
  cursor: default;
}

.step-card p {
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
  color: #667085;
  margin-top: 24px;
  line-height: 1.5;
}

.step:nth-child(1) .step-card {
  top: 20vh;
  transition-delay: 0s;
}
.step:nth-child(2) .step-card {
  top: 25vh;
  transition-delay: 0.1s;
}
.step:nth-child(3) .step-card {
  top: 30vh;
  transition-delay: 0.2s;
}

@keyframes floatNumber {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.faq-section {
  padding: 90px 20px 320px 20px;
  text-align: center;
}

.faq-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  transition: background 0.3s ease;
  overflow: hidden;
}

.faq-item.open {
  background: #fff7ed;
}

.faq-question {
  color: black;
  width: 100%;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Harmonia Sans Pro", sans-serif;
  text-decoration: none;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ff6a00;
  border: 2px solid #ff6a00;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: left;
  width: 80%;
}

.app-showcase {
  position: relative;
  width: 100%;
  min-height: 360px;
  background: linear-gradient(to bottom, #000000 0%, #0b1220 60%, #0b1220 100%);
  overflow: visible;
}

.app-showcase::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 120px;
  height: 260px;
  background: #ff5c16;
  z-index: 0;
  opacity: 0.7;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}

.app-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

.app-showcase-content {
  color: #ffffff;
}

.app-showcase-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-top: -100px;
}

.app-showcase-content p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 520px;
}

.app-showcase-content .cta-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-showcase-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-showcase-image {
  position: relative;
  transform: translateY(-220px);
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ========================================
   RESPONSIVE - DESKTOP (981px+)
   ======================================== */

@media (min-width: 981px) {
  .hero-connector {
    width: 150px;
    height: 150px;
  }

  .hero-search-background {
    min-width: 400px;
    padding: 20px 32px;
  }

  .connector-2.mf1-prereveal {
    transform: translate(-40%, 40%) scale(0.2);
  }

  .connector-3.mf1-prereveal {
    transform: translate(-80%, 120%) scale(0.2);
  }

  .connector-4.mf1-prereveal {
    transform: translate(60%, -30%) scale(0.2);
  }

  .connector-5.mf1-prereveal {
    transform: translate(140%, -60%) scale(0.2);
  }
}

/* ========================================
   RESPONSIVE - TABLET (576px to 980px)
   ======================================== */

@media (max-width: 980px) and (min-width: 576px) {
  .app-features-inner {
    width: 1400px;
  }
  .app-feature-image-3 {
    margin-top: 0px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (up to 575px)
   ======================================== */

@media (max-width: 575px) {
  .hero-section,
  .features-section,
  .app-features,
  .reviews-section,
  .how-it-works,
  .faq-section {
    overflow-x: hidden;
  }

  .container::before {
    background-size: 145%;
    background-position: center center;
  }

  .hero-section {
    height: auto;
    min-height: 500px;
    margin-top: 120px;
    padding: 0 16px;
    gap: 1rem;
  }

  h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
  }

  p.subtitle {
    font-size: 0.9rem;
    max-width: 320px;
    margin-bottom: 1rem;
    z-index: 2;
  }

  .cta-group {
    flex-direction: column;
    gap: 10px;
    width: 70%;
    max-width: 280px;
    margin: 24px auto 0 auto;
  }

  .hero-section .cta-group .btn-primary,
  .hero-section .cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    height: 360px;
    margin-top: 30px;
    overflow: hidden;
  }

  .hero-search-graphics {
    width: 60%;
    height: 35%;
    top: 80px;
  }

  .hero-connector {
    width: 120px !important;
  }

  .connector-2 {
    right: -30px;
  }

  .hero-connector-container-left {
    display: block;
    top: -40px;
    left: -40px;
  }

  .hero-connector-container-right {
    display: block;
    top: -50px;
    right: -40px;
  }

  .hero-search-background {
    min-width: 250px;
    padding: 12px 16px;
  }

  /* Features Section - Mobile */
  .features-section {
    padding: 40px 24px 20px;
  }

  .features-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
  }

  .features-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .features-column-left,
  .features-column-center,
  .features-column-right {
    width: 100%;
    max-width: 100%;
    position: static;
  }

  .features-column-center {
    order: -1;
    margin-bottom: 16px;
  }

  .feature-card {
    max-width: 100%;
    height: auto;
    min-height: 280px;
    padding: 20px;
    border-radius: 20px;
  }

  .feature-card.card-center {
    display: none;
  }

  .card-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .card-header h3 {
    font-size: 22px;
  }

  .card-purple .card-header {
    width: 220px;
  }

  .card-coral {
    padding: 32px 32px 0px 0px;
  }

  .feature-icon {
    font-size: 24px;
  }

  .model-container {
    width: 150px;
    height: 150px;
  }

  .center-content {
    max-width: 90%;
    gap: 16px;
  }

  .cat-emoji {
    font-size: 80px;
  }

  .card-center h3 {
    font-size: 1.4rem;
  }

  .card-coral .card-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* App Features Section - Mobile */
  .app-features {
    padding: 40px 24px 30px;
  }

  .app-features-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
  }

  .app-features-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
  }

  .app-feature-row,
  .app-feature-row.reverse {
    flex-direction: column;
    gap: 24px;
    padding: 0px 0px 32px 0px;
  }

  .app-feature-row.visible {
  transform: translate(0px, 0px);
}

  .app-feature-row-3 {
    padding: 32px 0px 0px 0px;
  }

  .app-feature-text h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .app-feature-text p {
    font-size: 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .app-feature-text p:last-child {
    margin-bottom: 40px;
  }

  .app-feature-text-1 {
    margin-top: -60px;
  }

  .app-feature-cta {
    flex-direction: column;
    gap: 10px;
  }

  .app-feature-image {
    width: 100%;
  }

  .app-feature-image img {
    height: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .app-feature-image-2,
  .app-feature-image-3 {
    margin-top: 0px;
  }

  .app-feature-image-2 img {
    width: auto;
    max-width: 500px;
    margin-left: -130px;
  }

  .app-feature-list {
    margin-bottom: 24px;
    gap: 10px;
  }

  .app-feature-list li {
    font-size: 12px;
  }

  .app-check-icon {
    font-size: 18px;
  }

  /* Reviews Section - Mobile */
  .reviews-section {
    padding: 60px 24px 20px;
  }

  .reviews-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
    text-align: center;
  }

  .reviews-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .reviews-scroll-wrapper {
    padding: 16px 0 30px;
  }

  .reviews-scroll {
    gap: 16px;
    padding: 0 12px;
  }

  .review-card {
    width: 220px;
    min-width: 220px;
    height: 200px;
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .review-header {
    gap: 14px;
  }

  .review-avatar {
    width: 30px;
    height: 30px;
  }

  .review-quote {
    font-size: 14px;
    padding-left: 6px;
  }

  .review-author strong {
    font-size: 12px;
  }

  .review-author span {
    font-size: 10px;
  }

  .review-card::after {
    width: 120px;
    height: 180px;
  }

  /* How It Works Section - Mobile */
  .how-it-works {
    padding: 50px 24px 40px;
  }

  .how-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
  }

  .how-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
  }

  .steps {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .step {
    max-width: 100%;
  }

  .step-number {
    font-size: 60px;
    left: 50%;
  }

  .step-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 240px;
  padding: 32px 32px 48px 32px;
    border-radius: 24px;
  }

  .step:nth-child(1) .step-card,
  .step:nth-child(2) .step-card,
  .step:nth-child(3) .step-card {
    top: auto;
  }

  .step-image {
    width: 80px;
    margin-bottom: 16px;
  }

  .step-card h3 {
    font-size: 24px;
    width: 100%;
  }

  .step-card p {
    font-size: 14px;
    width: 100%;
  }

  .step-card::before {
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 140px;
  }

  /* FAQ Section - Mobile */
  .faq-section {
    padding: 50px 24px 160px;
  }

  .faq-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
  }

  .faq-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
  }

  .faq-list {
    max-width: 100%;
    gap: 12px;
  }

  .faq-item {
    padding: 20px;
    border-radius: 20px;
  }

  .faq-question {
    font-size: 12px;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 10px;
    width: 100%;
    line-height: 1.5;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .faq-item.open .faq-answer {
    margin-top: 12px;
  }

  /* App Showcase Section - Mobile */
  .app-showcase {
    min-height: 770px;
  }

  .app-showcase::after {
    width: 60px;
    height: 140px;
    right: 0;
  }

  .app-showcase-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding: 60px 16px 30px;
  }

  .app-showcase-content {
    padding: 20px;
  }

  .app-showcase-content h2 {
    font-size: 26px;
    margin-top: 0;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .app-showcase-content p {
    font-size: 14px;
    margin: 0 auto;
    max-width: 240px;
  }

  .app-showcase-content .cta-group {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .app-showcase-content .cta-group .btn-primary,
  .app-showcase-content .cta-group .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .app-showcase-image {
    transform: translateY(-180px);
    max-width: 280px;
    margin: 0 auto;
  }

  .app-showcase-media {
    margin-bottom: -200px;
  }
}
