/* ==========================================================================
   Shopify VA Made Easy — Full custom stylesheet
   (Cloned structure/animations from source design, adapted for brand.)
   ========================================================================== */

:root {
  /* Brand */
  --color-primary: #0a3d62;
  --color-primary-light: #1e5f8a;
  --color-primary-dark: #062a44;
  --color-accent: #2a6b35;
  --color-accent-light: #7bc044;
  --color-accent-glow: rgba(123, 192, 68, 0.3);
  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;

  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #071a31;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-white: #ffffff;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --section-padding: clamp(4rem, 8vw, 6rem);
  --container-width: min(1200px, calc(100% - 2.5rem));

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 40px var(--color-accent-glow);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;

  --header-height: 80px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
main { overflow-x: clip; max-width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: var(--container-width); margin-inline: auto; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-label {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 700; line-height: 1.2;
  color: var(--color-text); margin-bottom: 0.75rem;
}
.section-subtitle { font-size: 1.0625rem; color: var(--color-text-muted); max-width: 560px; margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: var(--radius-full);
  font-size: 0.9375rem; font-weight: 600;
  transform-origin: center;
  transition: box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.btn:active { animation: none !important; transform: scale(0.97); }
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-white); box-shadow: 0 4px 20px var(--color-accent-glow);
}
.btn--primary:hover { box-shadow: var(--shadow-glow); }
.btn--shop {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--color-white);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn--shop:hover { box-shadow: 0 6px 24px rgba(245,158,11,0.45); }
.btn--email {
  border: 1.5px solid rgba(13,148,136,0.25); box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.btn--email:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); color: var(--color-accent); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Cards */
.card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border); transform-origin: center;
}
.card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--color-text); }

.stars { color: var(--color-gold); font-size: 1.125rem; letter-spacing: 2px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: calc(var(--header-height) + 1rem);
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-out);
}
.header--scrolled {
  background: transparent;
  box-shadow: none;
}
.header__inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  width: var(--container-width);
  margin: 0.75rem auto 0;
  padding: 0 1.75rem;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 36px rgba(42, 107, 53, 0.15), 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
}
.header__inner .nav__link {
  color: rgba(255, 255, 255, 0.85);
}
.header__inner .nav__link:hover {
  color: var(--color-white);
}
.header__inner .nav__link::after {
  background: var(--color-accent-light);
}
.header__inner .logo__img {
  filter: none;
}
.header__inner .nav-toggle span {
  background: var(--color-white);
}
.header--scrolled .header__inner {
  height: 58px;
  box-shadow: 0 16px 36px rgba(42, 107, 53, 0.25), 0 4px 12px rgba(15, 23, 42, 0.08);
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-left: -1.5rem;
  padding: 4px 16px;
  background: var(--color-white);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(15,23,42,0.12);
  overflow: hidden;
  transition: padding var(--duration-fast), box-shadow var(--duration-fast);
}
.logo__text { display: flex; flex-direction: column; gap: 0.125rem; max-width: 12rem; }
.logo__brand { font-family: var(--font-display); font-size: clamp(0.8125rem, 1.6vw, 0.9375rem); font-weight: 700; color: var(--color-primary); }
.logo__sub { font-size: clamp(0.625rem, 1.2vw, 0.6875rem); font-weight: 500; color: var(--color-text-muted); }
.logo__img {
  height: 46px; width: auto;
  object-fit: contain;
  scale: 1.15;
  transition: height var(--duration-fast), scale var(--duration-fast), transform var(--duration-fast), filter var(--duration-fast);
}
.header--scrolled .logo,
.shop-header--scrolled .logo { padding: 3px 14px; }
.header--scrolled .logo__img,
.shop-header--scrolled .logo__img { height: 42px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); position: relative; transition: color var(--duration-fast); }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent); border-radius: 2px; transition: width var(--duration-normal) var(--ease-out); }
.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after { width: 100%; }
.header__location { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--color-text-muted); }
.header__location svg { width: 14px; height: 14px; color: var(--color-accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform var(--duration-normal), opacity var(--duration-fast); }
.nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 901px) and (max-width: 1100px) {
  .logo { padding: 4px 10px; }
  .logo__img { height: 38px; }
  .header--scrolled .logo,
  .shop-header--scrolled .logo { padding: 3px 10px; }
  .header--scrolled .logo__img,
  .shop-header--scrolled .logo__img { height: 36px; }
  .nav { gap: 1rem; }
}

@media (max-width: 900px) {
  .logo,
  .header--scrolled .logo,
  .shop-header--scrolled .logo { padding: 3px 12px; }
  .logo__img,
  .header--scrolled .logo__img,
  .shop-header--scrolled .logo__img { height: 42px; }
}
 
/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--color-text); overflow: hidden; background: linear-gradient(160deg, #f0fdf4 0%, #f8fafc 40%, #f0fdf4 100%); }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45; }
.hero__bg-blob--1 { width: 420px; height: 420px; top: -120px; right: -80px; background: rgba(123,192,68,0.28); }
.hero__bg-blob--2 { width: 360px; height: 360px; bottom: -100px; left: -60px; background: rgba(42,107,53,0.15); }
.hero__bg-pattern { position: absolute; inset: 0; opacity: 1; background: url('/hero-bg-deco.png') no-repeat center center; background-size: cover; }
.hero__overlay { display: none; }
.hero__content { position: relative; z-index: 1; padding-top: calc(var(--header-height) + 2.5rem); padding-bottom: 4rem; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  grid-template-areas: 'intro video' 'body video';
  gap: 0.5rem clamp(2.5rem, 5vw, 3.75rem);
  align-items: center;
}
.hero__intro { grid-area: intro; align-self: end; }
.hero__body { 
  grid-area: body; align-self: start;
}
.hero__video-container {
  grid-area: video;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__video-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(123, 192, 68, 0.28) 0%, rgba(42, 107, 53, 0.08) 50%, transparent 70%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

.hero__video-dots {
  position: absolute;
  top: -6%;
  right: -6%;
  width: 90px;
  height: 90px;
  opacity: 0.18;
  background-image: radial-gradient(var(--color-accent) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  z-index: 0;
  pointer-events: none;
}

.hero__video-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(123, 192, 68, 0.45);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 45px 90px rgba(15, 23, 42, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transform: translateY(-6px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.hero__video-frame {
  border-radius: 20px;
}
.hero__video-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  z-index: 2;
}

.hero__footer-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.125rem;
  background: var(--color-white);
  border: 1.5px solid rgba(123, 192, 68, 0.3);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.hero__footer-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7bc044;
}
.hero__footer-badge-icon svg {
  width: 22px;
  height: 22px;
}
.hero__footer-badge-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__footer-badge-text strong {
  color: var(--color-accent);
  font-weight: 700;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(255,255,255,0.75);
  border: 1px solid rgba(13,148,136,0.25); border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(8px);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero__badge-dot { width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; color: var(--color-text); }
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.hero__desc { font-size: clamp(1.125rem, 2vw, 1.375rem); color: var(--color-text-muted); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; font-weight: 500; }
.hero__features { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: var(--color-text-muted); font-weight: 600; }
.hero__feature { display: flex; align-items: center; gap: 0.5rem; }
.hero__feature svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }
.hero__video-frame { position: relative; border-radius: calc(var(--radius-lg) - 6px); overflow: hidden; aspect-ratio: 16 / 9; background: #0a2540; }
.hero__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__video-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 45%, rgba(7,26,49,0.12) 100%); pointer-events: none; }
.hero__play-btn {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%); width: 76px; height: 76px; padding: 0;
  border: 2px solid rgba(255,255,255,0.75); border-radius: 50%; background: transparent;
  color: var(--color-white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--duration-normal) var(--ease-spring), border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.hero__play-btn:hover { transform: translate(-50%, -50%) scale(1.08); border-color: rgba(255,255,255,0.95); }
.hero__play-icon { position: relative; z-index: 1; display: flex; margin-left: 4px; animation: playIconBounce 2s var(--ease-out) infinite; }
.hero__play-icon svg { width: 32px; height: 32px; }
.hero__play-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); animation: playRingPulse 2s var(--ease-out) infinite; }
.hero__play-ring--delay { animation-delay: 1s; }
.hero__shop-btn { position: relative; overflow: visible; isolation: isolate; animation: heroShopBounce 2.2s ease-in-out infinite; }
.hero__shop-ring { position: absolute; inset: 0; z-index: -1; border-radius: inherit; border: 2px solid rgba(245,158,11,0.72); pointer-events: none; animation: playRingPulse 2s var(--ease-out) infinite; }
.hero__shop-ring--delay { animation-delay: 1s; }
.hero__shop-content { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.625rem; }
.hero__shop-content svg { animation: playIconBounce 2s var(--ease-out) infinite; }

