/* =========================================================
   360 GoMap — Premium Dark Landing
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #050505;
  --surface: #111111;
  --surface-2: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f0;
  --text-dim: rgba(245, 245, 240, 0.65);
  --text-mute: rgba(245, 245, 240, 0.45);
  --gold: #f4b400;
  --gold-light: #ffd84a;
  --gold-deep: #c98f00;
  --gold-glow: rgba(244, 180, 0, 0.28);
  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-green: #34a853;
  --g-yellow: #f4b400;
  --green: #25d366;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

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

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-orb {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -70px;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--g-blue);
  border-right-color: var(--g-red);
  border-bottom-color: var(--g-yellow);
  border-left-color: var(--g-green);
  animation: loaderSpin 2s linear infinite;
  opacity: 0.6;
}
.loader-ring-2 {
  inset: 16px;
  border-width: 1px;
  border-top-color: var(--gold);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  animation: loaderSpin 1.4s linear infinite reverse;
  opacity: 0.8;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.loader-logo {
  max-width: 280px;
  width: 60vw;
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  animation: loaderLogoIn 0.9s var(--ease) 0.2s forwards, loaderLogoBreath 3s ease-in-out 1.1s infinite;
  filter: drop-shadow(0 0 40px rgba(244, 180, 0, 0.15));
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes loaderLogoBreath {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(244, 180, 0, 0.15)); }
  50% { filter: drop-shadow(0 0 60px rgba(244, 180, 0, 0.35)); }
}

.loader-bar {
  width: min(260px, 60vw);
  height: 2px;
  background: var(--border);
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  animation: loaderBar 1.6s var(--ease) forwards;
}
@keyframes loaderBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* =========================================================
   BG GLOW
   ========================================================= */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.2), transparent 70%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: var(--maxw);
  z-index: 50;
  transition: top 0.3s var(--ease);
}
.nav-inner {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled .nav-inner {
  background: rgba(10, 10, 10, 0.92);
  border-color: var(--border-strong);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 36px;
}
.nav-logo-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
}

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: #1a1208;
  box-shadow: 0 8px 24px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(244, 180, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(244, 180, 0, 0.05);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* =========================================================
   HERO — BANNER STAGE
   ========================================================= */
.hero {
  padding-top: 150px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 30%;
  background:
    radial-gradient(ellipse 1100px 700px at 50% 20%, rgba(244, 180, 0, 0.10) 0%, rgba(244, 180, 0, 0.03) 30%, transparent 65%),
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(244, 180, 0, 0.06), transparent 60%);
}

/* Spotlight that follows cursor */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 500px at var(--mouse-x) var(--mouse-y), rgba(244, 180, 0, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.hero:hover::before { opacity: 1; }

/* Grid pattern denser in hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 800px 600px at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 800px 600px at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

/* Bottom divider — gradient line + fade */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.5;
  z-index: 2;
}
.hero-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg-2) 100%);
  z-index: -1;
  transform: translateY(100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.display {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 24px;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--text);
}
.grad {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-mute);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}

/* HERO VISUAL — PERSON PHOTO */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  z-index: 2;
  animation: floatY 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-aura {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 8%; left: 10%;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(244, 180, 0, 0.08) 35%, transparent 65%);
  filter: blur(40px);
  z-index: 1;
  animation: auraPulse 6s ease-in-out infinite;
}
@keyframes auraPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-orbit {
  position: absolute;
  width: 92%;
  height: 92%;
  border: 1px dashed var(--border-strong);
  border-radius: 50%;
  animation: rotate 80s linear infinite;
  z-index: 1;
  opacity: 0.5;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

.visual-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.visual-dot.red { background: #ff5f57; }
.visual-dot.yellow { background: #ffbd2e; }
.visual-dot.green { background: #28c840; }

.float-chip {
  position: absolute;
  padding: 10px 16px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.chip-dot.green {
  background: var(--g-green);
  box-shadow: 0 0 8px var(--g-green);
}
.g-mini {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-blue), var(--g-red), var(--g-yellow), var(--g-green));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
}

.chip-1 {
  top: 8%; left: -6%;
  color: var(--gold-light);
  border-color: rgba(244, 180, 0, 0.35);
  animation: chipFloat1 5s ease-in-out infinite;
}
.chip-2 {
  top: 38%; right: -8%;
  color: var(--text);
  animation: chipFloat2 6s ease-in-out infinite 0.5s;
}
.chip-3 {
  bottom: 14%; left: -2%;
  color: var(--text);
  animation: chipFloat3 7s ease-in-out infinite 1s;
}

@keyframes chipFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes chipFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes chipFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .chip-3 { left: 4%; }
}

/* MARQUEE */
.marquee {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.marquee-track {
  display: flex;
  gap: 40px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS GENERIC + ALTERNIM ME STRISHA
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
}

/* Section divider - vije gradient ne fund te cdo seksioni */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.12) 50%, transparent 95%);
}

