/* ===== FONT FACE ===== */
@font-face {
  font-family: 'Samarkan';
  src: url('assets/Samarkan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #FF5200;
  --primary-light: #F88B58;
  --peach: #FFEAE0;
  --peach-shadow: #FFCEB7;
  --dark: #202020;
  --dark-alt: #242424;
  --text: #000000;
  --bg-gray: #F9F9F9;
  --white: #FFFFFF;
  --border: #D9D9D9;
  --phone-frame: #474747;

  --font-display: 'Samarkan', cursive;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Open Sans', 'Raleway', sans-serif;

  --shadow-hero-image: 0px 4px 114px rgba(0,0,0,0.49);
  --shadow-stat-card: 0px 4px 54px #FFCEB7;
  --shadow-problem-card: 0px 4px 64px rgba(0,0,0,0.11);
  --shadow-phone: 0px 4px 134px rgba(0,0,0,0.25);

  --radius-navbar: 15px;
  --radius-card: 30px;
  --radius-stat: 15px;
  --radius-input: 10px;
  --radius-phone-outer: 50px;
  --radius-phone-inner: 40px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.9);
}
.reveal--scale.visible {
  transform: scale(1);
}

/* ===== SECTION 1: NAVBAR ===== */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-navbar);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 1005;
    will-change: transform, opacity;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  top: 15px;
}
.navbar__logo {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  color: var(--primary);
  line-height: 1;
}
.navbar__logo-accent {
    position: absolute;
    left: 0;
    top: -5px;
    width: 20px;
    height: 14px;
    background: var(--white);
    z-index: 2;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar__link {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.navbar__link:hover::after {
  width: 100%;
}
.navbar__link--active {
  color: var(--primary);
}
.navbar__link--default {
  color: var(--dark);
}

/* ===== SECTION 2: HERO ===== */
.hero {
  width: 100%;
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) clamp(20px, 5vw, 164px) clamp(60px, 8vh, 100px);
}
.hero__container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  /* position: relative; */
}
.hero__content {
  flex: 0 0 45%;
  max-width: 750px;
  z-index: 2;
}
.hero__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(32px, 4.2vw, 54px);
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 10px;
}
.hero__match-wrapper {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
}
.hero__match-badge {
    display: inline-block;
    background: var(--white);
    padding: 8px 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--primary);
    line-height: 1.35;
    will-change: transform, opacity;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--white);
  line-height: 1.78;
  margin-top: 16px;
  max-width: 600px;
}
.hero__download {
  margin-top: 40px;
}
.hero__download-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--white);
  letter-spacing: 0.52px;
  line-height: 1.5;
}
.hero__badges {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero__badge {
  height: clamp(50px, 5.5vw, 75px);
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.hero__badge:hover {
  transform: scale(1.05);
}
.hero__imagery {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__couple-masked {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 45vw, 700px);
  height: clamp(500px, 55vw, 886px);
  overflow: hidden;
}
.hero__couple-masked img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url('assets/hero-couple-mask.svg');
  mask-image: url('assets/hero-couple-mask.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.hero__couple-fg {
  position: relative;
  z-index: 2;
  width: clamp(350px, 40vw, 600px);
  height: auto;
  box-shadow: var(--shadow-hero-image);
}
.hero__arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero__arrow {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero__arrow:hover {
  opacity: 1;
}

/* ===== SECTION 3: SERVICES ===== */
.services {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--white);
  text-align: center;
}
.services__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: clamp(40px, 5vw, 70px);
  flex-wrap: wrap;
}
.services__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4.3vw, 50px);
  color: var(--dark);
  letter-spacing: 1.2px;
  line-height: 1.33;
}
.services__nav {
  display: flex;
  gap: 10px;
}
.services__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
  line-height: 1;
}
.services__nav-btn:hover {
  transform: scale(1.1);
}
.services__nav-btn--prev {
  background: var(--white);
  border: 1px solid #BCBCBC;
  color: #666;
}
.services__nav-btn--next {
  background: var(--primary);
  color: var(--white);
}
.services__carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.services__carousel {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}
.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.services__item:hover {
  transform: translateY(-10px);
}
.services__item:hover .services__circle {
  transform: scale(1.1);
}
.services__item:hover .services__shadow {
  transform: scaleX(1.15);
  opacity: 0.7;
}
.services__circle {
  width: clamp(110px, 12vw, 158px);
  height: clamp(110px, 12vw, 158px);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.services__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__shadow {
    width: clamp(100px, 10vw, 142px);
    height: auto;
    will-change: transform, opacity;
    margin-top: -24px;
}
.services__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--text);
    text-align: center;
    margin-top: 4px;
    will-change: transform, opacity;
}

