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

:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-2: #fff1e6;
  --border: #ffd6a8;
  --text: #1c1917;
  --text-muted: #78716c;
  --primary: #f97316;
  --primary-hover: #ea580c;
  --primary-light: #ffedd5;
  --accent-pink: #ec4899;
  --accent-teal: #14b8a6;
  --accent-sky: #0ea5e9;
  --accent-gold: #eab308;
  --accent-lime: #84cc16;
  --success: #16a34a;
  --error: #dc2626;
  --warning: #d97706;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 14px rgba(249, 115, 22, .12);
  --shadow-3d: 0 3px 0 #c2410c, 0 12px 28px rgba(249, 115, 22, .35);
  --shadow-card: 0 1px 0 rgba(255,255,255,.9) inset, 0 12px 28px rgba(251, 146, 60, .14), 0 4px 10px rgba(15, 23, 42, .04);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,.95) inset, 0 20px 44px rgba(249, 115, 22, .22), 0 8px 16px rgba(236, 72, 153, .12);
}

html { scroll-behavior: smooth; }

/* Capacitor / native WebView safe areas */
html.native-app body,
body.native-app {
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(251, 146, 60, .35), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(236, 72, 153, .22), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(20, 184, 166, .18), transparent 55%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(14, 165, 233, .15), transparent 50%),
    linear-gradient(180deg, #fff7ed 0%, #fef3c7 40%, #ecfeff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(90deg, rgba(255,247,237,.94), rgba(255,241,242,.94), rgba(236,254,255,.94));
  backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #fb923c, #ec4899, #14b8a6, #0ea5e9) 1;
  box-shadow: 0 6px 24px rgba(249, 115, 22, .1);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: .75rem;
}

.logo {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 900; font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text); text-decoration: none; z-index: 101;
  background: linear-gradient(90deg, #f97316, #ec4899, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-icon {
  font-size: 1.45rem;
  -webkit-text-fill-color: initial;
  filter: drop-shadow(0 4px 8px rgba(249,115,22,.35));
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  -webkit-text-fill-color: initial;
  box-shadow: 0 4px 12px rgba(249,115,22,.3);
  flex-shrink: 0;
}

.nav-links {
  display: flex; align-items: center; gap: 1.1rem;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: .9rem; font-weight: 700;
  transition: color .2s, transform .2s;
}
.nav-links a:hover { color: var(--primary); transform: translateY(-1px); }

.nav-actions { display: flex; align-items: center; gap: .65rem; z-index: 101; }