/* Alternim bg: cift seksione me bg-2 me te thelle, te tjeret me bg normal */
.problem { background: var(--bg); }
.tour { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.showcase { background: var(--bg-2); }
.pricing {
  background:
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(244, 180, 0, 0.06), transparent 70%),
    var(--bg);
}
.nfc {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 50%, var(--bg-2) 100%);
}
.products { background: var(--bg); }
.process {
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(244, 180, 0, 0.04), transparent 70%),
    var(--bg-2);
}
.booking {
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(244, 180, 0, 0.08), transparent 70%),
    var(--bg);
}
@media (max-width: 740px) { .section { padding: 80px 0; } }

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
}
.kicker {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(244, 180, 0,0.04);
}
.h-display {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  border-color: rgba(244, 180, 0,0.3);
  transform: translateY(-4px);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.problem-card:hover::before { opacity: 1; }

.problem-num {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p { color: var(--text-dim); font-size: 15.5px; }

/* =========================================================
   TUR 360 BENEFITS
   ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefit-grid { grid-template-columns: 1fr; } }

.benefit {
  background: var(--bg);
  padding: 40px 32px;
  transition: background var(--transition);
  position: relative;
}
.benefit:hover {
  background: var(--surface);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244, 180, 0,0.15), rgba(244, 180, 0,0.03));
  border: 1px solid rgba(244, 180, 0,0.2);
  color: var(--gold-light);
  margin-bottom: 22px;
  transition: all var(--transition);
}
.benefit:hover .benefit-icon {
  transform: scale(1.06) rotate(-4deg);
  border-color: var(--gold);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.benefit p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

.cta-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 14px;
  color: var(--text-mute);
}

/* =========================================================
   SHOWCASE — TOUR GALLERY
   ========================================================= */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .tour-gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .tour-gallery { grid-template-columns: 1fr; gap: 16px; }
}

.tour-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  transition: all var(--transition);
  isolation: isolate;
}
.tour-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 180, 0, 0.4);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(244, 180, 0, 0.15);
}

.tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.85) brightness(0.9);
}
.tour-tile:hover .tile-bg {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(1);
}
.tour-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.95) 100%);
  transition: opacity var(--transition);
}
.tour-tile:hover::after { opacity: 0.85; }

