/* ============================================================
   Simply Laser NY — v2 Design System
   Preview build — /preview-v2/css/v2.css
   ============================================================ */

/* ─── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:        #7E639E;
  --primary-dark:   #6B4F88;
  --secondary:      #E8E1F0;
  --bg:             #FAF7F9;
  --text:           #2E2A32;
  --text-light:     #6B6570;
  --accent:         #C9B2D8;
  --gradient:       linear-gradient(135deg, #7E639E, #B8A3CF);
  --white:          #ffffff;
  --shadow-sm:      0 2px 12px rgba(126,99,158,0.08);
  --shadow-md:      0 8px 32px rgba(126,99,158,0.15);
  --shadow-lg:      0 20px 60px rgba(126,99,158,0.22);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-full:    9999px;
  --t:              0.3s ease;
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none !important; color: inherit; }

/* ─── Skip Link ──────────────────────────────────────────── */
.v2-skip-link {
  position: fixed; top: -100%; left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  background: var(--primary);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  transition: top 0.2s ease;
}
.v2-skip-link:focus {
  top: 0;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ─── Focus Visible ──────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  font-weight: 700 !important;
}

p { color: var(--text-light); margin-bottom: 0; }

/* ─── Navbar ──────────────────────────────────────────────── */
.v2-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}

.v2-navbar.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 48px;
  box-shadow: 0 2px 20px rgba(126,99,158,0.1);
}

.v2-brand img { height: 60px; transition: height var(--t); }
.v2-navbar.scrolled .v2-brand img { height: 48px; }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.v2-nav-links li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  transition: color var(--t);
}

.v2-navbar.scrolled .v2-nav-links li a { color: var(--text); }
.v2-nav-links li a:hover { color: var(--accent) !important; }
.v2-navbar.scrolled .v2-nav-links li a:hover { color: var(--primary) !important; }

.v2-btn-nav {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t);
  display: inline-block;
}
.v2-btn-nav:hover { opacity: 0.88; transform: translateY(-1px); color: white !important; }

.v2-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.v2-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.v2-navbar.scrolled .v2-hamburger span { background: var(--text); }
.v2-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.v2-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.v2-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,247,249,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.v2-mobile-menu.open { display: flex; }
.v2-mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--t);
}
.v2-mobile-menu a:hover { color: var(--primary) !important; }
.v2-mobile-book {
  margin-top: 12px;
  background: var(--gradient);
  color: white !important;
  padding: 16px 44px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700;
}

/* ─── Hero ────────────────────────────────────────────────── */
.v2-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v2-hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.v2-hero-media .hero-img-fallback {
  display: none;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.v2-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(46,42,50,0.6) 0%, rgba(107,79,136,0.5) 100%);
}

.v2-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.v2-hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.v2-hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  margin-bottom: 20px !important;
  line-height: 1.15 !important;
}

.v2-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
}

.v2-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.v2-btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 17px 40px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(126,99,158,0.45);
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
}
.v2-btn-primary:hover {
  opacity: 0.92; transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(126,99,158,0.55);
  color: white !important;
}

.v2-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white) !important;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.65);
  transition: background var(--t), border-color var(--t);
  cursor: pointer;
}
.v2-btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; color: white !important; }

.v2-hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.v2-scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.35);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(0.4); transform-origin: top; }
}

/* ─── Trust Bar ───────────────────────────────────────────── */
.v2-trust-bar {
  background: var(--secondary);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v2-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.v2-trust-icon {
  width: 38px; height: 38px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.v2-trust-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.85rem; }

/* ─── Section Base ────────────────────────────────────────── */
.v2-section { padding: 100px 0; }
.v2-section-alt { background: var(--secondary); }
.v2-section-dark { background: var(--text); }

.v2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.v2-section-header { text-align: center; margin-bottom: 72px; }

.v2-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.v2-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  text-align: center !important;
  margin-bottom: 16px !important;
}

.v2-section-header p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-light);
  text-align: center;
}