/* Hero — new elements */
.hero__title-underline {
  width: 3.5rem; height: 4px; background: var(--color-accent);
  border-radius: var(--radius-full); margin-bottom: 1.5rem;
}

/* Feature items */
.hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-bottom: 2rem;
  list-style: none;
}
.hero__feature {
  display: flex; align-items: center; gap: 0.625rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(13,148,136,0.18);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--color-text);
  backdrop-filter: blur(8px);
}
.hero__feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(13,148,136,0.12); border-radius: 50%;
  color: var(--color-accent);
}
.hero__feature-icon svg { width: 14px; height: 14px; }

/* Video caption */
.hero__video-caption {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.875rem;
  font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted);
  justify-content: flex-end;
}
.hero__caption-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: #dcfce7; border-radius: 50%;
  color: #16a34a; flex-shrink: 0;
}
.hero__caption-icon svg { width: 12px; height: 12px; }
.hero__caption-highlight {
  font-style: normal; font-weight: 700;
  color: var(--color-accent);
}



/* Hero btn group */
.hero__btn-group { margin-bottom: 0; }

/* Stats strip */
.hero__stats {
  display: flex; align-items: stretch;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 3rem;
  overflow: hidden;
}
.hero__stat {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem; flex: 1;
}
.hero__stat div { display: flex; flex-direction: column; gap: 0.125rem; }
.hero__stat strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--color-text); line-height: 1; }
.hero__stat span { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-light); }
.hero__stat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(13,148,136,0.1); border-radius: 50%;
  color: var(--color-accent);
}
.hero__stat-icon svg { width: 20px; height: 20px; }
.hero__stat-icon--gold { background: rgba(245,158,11,0.12); color: var(--color-gold); }
.hero__stat-divider { width: 1px; background: var(--color-border); flex-shrink: 0; margin: 1rem 0; }

@media (max-width: 1024px) {
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { flex: 1 1 calc(50% - 1px); }
  .hero__stat-divider:nth-child(4) { display: none; }
}
@media (max-width: 600px) {
  .hero__features { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; }
  .hero__stat { padding: 1rem 1.25rem; }
  .hero__stat-divider { width: 100%; height: 1px; margin: 0 1rem; }
}



/* About */
.about { position: relative; padding: var(--section-padding) 0; overflow: hidden; background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 40%, #ecfdf5 100%); }
.about__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about__bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45; }
.about__bg-blob--1 { width: 420px; height: 420px; top: -120px; right: -80px; background: rgba(20,184,166,0.35); }
.about__bg-blob--2 { width: 360px; height: 360px; bottom: -100px; left: -60px; background: rgba(10,61,98,0.2); }
.about__bg-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(var(--color-primary) 1px, transparent 1px); background-size: 24px 24px; }
.about__container { position: relative; z-index: 1; }
.about__story { margin-bottom: 1.75rem; }
.about__story-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.7); transform-origin: center; }
.about__story-blend { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(10,61,98,0.06) 0%, rgba(255,255,255,0.95) 35%, rgba(236,253,245,0.9) 70%, rgba(20,184,166,0.1) 100%); pointer-events: none; }
.about__story-inner {
  position: relative; display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.92) 0%, rgba(248,250,252,0.88) 50%, rgba(240,253,250,0.85) 100%);
}
.about__story-visual { position: relative; display: flex; flex-direction: column; align-items: center; min-height: 340px; justify-content: center; }
.about__visual-bg { position: absolute; inset: 0; pointer-events: none; }
.about__ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1.5px solid rgba(20,184,166,0.25); }
.about__ring--1 { width: 290px; height: 290px; animation: aboutRingPulse 4s ease-in-out infinite; }
.about__ring--2 { width: 330px; height: 330px; border-color: rgba(10,61,98,0.12); animation: aboutRingPulse 4s ease-in-out 2s infinite; }
.about__dot { position: absolute; border-radius: 50%; background: var(--color-accent); opacity: 0.35; }
.about__dot--1 { width: 10px; height: 10px; top: 18%; left: 12%; }
.about__dot--2 { width: 14px; height: 14px; bottom: 22%; right: 10%; background: var(--color-gold); }
.about__dot--3 { width: 8px; height: 8px; top: 28%; right: 18%; }
.about__profile-wrap { position: relative; z-index: 2; width: 250px; height: 250px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary), var(--color-gold)); box-shadow: 0 16px 48px rgba(10,61,98,0.2); }
.about__profile { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--color-white); }
.about__profile-meta { position: relative; z-index: 2; margin-top: 1.25rem; text-align: center; }
.about__profile-meta strong { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--color-text); }
.about__profile-meta span { font-size: 0.8125rem; color: var(--color-text-muted); }
.about__story-content { position: relative; z-index: 1; }
.about__story-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.625rem; }
.about__story-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 700; line-height: 1.25; color: var(--color-text); margin-bottom: 0.75rem; }
.about__story-subtitle { font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); font-weight: 500; line-height: 1.65; color: var(--color-text-muted); margin-bottom: 1.25rem; }
.about__story-text { font-size: 1rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about__story-quote { margin: 1.25rem 0 0; padding: 1rem 1.25rem; font-size: 0.9375rem; font-style: italic; color: var(--color-primary); line-height: 1.7; background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(10,61,98,0.05)); border-left: 3px solid var(--color-accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.about__story-quote--secondary { margin-top: 0.75rem; font-size: 1rem; font-weight: 600; font-style: normal; }
.about__story-quote-note { margin: 0.875rem 0 1.5rem; padding-left: 1.25rem; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.75; border-left: 3px solid rgba(20,184,166,0.35); }
.about__story-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.about__tag { padding: 0.375rem 0.875rem; font-size: 0.8125rem; font-weight: 500; color: var(--color-primary); background: rgba(255,255,255,0.8); border: 1px solid rgba(10,61,98,0.12); border-radius: var(--radius-full); box-shadow: var(--shadow-sm); }
.about__story-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; }
.about__story-location, .about__story-dti { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.8125rem; font-weight: 500; color: var(--color-text-muted); background: rgba(255,255,255,0.7); border-radius: var(--radius-full); border: 1px solid var(--color-border); }
.about__story-location svg { width: 16px; height: 16px; color: var(--color-accent); }

.about__packages { margin-bottom: 1.75rem; }
.about__packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.about__package-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 200px; border-radius: 15px; overflow: hidden; background: var(--color-white); box-shadow: 0 4px 24px rgba(15,23,42,0.08); transform-origin: center; transition: box-shadow var(--duration-normal); }
.about__package-card:hover { box-shadow: 0 16px 40px rgba(10,61,98,0.12); }
.about__package-media { position: relative; overflow: hidden; }
.about__package-img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.about__package-content { display: flex; flex-direction: column; justify-content: center; padding: 1.25rem 1.125rem; }
.about__package-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 0.75rem; border-radius: 50%; background: var(--color-accent); color: var(--color-white); }
.about__package-icon svg { width: 20px; height: 20px; }
.about__package-title { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; line-height: 1.35; color: var(--color-text); margin-bottom: 0.625rem; }
.about__package-divider { width: 100%; height: 1px; margin: 0 0 0.75rem; border: none; background: rgba(20,184,166,0.35); }
.about__package-list { list-style: none; }
.about__package-list li { position: relative; padding-left: 1rem; font-size: 0.8125rem; font-weight: 500; line-height: 1.6; color: var(--color-text-muted); }
.about__package-list li + li { margin-top: 0.25rem; }
.about__package-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); }