/* Real cover photos per tile */
.tile-1 .tile-bg { background: #0a1929 url('assets/tile-radiance.jpg') center/cover no-repeat; }
.tile-2 .tile-bg { background: #2a0e0e url('assets/tile-wine.jpg') center/cover no-repeat; }
.tile-3 .tile-bg { background: #0e2a18 url('assets/tile-tirana-sports.jpg') center/cover no-repeat; }
.tile-4 .tile-bg { background: #2a1c08 url('assets/tile-lakrone.jpg') center/cover no-repeat; }
.tile-5 .tile-bg { background: #082025 url('assets/tile-fast-recovery.jpg') center/cover no-repeat; }
.tile-6 .tile-bg { background: #1a1208 url('assets/tile-barber.jpg') center/cover no-repeat; }

.tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 540px) { .tile-content { padding: 22px; } }

.tile-cat {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  width: max-content;
  margin-bottom: 4px;
}

.tour-tile h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}

.tile-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 8px;
  transition: gap var(--transition);
}
.tour-tile:hover .tile-action { gap: 12px; }

.tile-play {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 12px 30px -10px var(--gold-glow);
  transition: all var(--transition);
}
.tour-tile:hover .tile-play {
  transform: scale(1.1) rotate(8deg);
}
.tile-play svg { margin-left: 3px; }

@media (max-width: 540px) {
  .tile-play { width: 44px; height: 44px; top: 16px; right: 16px; }
  .tile-play svg { width: 18px; height: 18px; }
}

/* =========================================================
   TOUR MODAL
   ========================================================= */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 24px;
}
.tour-modal.open {
  opacity: 1;
  visibility: visible;
}
.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tour-modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.9);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.tour-modal.open .tour-modal-content { transform: scale(1); }

@media (max-width: 740px) {
  .tour-modal { padding: 12px; }
  .tour-modal-content { border-radius: var(--radius); }
}

.tour-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.tour-modal-info { display: flex; flex-direction: column; gap: 4px; }
.tour-modal-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.tour-modal-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.tour-modal-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.tour-modal-close:hover {
  background: rgba(244, 180, 0, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.tour-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
@media (max-width: 740px) {
  .tour-modal-frame { aspect-ratio: 3 / 4; }
}
.tour-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 2;
}

.tour-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: 14px;
  z-index: 1;
}
.tour-modal-spinner {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

/* =========================================================
   BOOKING FORM
   ========================================================= */
.booking { padding: 100px 0 120px; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

.booking-info .kicker { margin-bottom: 20px; }
.booking-info .h-display { text-align: left; margin-bottom: 18px; }
.booking-info > p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 480px;
}

.booking-trust {
  list-style: none;
  margin-bottom: 36px;
}
.booking-trust li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.booking-trust li:last-child { border-bottom: 1px solid var(--border); }
.booking-trust strong {
  font-family: 'Sora', sans-serif;
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}
.booking-trust span { color: var(--text-dim); font-size: 14px; }
.check-big {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.booking-alt {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.booking-alt > span {
  font-size: 14px;
  color: var(--text-dim);
}
.booking-alt a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.booking-alt a:hover {
  color: var(--gold-light);
  border-color: rgba(244, 180, 0, 0.35);
  background: rgba(244, 180, 0, 0.05);
}

/* FORM */
.booking-form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
@media (max-width: 540px) {
  .booking-form { padding: 24px; }
}

.form-head { margin-bottom: 24px; }
.form-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-head span { font-size: 13px; color: var(--text-mute); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-mute); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.1);
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  padding-right: 44px;
  cursor: pointer;
  color: var(--text);
}
.select-wrap select option {
  background: var(--surface);
  color: var(--text);
  padding: 12px;
}
.select-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 28px;
  font-size: 15.5px;
}

.form-privacy {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-mute);
}

/* =========================================================
   PRICING (PAKETAT 360)
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; } }

.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}

.price-card:hover {
  border-color: rgba(244, 180, 0, 0.25);
  transform: translateY(-4px);
}

.price-card.featured {
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(244, 180, 0, 0.15), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: rgba(244, 180, 0, 0.4);
  box-shadow:
    0 30px 80px -30px rgba(244, 180, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-12px);
}
@media (max-width: 980px) {
  .price-card.featured { transform: translateY(0); }
}
.price-card.featured:hover { transform: translateY(-16px); }
@media (max-width: 980px) {
  .price-card.featured:hover { transform: translateY(-4px); }
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.8;
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 8px 20px -6px var(--gold-glow);
}

.price-head {
  margin-bottom: 28px;
}

.price-tier {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(244, 180, 0, 0.08);
  border: 1px solid rgba(244, 180, 0, 0.2);
  border-radius: 100px;
}

.price-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

.price-for {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-card.featured .price-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-curr {
  font-size: 17px;
  color: var(--text-dim);
  font-weight: 500;
}

.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.price-features strong { color: var(--text); font-weight: 600; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.price-card.featured .check {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

/* PRICING FOOT NOTE */
.pricing-foot {
  margin-top: 56px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.06), rgba(244, 180, 0, 0.02));
  border: 1px solid rgba(244, 180, 0, 0.2);
  border-radius: var(--radius-lg);
}
@media (max-width: 640px) {
  .pricing-foot { flex-direction: column; padding: 24px; }
}
.pricing-foot-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.12);
  border: 1px solid rgba(244, 180, 0, 0.3);
  color: var(--gold-light);
}
.pricing-foot-text { display: flex; flex-direction: column; gap: 6px; }
.pricing-foot-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.pricing-foot-text span {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* =========================================================
   NFC SECTION
   ========================================================= */
.nfc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .nfc-grid { grid-template-columns: 1fr; gap: 56px; } }