/* ===== SECTION 4: TRADITION ===== */
.tradition {
    position: relative;
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
    min-height: 700px;
    transform: skew(0deg, -7deg);
    background-color: #FFEAE0;
}
.skew-straight {
    transform: skew(0deg, 7deg);
}
.tradition__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.tradition__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 101%;
  height: auto;
  z-index: 0;
}
.tradition__container {
  position: relative;
  z-index: 1;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.tradition__figure {
    position: absolute;
    left: -30px;
    top: -380px;
    width: clamp(300px, 38vw, 764px);
    height: auto;
    z-index: 1;
    will-change: transform, opacity;
}
.tradition__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.tradition__content {
  margin-left: auto;
  width: 55%;
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.tradition__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  letter-spacing: 1.1px;
  line-height: 1.45;
}
.tradition__location {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--primary-light);
  letter-spacing: 0.48px;
  margin-top: 8px;
  text-align: left;
}
.tradition__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text);
    line-height: 1.75;
    margin-top: 20px;
    will-change: transform, opacity;
}
.tradition__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  margin-top: clamp(30px, 4vw, 50px);
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-stat);
  box-shadow: var(--shadow-stat-card);
  padding: clamp(25px, 3vw, 35px) clamp(15px, 2vw, 25px);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 64px #FFCEB7;
}
.stat-card__icon-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: -100px auto -30px;
  will-change: transform, opacity;
}
.stat-card__icon-bg {
  width: 100%;
  height: 100%;
}
.stat-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}
.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 32px);
  color: var(--text);
  letter-spacing: 0.88px;
  line-height: 1.8;
}
.stat-card__accent {
  color: var(--primary);
}
.stat-card__desc {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text);
  line-height: 1.3;
  margin-top: 4px;
}

/* ===== SECTION 5: PROBLEM ===== */
.problem {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--white);
}
.problem__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4.3vw, 50px);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.1px;
  line-height: 1.45;
  margin-bottom: clamp(40px, 5vw, 50px);
}
.problem__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 50px);
  max-width: 1400px;
  margin: 0 auto;
}
.problem-card {
  /* display: flex;
  align-items: center; */
  gap: clamp(20px, 3vw, 50px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-problem-card);
  padding: clamp(25px, 3vw, 50px);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flex_Row {
    display: flex;
    align-items: center;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 80px rgba(0,0,0,0.14);
}
.problem-card--white {
  background: var(--white);
}
.problem-card--peach {
  background: var(--peach);
}
.problem-card__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 32px);
    color: var(--text);
    text-align: center;
    letter-spacing: 0.78px;
    line-height: 1.28;
    margin-bottom: clamp(15px, 2vw, 0px);
    width: 100%;
}
.problem-card__illustration {
  flex-shrink: 0;
  width: clamp(200px, 28vw, 414px);
  height: auto;
}
.problem-card__illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.problem-card__text {
  flex: 1;
}
.problem-card__para {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 20px);
  color: var(--text);
  line-height: 40px;
  margin-bottom: 16px;
}
.problem-card__para strong {
  font-weight: 600;
}

/* ===== SECTION 6: SOLUTION ===== */
.solution {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--bg-gray);
}
.solution__container {
  max-width: 1728px;
  margin: 0 auto;
}
.solution__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.1px;
  line-height: 1.45;
  margin-bottom: clamp(30px, 4vw, 20px);
}
.solution__body {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.solution__illustration {
  flex-shrink: 0;
  width: clamp(250px, 45vw, 800px);
}
.solution__illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.solution__text {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text);
  line-height: 1.75;
}

/* ===== SECTION 7: VALUE CARDS ===== */
.value {
  padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 80px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.value__cards {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}
.value-card {
  flex: 1;
  max-width: 585px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(25px, 3vw, 45px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.value-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 26px);
    color: var(--text);
    line-height: 1.32;
    margin-bottom: 16px;
    will-change: transform, opacity;
}
.value-card__title-accent {
  color: var(--primary);
}
.value-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  line-height: 1.92;
}
.value-card__desc strong {
  font-weight: 500;
}
.value-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--primary);
  margin-top: 20px;
  transition: gap 0.3s ease;
}
.value-card:hover .value-card__link {
  gap: 12px;
}
.value-card__link-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2em;
}
.value-card:hover .value-card__link-arrow {
  transform: translateX(4px);
}