@media (max-width: 900px) {
  .about__story-inner { grid-template-columns: 1fr; text-align: center; }
  .about__story-visual { min-height: 300px; }
  .about__story-meta, .about__story-tags { justify-content: center; }
}

/* Services */
.services { position: relative; padding: var(--section-padding) 0; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f0fdfa 100%); }
.services__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.services__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.4; }
.services__blob--1 { width: 380px; height: 380px; top: -100px; left: -80px; background: rgba(20,184,166,0.3); animation: servicesBlobDrift 18s ease-in-out infinite alternate; }
.services__blob--2 { width: 320px; height: 320px; top: 40%; right: -100px; background: rgba(10,61,98,0.18); animation: servicesBlobDrift 22s ease-in-out infinite alternate-reverse; }
.services__blob--3 { width: 260px; height: 260px; bottom: -80px; left: 35%; background: rgba(245,158,11,0.15); animation: servicesBlobDrift 20s ease-in-out 4s infinite alternate; }
.services__pattern { position: absolute; inset: 0; opacity: 0.035; background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px); background-size: 28px 28px; }
.services__line { position: absolute; border-radius: var(--radius-full); border: 1.5px dashed rgba(20,184,166,0.2); }
.services__line--1 { width: 200px; height: 200px; top: 12%; right: 8%; animation: servicesRingSpin 30s linear infinite; }
.services__line--2 { width: 140px; height: 140px; bottom: 15%; left: 6%; border-color: rgba(10,61,98,0.15); animation: servicesRingSpin 25s linear infinite reverse; }
.services__icon-deco { position: absolute; color: var(--color-primary); opacity: 0.07; }
.services__icon-deco--plane { width: 180px; height: 180px; top: 8%; right: 12%; rotate: -25deg; animation: servicesIconFloat 8s ease-in-out infinite; }
.services__icon-deco--globe { width: 140px; height: 140px; bottom: 10%; left: 10%; opacity: 0.06; animation: servicesIconFloat 10s ease-in-out 2s infinite; }
.services__dot { position: absolute; border-radius: 50%; background: var(--color-accent); opacity: 0.25; }
.services__dot--1 { width: 12px; height: 12px; top: 20%; left: 18%; }
.services__dot--2 { width: 8px; height: 8px; top: 35%; right: 22%; background: var(--color-gold); }
.services__dot--3 { width: 10px; height: 10px; bottom: 25%; right: 30%; }
.services__dot--4 { width: 6px; height: 6px; bottom: 18%; left: 42%; background: var(--color-primary-light); }
.services__container { position: relative; z-index: 1; }
.services__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.service-card { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1.75rem 1.25rem; background: var(--color-white); border-radius: var(--radius-lg); border: 1px solid rgba(226,232,240,0.9); box-shadow: var(--shadow-md); transform-origin: center; transition: box-shadow var(--duration-normal), border-color var(--duration-normal); }
.service-card:hover { box-shadow: 0 20px 50px rgba(10,61,98,0.15); border-color: rgba(20,184,166,0.35); }
.service-card__icon-wrap { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(245,158,11,0.1)); color: var(--color-accent); border: 2px solid rgba(20,184,166,0.2); transition: transform var(--duration-normal) var(--ease-spring), background var(--duration-normal), color var(--duration-normal); }
.service-card__icon-wrap svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon-wrap { transform: scale(1.08); background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); color: var(--color-white); border-color: transparent; }
.service-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--color-text); }

/* Destinations (Featured services / case) */
.destinations { padding: var(--section-padding) 0; background: var(--color-bg-alt); }
.destinations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dest-card { position: relative; display: block; width: 100%; padding: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; text-align: left; background: transparent; transform-origin: center; }
.dest-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.dest-card:hover .dest-card__img { transform: scale(1.08); }
.dest-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,26,49,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: background var(--duration-normal); }
.dest-card:hover .dest-card__overlay { background: linear-gradient(to top, rgba(7,26,49,0.95) 0%, rgba(7,26,49,0.2) 100%); }
.dest-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-white); transition: transform var(--duration-normal) var(--ease-out); }
.dest-card__tag { font-size: 0.75rem; color: var(--color-accent-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0; transform: translateY(10px); transition: opacity var(--duration-normal), transform var(--duration-normal) var(--ease-out); }
.dest-card:hover .dest-card__tag { opacity: 1; transform: translateY(0); }
.dest-card:hover .dest-card__name { transform: translateY(-4px); }
.dest-card__hint { display: inline-block; margin-top: 0.5rem; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; opacity: 0; transform: translateY(8px); transition: opacity var(--duration-normal), transform var(--duration-normal) var(--ease-out); }
.dest-card:hover .dest-card__hint { opacity: 1; transform: translateY(0); }

/* Process */
.process { padding: var(--section-padding) 0; }
.process__timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; }
.process__timeline::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light), var(--color-accent)); opacity: 0.3; }
.process-step { text-align: center; position: relative; z-index: 1; transform-origin: center; }
.process-step__number { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; background: var(--color-white); border: 2px solid var(--color-border); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-primary); box-shadow: var(--shadow-sm); transition: transform var(--duration-normal) var(--ease-spring), border-color var(--duration-normal), box-shadow var(--duration-normal); }
.process-step:hover .process-step__number { transform: scale(1.1); border-color: var(--color-accent); box-shadow: var(--shadow-glow); }
.process-step__title { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.375rem; padding: 0 0.25rem; }
.process-step__desc { font-size: 0.8125rem; color: var(--color-text-muted); padding: 0 0.5rem; }

/* Reviews — Student Success Stories */
.reviews {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f5f0 0%, #eef2e8 50%, #f0f4ea 100%);
}
.reviews__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.reviews__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
}
.reviews__blob--1 { width: 420px; height: 420px; top: -100px; right: -80px; background: rgba(20,184,166,0.25); }
.reviews__blob--2 { width: 360px; height: 360px; bottom: -80px; left: -60px; background: rgba(34,85,34,0.15); }
.reviews__pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(#2d5a27 1px, transparent 1px);
  background-size: 24px 24px;
}
.reviews__container { position: relative; z-index: 1; }

/* Header */
.reviews__header { text-align: center; margin-bottom: 2.5rem; }
.reviews__eyebrow {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #2d5a27;
  margin-bottom: 0.5rem;
}
.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1a2e1a;
  line-height: 1.1;
  margin-bottom: 0.875rem;
}
.reviews__badge {
  display: inline-block;
  background: #2d5a27;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.875rem;
}
.reviews__subline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2d5a27;
  text-transform: uppercase;
}

/* Grid */
.success__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Base card */
.success-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Light card (off-white) */
.success-card--light {
  background: #f9f9f4;
  border: 1px solid rgba(45,90,39,0.15);
  padding: 1.25rem;
}

/* Dark card (near-black) */
.success-card--dark {
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 1.25rem;
}

/* White email card */
.success-card--white {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.25rem;
}

/* Avatar */
.success-card__avatar {
  font-size: 2rem;
  margin-bottom: 0.625rem;
  line-height: 1;
}
.success-card__avatar--dark { opacity: 0.9; }