.v2-divider {
  width: 56px; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ─── Services ────────────────────────────────────────────── */
.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.v2-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.v2-service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.v2-service-img { height: 230px; overflow: hidden; }
.v2-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.v2-service-card:hover .v2-service-img img { transform: scale(1.06); }

.v2-service-body {
  padding: 28px 28px 32px;
  flex: 1; display: flex; flex-direction: column;
}
.v2-service-body h3 {
  font-size: 1.25rem !important;
  margin-bottom: 10px !important;
  text-align: left !important;
}
.v2-service-body p { font-size: 0.93rem; flex: 1; margin-bottom: 22px; }

.v2-btn-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  color: var(--primary) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--t), color var(--t);
  align-self: flex-start;
}
.v2-btn-outline:hover { background: var(--primary); color: white !important; }

/* ─── Results Gallery ─────────────────────────────────────── */
.v2-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v2-result-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.v2-result-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.v2-result-item:hover img { transform: scale(1.04); }

.v2-result-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,42,50,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.v2-result-item:hover .v2-result-overlay { opacity: 1; }
.v2-result-overlay span {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ─── Benefits / Elite IQ ─────────────────────────────────── */
.v2-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v2-benefits-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
  margin-bottom: 12px !important;
  text-align: left !important;
}
.v2-benefits-content > p {
  font-size: 1rem;
  margin-bottom: 44px;
  color: var(--text-light);
}

.v2-benefits-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 28px;
}

.v2-benefit-item { display: flex; gap: 20px; align-items: flex-start; }

.v2-benefit-icon {
  width: 52px; height: 52px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary);
  transition: background var(--t);
}
.v2-benefit-item:hover .v2-benefit-icon { background: var(--gradient); color: white; }

.v2-benefit-text h4 {
  font-size: 0.98rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  text-align: left !important;
  color: var(--text) !important;
  margin-bottom: 4px !important;
}
.v2-benefit-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.v2-benefits-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.v2-benefits-image-wrap img {
  width: 100%; height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.v2-float-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  min-width: 200px;
}
.v2-float-badge-icon {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.v2-float-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text) !important;
  font-weight: 700;
}
.v2-float-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

/* ─── Testimonials ────────────────────────────────────────── */
.v2-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v2-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.v2-testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.v2-testimonial-img {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.v2-testimonial-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.v2-testimonial-card:hover .v2-testimonial-img img { transform: scale(1.03); }
.v2-testimonial-img-badge {
  position: absolute; top: 16px; right: 16px;
  background: white; border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.v2-google-dot { width: 10px; height: 10px; border-radius: 50%; background: #4285F4; }

.v2-testimonial-body {
  padding: 24px 24px 28px;
  flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.v2-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 2px; }

/* ─── Pricing ─────────────────────────────────────────────── */
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.v2-pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.v2-pricing-card:not(.featured):hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.v2-pricing-card.featured {
  background: var(--gradient);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.v2-pricing-card.featured h3,
.v2-pricing-card.featured p,
.v2-pricing-card.featured li { color: rgba(255,255,255,0.92) !important; }
.v2-pricing-card.featured h3 { color: white !important; }
.v2-pricing-card.featured .v2-price-amount { color: white !important; }

.v2-price-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  background: var(--secondary);
  color: var(--primary);
}
.v2-pricing-card.featured .v2-price-badge {
  background: rgba(255,255,255,0.2); color: white;
}

.v2-pricing-card h3 { font-size: 1.45rem !important; text-align: center !important; margin-bottom: 8px !important; }

.v2-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 16px 0 4px;
  display: block;
}

.v2-price-unit {
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
  display: block;
}

.v2-price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.v2-price-features li {
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  display: flex; gap: 8px; align-items: flex-start;
}
.v2-price-check {
  color: var(--primary);
  flex-shrink: 0; margin-top: 2px; font-size: 0.85rem;
}
.v2-pricing-card.featured .v2-price-check { color: rgba(255,255,255,0.9); }

.v2-btn-price {
  display: block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--t);
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}
.v2-btn-price:hover { background: var(--primary); color: white !important; }

.v2-pricing-card.featured .v2-btn-price {
  border-color: white; color: white !important;
}
.v2-pricing-card.featured .v2-btn-price:hover {
  background: white; color: var(--primary) !important;
}

/* ─── CTA Banner ──────────────────────────────────────────── */
.v2-cta-banner {
  background: var(--gradient);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.v2-cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -15%;
  width: 560px; height: 560px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}
.v2-cta-banner::after {
  content: ''; position: absolute; bottom: -55%; left: -10%;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.v2-cta-banner h2 {
  color: white !important; text-align: center !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  margin-bottom: 16px !important;
  position: relative; z-index: 1;
}
.v2-cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem; margin-bottom: 44px;
  position: relative; z-index: 1;
  text-align: center;
}

.v2-btn-white {
  display: inline-block;
  background: white;
  color: var(--primary) !important;
  padding: 18px 52px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: transform var(--t), box-shadow var(--t);
  position: relative; z-index: 1;
}
.v2-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.2); color: var(--primary) !important; }