.nfc-copy .kicker { margin-bottom: 20px; }
.nfc-copy .h-display { text-align: left; margin-bottom: 22px; }
.nfc-copy .section-sub { text-align: left; margin: 0 0 36px 0; }

.nfc-list {
  list-style: none;
  margin-bottom: 36px;
}
.nfc-list li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nfc-list li:last-child { border-bottom: 1px solid var(--border); }
.nfc-list strong {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.nfc-list span { color: var(--text-dim); font-size: 14.5px; }

/* PHONE + CARD VISUAL */
.nfc-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PHONE — iPhone style premium */
.phone {
  width: 280px;
  height: 580px;
  background: linear-gradient(180deg, #1d1d1f, #050505);
  border-radius: 46px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 50px 100px -25px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 2px #1d1d1f,
    0 0 0 3px rgba(255, 255, 255, 0.04);
  z-index: 2;
  animation: floatY 7s ease-in-out infinite;
}
.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #050505;
  border-radius: 100px;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-island::after {
  content: '';
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(60, 100, 200, 0.3);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #202124;
}

/* Status bar */
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 0;
  height: 50px;
  font-family: 'SF Pro Text', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #202124;
}
.phone-time { font-variant-numeric: tabular-nums; }
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #202124;
}
.phone-battery {
  width: 24px; height: 11px;
  border: 1px solid #202124;
  border-radius: 3px;
  position: relative;
  padding: 1px;
}
.phone-battery::after {
  content: '';
  position: absolute;
  right: -3px; top: 3px;
  width: 2px; height: 5px;
  background: #202124;
  border-radius: 0 1px 1px 0;
}
.phone-battery span {
  display: block;
  width: 75%;
  height: 100%;
  background: #202124;
  border-radius: 1px;
}

/* App content */
.phone-app {
  flex: 1;
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phone-google-logo {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  display: flex;
  gap: 0;
  line-height: 1;
}

.phone-biz {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f6f6f7;
  border-radius: 16px;
  width: 100%;
  margin-bottom: 22px;
}
.phone-biz-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.phone-biz-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-biz-info strong {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #202124;
}
.phone-biz-info span {
  font-size: 12px;
  color: #5f6368;
}

/* STARS — SVG, single row, perfect */
.phone-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
  width: 100%;
}
.phone-stars .star {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(244, 180, 0, 0.4));
  opacity: 0;
  transform: scale(0.6);
  animation: starPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.phone-stars .star:nth-child(1) { animation-delay: 0.3s; }
.phone-stars .star:nth-child(2) { animation-delay: 0.42s; }
.phone-stars .star:nth-child(3) { animation-delay: 0.54s; }
.phone-stars .star:nth-child(4) { animation-delay: 0.66s; }
.phone-stars .star:nth-child(5) { animation-delay: 0.78s; }