/* Timestamp */
.success-card__timestamp {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Body text */
.success-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.success-card--light .success-card__body { color: #2a2a2a; }
.success-card--dark .success-card__body { color: #e8e8e8; }

/* Highlight (green pill) */
.success-card__highlight {
  background: #c8e6b8;
  color: #1a3a1a;
  padding: 0.375rem 0.625rem;
  border-radius: 6px;
  font-weight: 500;
}
.success-card__highlight--green {
  background: #2d5a27;
  color: #fff;
}

/* Heart */
.success-card__heart { font-size: 1rem; display: block; margin-top: 0.25rem; }

/* Time */
.success-card__time {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.success-card--dark .success-card__time { color: rgba(255,255,255,0.4); }

/* Chat bubbles */
.success-card__body--chat { gap: 0.625rem; }
.success-card__bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 90%;
}
.success-card__bubble--received {
  background: #2d5a27;
  color: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.success-card__bubble--sent {
  background: #e8e8e8;
  color: #1a1a1a;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.success-card__emoji-react {
  font-size: 1.125rem;
  align-self: flex-end;
  margin-top: 0.125rem;
}

/* Email card parts */
.success-card__email-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.success-card__email-header strong { font-size: 1rem; color: #1a1a1a; }
.success-card__inbox-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: #e8f5e2;
  color: #2d5a27;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid #b8dba8;
}
.success-card__email-body {
  background: #f8f8f5;
  border: 1px solid #e0e0d8;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.8125rem;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.success-card__email-from { color: #888; font-size: 0.75rem; }

/* Footer badge */
.success-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.success-card__footer--green {
  background: #2d5a27;
  color: #fff;
  border: 2px solid #3a7a32;
}

/* Sign-off */
.reviews__signoff {
  text-align: center;
  padding-top: 1rem;
}
.reviews__signoff-script {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.375rem;
  color: #2d5a27;
  margin-bottom: 0.5rem;
}
.reviews__signoff-bold {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a2e1a;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .success__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .success__grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact { padding: var(--section-padding) 0; background: var(--color-bg-alt); }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.contact__map-col { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; min-height: 100%; }
.contact__map-pad { flex: 1 1 280px; min-height: 280px; padding: 10px; background: var(--color-white); border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.map-wrapper { height: 100%; min-height: 260px; border-radius: calc(var(--radius-lg) - 6px); overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }
.contact__cta { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, var(--color-white) 0%, #f0fdfa 100%); border-color: rgba(20,184,166,0.2); }
.contact__business { height: 100%; }
.contact__business-list { margin-top: 0.25rem; }
.contact__cta-text { font-size: 1rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.contact__btn-group { flex-direction: column; }
.contact__btn-group .btn { width: 100%; justify-content: center; }
.contact-info__item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(13,148,136,0.1); border-radius: var(--radius-sm); color: var(--color-accent); }
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-light); margin-bottom: 0.125rem; }
.contact-info__value { font-size: 0.9375rem; color: var(--color-text); }
.contact-info__value a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.contact-info__value a:hover { color: var(--color-accent); }

/* Contact form modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow-y: auto;
  background: rgba(7,26,49,0.72);
  backdrop-filter: blur(10px);
  animation: contactModalFade 0.25s ease-out both;
}
.contact-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--color-white);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(7,26,49,0.32);
  animation: contactModalEnter 0.4s var(--ease-spring) both;
}
.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
}
.contact-modal__close:hover { color: var(--color-text); background: #e8eef2; transform: rotate(5deg); }
.contact-modal__close:disabled { cursor: not-allowed; opacity: 0.5; }
.contact-modal__close svg { width: 18px; height: 18px; }
.contact-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 2.5rem;
  margin-bottom: 1.75rem;
}
.contact-modal__icon {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 15px;
  box-shadow: 0 10px 24px var(--color-accent-glow);
}
.contact-modal__icon svg { width: 24px; height: 24px; }
.contact-modal__eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-modal__header h2 {
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.2;
}
.contact-modal__header p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.55; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.45rem; }
.contact-form__field > span { color: var(--color-text); font-size: 0.8125rem; font-weight: 650; }
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: var(--color-text);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}
.contact-form__field textarea { min-height: 125px; resize: vertical; }
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: #94a3b8; }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  background: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.13);
}
.contact-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid;
  border-radius: 12px;
  animation: contactAlertEnter 0.3s var(--ease-out) both;
}
.contact-form__alert svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px; }
.contact-form__alert div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-form__alert strong { font-size: 0.875rem; }
.contact-form__alert span { font-size: 0.8rem; line-height: 1.45; }
.contact-form__alert--success { color: #166534; background: #f0fdf4; border-color: #bbf7d0; }
.contact-form__alert--error { color: #991b1b; background: #fef2f2; border-color: #fecaca; }
.contact-form__actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; margin-top: 0.5rem; }
.contact-form__cancel {
  padding: 0.8rem 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 650;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: color var(--duration-fast), border-color var(--duration-fast), background var(--duration-fast);
}
.contact-form__cancel:hover { color: var(--color-text); border-color: #cbd5e1; background: #f8fafc; }
.contact-form__cancel:disabled { cursor: not-allowed; opacity: 0.55; }
.contact-form__submit { min-width: 172px; justify-content: center; }
.contact-form__submit svg { width: 17px; height: 17px; }
.contact-form__submit:disabled { cursor: wait; opacity: 0.75; animation: none; }
.contact-form__spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: contactSpinner 0.75s linear infinite;
}
@keyframes contactModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes contactModalEnter { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes contactAlertEnter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes contactSpinner { to { transform: rotate(360deg); } }

/* Footer */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.8); padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(130px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 2.5rem; }
.footer__logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 4px 16px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.24);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}
.footer__logo-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.28); }
.footer__logo { display: block; height: 46px; width: auto; object-fit: contain; scale: 1.15; }
.footer__brand-name { font-family: var(--font-display); font-weight: 700; color: var(--color-white); font-size: 1.125rem; }
.footer__brand-name span { color: var(--color-accent-light); }
.footer__tagline { font-size: 0.875rem; line-height: 1.7; max-width: 300px; margin-top: 0.5rem; }
.footer__heading { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: var(--color-white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { display: inline-block; font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--duration-fast), transform var(--duration-fast); }
.footer__links a:hover { color: var(--color-accent-light); transform: translateX(3px); }
.footer__links .footer__email { overflow-wrap: anywhere; font-size: 0.8rem; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer__credit a { color: var(--color-accent-light); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(134,239,172,0.45); text-underline-offset: 3px; transition: color var(--duration-fast), text-decoration-color var(--duration-fast); }
.footer__credit a:hover { color: var(--color-white); text-decoration-color: var(--color-white); }

/* Mobile FAB */
.mobile-fab { display: none; position: fixed; right: 1rem; bottom: 1.25rem; z-index: 1500; flex-direction: column; gap: 0.75rem; }
.mobile-fab__btn { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; color: var(--color-white); box-shadow: 0 6px 24px rgba(0,0,0,0.28); transition: transform var(--duration-fast) var(--ease-out); }
.mobile-fab__btn svg { width: 24px; height: 24px; }
.mobile-fab__btn:hover { transform: scale(1.08); }
.mobile-fab__btn--call { background: linear-gradient(135deg, #0a3d62, #1e5f8a); border: 2px solid rgba(255,255,255,0.25); }
.mobile-fab__btn--messenger { background: linear-gradient(135deg, #00b2ff, #006aff); border: 2px solid rgba(255,255,255,0.25); }
@media (max-width: 900px) { .mobile-fab { display: flex; } }

/* Video modal */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--duration-normal), visibility var(--duration-normal); }
.video-modal--open { opacity: 1; visibility: visible; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(7,26,49,0.88); backdrop-filter: blur(8px); }
.video-modal__dialog { position: relative; z-index: 1; width: min(960px, 100%); transform: scale(0.92) translateY(16px); transition: transform var(--duration-normal) var(--ease-out); }
.video-modal--open .video-modal__dialog { transform: scale(1) translateY(0); }
.video-modal__close { position: absolute; top: -3rem; right: 0; z-index: 2; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); color: var(--color-white); transition: background var(--duration-fast), transform var(--duration-fast); }
.video-modal__close:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }
.video-modal__player { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.12); background: #000; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; color: #fff; padding: 2rem; text-align: center; }

/* Scroll Reveal Animations */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js .reveal--left {
  transform: translateX(-45px);
}
.js .reveal--right {
  transform: translateX(45px);
}
.js .reveal--visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.js .section-reveal {
  opacity: 1;
}
.js .section-reveal .section-label {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .section-reveal .section-title {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out) 0.1s, transform 0.8s var(--ease-out) 0.1s;
}
.js .section-reveal .section-subtitle {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}

.js .section-reveal--visible .section-label,
.js .section-reveal--visible .section-title,
.js .section-reveal--visible .section-subtitle {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Staggered entry */
.js .stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js .stagger-children--visible > * {
  opacity: 1;
  transform: translateY(0);
}
.js .stagger-children--visible > *:nth-child(1) { transition-delay: 0ms; }
.js .stagger-children--visible > *:nth-child(2) { transition-delay: 80ms; }
.js .stagger-children--visible > *:nth-child(3) { transition-delay: 160ms; }
.js .stagger-children--visible > *:nth-child(4) { transition-delay: 240ms; }
.js .stagger-children--visible > *:nth-child(5) { transition-delay: 320ms; }
.js .stagger-children--visible > *:nth-child(6) { transition-delay: 400ms; }
.js .stagger-children--visible > *:nth-child(7) { transition-delay: 480ms; }
.js .stagger-children--visible > *:nth-child(8) { transition-delay: 560ms; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: 'intro' 'video' 'body'; gap: 1.25rem; }
  .destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(3, 1fr); }
  .process__timeline::before { display: none; }
}
@media (max-width: 900px) {
  .hero__bg { animation: none; transform: scale(1); }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0; background: rgba(240, 253, 244, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 2rem; opacity: 0; visibility: hidden; transition: opacity var(--duration-normal), visibility var(--duration-normal); }
  .nav--open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 1.25rem; color: var(--color-text); }
  .header__location { display: none; }
  .contact__layout, .services__grid, .reviews__grid { grid-template-columns: 1fr; }
  .contact__map-col { min-height: auto; }
  .contact__map-pad { flex: none; height: 420px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  :root { --container-width: min(1200px, calc(100% - 2rem)); }
  .destinations__grid { grid-template-columns: 1fr; }
  .about__package-card { grid-template-columns: 1fr; }
  .about__value-grid { grid-template-columns: 1fr; }
  .about__value-item { border-right: none !important; border-bottom: 1px solid rgba(226,232,240,0.95); }
  .about__value-item:last-child { border-bottom: none; }
  .process__timeline { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .contact-modal { padding: 0.75rem; }
  .contact-modal__dialog { max-height: calc(100vh - 1.5rem); padding: 1.25rem; border-radius: 18px; }
  .contact-modal__header { gap: 0.75rem; padding-right: 2rem; }
  .contact-modal__icon { flex-basis: 44px; width: 44px; height: 44px; border-radius: 13px; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__actions { flex-direction: column-reverse; align-items: stretch; }
  .contact-form__actions > * { width: 100%; justify-content: center; text-align: center; }
  .hero__video-dots {
    display: none;
  }
  .hero__video-wrap {
    padding: 6px;
    border-radius: 18px;
  }
  .hero__video-frame {
    border-radius: 12px;
  }
  .hero__video-footer {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

}

/* Pricing */
.pricing {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 50%, #ecfdf5 100%);
}
.pricing__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pricing__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.pricing__blob--1 {
  width: 400px; height: 400px;
  top: -100px; right: -80px;
  background: rgba(20, 184, 166, 0.3);
}
.pricing__blob--2 {
  width: 340px; height: 340px;
  bottom: -80px; left: -60px;
  background: rgba(10, 61, 98, 0.18);
}
.pricing__pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}
.pricing__container { position: relative; z-index: 1; }

.pricing__title-em {
  font-style: normal;
  color: var(--color-accent);
}

.pricing__countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-white);
  border: 1.5px solid rgba(20, 184, 166, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  /* center it under the header */
  display: flex;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.pricing__countdown svg { color: var(--color-accent); flex-shrink: 0; }
.pricing__countdown-time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

/* Grid — 3 equal columns, middle card lifts slightly */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Base card */
.pricing-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--duration-normal);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

/* Tier label */
.pricing-card__tier-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0.5rem 0 0.625rem;
}
.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Price */
.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.pricing-card__original {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: line-through;
}
.pricing-card__billing {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}
.pricing-card__savings {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

/* CTAs */
.pricing-card__cta {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.pricing-card__cta--dark {
  background: var(--color-text);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}
.pricing-card__cta--dark:hover { background: var(--color-primary); }
.pricing-card__cta--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-white);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}
.pricing-card__cta--accent:hover { box-shadow: var(--shadow-glow); }
.pricing-card__cta--vip {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}
.pricing-card__cta--vip:hover { box-shadow: 0 0 40px rgba(109, 40, 217, 0.45); }

/* Feature list divider */
.pricing-card__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pricing-card__divider::before,
.pricing-card__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.pricing-card__divider span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Feature list */
.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.pricing-card__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  color: var(--color-accent);
}
.pricing-card__check svg { width: 11px; height: 11px; }

/* Popular card — green border, lifted */
.pricing-card--popular {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent), var(--shadow-lg);
  transform: translateY(-12px);
  z-index: 2;
}
.pricing-card--popular .pricing-card__price { color: var(--color-accent); }