/* ─── Location ────────────────────────────────────────────── */
.v2-location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v2-location-map iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  border: 0; display: block;
}

.v2-location-info {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.v2-location-info h3 {
  font-size: 2rem !important; text-align: left !important;
  margin-bottom: 4px !important;
}

.v2-location-row { display: flex; align-items: flex-start; gap: 16px; }
.v2-location-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.v2-location-label {
  font-family: 'Inter', sans-serif; font-size: 0.8rem;
  font-weight: 700; color: var(--text); display: block; margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.v2-location-row p { font-size: 0.92rem; margin: 0; color: var(--text-light); }

.v2-hours-table {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 16px;
  font-size: 0.88rem; font-family: 'Inter', sans-serif;
}
.v2-hours-table .day { font-weight: 600; color: var(--text); }
.v2-hours-table .time { color: var(--text-light); }

.v2-btn-directions {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: white !important;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  transition: opacity var(--t), transform var(--t);
  width: fit-content;
}
.v2-btn-directions:hover { opacity: 0.88; transform: translateY(-1px); color: white !important; }

/* ─── Contact Form Section ────────────────────────────────── */
.v2-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  box-shadow: var(--shadow-md);
}
.v2-contact-wrap h2 {
  text-align: center !important;
  font-size: 2.2rem !important;
  margin-bottom: 8px !important;
}
.v2-contact-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 44px;
  font-size: 0.95rem;
}

.v2-field { margin-bottom: 24px; }
.v2-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v2-input, .v2-select, .v2-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none; appearance: none;
}
.v2-input:focus, .v2-select:focus, .v2-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(126,99,158,0.1);
}
.v2-textarea { resize: vertical; min-height: 120px; }

.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Footer ──────────────────────────────────────────────── */
.v2-footer {
  background: var(--text);
  padding: 64px 0 96px;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.v2-footer-brand-logo {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.v2-footer-brand p {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 270px;
}

.v2-footer h5 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  text-align: left !important;
  margin-bottom: 20px !important;
}

.v2-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.v2-footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82) !important;
  transition: color var(--t);
  display: inline-block;
}
.v2-footer-links a:hover { color: var(--accent) !important; }

/* By Appointment Only notice — subtle & elegant */
.v2-appt-notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}
.v2-appt-notice i { font-size: 0.7rem; }
/* Footer variant — lighter for dark bg */
.v2-footer .v2-appt-notice {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ─── Floating elements ───────────────────────────────────── */
.v2-float-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  background: var(--gradient);
  color: white !important;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(126,99,158,0.5);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; align-items: center; gap: 8px;
}
.v2-float-book:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(126,99,158,0.6); color: white !important; }

#v2TopBtn {
  display: none;
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  align-items: center; justify-content: center;
}
#v2TopBtn.show { display: flex; }
#v2TopBtn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ─── Modals (reuse existing logic) ──────────────────────── */
.v2-modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.5);
  align-items: center; justify-content: center;
}
.v2-modal-backdrop.open { display: flex; }
.v2-modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 500px; width: 90%;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.v2-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text-light);
  line-height: 1;
  transition: color var(--t);
}
.v2-modal-close:hover { color: var(--text); }

/* ─── Pricing Breadcrumb ──────────────────────────────────── */
.v2-pricing-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.v2-pbc-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: all var(--t);
  cursor: default;
}
.v2-pbc-step .step-price {
  font-weight: 700; font-size: 0.9rem; color: var(--primary);
}
.v2-pbc-step .step-label { font-size: 0.75rem; letter-spacing: 0.04em; }
.v2-pbc-arrow {
  color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
}

/* ─── Bundle Card Arrows ──────────────────────────────────── */
.v2-bundle-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}
.v2-bundle-row {
  background: rgba(126,99,158,0.07);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  transition: background var(--t);
}
.v2-bundle-row:hover { background: rgba(126,99,158,0.14); }
.v2-bundle-arrow-icon {
  color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 1px;
}
.v2-bundle-row-name {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--text); display: block; margin-bottom: 4px;
}
.v2-bundle-crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 3px;
  font-size: 0.75rem; color: var(--text-light); font-family: 'Inter', sans-serif;
}
.v2-bundle-crumb .crumb-sep { font-size: 0.65rem; color: var(--accent); }

