/* ============================================
   TALOGY — Global Styles & Components
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--body-weight);
  color: var(--color-text-primary);
  background: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

/* ── Typography Classes ── */
.h1 {
  font-family: var(--font-primary);
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-letter-spacing);
}

.h2 {
  font-family: var(--font-primary);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-letter-spacing);
}

.h3 {
  font-family: var(--font-primary);
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-letter-spacing);
}

.body-text {
  font-family: var(--font-primary);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

.body-text--secondary {
  font-family: var(--font-secondary);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-line-height);
}

.caption {
  font-family: var(--font-primary);
  font-size: var(--caption-size);
  font-weight: var(--caption-weight);
  line-height: var(--caption-line-height);
}

.label {
  font-family: var(--font-primary);
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  line-height: var(--label-line-height);
  letter-spacing: var(--label-letter-spacing);
}

/* ── Text Colors ── */
.text-green { color: var(--color-green); }
.text-purple { color: var(--color-purple); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-secondary); }
.text-gray { color: var(--color-gray-text); }
.text-light { color: var(--color-text-light); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--body-size);
  letter-spacing: var(--body-letter-spacing);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-black);
  padding: 10px 24px;
  border-radius: var(--radius-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 248, 87, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-purple);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-lg);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(153, 47, 255, 0.35);
}

.btn--submit {
  background: var(--color-purple);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  width: 100%;
  font-size: var(--body-size);
}

.btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(153, 47, 255, 0.35);
}

.btn--cta {
  background: var(--color-green);
  color: var(--color-black);
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: var(--body-size);
}

.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(170, 248, 87, 0.4);
}

/* ── Stat Badges ── */
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 24px 16px 16px;
  border-radius: var(--radius-xl);
  background: var(--color-dark-purple-bg);
  backdrop-filter: blur(17.8px);
  -webkit-backdrop-filter: blur(17.8px);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-badge__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.stat-badge__text {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.4;
}

/* ── Feature Cards (list items) ── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 16px 24px 16px 16px;
  border-radius: var(--radius-xl);
  background: var(--color-overlay-light);
  backdrop-filter: blur(17.8px);
  -webkit-backdrop-filter: blur(17.8px);
  transition: transform var(--transition-medium), background var(--transition-fast), box-shadow var(--transition-medium);
}

.feature-item:hover {
  transform: translateX(6px);
  background: rgba(153, 47, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.feature-item__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.feature-item__text {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.4;
  flex: 1;
}

/* ── Product Cards ── */
.product-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  padding: 40px 17px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card__logo {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
}

.product-card__name {
  font-size: var(--card-title-size);
  font-weight: 700;
  line-height: var(--card-title-line-height);
  color: var(--color-white);
}

.product-card__desc {
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ── Data Cards ── */
.data-card {
  background: var(--color-overlay-light);
  border-radius: var(--radius-xl);
  padding: 40px 17px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.data-card__title {
  font-size: var(--card-title-size);
  font-weight: 700;
  line-height: var(--card-title-line-height);
  color: var(--color-black);
}

.data-card__highlight {
  color: var(--color-purple);
}

.data-card__body {
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ── Form ── */
.form {
  background: var(--color-gray-bg);
  border-radius: var(--radius-xl);
  padding: 40px 37px;
}

.form__subtitle {
  font-size: var(--label-size);
  font-weight: 500;
  color: var(--color-purple-darker);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--label-letter-spacing);
}

.form__row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: var(--label-size);
  font-weight: 500;
  color: var(--color-black);
}

.form__input,
.form__select {
  width: 100%;
  height: 37px;
  border-radius: var(--radius-lg);
  border: none;
  background: rgba(206, 206, 206, 0.25);
  padding: 0 14px;
  font-family: var(--font-primary);
  font-size: var(--label-size);
  font-weight: 500;
  color: var(--color-black);
  outline: none;
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--color-text-placeholder);
  letter-spacing: -0.5px;
}

.form__input:focus,
.form__select:focus {
  box-shadow: 0 0 0 2px var(--color-purple);
  background: var(--color-white);
}