/* VIP card — purple accent */
.pricing-card--vip { border-color: #c4b5fd; }
.pricing-card--vip .pricing-card__price { color: #6d28d9; }
.pricing-card--vip .pricing-card__savings { color: #6d28d9; }

/* Most Popular badge */
.pricing-card__popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  width: fit-content;
}

/* Footnote */
.pricing__footnote {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.pricing__footnote-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing__footnote-link:hover { color: var(--color-accent-light); }

@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .pricing-card--popular { transform: none; }
}
@media (max-width: 600px) {
  .pricing-card { padding: 1.5rem; }
}

/* Pricing Value Breakdown */
.pricing-value {
  margin-top: 4rem;
}
.pricing-value__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-value__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-border);
}
.pricing-value__card--accent { border-color: rgba(20, 184, 166, 0.35); background: #f0fdf9; }
.pricing-value__card--vip   { border-color: #c4b5fd; background: #f5f3ff; }

.pricing-value__card-header {
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.pricing-value__card-header--accent { background: rgba(20, 184, 166, 0.12); border-bottom: 1px solid rgba(20, 184, 166, 0.2); }
.pricing-value__card-header--vip   { background: rgba(167, 139, 250, 0.15); border-bottom: 1px solid rgba(167, 139, 250, 0.25); }

.pricing-value__table {
  width: 100%;
  border-collapse: collapse;
  padding: 0 1.5rem;
}
.pricing-value__table tbody tr { border-bottom: 1px solid rgba(226, 232, 240, 0.7); }
.pricing-value__table tbody tr:last-child { border-bottom: none; }

.pricing-value__row td {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pricing-value__label { color: var(--color-text-muted); }
.pricing-value__price {
  text-align: right;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  padding-right: 1.5rem;
}

.pricing-value__table tfoot { border-top: 2px solid var(--color-border); }
.pricing-value__total-row td {
  padding: 0.6rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}
.pricing-value__total-price {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  padding-right: 1.5rem;
}
.pricing-value__total-row--pay td { padding-top: 0.25rem; padding-bottom: 0.75rem; }
.pricing-value__pay-price {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
  padding-right: 1.5rem;
}
.pricing-value__pay-price--accent { color: var(--color-accent); }
.pricing-value__pay-price--vip    { color: #6d28d9; }

.pricing-value__savings {
  margin: 0;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 0 0 calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px);
}
.pricing-value__savings--accent { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); }
.pricing-value__savings--vip    { background: linear-gradient(135deg, #6d28d9, #7c3aed); }

@media (max-width: 768px) {
  .pricing-value__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .pricing-value__row td,
  .pricing-value__total-row td { padding-left: 1rem; padding-right: 1rem; }
  .pricing-value__price,
  .pricing-value__total-price,
  .pricing-value__pay-price { padding-right: 1rem; }
}

/* Animations */
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
@keyframes aboutRingPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.04); opacity: 1; } }
@keyframes servicesBlobDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,20px) scale(1.08); } }
@keyframes servicesRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes servicesIconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes playRingPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.75); opacity: 0; } }
@keyframes playIconBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes heroShopBounce { 0%,100% { transform: translateY(0); box-shadow: 0 6px 24px rgba(245,158,11,0.35); } 50% { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(245,158,11,0.55); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
@keyframes bounceInUp { 0% { opacity: 0; transform: translateY(70px) scale(0.88); } 55% { opacity: 1; transform: translateY(-14px) scale(1.03); } 75% { transform: translateY(6px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideBounceFromLeft { 0% { opacity: 0; transform: translateX(-90px); } 60% { opacity: 1; transform: translateX(12px); } 80% { transform: translateX(-5px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideBounceFromRight { 0% { opacity: 0; transform: translateX(90px); } 60% { opacity: 1; transform: translateX(-12px); } 80% { transform: translateX(5px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes staggerBounceIn { 0% { opacity: 0; transform: translateY(50px) scale(0.92); } 60% { opacity: 1; transform: translateY(-8px) scale(1.02); } 80% { transform: translateY(4px) scale(0.99); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hoverZoomPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes hoverLiftZoomPulse { 0%,100% { transform: translateY(-6px) scale(1); } 50% { transform: translateY(-6px) scale(1.05); } }

/* Section header scroll animations */
html.js .section-reveal:not(.section-reveal--visible) .section-label,
html.js .section-reveal:not(.section-reveal--visible) .section-title,
html.js .section-reveal:not(.section-reveal--visible) .section-subtitle,
html.js .section-reveal:not(.section-reveal--visible) .about__story-label,
html.js .section-reveal:not(.section-reveal--visible) .about__story-title {
  opacity: 0;
}
.section-reveal--visible .section-label { animation: slideBounceFromLeft 0.85s var(--ease-spring) forwards; }
.section-reveal--visible .section-title { animation: bounceInUp 0.95s var(--ease-spring) 0.12s forwards; }
.section-reveal--visible .section-subtitle { animation: slideBounceFromRight 0.85s var(--ease-spring) 0.24s forwards; }
.section-reveal--visible .about__story-label { animation: slideBounceFromLeft 0.85s var(--ease-spring) forwards; }
.section-reveal--visible .about__story-title { animation: bounceInUp 0.95s var(--ease-spring) 0.12s forwards; }

html.js .reveal:not(.reveal--left):not(.reveal--right):not(.reveal--scale) { opacity: 0; }
.reveal:not(.reveal--left):not(.reveal--right):not(.reveal--scale).reveal--visible { animation: bounceInUp 0.85s var(--ease-spring) forwards; }
html.js .reveal--left:not(.reveal--visible) { opacity: 0; transform: translateX(-60px); }
.reveal--left.reveal--visible { animation: slideBounceFromLeft 0.85s var(--ease-spring) forwards; }
html.js .reveal--right:not(.reveal--visible) { opacity: 0; transform: translateX(60px); }
.reveal--right.reveal--visible { animation: slideBounceFromRight 0.85s var(--ease-spring) forwards; }

html.js .stagger-children:not(.stagger-children--visible) > * { opacity: 0; }
.stagger-children--visible > * { animation: staggerBounceIn 0.75s var(--ease-spring) forwards; }
.stagger-children--visible > *:nth-child(1) { animation-delay: 0ms; }
.stagger-children--visible > *:nth-child(2) { animation-delay: 90ms; }
.stagger-children--visible > *:nth-child(3) { animation-delay: 180ms; }
.stagger-children--visible > *:nth-child(4) { animation-delay: 270ms; }
.stagger-children--visible > *:nth-child(5) { animation-delay: 360ms; }
.stagger-children--visible > *:nth-child(6) { animation-delay: 450ms; }
.stagger-children--visible > *:nth-child(7) { animation-delay: 540ms; }
.stagger-children--visible > *:nth-child(8) { animation-delay: 630ms; }
.stagger-children--visible > *:nth-child(9) { animation-delay: 720ms; }
.stagger-children--visible > *:nth-child(10) { animation-delay: 810ms; }

.hero__video-wrap, .btn:hover {
  animation: hoverZoomPulse 1.6s ease-in-out infinite;
}
.logo:hover .logo__img { animation: hoverZoomPulse 1.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero__bg { animation: none; transform: scale(1); }
  .reveal, .section-reveal .section-label, .section-reveal .section-title, .section-reveal .section-subtitle, .section-reveal .about__story-label, .section-reveal .about__story-title, .stagger-children > * { opacity: 1; transform: none; animation: none !important; }
}

/* ==========================================================================
   Shop Page
   ========================================================================== */

/* ── Layout shell ── */
.shop-page {
  min-height: 100vh;
  background: #f8fafc;
  font-family: var(--font-body);
  color: var(--color-text);
  padding-top: var(--header-height);
}

/* ── Shop Header ── */
.shop-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-out);
  height: 80px;
}
.shop-header__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: var(--container-width);
  margin: 0.75rem auto 0;
  padding: 0 1.75rem;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 36px rgba(42, 107, 53, 0.15), 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
  gap: 1.5rem;
}
.shop-header--scrolled .shop-header__inner {
  height: 58px;
  box-shadow: 0 16px 36px rgba(42, 107, 53, 0.25), 0 4px 12px rgba(15, 23, 42, 0.08);
}
@media (min-width: 901px) {
  .shop-header__inner .nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color var(--duration-fast);
  }
  .shop-header__inner .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--color-accent-light);
    border-radius: 2px;
    transition: width var(--duration-normal) var(--ease-out);
  }
  .shop-header__inner .nav__link:hover,
  .shop-header__inner .nav__link--active {
    color: var(--color-white);
  }
  .shop-header__inner .nav__link--active::after,
  .shop-header__inner .nav__link:hover::after {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .shop-header__inner .nav__link {
    color: var(--color-text);
  }
  .shop-header__inner .nav__link--active {
    color: var(--color-accent);
    font-weight: 700;
  }
}

.shop-header__inner .logo__img {
  filter: none;
}

.shop-header__inner .nav-toggle span {
  background: var(--color-white);
}

.shop-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  transition: background var(--duration-fast), transform var(--duration-fast) var(--ease-spring);
  flex-shrink: 0;
}
.shop-cart-btn:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.08); }
.shop-cart-btn__count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: #ea580c;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-accent);
}

/* ── Hero ── */
.shop-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 45%, #ecfdf5 100%);
  color: var(--color-text);
  text-align: center;
}
.shop-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(13,148,136,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.shop-hero__content { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.shop-hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(13,148,136,0.1);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
}
.shop-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.shop-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.shop-hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.shop-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.shop-hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Filter Bar ── */
.shop-filter {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 72px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
}
.shop-filter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  flex-wrap: wrap;
}
.shop-filter__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shop-filter__pill {
  padding: 0.4375rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}
.shop-filter__pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.shop-filter__pill--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 4px 14px var(--color-accent-glow);
}
.shop-filter__count {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Product Grid ── */
.shop-grid-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
}

/* ── Product Card ── */
.shop-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration-normal), transform var(--duration-normal) var(--ease-out);
}
.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Visual area */
.shop-card__visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shop-card__emoji {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.shop-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shop-card__badge--green { background: #16a34a; color: #fff; }
.shop-card__badge--blue  { background: #2563eb; color: #fff; }
.shop-card__badge--purple { background: #7c3aed; color: #fff; }

.shop-card__tag {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

/* Card body */
.shop-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.shop-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}
.shop-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.shop-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.shop-card__rating-count {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.shop-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--color-gold);
}
.shop-stars svg { width: 13px; height: 13px; }

.shop-card__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.shop-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* Includes list */
.shop-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.shop-card__includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.shop-card__includes li svg {
  width: 14px; height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Footer: price + CTA */
.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  flex-wrap: wrap;
}
.shop-card__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.shop-card__original {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}
.shop-card__savings-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(22,163,74,0.12);
  color: #15803d;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(22,163,74,0.2);
}

/* CTA button */
.shop-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-text);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--duration-fast), transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}
.shop-card__cta svg { width: 16px; height: 16px; }
.shop-card__cta:hover {
  background: var(--color-primary);
  box-shadow: 0 4px 16px rgba(10,61,98,0.3);
  transform: scale(1.04);
}
.shop-card__cta--added {
  background: #16a34a;
  pointer-events: none;
}