/* ─── Google Reviews Collapse ────────────────────────────── */
.sk-ww-google-reviews { max-width: 100%; overflow: hidden; }
.v2-reviews-shell {
  position: relative;
  max-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: max-height 0.55s ease;
}
.v2-reviews-shell.expanded { max-height: 9999px; }
.v2-reviews-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--secondary));
  pointer-events: none;
  transition: opacity 0.3s;
}
.v2-reviews-shell.expanded .v2-reviews-fade { opacity: 0; }
.v2-reviews-toggle-wrap { text-align: center; margin-top: 18px; }

/* ─── Page Hero (compact) ────────────────────────────────── */
.v2-page-hero {
  position: relative;
  height: 46vh; min-height: 300px;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 0;
}
.v2-page-hero-bg { position: absolute; inset: 0; }
.v2-page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.v2-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(46,42,50,0.65), rgba(107,79,136,0.5));
}
.v2-page-hero-content { position: relative; z-index: 2; }
.v2-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.v2-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t); }
.v2-breadcrumb a:hover { color: white !important; }
.v2-breadcrumb-sep { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.v2-page-hero h1 {
  color: white !important; text-align: left !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  line-height: 1.1 !important;
}
.v2-page-hero .v2-hero-eyebrow { margin-bottom: 10px; }

/* ─── Pricing Tabs ────────────────────────────────────────── */
.v2-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 52px;
  border-bottom: none;
}
.v2-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 22px 16px 18px;
  background: var(--secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.22s ease;
}
.v2-tab-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(126,99,158,0.14);
}
.v2-tab-btn.active {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(126,99,158,0.28);
  transform: translateY(-3px);
}
.v2-tab-icon {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 2px;
  transition: color 0.2s;
}
.v2-tab-btn.active .v2-tab-icon { color: rgba(255,255,255,0.9); }
.v2-tab-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.v2-tab-btn.active .v2-tab-name { color: #fff; }
.v2-tab-from {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}
.v2-tab-btn.active .v2-tab-from { color: rgba(255,255,255,0.85); }
.v2-tab-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(126,99,158,0.1);
  padding: 2px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.v2-tab-btn.active .v2-tab-count {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
/* Bundle tab accent */
.v2-tab-btn--bundle .v2-tab-from { color: var(--primary-dark); }
.v2-tab-btn--bundle.active .v2-tab-from { color: rgba(255,255,255,0.85); }

.v2-tab-pane { display: none; }
.v2-tab-pane.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.v2-session-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-bottom: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--secondary);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.v2-session-price {
  padding: 24px 36px;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.v2-session-price + .v2-session-price {
  border-left: 1.5px solid var(--secondary);
}
.v2-session-label {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light);
}
.v2-session-amount {
  font-family: 'Playfair Display', serif; font-size: 2.6rem;
  font-weight: 700; color: var(--primary); line-height: 1;
}
.v2-session-sub {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--text-light);
}
.v2-session-cta {
  padding: 24px 36px;
  display: flex; align-items: center; margin-left: auto;
}

.v2-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.v2-area-card {
  background: var(--white);
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: default;
}
.v2-area-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.v2-area-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--secondary);
}
.v2-area-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.v2-area-card:hover .v2-area-card-img img { transform: scale(1.06); }
.v2-area-card-name {
  padding: 10px 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text); text-align: center;
  line-height: 1.3;
}

/* ─── Bundle Pricing Cards ────────────────────────────────── */
.v2-bundle-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v2-bundle-pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  border: 1.5px solid var(--secondary);
}
.v2-bundle-pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.v2-bundle-card-header {
  background: var(--gradient);
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.v2-bundle-card-header h3 {
  color: white !important; font-size: 1.35rem !important;
  text-align: left !important; margin: 0 !important;
}
.v2-bundle-card-price {
  text-align: right; flex-shrink: 0;
}
.v2-bundle-card-price .bcp-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: white;
  line-height: 1; display: block;
}
.v2-bundle-card-price .bcp-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif; display: block; margin-top: 2px;
}
.v2-bundle-card-body {
  padding: 24px 32px 32px;
  flex: 1; display: flex; flex-direction: column; gap: 16px;
}
.v2-bundle-includes-label {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light);
}
.v2-bundle-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.v2-bundle-tag {
  background: var(--secondary); border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: 'Inter', sans-serif; font-size: 0.8rem;
  color: var(--primary); font-weight: 600;
}