.lang-toggle {
  display: flex; border: 2px solid #fdba74; border-radius: 12px; overflow: hidden;
  box-shadow: 0 3px 10px rgba(249,115,22,.12);
}
.lang-btn {
  padding: .35rem .65rem; border: none; background: #fff7ed;
  font-family: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; color: var(--text-muted);
}
.lang-btn.active {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: white;
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 2px solid #fdba74;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow);
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: #f97316; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta-desktop { display: inline-flex; }
.nav-login-btn {
  display: inline-flex;
  white-space: nowrap;
  font-weight: 800;
}
.nav-login-mobile { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.3rem; border: none; border-radius: 14px;
  font-family: inherit; font-size: .925rem; font-weight: 800;
  cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ec4899 100%);
  color: white;
  box-shadow: var(--shadow-3d);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 0 #c2410c, 0 16px 34px rgba(236, 72, 153, .35);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #c2410c, 0 6px 16px rgba(249, 115, 22, .25);
}
.btn-primary:disabled { opacity: .6; cursor: not-allowed; box-shadow: none; }
.btn-outline {
  background: white; border: 2px solid #fdba74; color: #c2410c;
  box-shadow: 0 4px 12px rgba(249,115,22,.1);
}
.btn-outline:hover {
  border-color: #ec4899; color: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236,72,153,.18);
}
.btn-telegram {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9 40%, #14b8a6);
  color: white; font-size: 1rem; padding: .9rem 2rem;
  box-shadow: 0 3px 0 #0369a1, 0 12px 26px rgba(14,165,233,.35);
}
.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #0369a1, 0 16px 30px rgba(20,184,166,.35);
}
.btn-vouch {
  background: linear-gradient(135deg, #fbbf24, #f59e0b 45%, #ea580c);
  color: #1c1917; font-size: 1rem; padding: .9rem 1.6rem; font-weight: 900;
  box-shadow: 0 3px 0 #b45309, 0 12px 26px rgba(245,158,11,.35);
}
.btn-vouch:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #b45309, 0 16px 30px rgba(234,88,12,.35);
}
.btn-sm { padding: .45rem .9rem; font-size: .825rem; }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Hero — full-bleed 3D scene */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  /* Extra top pad so sticky header doesn't clip brand / float tiles */
  padding: clamp(5.5rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  overflow: visible;
  display: flex;
  align-items: center;
}
.hero-atmosphere {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  border-radius: 0;
}
.hero-mesh {
  position: absolute; border-radius: 50%;
  filter: blur(2px); opacity: .55;
  animation: meshDrift 12s ease-in-out infinite;
}
.hero-mesh.m1 {
  width: min(55vw, 420px); height: min(55vw, 420px);
  top: -12%; left: -8%;
  background: radial-gradient(circle at 35% 35%, #fdba74, #fb7185 55%, transparent 70%);
}
.hero-mesh.m2 {
  width: min(48vw, 380px); height: min(48vw, 380px);
  top: 10%; right: -10%;
  background: radial-gradient(circle at 40% 40%, #67e8f9, #2dd4bf 50%, transparent 70%);
  animation-delay: -4s;
}
.hero-mesh.m3 {
  width: min(40vw, 300px); height: min(40vw, 300px);
  bottom: -8%; left: 30%;
  background: radial-gradient(circle at 50% 50%, #fde047, #fb923c 45%, transparent 70%);
  animation-delay: -7s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  transform: perspective(900px) rotateX(58deg) translateY(18%);
  transform-origin: center top;
  opacity: .7;
}

/* Page motion — below hero, through plain page to footer */
.page-below {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}
.page-below > *:not(.page-motion) {
  position: relative;
  z-index: 1;
}
.page-motion {
  position: absolute;
  /* Start under trust cards so icons aren't clipped behind them */
  top: 13rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}
.motion-lane {
  position: absolute;
  left: 0;
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: max-content;
  opacity: .2;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.motion-lane .motion-item {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, .1));
  transform: translateZ(0);
  opacity: .85;
  flex-shrink: 0;
}
.motion-lane.lane-a {
  top: 6%;
  animation: laneRight 26s linear infinite;
  opacity: .26;
}
.motion-lane.lane-b {
  top: 24%;
  animation: laneLeft 22s linear infinite;
  opacity: .2;
}
.motion-lane.lane-c {
  top: 44%;
  animation: laneRight 30s linear infinite;
  opacity: .24;
}
.motion-lane.lane-d {
  top: 64%;
  animation: laneLeft 24s linear infinite;
  opacity: .18;
}
.motion-lane.lane-e {
  top: 84%;
  animation: laneRight 28s linear infinite;
  opacity: .22;
}
@keyframes laneRight {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes laneLeft {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
/* Hard-restart side scroll after paint (fixes stuck / stale GPU layer) */
.page-motion.is-ready .motion-lane {
  animation-play-state: running;
}
.page-motion:not(.is-ready) .motion-lane {
  animation: none;
}

@keyframes meshDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -18px, 0) scale(1.05); }
}

.hero-container { position: relative; z-index: 1; width: 100%; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy { max-width: 560px; }
.hero-enter {
  animation: heroRise .8s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-size: clamp(2.4rem, 6.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 0 0 .65rem;
  padding: .1em 0;
  background: linear-gradient(105deg, #ea580c 0%, #db2777 45%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 18px rgba(249, 115, 22, .22));
  overflow: visible;
}

.hero-title {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: .75rem !important;
  color: #44403c !important;
  background: none !important;
  -webkit-text-fill-color: #44403c !important;
}

.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.08rem);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: flex-start; margin-top: .25rem;
}

.hero-note {
  margin-top: 1.15rem; font-size: .82rem; color: #b45309; font-weight: 700;
  background: linear-gradient(90deg, #fef3c7, #ffedd5);
  border: 2px solid #fcd34d; border-radius: var(--radius);
  padding: .65rem .9rem; display: inline-block; max-width: 100%;
}

/* 3D floating service stage */
.hero-stage {
  perspective: 1100px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 1.25rem 0;
}
.hero-stage-inner {
  position: relative;
  width: min(100%, 420px);
  height: 380px;
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-16deg);
  transition: transform .15s ease-out;
  overflow: visible;
}
.stage-platform {
  position: absolute;
  left: 8%; right: 8%; bottom: 18%;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.28), transparent 70%);
  transform: rotateX(78deg) translateZ(-20px);
  filter: blur(1px);
}
.stage-orb {
  position: absolute; border-radius: 50%;
  filter: blur(.5px);
  animation: floatY 6.5s ease-in-out infinite;
}
.stage-orb.o1 {
  width: 120px; height: 120px; top: 18%; left: 28%;
  background: linear-gradient(145deg, rgba(253,186,116,.85), rgba(251,113,133,.55));
  transform: translateZ(-40px);
}
.stage-orb.o2 {
  width: 90px; height: 90px; top: 42%; right: 18%;
  background: linear-gradient(145deg, rgba(45,212,191,.7), rgba(56,189,248,.5));
  animation-delay: -2.5s;
  transform: translateZ(-10px);
}