.form__select-wrapper {
  position: relative;
}

.form__select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url('../assets/images/icon-caret-down.webp') center/contain no-repeat;
  pointer-events: none;
}

.form__privacy {
  font-size: var(--label-size);
  font-weight: 500;
  color: #B2B2B2;
  text-align: center;
  margin-top: var(--space-lg);
  letter-spacing: var(--label-letter-spacing);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px var(--edge-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-medium), backdrop-filter var(--transition-medium), padding var(--transition-medium);
}

.navbar--scrolled {
  background: rgba(47, 15, 80, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar__logo {
  height: 45px;
  transition: transform var(--transition-medium);
}

.navbar__logo:hover {
  transform: scale(1.03);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  width: 100%;
  height: 972px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark-purple-bg);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 662px;
  padding-top: 215px;
  display: flex;
  flex-direction: column;
}

.hero__title {
  color: var(--color-white);
}

.hero__title em {
  color: var(--color-green);
  font-style: normal;
}

.hero__subtitle {
  color: var(--color-text-light);
  margin-top: 24px;
  max-width: 663px;
}

.hero__cta {
  margin-top: 33px;
}

.hero__note {
  color: var(--color-text-light);
  font-size: var(--small-size);
  line-height: var(--small-line-height);
  margin-top: 40px;
  max-width: 448px;
}

.hero__stats {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
  z-index: 2;
}

.hero__stats-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Person — layered composition (Figma node 46:658) */
.hero__person {
  position: absolute;
  right: var(--edge-padding);
  top: 117px;
  width: 503px;
  height: 599px;
  z-index: 2;
}

/* Person image — single composed SVG from Figma (includes circles, photo, bubble, tags) */
.hero__person-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: var(--radius-xl);
  background: var(--color-overlay-medium);
  backdrop-filter: blur(17.8px);
  -webkit-backdrop-filter: blur(17.8px);
  transition: transform var(--transition-medium);
}

.hero__tag:hover {
  transform: translateX(-4px);
}

.hero__tag-dot {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-sm);
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tag-dot img {
  width: 10px;
  height: 10px;
}

.hero__tag span {
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: var(--small-letter-spacing);
}

/* ── Section: Problems ── */
.problems {
  background: var(--color-gray-bg);
  padding: 120px 0;
}

.problems__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.problems__image {
  position: relative;
  width: 538px;
  height: 670px;
  flex-shrink: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.problems__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problems__quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-2xl);
  background: var(--color-overlay-dark);
  backdrop-filter: blur(17.8px);
  -webkit-backdrop-filter: blur(17.8px);
}

.problems__quote-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  background: var(--color-yellow);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems__quote-icon img {
  width: 40px;
  height: 41px;
}

.problems__quote p {
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: var(--body-letter-spacing);
}

.problems__content {
  flex: 1;
  padding-top: 0;
}

.problems__label {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-gray-text);
  line-height: 24px;
  margin-bottom: var(--space-md);
}

.problems__title {
  margin-bottom: var(--space-xl);
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Section: Products ── */
.products {
  background: var(--color-dark-bg);
  padding: var(--space-4xl) 0;
}

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.products__header-left {
  max-width: 572px;
}

.products__label {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-green);
  line-height: 24px;
  margin-bottom: var(--space-md);
}

.products__title {
  color: var(--color-white);
}

.products__header-right {
  max-width: 387px;
  padding-top: 50px;
}

.products__header-right p {
  color: var(--color-text-light);
}

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

.products__grid--bottom {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

/* ── Section: Data ── */
.data {
  background: var(--color-white);
  padding: var(--space-4xl) 0;
}

.data__header {
  text-align: center;
  margin-bottom: 50px;
}

.data__label {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-purple);
  line-height: 24px;
  margin-bottom: var(--space-md);
}