/* ─── Page Hero utilities ────────────────────────────────── */
.v2-page-hero { align-items: center; }
.v2-breadcrumb-nav {
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.v2-breadcrumb-nav a { color: rgba(255,255,255,0.65); transition: color var(--t); }
.v2-breadcrumb-nav a:hover { color: #fff !important; }
.v2-breadcrumb-nav i { font-size: 0.6rem; vertical-align: middle; margin: 0 4px; }
.v2-page-hero-title {
  font-family: 'Playfair Display', serif !important;
  color: #fff !important; font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 700 !important; text-align: center !important;
  line-height: 1.1 !important; margin-bottom: 14px !important;
}
.v2-page-hero-sub {
  font-family: 'Inter', sans-serif; font-size: 1.05rem;
  color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto;
}

/* ─── FAQ Accordion ───────────────────────────────────────── */
.v2-faq-item {
  border-bottom: 1.5px solid var(--secondary);
  margin-bottom: 0;
}
.v2-faq-item:first-child { border-top: 1.5px solid var(--secondary); }
.v2-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text); background: transparent; border: none; cursor: pointer;
  text-align: left; transition: color var(--t);
}
.v2-faq-btn:hover, .v2-faq-btn.open { color: var(--primary); }
.v2-faq-icon {
  flex-shrink: 0; font-size: 1.1rem; color: var(--primary);
  transition: transform var(--t);
}
.v2-faq-body {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text-light); line-height: 1.75;
  padding: 0 0 24px 0;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .v2-benefits-layout { grid-template-columns: 1fr; gap: 56px; }
  .v2-benefits-image-wrap { max-height: 400px; }
  .v2-benefits-image-wrap img { height: 400px; }
  .v2-location-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .v2-services-grid { grid-template-columns: 1fr 1fr; }
  .v2-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .v2-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .v2-pricing-card.featured { transform: none; }
  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .v2-navbar { padding: 16px 24px; }
  .v2-navbar.scrolled { padding: 12px 24px; }
  .v2-nav-links { display: none; }
  .v2-hamburger { display: flex; }
  .v2-container { padding: 0 24px; }
  .v2-section { padding: 72px 0; }
  .v2-bundle-pricing-grid { grid-template-columns: 1fr; }
  .v2-session-bar { flex-direction: column; }
  .v2-session-price + .v2-session-price { border-left: none; border-top: 1.5px solid var(--secondary); }
  .v2-session-cta { margin-left: 0; padding-top: 0; }
  .v2-tabs-nav { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-tab-btn { padding: 16px 12px 14px; }
  .v2-tab-icon { font-size: 1.2rem; }
  .v2-tab-name { font-size: 0.85rem; }
  .v2-page-hero { height: 38vh; padding-bottom: 40px; }
  .v2-trust-bar { gap: 20px; padding: 18px 24px; }
  .v2-services-grid { grid-template-columns: 1fr; }
  .v2-results-grid { grid-template-columns: 1fr; }
  .v2-testimonials-grid { grid-template-columns: 1fr; }
  .v2-location-info { padding: 36px 28px; }
  .v2-contact-wrap { padding: 36px 28px; }
  .v2-form-row { grid-template-columns: 1fr; }
  .v2-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .v2-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .v2-navbar { padding: 12px 16px; }
  .v2-navbar.scrolled { padding: 10px 16px; }
  .v2-container { padding: 0 16px; }
  .v2-hero-ctas { flex-direction: column; align-items: center; }
  .v2-hero-ctas a, .v2-hero-ctas button { width: 100%; max-width: 300px; text-align: center; }
  .v2-trust-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 14px 16px; }
  .v2-cta-banner { padding: 64px 0; }
  .v2-cta-banner::before { width: 280px; height: 280px; right: -20%; }
  .v2-cta-banner::after  { width: 210px; height: 210px; left: -15%; }
  .v2-btn-white { padding: 16px 36px; }
  .v2-location-info { padding: 28px 20px; }
  .v2-contact-wrap { padding: 28px 20px; }
  .v2-float-book { right: 16px; bottom: 16px; padding: 12px 20px; font-size: 0.82rem; }
  #v2TopBtn { left: 16px; bottom: 16px; }
  .v2-section { padding: 56px 0; }
}

