/* ========================================
   AuraFace — Static Landing Page Styles
   ======================================== */

:root {
  --color-cream: #FDFBF7;
  --color-cream-dark: #F5F0E8;
  --color-gold: #C5A059;
  --color-gold-light: rgba(197, 160, 89, 0.12);
  --color-gold-hover: #B8924D;
  --color-dark: #1A1A1A;
  --color-brown: #4A3728;
  --color-text: #2C2419;
  --color-text-muted: #6B6358;
  --color-text-light: rgba(255, 255, 255, 0.7);
  --color-border: rgba(197, 160, 89, 0.2);
  --color-border-light: rgba(0, 0, 0, 0.06);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1200px;
  --header-height: 72px;
  --radius-pill: 100px;
  --radius-card: 16px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--color-gold-hover);
}

.btn--dark {
  background: var(--color-brown);
  color: #fff;
}

.btn--dark:hover {
  background: #3D2E22;
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold-light);
}

.btn--block {
  width: 100%;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.logo--light .logo__text {
  color: #fff;
}

/* ---- Language Selector ---- */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: 8px;
}

.lang-selector:hover {
  color: var(--color-text);
}

.lang-selector--light {
  color: var(--color-text-light);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  background: var(--color-gold-light);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

/* ---- Section Typography ---- */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header .logo__text {
  color: #fff;
}

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

.header .nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.header .nav__link:hover {
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .lang-selector {
  color: rgba(255, 255, 255, 0.72);
}

.header .lang-selector:hover {
  color: #fff;
}

/* ---- Language Dropdown ---- */
.lang-dropdown {
  position: relative;
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.lang-dropdown__menu--up {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px);
}

.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  text-align: left;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown__option:hover {
  background: var(--color-gold-light);
  color: var(--color-text);
}

.lang-dropdown__option.is-active {
  color: var(--color-gold);
  font-weight: 600;
}

.lang-dropdown--footer .lang-dropdown__menu {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-dropdown--footer .lang-dropdown__option {
  color: var(--color-text-light);
}

.lang-dropdown--footer .lang-dropdown__option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-dropdown--footer .lang-dropdown__option.is-active {
  color: var(--color-gold);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  padding: 60px 0 48px;
  min-height: 640px;
  overflow-x: clip;
  overflow-y: visible;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  /* 左侧渐隐，与页面背景自然衔接 */
  -webkit-mask-image: linear-gradient(to left, #000 55%, transparent 100%);
  mask-image: linear-gradient(to left, #000 55%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 480px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.hero__feature-icon {
  flex-shrink: 0;
  display: flex;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero__social-proof strong {
  color: var(--color-text);
  font-weight: 600;
}

.hero__avatars {
  --avatar-size: 32px;
  --avatar-overlap: 8px;
  --avatar-step: calc(var(--avatar-size) - var(--avatar-overlap));
  --avatar-visible: 3;
  width: calc(var(--avatar-size) + var(--avatar-step) * (var(--avatar-visible) - 1));
  overflow: hidden;
  flex-shrink: 0;
}

.hero__avatars-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

.hero__avatars-track.is-animating {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-cream);
  margin-left: calc(var(--avatar-overlap) * -1);
  flex-shrink: 0;
  position: relative;
}

.hero__avatar:first-child {
  margin-left: 0;
  z-index: 4;
}

.hero__avatar:nth-child(2) {
  z-index: 3;
}

.hero__avatar:nth-child(3) {
  z-index: 2;
}

.hero__avatar:nth-child(4) {
  z-index: 1;
}

.hero__avatar.is-entering {
  animation: avatar-enter 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__avatar.is-exiting {
  animation: avatar-exit 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes avatar-enter {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes avatar-exit {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.75);
  }
}

.hero__visual {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-48%);
  width: min(1200px, 68vw);
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  isolation: isolate;
}

.hero__visual-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  /* 底部渐变遮罩，消除 PS 导出时云朵/雾气的米色底边 */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

/* 前景薄雾 — 缓缓横向飘动 */
.hero__mist {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.hero__mist-layer {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  will-change: transform;
  background-repeat: repeat-x;
}

.hero__mist-layer--1 {
  top: 42%;
  height: 68%;
  opacity: 0.55;
  filter: blur(6px);
  background-size: 620px 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='120' viewBox='0 0 620 120'%3E%3Cellipse cx='80' cy='65' rx='110' ry='38' fill='%23FFFFFF' fill-opacity='0.75'/%3E%3Cellipse cx='230' cy='52' rx='125' ry='42' fill='%23FFFFFF' fill-opacity='0.65'/%3E%3Cellipse cx='380' cy='70' rx='105' ry='36' fill='%23FFFFFF' fill-opacity='0.7'/%3E%3Cellipse cx='530' cy='55' rx='115' ry='40' fill='%23FFFFFF' fill-opacity='0.68'/%3E%3C/svg%3E");
  animation: mist-drift 48s linear infinite;
}

.hero__mist-layer--2 {
  top: 55%;
  height: 58%;
  opacity: 0.45;
  filter: blur(12px);
  background-size: 680px 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='680' height='120' viewBox='0 0 680 120'%3E%3Cellipse cx='120' cy='62' rx='140' ry='46' fill='%23FFFDF8' fill-opacity='0.55'/%3E%3Cellipse cx='340' cy='72' rx='155' ry='50' fill='%23FFFFFF' fill-opacity='0.48'/%3E%3Cellipse cx='560' cy='54' rx='130' ry='44' fill='%23FFFDF8' fill-opacity='0.52'/%3E%3C/svg%3E");
  animation: mist-drift 72s linear infinite reverse;
}

.hero__mist-layer--3 {
  top: 38%;
  height: 78%;
  opacity: 0.35;
  filter: blur(18px);
  background-size: 780px 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='780' height='160' viewBox='0 0 780 160'%3E%3Cellipse cx='180' cy='95' rx='190' ry='58' fill='%23FFFFFF' fill-opacity='0.4'/%3E%3Cellipse cx='480' cy='78' rx='165' ry='52' fill='%23FFFFFF' fill-opacity='0.35'/%3E%3Cellipse cx='680' cy='88' rx='150' ry='48' fill='%23FFFFFF' fill-opacity='0.32'/%3E%3C/svg%3E");
  animation: mist-drift 96s linear infinite;
}

@keyframes mist-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   Features Grid
   ======================================== */
.features {
  padding: 0 0 80px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.feature-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
  padding: 80px 0 100px;
}

.map-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.map-section__body {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 48px;
  align-items: center;
}

.map-section__intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.map-section__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-section__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.map-section__point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.map-section__points strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.map-section__points span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.map-section__center {
  display: flex;
  justify-content: center;
}

.map-section__portrait {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-card);
}

.face-map {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.face-map__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.face-map__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.face-map__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.face-map__item span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ========================================
   Pricing
   ======================================== */
.pricing {
  position: relative;
  background: var(--color-dark);
  padding: 80px 0 100px;
  overflow: hidden;
}

.pricing__cloud-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 300px;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' viewBox='0 0 400 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M320 80c20-30 60-20 70 10s-10 50-40 60-50-10-60-40 10-50 30-30z' stroke='%23C5A059' stroke-width='1.5'/%3E%3Cpath d='M280 140c15-20 45-15 55 5s-5 35-30 40-35-5-40-25 5-30 15-20z' stroke='%23C5A059' stroke-width='1.5'/%3E%3Cpath d='M350 180c10-15 30-10 35 5s-5 25-20 28-25-5-28-18 5-20 13-15z' stroke='%23C5A059' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
}

.pricing__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}

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

.pricing-card {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card--popular {
  border: 2px solid var(--color-gold);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  margin-bottom: 20px;
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 22px;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%23C5A059' stroke-width='1'/%3E%3Cpath d='M4.5 7l2 2 3.5-3.5' stroke='%23C5A059' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.pricing__sidebar {
  padding-top: 20px;
}

.pricing__sidebar-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.pricing__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing__sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
}

.pricing__crane {
  width: 100%;
  opacity: 0.9;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.testimonials__blossoms {
  position: absolute;
  left: -40px;
  top: 60px;
  width: 160px;
  opacity: 0.6;
  pointer-events: none;
  transform: scaleX(-1);
}

.testimonials__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testimonials__nav {
  display: flex;
  gap: 8px;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.testimonials__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-dark);
  padding: 64px 0 0;
  color: var(--color-text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  margin: 16px 0 24px;
  color: var(--color-text-light);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--color-gold);
}

.footer__links h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__emails {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__emails li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__email-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer__emails a {
  font-size: 12px;
  color: var(--color-text-light);
  word-break: break-all;
  transition: color 0.2s;
}

.footer__emails a:hover {
  color: var(--color-gold);
}

.footer__newsletter h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer__newsletter p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-family: inherit;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--color-gold-hover);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1100px) {
  .pricing__layout {
    grid-template-columns: 1fr;
  }

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

  .map-section__body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .map-section__center {
    grid-column: 1 / -1;
    order: -1;
  }

  .map-section__portrait {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__content {
    max-width: none;
  }

  .hero__inner {
    text-align: center;
  }

  .hero__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 580px;
    margin: 16px auto 0;
    pointer-events: auto;
  }

  .hero__visual-frame {
    width: 100%;
  }

  .hero__visual-img {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__features {
    align-items: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__social-proof {
    justify-content: center;
  }

  .hero__title {
    font-size: 40px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .map-section__body {
    grid-template-columns: 1fr;
  }

  .section-title,
  .pricing__title {
    font-size: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .pricing__sidebar {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Scroll Reveal — Apple-style aggregation
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal {
    opacity: 0;
    transition:
      opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal--up {
    transform: translateY(52px);
  }

  .motion-ready .reveal--left {
    transform: translateX(-48px);
  }

  .motion-ready .reveal--right {
    transform: translateX(48px);
  }

  .motion-ready .reveal--scale {
    transform: scale(0.88) translateY(36px);
  }

  .motion-ready .reveal--fade {
    transform: none;
  }

  .motion-ready .reveal--scale.is-visible {
    transform: scale(1) translateY(0);
  }

  .motion-ready .hero__visual-img {
    transition: transform 0.1s linear;
    will-change: transform;
  }

  .motion-ready .header.reveal {
    transition-duration: 0.7s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__avatars-track.is-animating {
    transition: none;
  }

  .hero__avatar.is-entering,
  .hero__avatar.is-exiting {
    animation: none;
  }

  .hero__mist-layer {
    animation: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