/* Watermark Text */
.value__watermarks {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: clamp(20px, 3vw, 40px);
  overflow: hidden;
  white-space: nowrap;
}
.value__watermark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(80px, 16vw, 230px);
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
}

/* ===== SECTION 8: FOOTER / APP DOWNLOAD ===== */
.app-download {
    padding: 80px 20px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}
.app-download__bg-wave {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.app-download__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}
.phone-mockup {
  flex-shrink: 0;
  position: relative;
  width: clamp(250px, 28vw, 397px);
}
.phone-mockup__frame {
  background: var(--phone-frame);
  border-radius: var(--radius-phone-outer) var(--radius-phone-outer) 0 0;
  padding: 16px;
  box-shadow: var(--shadow-phone);
  position: relative;
  overflow: hidden;
  bottom: -20px;
}
.phone-mockup__screen {
  background: var(--primary);
  border-radius: var(--radius-phone-inner) var(--radius-phone-inner) 0 0;
  width: 100%;
  aspect-ratio: 365 / 542;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-mockup__camera {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #363636;
}
.phone-mockup__text {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--white);
  text-align: center;
}
.phone-mockup__bar {
    position: absolute;
    top: 212px;
    left: 35%;
    transform: translateX(-50%);
    width: 128px;
    height: 40px;
    background: #ff5200;
    /* filter: brightness(0.85); */
}
.app-download__content {
  flex: 1;
}
.app-download__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dark-alt);
  letter-spacing: 1.1px;
  line-height: 1.45;
}
.app-download__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--dark-alt);
  line-height: 1.71;
  margin-top: 12px;
}
.app-download__input-wrap {
  margin-top: 24px;
}
.app-download__input {
  width: 100%;
  max-width: 352px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.app-download__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,82,0,0.1);
}
.app-download__input::placeholder {
  color: rgba(0,0,0,0.5);
}
.app-download__badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.app-download__badge {
  height: clamp(60px, 6vw, 70px);
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.app-download__badge:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  padding: 30px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  position: relative;
  display: flex;
  align-items: center;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  color: var(--primary);
  line-height: 1;
}
.footer__logo-accent {
    position: absolute;
    left: 0;
    top: -5px;
    width: 28px;
    height: 20px;
    background: var(--white);
}
.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    flex: none;
    max-width: 100%;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__download {
    text-align: center;
  }
  .hero__imagery {
    min-height: 400px;
    justify-content: center;
  }
  .hero__couple-masked {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 602 / 886;
  }
  .hero__couple-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 450px;
  }
  .tradition__figure {
    display: none;
  }
  .tradition__content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .tradition__title {
    text-align: center;
  }
  .solution__body {
    flex-direction: column;
    text-align: center;
  }
  .solution__illustration {
    width: 80%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0 20px;
    height: 60px;
    top: 15px;
  }
  .navbar.scrolled {
    top: 8px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero__imagery {
    min-height: 300px;
  }
  .hero__couple-masked {
    width: 90%;
  }
  .hero__couple-fg {
    width: 80%;
  }
  .hero__arrows {
    display: none;
  }
  .services__carousel {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .services__nav {
    display: none;
  }
  .tradition__stats {
    grid-template-columns: 1fr;
  }
  .problem-card {
    flex-direction: column;
    text-align: center;
  }
  .problem-card__illustration {
    width: 70%;
    max-width: 300px;
  }
  .value__cards {
    flex-direction: column;
    align-items: center;
  }
  .value-card {
    max-width: 100%;
  }
  .app-download__container {
    flex-direction: column;
    text-align: center;
  }
  .phone-mockup {
    width: 60%;
    max-width: 300px;
  }
  .app-download__badges {
    justify-content: center;
  }
  .app-download__input {
    max-width: 100%;
  }
  .footer {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services__item {
    width: calc(50% - 15px);
  }
  .value__watermark {
    font-size: 60px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 04-03-2026 */

.slick-autoplay-slider {
    position: absolute;
    right: 0;
    width: 40%;
    top: 0;
}
.slick-autoplay-slider .slider.vertical-slider {
    overflow: visible;
}
.item-sm-img {
    position: absolute;
    left: -160px;
    z-index: 1000;
    padding-top: 130px;
}
.slick-autoplay-slider .slick .item .main-vertical-image {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
@media (max-width: 767px) {
  .slick-autoplay-slider {
      display: none;
  }
  .flex_Row {
    display: block;
    text-align: center;
  }
  .problem-card__illustration {
      width: 100%;
      max-width: 300px;
  }
    .phone-mockup {
      display: none;
  }
  .footer__logo-accent {
      top: -10px;
  }
}

/* 04-03-2026 */