.float-tile {
  position: absolute;
  display: flex; align-items: center; gap: .45rem;
  padding: .7rem 1rem;
  border-radius: 16px;
  font-weight: 800; font-size: .92rem; color: #1c1917;
  background: linear-gradient(160deg, #fff, #fff7ed);
  border: 2px solid #fdba74;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 14px 28px rgba(249,115,22,.2),
    0 4px 0 rgba(194,65,12,.15);
  transform-style: preserve-3d;
  animation: tileFloat 5.5s ease-in-out infinite;
  will-change: transform;
}
.float-tile .tile-icon { font-size: 1.25rem; line-height: 1; }
.float-tile.t1 { top: 18%; left: 6%; background: linear-gradient(160deg, #fff, #ffedd5); animation-delay: 0s; }
.float-tile.t2 { top: 16%; right: 4%; background: linear-gradient(160deg, #fff, #e0f2fe); border-color: #7dd3fc; animation-delay: -1.2s; }
.float-tile.t3 { bottom: 24%; left: 10%; background: linear-gradient(160deg, #fff, #ccfbf1); border-color: #5eead4; animation-delay: -2.1s; }
.float-tile.t4 { bottom: 18%; right: 8%; background: linear-gradient(160deg, #fff, #fce7f3); border-color: #f9a8d4; animation-delay: -3.4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes tileFloat {
  0%, 100% { transform: translateY(0) translateZ(20px) rotateZ(-1deg); }
  50% { transform: translateY(-14px) translateZ(36px) rotateZ(1.5deg); }
}
@keyframes stageSway {
  0%, 100% { transform: rotateX(10deg) rotateY(-10deg) translateZ(0); }
  50% { transform: rotateX(6deg) rotateY(8deg) translateZ(8px); }
}
.hero-stage-inner--sway {
  animation: stageSway 7.5s ease-in-out infinite;
}

/* 3D trust cards (replaces flat white strip) */
.trust-cards-section {
  position: relative;
  z-index: 2;
  padding: 1.25rem 0 2rem;
  margin-top: 0;
  overflow: visible;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  perspective: 1000px;
}
.trust-card {
  border-radius: 20px;
  transform-style: preserve-3d;
  animation: trustBob 4.8s ease-in-out infinite;
}
.trust-card.tc1 { animation-delay: 0s; }
.trust-card.tc2 { animation-delay: -.9s; }
.trust-card.tc3 { animation-delay: -1.8s; }
.trust-card.tc4 { animation-delay: -2.7s; }
.trust-card-inner {
  height: 100%;
  padding: 1.05rem 1rem 1.15rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #fdba74, #f9a8d4, #67e8f9) border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 12px 26px rgba(249,115,22,.16),
    0 4px 0 rgba(194,65,12,.1);
  transform: rotateX(4deg) translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-card:hover .trust-card-inner {
  transform: rotateX(0deg) translateY(-6px) translateZ(12px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 20px 36px rgba(249,115,22,.24),
    0 8px 0 rgba(194,65,12,.12);
}
.trust-card .trust-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin: 0 auto .55rem;
  border-radius: 14px; font-size: 1.35rem;
  box-shadow: 0 8px 16px rgba(0,0,0,.1);
}
.trust-card.tc1 .trust-icon { background: linear-gradient(145deg, #fdba74, #fb923c); }
.trust-card.tc2 .trust-icon { background: linear-gradient(145deg, #5eead4, #14b8a6); }
.trust-card.tc3 .trust-icon { background: linear-gradient(145deg, #7dd3fc, #0ea5e9); }
.trust-card.tc4 .trust-icon { background: linear-gradient(145deg, #f9a8d4, #ec4899); }
.trust-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: #9a3412;
  margin-bottom: .2rem;
}
.trust-card p {
  font-size: .78rem;
  font-weight: 700;
  color: #78716c;
  line-height: 1.35;
}
@keyframes trustBob {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-6px) rotateY(2deg); }
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.seo-related a {
  font-weight: 800;
  color: #ea580c;
  text-decoration: none;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
}
.seo-related a:hover { background: #ffedd5; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  display: inline-block; padding: .5rem 1.1rem;
  background: linear-gradient(90deg, #fef08a, #fdba74, #f9a8d4);
  border: none; border-radius: 999px;
  font-size: .85rem; font-weight: 800; color: #9a3412; margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(251,146,60,.28);
}

/* Sections */
section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
h2 {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 900; text-align: center; margin-bottom: .5rem;
  background: linear-gradient(90deg, #ea580c, #db2777, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  text-align: center; color: var(--text-muted); margin-bottom: 2rem;
  font-size: clamp(.9rem, 2.2vw, 1rem); padding: 0 .5rem; font-weight: 600;
}

/* Offer Banner Slider */
.banner-section { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.banner-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #fdba74;
  box-shadow: var(--shadow-card);
  background: #0c0a09;
  aspect-ratio: 16 / 9;
  min-height: 180px;
  max-height: 460px;
}
.banner-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.22,.68,0,1.1);
  will-change: transform;
}
.banner-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: white;
}
.banner-slide img,
.banner-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #0c0a09;
}
.banner-caption {
  /* Hidden: offer text already lives inside the banner art — overlay looks messy */
  display: none;
}
.banner-caption strong {
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 900;
}
.banner-caption span {
  font-size: .9rem;
  font-weight: 700;
  opacity: .92;
}
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #ea580c;
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  z-index: 2;
}
.banner-nav.prev { left: .75rem; }
.banner-nav.next { right: .75rem; }
.banner-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.banner-dots {
  position: absolute;
  left: 0; right: 0; bottom: .55rem;
  display: flex; justify-content: center; gap: .4rem;
  z-index: 2;
}
.banner-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.45); cursor: pointer;
}
.banner-dot.active {
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.35);
  transform: scale(1.15);
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
  perspective: 1200px;
}
.category-card {
  background: white;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.category-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.category-card.color-orange::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.category-card.color-sky::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.category-card.color-teal::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.category-card.color-pink::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.category-card.color-gold::before { background: linear-gradient(90deg, #eab308, #facc15); }

.category-card.color-orange { background: linear-gradient(180deg, #fff 0%, #fff7ed 100%); border-color: #fdba74; }
.category-card.color-sky { background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%); border-color: #7dd3fc; }
.category-card.color-teal { background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%); border-color: #5eead4; }
.category-card.color-pink { background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%); border-color: #f9a8d4; }
.category-card.color-gold { background: linear-gradient(180deg, #fff 0%, #fefce8 100%); border-color: #fde047; }

.category-card:hover {
  transform: translateY(-10px) rotateY(-4deg) rotateX(3deg) translateZ(8px);
  box-shadow: var(--shadow-card-hover);
}

.cat-header { display: flex; gap: 1rem; margin-bottom: 1rem; }
.cat-icon {
  font-size: 2rem; line-height: 1;
  width: 58px; height: 58px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0,0,0,.1);
}
.color-orange .cat-icon { background: linear-gradient(145deg, #fdba74, #fb923c); }
.color-sky .cat-icon { background: linear-gradient(145deg, #7dd3fc, #38bdf8); }
.color-teal .cat-icon { background: linear-gradient(145deg, #5eead4, #2dd4bf); }
.color-pink .cat-icon { background: linear-gradient(145deg, #f9a8d4, #f472b6); }
.color-gold .cat-icon { background: linear-gradient(145deg, #fde047, #facc15); }

.cat-header h3 { font-size: 1.12rem; font-weight: 900; margin-bottom: .2rem; }
.cat-header p { font-size: .85rem; color: var(--text-muted); font-weight: 600; }

.svc-list {
  list-style: none; margin-bottom: 0;
  max-height: 280px; overflow-y: auto;
  display: flex; flex-direction: column; gap: .4rem;
}
.svc-item {
  margin: 0;
  padding: 0;
  border: none;
}
.svc-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .65rem;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: .7rem .75rem;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,.55);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.svc-row:hover,
.svc-row:focus-visible {
  outline: none;
  border-color: #fdba74;
  background: #fff;
  transform: translateY(-1px) translateZ(4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 10px 20px rgba(249,115,22,.14);
}
.svc-row:active {
  transform: translateY(0) scale(.99);
}
.svc-row--disabled {
  cursor: not-allowed;
  opacity: .78;
  background: rgba(231,229,228,.45);
  box-shadow: none;
}
.svc-text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .12rem;
  line-height: 1.3;
}
.svc-text strong {
  color: var(--text);
  font-size: .88rem;
  font-weight: 800;
}
.svc-desc {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.svc-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  color: #ea580c;
  background: linear-gradient(145deg, #ffedd5, #fed7aa);
  box-shadow: 0 4px 10px rgba(249,115,22,.18);
}
.svc-book-btn,
.svc-down-btn { display: none !important; }
.svc-item.is-down .svc-text strong {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.down-badge {
  display: inline-flex; align-items: center;
  margin-left: .35rem; padding: .1rem .4rem;
  font-size: .65rem; font-weight: 900; letter-spacing: .04em;
  color: white; background: linear-gradient(135deg, #f87171, #dc2626);
  border-radius: 999px; vertical-align: middle;
  flex-shrink: 0;
}
.category-card.is-down {
  opacity: .85;
  filter: grayscale(.35);
  border-style: dashed;
}
.svc-empty { font-size: .82rem; color: var(--text-muted); padding: .5rem 0; font-weight: 600; }
.svc-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 1.15rem;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 10px rgba(15,23,42,.08);
}

/* Portfolio */
.portfolio-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.55), transparent);
}
.portfolio-page {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.portfolio-page h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
}
.portfolio-count {
  margin: 0 0 1rem;
  font-weight: 800;
  color: #64748b;
  font-size: .92rem;
}
.portfolio-home-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.portfolio-home-actions.hidden { display: none; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.35rem;
  perspective: 1400px;
}
.portfolio-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border: 2px solid #fed7aa;
  border-radius: 22px;
  padding: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 14px 28px rgba(249,115,22,.14),
    0 4px 0 rgba(194,65,12,.08);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.portfolio-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 200px;
  max-height: 320px;
  overflow: hidden;
  background: #cbd5e1;
  border-bottom: 2px solid #fed7aa;
  cursor: zoom-in;
}
.portfolio-media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Real photo blur (Instagram style) — keep colors visible, not black */
  filter: blur(28px) saturate(1.25) contrast(1.05);
  transform: scale(1.25);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.portfolio-media-main,
.portfolio-media > video.portfolio-media-main,
.portfolio-media > video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent !important;
  margin: 0;
}
.portfolio-media:hover .portfolio-media-main {
  filter: brightness(.98);
}
.portfolio-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border: 2px solid rgba(255,255,255,.55);
}
.portfolio-media[data-type="video"]:hover .portfolio-play {
  background: rgba(249, 115, 22, 0.9);
}
.portfolio-date {
  display: inline-block;
  margin: 0;
  font-size: .78rem;
  font-weight: 800;
  color: #64748b;
}
.media-missing {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1rem;
  text-align: center;
  color: #9a3412;
  font-weight: 800;
  background: #ffedd5;
}

/* Lightbox for full portfolio photo */
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.media-lightbox.hidden { display: none !important; }
.media-lightbox img,
.media-lightbox video {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #111;
}
.media-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #111;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}
.portfolio-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.portfolio-card.color-1 { border-color: #fdba74; }
.portfolio-card.color-1::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.portfolio-card.color-2 { border-color: #7dd3fc; }
.portfolio-card.color-2::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.portfolio-card.color-3 { border-color: #5eead4; }
.portfolio-card.color-3::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.portfolio-card.color-4 { border-color: #f9a8d4; }
.portfolio-card.color-4::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.portfolio-card.color-5 { border-color: #fde047; }
.portfolio-card.color-5::before { background: linear-gradient(90deg, #eab308, #facc15); }
.portfolio-card.color-6 { border-color: #bef264; }
.portfolio-card.color-6::before { background: linear-gradient(90deg, #84cc16, #a3e635); }

.portfolio-card:hover {
  transform: translateY(-12px) rotateY(-3deg) rotateX(2deg) translateZ(10px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 28px 48px rgba(249,115,22,.22),
    0 10px 0 rgba(194,65,12,.1);
}
.portfolio-body {
  padding: 1.1rem 1.25rem 1.3rem;
}
.portfolio-body h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}
.portfolio-body > p {
  margin: 0 0 .65rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}
.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  align-items: center;
  margin-top: .15rem;
}
.portfolio-vendor {
  margin: 0;
  font-size: .78rem;
  font-weight: 800;
  color: #9a3412;
}
.portfolio-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: .75rem; margin: 1.15rem 1.25rem .35rem;
}
.portfolio-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(145deg, #fdba74, #f9a8d4);
  box-shadow: 0 8px 18px rgba(249,115,22,.2);
}
.portfolio-card.color-2 .portfolio-icon { background: linear-gradient(145deg, #7dd3fc, #38bdf8); }
.portfolio-card.color-3 .portfolio-icon { background: linear-gradient(145deg, #5eead4, #2dd4bf); }
.portfolio-card.color-4 .portfolio-icon { background: linear-gradient(145deg, #f9a8d4, #f472b6); }
.portfolio-card.color-5 .portfolio-icon { background: linear-gradient(145deg, #fde047, #facc15); }
.portfolio-card.color-6 .portfolio-icon { background: linear-gradient(145deg, #bef264, #a3e635); }

.portfolio-tag {
  font-size: .72rem; font-weight: 800; color: white;
  background: linear-gradient(135deg, #f97316, #ec4899);
  padding: .28rem .65rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(236,72,153,.25);
  white-space: nowrap;
}
.portfolio-tag--overlay {
  position: absolute;
  z-index: 4;
  top: .75rem;
  right: .75rem;
  margin: 0;
}
.portfolio-card h3 {
  font-size: 1.08rem; font-weight: 900; margin-bottom: .4rem; text-align: left;
  -webkit-text-fill-color: var(--text);
  background: none;
}
.portfolio-card p {
  font-size: .88rem; color: var(--text-muted); margin-bottom: .9rem; font-weight: 600;
}
.portfolio-savings {
  display: inline-flex; align-items: center;
  margin-top: .65rem;
  font-size: .82rem; font-weight: 900; color: white;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  padding: .4rem .8rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(22,163,74,.25);
}

/* Booking form */
.booking-section {
  scroll-margin-top: 5rem;
  padding-top: 1rem;
  animation: bookingReveal .35s ease;
}
@keyframes bookingReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-card {
  position: relative;
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #fff7ed 55%, #ecfeff 100%);
  border: 3px solid #fdba74;
  border-radius: 26px;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow-card);
}
.booking-close {
  position: absolute; top: .85rem; right: .85rem;
  width: 2.25rem; height: 2.25rem; border: 2px solid #fed7aa;
  border-radius: 12px; background: white; color: #9a3412;
  font-size: 1rem; font-weight: 900; cursor: pointer;
  box-shadow: 0 2px 0 #fdba74;
  transition: transform .15s, background .15s;
}
.booking-close:hover { transform: translateY(-1px); background: #fff7ed; }
.booking-selected-label {
  margin-top: .65rem; font-size: .9rem; font-weight: 800;
  color: #ea580c;
}
.booking-header { text-align: center; margin-bottom: 1.75rem; }
.booking-header h2 {
  background: linear-gradient(90deg, #ea580c, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.booking-header p:not(.booking-selected-label) { color: var(--text-muted); font-size: .95rem; font-weight: 600; }

.form-section-label {
  font-size: .8rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .06em; color: #ea580c; margin: 1.5rem 0 .75rem;
  padding-bottom: .4rem; border-bottom: 3px solid #fed7aa;
}
.form-section-label:first-of-type { margin-top: 0; }
.flight-fields { margin-bottom: .25rem; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 800; color: #78716c; }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem .95rem; background: white; border: 2px solid #fed7aa;
  border-radius: 14px; font-family: inherit; font-size: 1rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  min-height: 46px; font-weight: 600;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #f97316; background: white;
  box-shadow: 0 0 0 4px rgba(249,115,22,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.field-hint {
  font-size: .78rem; font-weight: 650; color: #78716c;
  line-height: 1.4; margin: -.1rem 0 .35rem;
}
.screenshot-file-input {
  position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.screenshot-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  margin-bottom: .55rem;
}
.screenshot-add-btn {
  cursor: pointer; margin: 0;
}
.screenshot-clear-btn {
  background: #fee2e2; color: #b91c1c; border: none; font-weight: 800;
  border-radius: 999px; padding: .4rem .8rem;
}
.screenshot-count { font-size: .8rem; font-weight: 700; color: #78716c; }
.screenshot-preview {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .25rem;
}
.shot-thumb {
  position: relative; width: 92px; height: 92px;
}
.shot-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 12px; border: 2px solid #fdba74;
  box-shadow: 0 4px 12px rgba(249,115,22,.18);
}
.shot-remove {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border: none; border-radius: 999px;
  background: #dc2626; color: white; font-size: .7rem; font-weight: 900;
  cursor: pointer; line-height: 1;
  box-shadow: 0 2px 6px rgba(220,38,38,.35);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error);
  background: #fef2f2;
}
.field-error {
  display: none;
  font-size: .78rem;
  font-weight: 700;
  color: var(--error);
  line-height: 1.35;
}
.form-group.has-error .field-error { display: block; }

.form-message {
  margin-top: 1.25rem; padding: 1rem; border-radius: var(--radius); text-align: left; font-weight: 700;
}
.form-message.success { background: #f0fdf4; border: 2px solid #86efac; color: var(--success); text-align: center; }
.form-message.error { background: #fef2f2; border: 2px solid #fca5a5; color: var(--error); }
.form-message.error ul { margin: .5rem 0 0 1.1rem; padding: 0; }
.form-message.error li { margin: .2rem 0; }
.hidden { display: none !important; }

/* Payment */
.payment-section {
  background: linear-gradient(180deg, rgba(255,237,213,.5), rgba(224,242,254,.55));
}
.payment-info-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: linear-gradient(180deg, #fff, #fff7ed 55%, #ecfeff);
  border: 3px solid #fdba74;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}
.payment-info-card .btn { margin-top: .35rem; text-decoration: none; }
.payment-note { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; font-weight: 700; }

.wallets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}
.wallet-card {
  background: white; border: 2px solid #7dd3fc; border-radius: 18px;
  padding: 1.25rem; box-shadow: var(--shadow-card);
  transition: transform .2s;
  display: flex; flex-direction: column; align-items: center;
}
.wallet-card:nth-child(2n) { border-color: #f9a8d4; }
.wallet-card:nth-child(3n) { border-color: #5eead4; }
.wallet-card:hover { transform: translateY(-5px) rotate(.3deg); }
.wallet-label { font-weight: 900; font-size: .95rem; margin-bottom: .65rem; color: #ea580c; text-align: center; width: 100%; }
.wallet-qr-wrap { text-align: center; margin-bottom: .75rem; }
.wallet-qr {
  width: 168px; height: 168px; object-fit: contain;
  border-radius: 14px; border: 3px solid #fed7aa; background: white;
  box-shadow: 0 8px 18px rgba(249,115,22,.15);
  padding: .35rem;
}
.wallet-qr-hint {
  margin-top: .4rem; font-size: .78rem; font-weight: 800; color: #c2410c;
}
.wallet-fixed-note {
  margin-top: .55rem; font-size: .72rem; font-weight: 700;
  color: var(--text-muted); text-align: center; line-height: 1.35;
}
.wallet-addr { display: flex; gap: .5rem; align-items: flex-start; width: 100%; }
.wallet-addr code {
  flex: 1; font-size: .75rem; word-break: break-all;
  background: #fff7ed; padding: .5rem; border-radius: 10px; font-weight: 700;
}
.copy-btn {
  padding: .4rem .7rem; border: 2px solid #fdba74; border-radius: 10px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5); font-size: .75rem; font-weight: 800;
  cursor: pointer; white-space: nowrap; color: #c2410c;
}
.copy-btn:hover { border-color: #ec4899; color: #db2777; }
.no-wallets { text-align: center; color: var(--text-muted); font-weight: 700; }

.pay-warning {
  margin-top: .55rem;
  padding: .65rem .8rem;
  border-radius: 12px;
  border: 1.5px solid #fdba74;
  background: #fff7ed;
  color: #9a3412;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.4;
}
.pay-warning-banner {
  max-width: 820px;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-size: .9rem;
}
.pay-warning-sm {
  margin-top: .5rem;
  width: 100%;
  font-size: .72rem;
  padding: .55rem .65rem;
}

.selected-pay-box {
  margin: .25rem 0 1.1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 3px solid #fdba74;
  background: linear-gradient(180deg, #fff7ed, #ecfeff);
}
.selected-pay-box h4 {
  margin-bottom: .75rem;
  font-weight: 900;
  color: #ea580c;
  text-align: center;
}
.selected-wallet-card {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.pay-wallet-missing {
  color: #b91c1c;
  font-weight: 800;
  text-align: center;
  padding: .75rem;
}
.booking-miss-note {
  margin: .25rem 0 1rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 2px dashed #67e8f9;
  background: #ecfeff;
  color: #0e7490;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(92px, 118px) minmax(0, 1fr);
  gap: .45rem;
  width: 100%;
  max-width: 100%;
}
.phone-row select,
.phone-row input {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.phone-row select {
  padding: .75rem .4rem;
  background: white;
  border: 2px solid #fed7aa;
  border-radius: 14px;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 800;
  color: var(--text);
  min-height: 46px;
}
.same-phone-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
  font-size: .8rem;
  font-weight: 800;
  color: #78716c;
  cursor: pointer;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Support */
.support-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, #fff, #ecfeff 50%, #fdf2f8);
  border: 3px solid #67e8f9;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}
.support-card p { color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 700; }
.support-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
}
.support-actions .btn { text-decoration: none; }

/* Footer */
.footer {
  padding: 1.75rem 0 2.25rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #fb923c, #ec4899, #14b8a6, #0ea5e9) 1;
  text-align: center; color: var(--text-muted); font-size: .9rem; font-weight: 700;
  background: linear-gradient(90deg, #fff7ed, #fdf2f8, #ecfeff);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-tagline { margin: 0; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin: 0;
}
.footer-legal-btn {
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: .85rem;
  color: #9a3412 !important;
  background: linear-gradient(160deg, #fff, #ffedd5);
  border: 2px solid #fdba74;
  box-shadow: 0 2px 0 #fb923c;
  text-decoration: none !important;
}
.footer-legal-btn:hover {
  transform: translateY(-1px);
  color: #c2410c !important;
}
.footer-legal-links a:not(.footer-legal-btn) { color: #0f766e; text-decoration: none; font-weight: 800; }
.footer-legal-links a:not(.footer-legal-btn):hover { text-decoration: underline; }
.mb-chat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
}
.mb-chat-hint { font-size: .8rem; font-weight: 700; color: #78716c; }
.badge-best {
  display: inline-block;
  margin-left: .35rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  vertical-align: middle;
}
.badge-rating {
  display: inline-block;
  margin-left: .35rem;
  font-weight: 800;
  color: #b45309;
  font-size: .8rem;
}
.mb-rate {
  margin-top: .75rem;
  padding: .75rem;
  border: 2px dashed #fdba74;
  border-radius: 14px;
  background: #fff7ed;
  display: grid;
  gap: .45rem;
}
.mb-rate input {
  padding: .45rem .65rem;
  border: 2px solid #fed7aa;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}
.star-row { display: flex; gap: .25rem; }
.star-btn {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #d6d3d1;
  cursor: pointer;
  line-height: 1;
}
.star-btn.on, .star-btn:hover { color: #f59e0b; }
.best-sellers {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff7ed, #ecfeff);
}
.best-sellers h2 { font-weight: 900; color: #9a3412; margin: 0 0 .35rem; }
.best-sellers .section-sub { font-weight: 700; color: #78716c; margin: 0 0 1.25rem; }
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.best-card {
  background: #fff;
  border: 2px solid #fdba74;
  border-radius: 18px;
  padding: 1rem;
  font-weight: 800;
}
.best-card .bc-name { color: #9a3412; font-weight: 900; font-size: 1.05rem; }
.best-card .bc-meta { color: #57534e; margin-top: .35rem; font-size: .9rem; }
.mb-webchat {
  margin-top: .75rem;
  border: 2px solid #99f6e4;
  border-radius: 14px;
  padding: .75rem;
  background: #f0fdfa;
}
.mb-webchat .wc-thread {
  max-height: 240px;
  overflow: auto;
  display: grid;
  gap: .4rem;
  margin-bottom: .6rem;
}
.mb-webchat .wc-msg {
  background: #fff;
  border-radius: 10px;
  padding: .45rem .6rem;
  font-weight: 700;
  font-size: .85rem;
}
.mb-webchat .wc-customer { border-left: 4px solid #0ea5e9; }
.mb-webchat .wc-vendor { border-left: 4px solid #f97316; }
.mb-webchat .wc-admin { border-left: 4px solid #16a34a; }
.mb-webchat .wc-form { display: flex; gap: .4rem; flex-wrap: wrap; }
.mb-webchat .wc-form input {
  flex: 1;
  min-width: 160px;
  padding: .5rem .65rem;
  border: 2px solid #99f6e4;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}
.footer-copy-box {
  max-width: 520px;
  width: 100%;
  perspective: 900px;
  animation: footerBob 5s ease-in-out infinite;
}
.footer-copy-inner {
  padding: 1rem 1.25rem;
  border-radius: 18px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff7ed) padding-box,
    linear-gradient(135deg, #fdba74, #f9a8d4, #67e8f9) border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 14px 28px rgba(249,115,22,.18),
    0 5px 0 rgba(194,65,12,.12);
  transform: rotateX(5deg) translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  justify-content: center;
  align-items: center;
}
.footer-copy-box:hover .footer-copy-inner {
  transform: rotateX(0deg) translateY(-5px) translateZ(10px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 22px 36px rgba(249,115,22,.26),
    0 8px 0 rgba(194,65,12,.14);
}
.footer-copy-label {
  font-weight: 800;
  color: #78716c;
  font-size: .88rem;
}
.footer-copy-handle {
  font-weight: 900;
  font-size: .95rem;
  color: #ea580c;
  text-decoration: none;
}
.footer-copy-handle:hover { color: #db2777; text-decoration: underline; }
.footer-copy-since {
  font-weight: 800;
  color: #0e7490;
  font-size: .88rem;
}
@keyframes footerBob {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-5px) rotateY(1.5deg); }
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  /* Default: Login visible in header/menu on phone */
  .nav-login-btn { display: inline-flex !important; }
  .nav-login-mobile {
    display: block;
    font-weight: 900;
    color: #ea580c !important;
    padding: .85rem 1rem !important;
    border: 2px solid #fdba74;
    border-radius: 14px;
    background: #fff7ed;
    text-align: center;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: linear-gradient(180deg, #fff7ed, #fff);
    border-bottom: 3px solid #fdba74;
    box-shadow: 0 16px 40px rgba(249,115,22,.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: .95rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
    background: #ffedd5;
    margin-bottom: .5rem;
    color: #9a3412;
  }
  .nav-links a:nth-child(2) { background: #fce7f3; color: #9d174d; }
  .nav-links a:nth-child(3) { background: #cffafe; color: #0e7490; }
  .nav-links a:nth-child(4) { background: #dcfce7; color: #166534; }
  .nav-links a:last-child {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    color: white;
    text-align: center;
    box-shadow: var(--shadow-3d);
  }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-stage { min-height: 280px; }
  .hero-stage-inner {
    height: 300px;
    transform: rotateX(8deg) rotateY(-8deg);
  }
  .hero-brand {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
  }
  .float-tile {
    box-shadow:
      0 1px 0 rgba(255,255,255,.95) inset,
      0 16px 28px rgba(249,115,22,.22),
      0 6px 0 rgba(194,65,12,.12);
  }
  .category-card:hover {
    transform: translateY(-4px);
  }
  .portfolio-card:hover {
    transform: translateY(-6px);
  }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .motion-lane { opacity: .12 !important; }
  .motion-lane .motion-item { font-size: 1.45rem; }
  .motion-lane.lane-d,
  .motion-lane.lane-e { display: none; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .category-card:hover,
  .portfolio-card:hover { transform: translateY(-4px); }
  .wallet-addr { flex-direction: column; }
  .copy-btn { width: 100%; }
  .btn-lg { width: 100%; max-width: 320px; }
  .banner-slider { aspect-ratio: 16 / 9; border-radius: 18px; }
  .banner-nav { width: 36px; height: 36px; font-size: 1.3rem; }
  .banner-caption { padding: .85rem 1rem 1.3rem; }
  .float-tile { font-size: .82rem; padding: .55rem .75rem; }
  .hero-stage-inner { height: 260px; width: 100%; }
  .trust-cards { gap: .65rem; }
  .trust-card-inner { padding: .85rem .7rem; }
  .trust-card strong { font-size: .86rem; }
  .trust-card p { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .stage-orb,
  .float-tile,
  .hero-enter,
  .hero-stage-inner--sway,
  .motion-lane,
  .trust-card,
  .footer-copy-box { animation: none !important; }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-stage-inner { transition: none; }
}

@media (min-width: 901px) {
  .nav-links { display: flex !important; }
}