@keyframes starPop {
  0% { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  60% { opacity: 1; transform: scale(1.15) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.phone-textbox {
  width: 100%;
  padding: 14px;
  background: #f6f6f7;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-line {
  display: block;
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}
.phone-line.short { width: 65%; }

.phone-btn {
  margin-top: auto;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #4285F4, #356dd9);
  color: #fff;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 8px 20px -6px rgba(66, 133, 244, 0.4);
}

.nfc-card {
  position: absolute;
  width: 220px;
  height: 130px;
  background: linear-gradient(135deg, #1a1208 0%, #0a0a0a 100%);
  border: 1px solid rgba(244, 180, 0,0.3);
  border-radius: 14px;
  padding: 16px;
  bottom: 10%;
  right: 4%;
  transform: rotate(-12deg);
  z-index: 3;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-8px); }
}
.nfc-card-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nfc-card-logo span { color: var(--text); font-weight: 500; margin-left: 2px; }
.nfc-card-icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  color: var(--gold-light);
}
.nfc-card-text {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.wave {
  position: absolute;
  bottom: 25%;
  right: 22%;
  z-index: 1;
  width: 60px;
  height: 60px;
}
.wave span {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: waveExpand 2.4s ease-out infinite;
}
.wave span:nth-child(2) { animation-delay: 0.8s; }
.wave span:nth-child(3) { animation-delay: 1.6s; }
@keyframes waveExpand {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product:hover {
  border-color: rgba(244, 180, 0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(244, 180, 0,0.15);
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  background-color: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: transform var(--transition);
}
.product:hover .product-img {
  transform: scale(1.04);
}
.product-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product h3 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.product p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 18px;
  flex: 1;
}
.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  align-self: flex-start;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product:hover .product-link { gap: 10px; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.process-step:hover {
  border-color: rgba(244, 180, 0,0.3);
  transform: translateY(-4px);
}
.process-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  width: 40px; height: 40px;
  border: 1px solid rgba(244, 180, 0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(244, 180, 0,0.06);
}
.process-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p { color: var(--text-dim); font-size: 14.5px; }

/* (Final CTA section removed — replaced by booking form) */

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 380px;
  margin-top: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.social-icon:hover {
  color: var(--gold-light);
  background: rgba(244, 180, 0, 0.08);
  border-color: rgba(244, 180, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px var(--gold-glow);
}
.social-icon svg { transition: transform var(--transition); }
.social-icon:hover svg { transform: scale(1.1); }
.footer-logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 6px;
}
.logo-mark.big {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.logo-mark.big span { color: var(--text); font-weight: 600; margin-left: 4px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-cols h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-cols a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-mini {
  color: var(--gold);
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity var(--transition), text-shadow var(--transition);
}
.footer-mini:hover {
  opacity: 1;
  text-shadow: 0 0 12px var(--gold-glow);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
  animation: pulseRing 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grids */
.problem-grid [data-reveal]:nth-child(1).in-view { transition-delay: 0s; }
.problem-grid [data-reveal]:nth-child(2).in-view { transition-delay: 0.1s; }
.problem-grid [data-reveal]:nth-child(3).in-view { transition-delay: 0.2s; }

.benefit-grid .benefit { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background var(--transition); }
.benefit-grid.in-view .benefit { opacity: 1; transform: translateY(0); }
.benefit-grid.in-view .benefit:nth-child(1) { transition-delay: 0s; }
.benefit-grid.in-view .benefit:nth-child(2) { transition-delay: 0.08s; }
.benefit-grid.in-view .benefit:nth-child(3) { transition-delay: 0.16s; }
.benefit-grid.in-view .benefit:nth-child(4) { transition-delay: 0.24s; }
.benefit-grid.in-view .benefit:nth-child(5) { transition-delay: 0.32s; }
.benefit-grid.in-view .benefit:nth-child(6) { transition-delay: 0.40s; }

.product-grid [data-reveal]:nth-child(1).in-view { transition-delay: 0s; }
.product-grid [data-reveal]:nth-child(2).in-view { transition-delay: 0.1s; }
.product-grid [data-reveal]:nth-child(3).in-view { transition-delay: 0.2s; }
.product-grid [data-reveal]:nth-child(4).in-view { transition-delay: 0.3s; }

.process-grid [data-reveal]:nth-child(1).in-view { transition-delay: 0s; }
.process-grid [data-reveal]:nth-child(2).in-view { transition-delay: 0.1s; }
.process-grid [data-reveal]:nth-child(3).in-view { transition-delay: 0.2s; }
.process-grid [data-reveal]:nth-child(4).in-view { transition-delay: 0.3s; }

/* Selection */
::selection {
  background: var(--gold);
  color: #1a1208;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* =========================================================
   PRODUCT DETAIL PAGES
   ========================================================= */
.product-page main { padding-top: 100px; }

.breadcrumb {
  padding: 18px 28px;
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--text-dim); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span:last-child { color: var(--text); }

.product-hero {
  padding: 40px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(244, 180, 0, 0.08), transparent 70%),
    var(--bg);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.product-hero-media {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(244,180,0,0.08);
  background: var(--surface);
}
.product-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease);
}
.product-hero-media:hover .product-hero-img { transform: scale(1.04); }

.product-hero-info .kicker { margin-bottom: 18px; }
.product-hero-info .h-display { text-align: left; margin-bottom: 22px; }
.product-hero-info .lede {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.product-quick {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-quick li {
  color: var(--text);
  font-size: 15px;
  padding-left: 4px;
}

.product-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Product sections */
.product-section { padding: 100px 0; }
.product-section.alt { background: var(--bg-2); }

.product-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .product-section-grid { grid-template-columns: 1fr; gap: 30px; }
}
.product-section-grid .h-display { text-align: left; margin-bottom: 0; }
.product-section-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.how-step:hover {
  border-color: rgba(244, 180, 0, 0.3);
  transform: translateY(-4px);
}
.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px -6px var(--gold-glow);
}
.how-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* Quality grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .quality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .quality-grid { grid-template-columns: 1fr; } }

.quality-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.quality-item:hover {
  border-color: rgba(244, 180, 0, 0.3);
  transform: translateY(-3px);
}
.quality-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.quality-item p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* Warning section */
.warning-section { background: var(--bg-2); }
.warning-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 50px;
  background:
    radial-gradient(ellipse 700px 400px at 0% 0%, rgba(234, 67, 53, 0.15), transparent 70%),
    linear-gradient(135deg, rgba(234, 67, 53, 0.06), rgba(244, 180, 0, 0.04));
  border: 1px solid rgba(234, 67, 53, 0.3);
  border-radius: var(--radius-lg);
}
@media (max-width: 740px) {
  .warning-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 18px; }
}
.warning-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea4335, #f57c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(234, 67, 53, 0.4);
  flex-shrink: 0;
}
.warning-body .kicker {
  color: #f57c00;
  border-color: rgba(245, 124, 0, 0.4);
  background: rgba(245, 124, 0, 0.08);
  margin-bottom: 14px;
}
.warning-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.warning-body > p {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.warning-list {
  list-style: none;
  margin-bottom: 22px;
}
.warning-list li {
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(234, 67, 53, 0.15);
  position: relative;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.warning-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 12px;
  color: #ea4335;
  font-weight: 700;
}
.warning-list li:last-child { border-bottom: 1px solid rgba(234, 67, 53, 0.15); }
.warning-list strong { color: var(--text); font-weight: 600; }
.warning-bottom {
  background: rgba(244, 180, 0, 0.08);
  border: 1px solid rgba(244, 180, 0, 0.3);
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.warning-bottom strong { color: var(--gold-light); }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: rgba(244, 180, 0, 0.3); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* Product final CTA */
.product-cta {
  background:
    radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(244, 180, 0, 0.1), transparent 70%),
    var(--bg);
  padding: 80px 0 100px;
}
.product-cta .cta-card {
  text-align: center;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  max-width: 800px;
  margin: 0 auto;
}
.product-cta .cta-card p {
  color: var(--text-dim);
  margin: 0 auto 28px;
  max-width: 500px;
}
.product-cta .cta-card .h-display { margin-bottom: 18px; margin-top: 18px; }
.product-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Related products */
.related-products { background: var(--bg-2); }
.related-products .product-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .related-products .product-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CART SYSTEM
   ========================================================= */

/* Nav cart icon */
.nav-cart {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  transition: all var(--transition);
  margin-right: 4px;
}
.nav-cart:hover {
  color: var(--gold-light);
  border-color: rgba(244, 180, 0, 0.4);
  background: rgba(244, 180, 0, 0.08);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px var(--gold-glow);
  border: 2px solid var(--bg);
}
@media (max-width: 880px) {
  .nav-cart { margin-right: 0; }
}

/* =========================================================
   PRODUCT PRICE BLOCK — PREMIUM
   ========================================================= */
.product-price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 32px 0 22px;
  padding: 22px 26px;
  background:
    radial-gradient(ellipse 400px 200px at 0% 50%, rgba(244, 180, 0, 0.12), transparent 70%),
    linear-gradient(135deg, rgba(244, 180, 0, 0.06), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(244, 180, 0, 0.15);
}
.product-price::before {
  content: 'ÇMIMI';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.55;
}
.product-price::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  border-radius: 3px 0 0 3px;
}
.product-price-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 46px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.product-price-meta {
  font-size: 13.5px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* =========================================================
   QUANTITY CONTROL — PREMIUM
   ========================================================= */
.product-cta-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.qty-control {
  display: inline-flex !important;
  align-items: stretch !important;
  height: 58px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 100px !important;
  overflow: hidden !important;
  padding: 0 !important;
  flex-shrink: 0;
}
.qty-btn {
  width: 50px !important;
  height: 100% !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  color: var(--text) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s, color 0.2s !important;
  user-select: none;
}
.qty-btn:hover { background: rgba(244, 180, 0, 0.15) !important; color: var(--gold-light) !important; }
.qty-btn:active { background: rgba(244, 180, 0, 0.25) !important; }

.qty-input {
  width: 50px !important;
  height: 100% !important;
  background: transparent !important;
  border: none !important;
  color: var(--text) !important;
  text-align: center !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
.qty-input:focus { color: var(--gold-light) !important; }

/* Add to cart button override (extra punch) */
.add-to-cart {
  flex: 1 1 220px !important;
  justify-content: center !important;
  height: 58px !important;
  font-size: 15.5px !important;
  letter-spacing: 0.02em !important;
}
.add-to-cart svg { width: 20px; height: 20px; }

.product-call-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-mute);
  transition: color var(--transition);
}
.product-call-link:hover { color: var(--gold-light); }

@media (max-width: 540px) {
  .product-cta-row {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .qty-control {
    width: 100% !important;
    height: 54px !important;
    justify-content: space-between !important;
  }
  .qty-btn { width: 64px !important; }
  .qty-input {
    flex: 1 !important;
    width: auto !important;
  }
  .add-to-cart {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: 0 24px !important;
    font-size: 15px !important;
    line-height: 1 !important;
  }
  .add-to-cart svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Cart Toast Notification */
.cart-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(244, 180, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
  transform: translateX(420px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cart-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.cart-toast-msg {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}
.cart-toast-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  transition: color var(--transition);
}
.cart-toast-link:hover { color: var(--gold); }
@media (max-width: 540px) {
  .cart-toast { right: 12px; left: 12px; max-width: none; top: 80px; }
  .cart-toast.show { transform: translateY(0); }
}

/* =========================================================
   CHECKOUT PAGE
   ========================================================= */
.checkout { padding: 120px 0 80px; min-height: 70vh; }
.checkout .breadcrumb { padding: 0 0 24px; }
.checkout .section-head { text-align: left; max-width: none; margin-bottom: 40px; }
.checkout .section-head .h-display { text-align: left; }
.checkout .section-head .section-sub { margin: 0; }
.checkout-h {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) { .checkout-grid { grid-template-columns: 1fr; } }

/* Cart items list — IMAGE TOP, INFO BELOW */
.cart-list { display: flex; flex-direction: column; gap: 18px; }
.cart-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  overflow: hidden;
}
.cart-item:hover { border-color: rgba(244, 180, 0, 0.3); }

.cart-item-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
@media (max-width: 540px) { .cart-item-img { aspect-ratio: 4/3; } }
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.cart-item:hover .cart-item-img img { transform: scale(1.03); }

.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  min-width: 0;
}
@media (max-width: 540px) { .cart-item-body { padding: 18px 18px; } }

.cart-item-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cart-item-name:hover { color: var(--gold-light); }

.cart-item-price {
  font-size: 14px;
  color: var(--text-dim);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.cart-item .qty-control { height: 44px !important; }
.cart-item .qty-btn { width: 40px !important; font-size: 18px !important; }
.cart-item .qty-input { width: 42px !important; font-size: 15px !important; }

/* Color selector ne cart items */
.cart-item-colors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
}
.cart-item-colors.attention {
  border-color: rgba(244, 180, 0, 0.5);
  background: rgba(244, 180, 0, 0.06);
  animation: attentionPulse 2s ease-in-out infinite;
}
@keyframes attentionPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 180, 0, 0); }
  50% { box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.15); }
}
.color-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.color-required {
  color: var(--gold);
  font-weight: 700;
}
.color-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.color-pill:hover {
  border-color: var(--gold);
  background: rgba(244, 180, 0, 0.08);
}
.color-pill.active {
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.18), rgba(244, 180, 0, 0.08));
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 12px -4px var(--gold-glow);
}
.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.color-swatch.dark { background: #0a0a0a; border-color: rgba(255, 255, 255, 0.25); }
.color-swatch.light { background: #f5f5f0; border-color: rgba(0, 0, 0, 0.15); }
.color-pill.active .color-swatch { box-shadow: 0 0 0 2px var(--gold); }
.cart-item .qty-control { height: 40px; }
.cart-item .qty-btn { width: 34px; font-size: 16px; }
.cart-item .qty-input { width: 36px; font-size: 14px; }

.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--text-mute);
  font-size: 13px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all var(--transition);
}
.cart-remove:hover { color: #ea4335; background: rgba(234, 67, 53, 0.08); }

.cart-item-total {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  padding: 14px 24px 18px;
  text-align: right;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  background-color: rgba(244, 180, 0, 0.04);
}
.cart-item-total::before {
  content: 'Total: ';
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  -webkit-text-fill-color: var(--text-mute);
  margin-right: 8px;
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cart-empty-icon {
  font-size: 72px;
  opacity: 0.4;
  margin-bottom: 8px;
}
.cart-empty h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.cart-empty p { color: var(--text-dim); margin-bottom: 18px; }

/* Checkout sidebar (form + summary) */
.checkout-sidebar { position: sticky; top: 100px; }
@media (max-width: 880px) { .checkout-sidebar { position: static; } }

.order-form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.order-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
@media (max-width: 540px) { .order-form { padding: 22px; } }

.order-form .form-field { margin-bottom: 14px; }
.order-form .checkout-h { margin-bottom: 18px; }

/* Order summary */
.order-summary {
  margin: 22px 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text-dim);
}
.summary-row strong { color: var(--text); font-family: 'Sora', sans-serif; font-weight: 600; }
.summary-row.total {
  border-top: 1px solid var(--border-strong);
  padding-top: 14px;
  margin-top: 6px;
}
.summary-row.total span { color: var(--text); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.summary-row.total strong {
  font-size: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thank-you {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 1000px 600px at 50% 30%, rgba(244, 180, 0, 0.1), transparent 70%),
    var(--bg);
}
.thank-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thank-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@media (max-width: 740px) { .thank-card { padding: 40px 26px; } }

.thank-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px -8px var(--gold-glow);
  animation: checkPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thank-card .h-display { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
.thank-lede { color: var(--text-dim); font-size: 17px; line-height: 1.6; margin-bottom: 36px; }

.thank-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  border: 1px solid var(--border);
}
@media (max-width: 540px) { .thank-info { grid-template-columns: 1fr; } }
.thank-info-item { display: flex; flex-direction: column; gap: 4px; }
.thank-info-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.thank-info-val {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
}

.thank-steps {
  text-align: left;
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(244, 180, 0, 0.04);
  border: 1px solid rgba(244, 180, 0, 0.2);
  border-radius: var(--radius);
}
.thank-steps h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.thank-steps ol {
  list-style: none;
  counter-reset: thank-counter;
  padding: 0;
}
.thank-steps li {
  counter-increment: thank-counter;
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.thank-steps li::before {
  content: counter(thank-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #1a1208;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.thank-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.thank-foot {
  font-size: 13.5px;
  color: var(--text-mute);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.thank-foot a { font-weight: 600; }

/* =========================================================
   WOW MICRO-INTERACTIONS
   ========================================================= */

/* Shine effect on cards (cursor-follow gradient) */
.product, .tour-tile, .price-card, .benefit {
  --shine-x: 50%;
  --shine-y: 50%;
  transition: transform 0.5s var(--ease), box-shadow var(--transition), border-color var(--transition);
}
.product::after, .price-card::after, .benefit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 250px at var(--shine-x) var(--shine-y), rgba(244, 180, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.product:hover::after, .price-card:hover::after, .benefit:hover::after {
  opacity: 1;
}

/* Make sure product/benefit have positioning for ::after */
.product, .price-card, .benefit { position: relative; }

/* Button press effect */
.btn:active { transform: scale(0.97) !important; transition: transform 0.1s ease; }

/* Smooth letter reveal on H1 */
.display {
  animation: heroTitleFade 1.1s var(--ease) 0.3s both;
}
@keyframes heroTitleFade {
  from { opacity: 0; transform: translateY(20px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.lede {
  animation: heroTitleFade 1.1s var(--ease) 0.5s both;
}
.hero-cta {
  animation: heroTitleFade 1.1s var(--ease) 0.7s both;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