/* ── Results Carousel ── */
.v2-results-carousel-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}
.v2-carousel-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.v2-carousel-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  bottom: 0; left: 0; right: 0;
  padding: 48px 28px 24px;
  text-align: left;
}
.v2-carousel-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.v2-carousel-ctrl {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(6px);
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  color: #fff !important;
  font-size: 1.1rem;
}
.v2-carousel-ctrl:hover { background: rgba(255,255,255,0.28) !important; }
.carousel-indicators [data-bs-target] {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  border: none !important;
  opacity: 0.45;
}
.carousel-indicators .active { opacity: 1 !important; }
@media (max-width: 768px) {
  .v2-carousel-img { height: 320px; }
}

/* ── Instagram Feed ── */
.v2-ig-feed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */
.v2-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(30, 26, 34, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.v2-cookie-banner.show { transform: translateY(0); }
.v2-cookie-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.v2-cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v2-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.v2-cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.v2-cookie-accept:hover { background: var(--primary-dark); transform: translateY(-1px); }
.v2-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.v2-cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.35); }
@media (max-width: 640px) {
  .v2-cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .v2-cookie-actions { width: 100%; }
  .v2-cookie-accept, .v2-cookie-decline { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════
   PRINT STYLESHEET — PRICING PAGE
══════════════════════════════════════════════ */
@media print {
  /* Page setup */
  @page { size: A4; margin: 2cm; }

  /* Print header with business info */
  body::before {
    content: "Simply Laser NY  ·  27-10 23rd Ave, Astoria, NY 11105  ·  (347) 507-0770  ·  simplylaserny.com";
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 8.5pt;
    color: #888;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  /* Hide non-content elements */
  .v2-navbar, .v2-mobile-menu, .v2-page-hero,
  .v2-tabs-nav, .v2-session-cta,
  .v2-cta-banner, .v2-float-book, #v2TopBtn,
  .v2-footer, .v2-cookie-banner,
  .v2-btn-price, .v2-btn-primary, .v2-btn-outline,
  .v2-btn-ghost, .v2-breadcrumb-nav,
  [data-aos] { display: none !important; }

  /* Force-show all tab panes */
  .v2-tab-pane {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    page-break-inside: avoid;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  /* Reset backgrounds & colors */
  *, *::before, *::after { background: white !important; color: black !important; box-shadow: none !important; }
  .v2-section, .v2-section-alt { padding: 12px 0 !important; }
  .v2-section-header { margin-bottom: 12px; }
  .v2-section-header h2 { font-size: 16pt; }
  .v2-eyebrow { display: none; }
  .v2-divider { display: none; }

  /* Session price bar */
  .v2-session-bar {
    display: flex !important;
    border: 1.5px solid #ccc !important;
    border-radius: 6px !important;
    padding: 12px !important;
    margin-bottom: 12px;
    page-break-inside: avoid;
  }
  .v2-session-amount { font-size: 20pt !important; font-weight: 700; }

  /* Area pills */
  .v2-areas-grid { gap: 6px !important; }
  .v2-area-pill {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    font-size: 8pt;
  }
  .v2-area-img { width: 28px !important; height: 28px !important; }

  /* Bundle cards */
  .v2-bundle-pricing-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .v2-bundle-pricing-card {
    border: 1.5px solid #ccc !important;
    border-radius: 6px !important;
    page-break-inside: avoid;
  }
  .v2-bundle-card-header { padding: 10px 14px !important; border-bottom: 1px solid #ddd !important; }
  .v2-bundle-tag { border: 1px solid #ccc !important; font-size: 7.5pt; padding: 2px 6px !important; }

  /* Section titles for each tier */
  .v2-tab-pane::before {
    display: block;
    font-weight: 700;
    font-size: 13pt;
    margin-bottom: 8px;
  }
  #tab-small::before  { content: "Small Areas"; }
  #tab-medium::before { content: "Medium Areas"; }
  #tab-large::before  { content: "Large Areas"; }
  #tab-bundles::before { content: "Bundle Packages"; }
}