/* ── Guarantee strip ── */
.shop-guarantee {
  background: linear-gradient(160deg, #f0f9ff 0%, #ecfdf5 100%);
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.shop-guarantee__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.shop-guarantee__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.shop-guarantee__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.shop-guarantee__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin-inline: auto;
}

/* ── Shop Footer ── */
.shop-footer {
  background: #f8fafc;
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.shop-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.shop-footer__links {
  display: flex;
  gap: 1.5rem;
}
.shop-footer__links a {
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}
.shop-footer__links a:hover { color: var(--color-accent); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .shop-guarantee__inner { grid-template-columns: repeat(2, 1fr); }
  .shop-nav { display: none; }
}
@media (max-width: 640px) {
  .shop-guarantee__inner { grid-template-columns: 1fr; }
  .shop-filter__inner { justify-content: flex-start; }
  .shop-footer__inner { flex-direction: column; text-align: center; }
  .shop-card__footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .shop-card__cta { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Cart Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(7,26,49,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.cart-modal {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(460px, 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: slideUp 0.3s var(--ease-spring);
  text-align: center;
}
@keyframes slideUp { from { transform: translateY(40px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt); color: var(--color-text-muted);
  transition: background var(--duration-fast);
}
.modal-close:hover { background: var(--color-border); }
.modal-close svg { width: 16px; height: 16px; }

.cart-modal__check {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; color: #fff;
}
.cart-modal__check svg { width: 28px; height: 28px; }
.cart-modal__added-label {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 1.25rem;
}

.cart-modal__item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin-bottom: 0.875rem;
  text-align: left;
}
.cart-modal__item-visual {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.cart-modal__item-name { font-weight: 600; font-size: 0.9375rem; color: var(--color-text); }
.cart-modal__item-price { font-size: 0.875rem; color: var(--color-accent); font-weight: 700; margin-top: 0.125rem; }
.cart-modal__count { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }

.cart-modal__actions { display: flex; flex-direction: column; gap: 0.625rem; }
.cart-modal__btn-checkout {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff; padding: 0.875rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem; width: 100%; justify-content: center;
  box-shadow: 0 4px 16px var(--color-accent-glow);
}
.cart-modal__btn-checkout:hover { box-shadow: var(--shadow-glow); }
.cart-modal__btn-continue {
  background: transparent; color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  padding: 0.75rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.9375rem; width: 100%; justify-content: center;
}
.cart-modal__btn-continue:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ==========================================================================
   Checkout Page
   ========================================================================== */
.checkout-page {
  min-height: calc(100vh - 72px);
  background: var(--color-bg-alt);
  padding: clamp(2rem,4vw,3.5rem) 0;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

/* Back button */
.checkout-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-text-muted); margin-bottom: 1.5rem;
  transition: color var(--duration-fast);
}
.checkout-back:hover { color: var(--color-accent); }
.checkout-back svg { width: 18px; height: 18px; }

.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem,2vw,1.375rem);
  font-weight: 700; margin-bottom: 0.25rem;
  color: var(--color-text);
}

/* Section */
.checkout-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.checkout-section__title {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 1.25rem;
}
.checkout-section__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700; flex-shrink: 0;
}
.checkout-section__hint {
  font-size: 0.875rem; color: var(--color-text-muted);
  margin: -0.5rem 0 1rem; line-height: 1.6;
}

/* Form fields */
.checkout-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.checkout-field:last-child { margin-bottom: 0; }
.checkout-field label { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
.checkout-field input {
  padding: 0.75rem 1rem; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-size: 0.9375rem;
  font-family: var(--font-body); color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}
.checkout-field input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.checkout-field input.is-error { border-color: #ef4444; }
.field-error { font-size: 0.8125rem; color: #ef4444; font-weight: 500; }

/* Payment methods */
.pay-methods {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pay-method {
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  padding: 0.875rem 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  cursor: pointer; position: relative;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.pay-method:hover { border-color: var(--color-accent-light); background: #f0fdfa; }
.pay-method--active { border-color: var(--color-accent); background: #f0fdfa; }
.pay-method__icon { font-size: 1.5rem; line-height: 1; }
.pay-method__label { font-size: 0.8125rem; font-weight: 600; color: var(--color-text); }
.pay-method__check {
  position: absolute; top: 6px; right: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.pay-method__check svg { width: 11px; height: 11px; }

/* Payment details */
.pay-details {
  background: #f0fdfa;
  border: 1.5px solid rgba(13,148,136,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  animation: fadeIn 0.2s ease;
}
.pay-details__bank { display: flex; flex-direction: column; gap: 0.625rem; }
.pay-details__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--color-text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(13,148,136,0.12);
}
.pay-details__row:last-child { border-bottom: none; padding-bottom: 0; }
.pay-details__row strong { color: var(--color-text); font-weight: 700; }
.pay-details__acct { font-family: monospace; font-size: 1rem; letter-spacing: 0.05em; }
.pay-details__row--total strong { font-size: 1.125rem; color: var(--color-accent); }
.pay-details__qr { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.pay-details__qr-box {
  width: 140px; height: 140px; padding: 12px;
  background: #fff; border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
}
.pay-details__qr-box svg { width: 100%; height: 100%; }
.pay-details__qr-note { font-size: 0.875rem; color: var(--color-text-muted); text-align: center; line-height: 1.6; }

/* Proof upload */
.proof-upload {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast);
  overflow: hidden;
  min-height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.proof-upload:hover, .proof-upload:focus { border-color: var(--color-accent); background: #f0fdfa; outline: none; }
.proof-upload--done { border-color: var(--color-accent); border-style: solid; }
.proof-upload__input { display: none; }
.proof-upload__placeholder { text-align: center; padding: 2rem; }
.proof-upload__icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.proof-upload__placeholder p { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.25rem; }
.proof-upload__sub { font-size: 0.8125rem; color: var(--color-text-muted); }
.proof-upload__preview {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem; width: 100%;
}
.proof-upload__preview img {
  max-height: 180px; border-radius: var(--radius-sm);
  object-fit: contain; max-width: 100%;
  box-shadow: var(--shadow-sm);
}
.proof-upload__filename { font-size: 0.8125rem; color: var(--color-accent); font-weight: 600; word-break: break-all; text-align: center; }

/* Submit button */
.checkout-submit {
  width: 100%; justify-content: center;
  padding: 1rem; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff; box-shadow: 0 4px 20px var(--color-accent-glow);
  transition: box-shadow var(--duration-fast), opacity var(--duration-fast);
  margin-top: 0.5rem;
}
.checkout-submit:hover:not(:disabled) { box-shadow: var(--shadow-glow); }
.checkout-submit:disabled {
  background: var(--color-border); color: var(--color-text-light);
  box-shadow: none; cursor: not-allowed;
}

/* Order Summary sidebar */
.checkout-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  position: sticky; top: 84px;
}
.checkout-summary__title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 1.25rem;
}
.checkout-summary__items { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.25rem; }
.checkout-summary__item { display: flex; align-items: center; gap: 0.75rem; }
.checkout-summary__item-visual {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.checkout-summary__item-name { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
.checkout-summary__item-cat  { font-size: 0.75rem; color: var(--color-text-muted); }
.checkout-summary__item-price { margin-left: auto; font-weight: 700; font-size: 0.9375rem; white-space: nowrap; }
.checkout-summary__divider { height: 1px; background: var(--color-border); margin: 0.875rem 0; }
.checkout-summary__row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.checkout-summary__row--free span:last-child { color: var(--color-accent); font-weight: 600; font-size: 0.8125rem; }
.checkout-summary__row--total { font-size: 1.125rem; font-weight: 800; color: var(--color-text); margin-top: 0.25rem; }
.checkout-summary__trust {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex; gap: 1rem; justify-content: center;
  font-size: 0.8rem; color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .pay-methods { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thankyou-page {
  min-height: calc(100vh - 72px);
  background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 50%, #ecfdf5 100%);
  padding: clamp(2.5rem,5vw,4rem) 0;
}
.thankyou-layout {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

/* Animated success ring */
.thankyou-ring {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 12px rgba(13,148,136,0.12), 0 0 0 24px rgba(13,148,136,0.06);
  animation: ringPop 0.5s var(--ease-spring);
}
@keyframes ringPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.thankyou-ring__inner { font-size: 2.5rem; line-height: 1; }

.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 800; color: var(--color-text);
  margin-bottom: 0.75rem;
}
.thankyou-sub {
  font-size: 1.0625rem; color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: 2rem;
}

/* Order card */
.thankyou-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  text-align: left;
}
.thankyou-card__header {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(135deg, #071a31 0%, #0a3d62 100%);
  padding: 1.25rem 1.75rem;
}
.thankyou-card__label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 0.25rem;
}
.thankyou-card__id {
  font-family: monospace; font-size: 1.0625rem;
  font-weight: 700; color: var(--color-accent-light);
  letter-spacing: 0.05em;
}
.thankyou-card__date { font-size: 0.9375rem; font-weight: 600; color: #fff; }
.thankyou-card__status {
  display: inline-flex; align-items: center;
  gap: 0.375rem; font-size: 0.8125rem; font-weight: 700;
  color: #fff; background: rgba(13,148,136,0.35);
  border: 1px solid rgba(13,148,136,0.5);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
}

.thankyou-card__items { padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.thankyou-card__item { display: flex; align-items: flex-start; gap: 1rem; }
.thankyou-card__item-visual {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.thankyou-card__item-name { font-weight: 700; font-size: 0.9375rem; color: var(--color-text); margin-bottom: 0.125rem; }
.thankyou-card__item-cat  { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.thankyou-card__item-includes {
  list-style: none; display: flex; flex-direction: column; gap: 0.25rem;
}
.thankyou-card__item-includes li {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; color: var(--color-text-muted);
}
.thankyou-card__item-includes svg { width: 12px; height: 12px; color: var(--color-accent); flex-shrink: 0; }
.thankyou-card__item-more { color: var(--color-accent); font-weight: 600; }
.thankyou-card__item-price { margin-left: auto; font-weight: 800; font-size: 1rem; color: var(--color-text); white-space: nowrap; }

.thankyou-card__footer { padding: 1.25rem 1.75rem; background: var(--color-bg-alt); display: flex; flex-direction: column; gap: 0.5rem; }
.thankyou-card__footer-row { display: flex; justify-content: space-between; font-size: 0.9375rem; color: var(--color-text-muted); }
.thankyou-green { color: var(--color-accent); font-weight: 600; }
.thankyou-card__footer-divider { height: 1px; background: var(--color-border); margin: 0.25rem 0; }
.thankyou-card__footer-row--total { font-size: 1.1875rem; font-weight: 800; color: var(--color-text); }

/* What's next */
.thankyou-next { margin-bottom: 2rem; }
.thankyou-next__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 1.25rem;
}
.thankyou-next__steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.thankyou-next__step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.thankyou-next__step-icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.thankyou-next__step h3 { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.375rem; }
.thankyou-next__step p  { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.6; }

/* Actions */
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.thankyou-btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff; padding: 0.875rem 2rem;
  border-radius: var(--radius-md); font-weight: 700;
  box-shadow: 0 4px 16px var(--color-accent-glow);
}
.thankyou-btn-primary:hover { box-shadow: var(--shadow-glow); }
.thankyou-btn-secondary {
  background: var(--color-white); color: var(--color-text);
  border: 1.5px solid var(--color-border);
  padding: 0.875rem 2rem; border-radius: var(--radius-md); font-weight: 600;
}
.thankyou-btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }

.thankyou-footer-note { font-size: 0.875rem; color: var(--color-text-muted); }
.thankyou-footer-note a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px) {
  .thankyou-next__steps { grid-template-columns: 1fr; }
  .thankyou-card__header { flex-direction: column; gap: 0.75rem; }
}

/* ==========================================================================
   Checkout — Multi-step stepper
   ========================================================================== */

/* ── Progress bar ── */
.co-stepper-wrap {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.co-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin-inline: auto;
}

.co-step {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.co-step__bubble {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
  border: 2.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 1;
}
.co-step__bubble svg { width: 16px; height: 16px; }

.co-step--active .co-step__bubble {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13,148,136,0.18);
}
.co-step--done .co-step__bubble {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.co-step__label {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 0.5rem;
  white-space: nowrap;
}
.co-step--active .co-step__label { color: var(--color-accent); }
.co-step--done  .co-step__label  { color: var(--color-text); }

.co-step__line {
  width: 80px; height: 2px;
  background: var(--color-border);
  margin: 0 0.625rem;
  flex-shrink: 0;
  transition: background var(--duration-normal);
}
.co-step__line--done { background: var(--color-accent); }

/* ── Step panel ── */
.co-step-panel {
  animation: coFadeUp 0.3s var(--ease-out);
}
@keyframes coFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.co-step-panel__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.co-step-panel__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.co-step-panel__sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.co-field-error--top {
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Review box (Step 3) ── */
.co-review {
  background: linear-gradient(135deg, #f0fdf4, #f0fdfa);
  border: 1.5px solid rgba(13,148,136,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.co-review__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}
.co-review__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(13,148,136,0.1);
}
.co-review__row:last-child { border-bottom: none; }
.co-review__row strong { color: var(--color-text); font-weight: 600; }
.co-review__row--total { font-size: 1rem; }
.co-review__row--total strong { font-size: 1.125rem; font-weight: 800; color: var(--color-accent); }

/* ── QR + Upload side by side ── */
.pay-details__qr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.pay-details__upload-inline { display: flex; flex-direction: column; gap: 0.5rem; }
.pay-details__upload-inline .proof-upload--inline {
  min-height: 180px;
  border-radius: var(--radius-md);
}
.pay-details__upload-inline .proof-upload__preview img {
  max-height: 130px;
}

@media (max-width: 500px) {
  .pay-details__qr-row { grid-template-columns: 1fr; }
}

/* ── Proof upload — change hint ── */
.proof-upload__change {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .co-step__line { width: 40px; }
  .co-step__label { display: none; }
}