.data__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── Section: CTA ── */
.cta-section {
  background: var(--color-purple-darker);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-section__title {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.cta-section__text {
  color: var(--color-white);
  max-width: 636px;
  margin: 0 auto var(--space-2xl);
}

.cta-section__text strong {
  font-weight: 600;
}

/* ── Section: Contact ── */
.contact {
  padding: var(--space-4xl) 0;
}

.contact__inner {
  display: flex;
  gap: 130px;
  align-items: flex-start;
}

.contact__info {
  max-width: 377px;
  padding-top: 0;
}

.contact__label {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-purple);
  line-height: 24px;
  margin-bottom: var(--space-xl);
}

.contact__title {
  margin-bottom: 25px;
}

.contact__desc {
  color: var(--color-text-secondary);
  font-weight: 400;
}

.contact__form {
  flex: 1;
  max-width: 543px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding: 60px var(--edge-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer__logo {
  height: 52px;
}

.footer__social {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer__social a {
  display: block;
  width: 26px;
  height: 23px;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.footer__social a:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.footer__social img {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-xl);
}

.footer__copyright {
  font-size: var(--caption-size);
  font-weight: 500;
  color: var(--color-black);
}

.footer__copyright span {
  color: var(--color-purple);
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-size: var(--caption-size);
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-purple);
}

.footer__links .footer__dev {
  text-decoration: none;
}

.footer__links .footer__dev span {
  color: var(--color-purple);
}

/* ── Animations: Intersection Observer Triggers ── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.anim-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.anim-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.anim-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-slow), transform var(--transition-bounce);
}

.anim-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.anim-blur-in {
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--transition-slow), filter var(--transition-slow);
}

.anim-blur-in.visible {
  opacity: 1;
  filter: blur(0);
}

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Hero person floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}

/* Pulse glow for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170, 248, 87, 0.4); }
  50% { box-shadow: 0 0 20px 6px rgba(170, 248, 87, 0.2); }
}

.anim-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Rotate circles decoration */
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-spin-slow {
  animation: slow-spin 40s linear infinite;
}

/* Counter animation shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 15, 80, 0.95);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--color-green); }

/* ── Responsive: Tablet ── */
@media (max-width: 1200px) {
  :root {
    --content-padding: 60px;
    --h1-size: 42px;
    --h1-line-height: 52px;
    --h2-size: 34px;
    --h2-line-height: 42px;
  }

  .hero__person { display: none; }
  .hero__content { max-width: 100%; }
  .problems__inner { flex-direction: column; }
  .problems__image { width: 100%; height: 400px; }
  .products__grid, .products__grid--bottom { grid-template-columns: 1fr 1fr; }
  .products__header { flex-direction: column; gap: 20px; }
  .contact__inner { flex-direction: column; gap: 40px; }
  .contact__form { max-width: 100%; }
}

/* ── Responsive: Mobile (390px) ── */
@media (max-width: 768px) {
  :root {
    --content-padding: 20px;
    --h1-size: 32px;
    --h1-line-height: 40px;
    --h2-size: 24px;
    --h2-line-height: 32px;
    --h3-size: 20px;
    --h3-line-height: 28px;
    --body-size: 16px;
    --body-line-height: 24px;
    --small-size: 14px;
  }

  body { overflow-x: hidden; }

  /* Navbar mobile */
  .navbar {
    padding: 12px var(--content-padding);
    max-height: 60px;
  }

  .navbar__logo { height: 32px; }

  .navbar > .btn { display: none; }

  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero__person { display: none; }
  .hero__content { max-width: 100%; padding-top: 0; }

  .hero__title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 16px;
  }

  .hero__note {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
    max-width: 100%;
  }

  .hero__cta { margin-top: 24px; }

  .hero__cta .btn {
    width: 100%;
    padding: 14px 24px;
    min-height: 48px;
    font-size: 16px;
  }

  .hero__stats {
    position: relative;
    bottom: auto;
    margin-top: 32px;
    overflow: visible;
  }

  .hero__stats-track {
    flex-direction: column;
    width: 100%;
    animation: none;
    padding: 0 var(--edge-padding);
  }

  .stat-badge {
    width: 100%;
    padding: 12px 16px;
    gap: 12px;
  }

  .stat-badge--clone { display: none; }

  .stat-badge__icon { width: 24px; height: 24px; }
  .stat-badge__text { font-size: 14px; }

  /* Problems */
  .problems { padding: 48px 0; }

  .problems__inner {
    flex-direction: column;
    gap: 32px;
  }

  .problems__image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
  }

  .problems__quote {
    padding: 16px;
    gap: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border-radius: 12px;
  }

  .problems__quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .problems__quote-icon img { width: 28px; height: 28px; }

  .problems__quote p { font-size: 14px; }

  .problems__label { font-size: 14px; }
  .problems__title { font-size: 24px; line-height: 32px; margin-bottom: 20px; }

  .feature-item {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 10px;
  }

  .feature-item__icon { width: 24px; height: 24px; }
  .feature-item__text { font-size: 14px; line-height: 1.5; }

  /* Products */
  .products { padding: 48px 0; }

  .products__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .products__header-left { max-width: 100%; }
  .products__header-right { max-width: 100%; padding-top: 0; }
  .products__header-right p { font-size: 16px; }

  .products__label { font-size: 14px; }

  .products__grid,
  .products__grid--bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 24px 20px;
    gap: 16px;
    border-radius: 12px;
  }

  .product-card__logo { height: 28px; }
  .product-card__name { font-size: 20px; line-height: 28px; }
  .product-card__desc { font-size: 14px; line-height: 1.5; }

  /* Data */
  .data { padding: 48px 0; }
  .data__header { margin-bottom: 24px; }
  .data__label { font-size: 14px; }

  .data__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .data-card {
    padding: 24px 20px;
    gap: 16px;
    border-radius: 12px;
  }

  .data-card__title { font-size: 20px; line-height: 28px; }
  .data-card__body { font-size: 14px; line-height: 1.5; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-section__title { font-size: 24px; line-height: 32px; }
  .cta-section__text { font-size: 16px; max-width: 100%; }

  .cta-section .btn--cta {
    width: 100%;
    padding: 16px 24px;
    min-height: 48px;
    font-size: 16px;
  }

  /* Contact */
  .contact { padding: 48px 0; }

  .contact__inner {
    flex-direction: column;
    gap: 32px;
  }

  .contact__info { max-width: 100%; }
  .contact__label { font-size: 14px; margin-bottom: 16px; }
  .contact__title { font-size: 24px; line-height: 32px; }
  .contact__desc { font-size: 16px; }
  .contact__form { max-width: 100%; }

  .form {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .form__subtitle { font-size: 12px; margin-bottom: 20px; }

  .form__row { flex-direction: column; gap: 12px; margin-bottom: 12px; }

  .form__input, .form__select {
    height: 44px;
    font-size: 14px;
    border-radius: 8px;
    padding: 0 16px;
  }

  .form__label { font-size: 14px; }

  .btn--submit {
    min-height: 48px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 8px;
  }

  .form__privacy { font-size: 12px; margin-top: 16px; }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 40px var(--edge-padding);
    gap: 24px;
    text-align: center;
  }

  .footer__top {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px;
  }

  .footer__logo { height: 40px; }

  .footer__social { gap: 24px; justify-content: center; }
  .footer__social a { width: 28px; height: 28px; }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer__copyright { font-size: 14px; }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer__links a { font-size: 14px; }
  .footer__links .footer__dev { margin-top: 4px; }

  /* Disable hover effects on mobile */
  .btn:hover::after { transform: translateX(-100%); }
  .btn--primary:hover,
  .btn--secondary:hover,
  .btn--submit:hover,
  .btn--cta:hover { transform: none; box-shadow: none; }
  .stat-badge:hover { transform: none; box-shadow: none; }
  .feature-item:hover { transform: none; background: var(--color-overlay-light); box-shadow: none; }
  .product-card:hover { transform: none; box-shadow: none; }
  .data-card:hover { transform: none; box-shadow: none; }
  .footer__social a:hover { transform: none; opacity: 1; }

  /* Active states for touch */
  .btn:active { transform: scale(0.97); }
  .stat-badge:active { transform: scale(0.98); }
  .product-card:active { transform: scale(0.98); }
  .feature-item:active { background: rgba(153, 47, 255, 0.08); }
}
