@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   CRISTINA GUEDEA — DESIGN SYSTEM
   Inspired by Apple.com visual language
   ============================================= */

:root {
  --white: #FFFFFF;
  --off-white: #FBFBFD;
  --light-gray: #F5F5F7;
  --mid-gray: #86868B;
  --dark-gray: #1D1D1F;
  --black: #000000;
  --accent: #00B2A9;
  --accent-light: #48C4B7;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

/* =============================================
   NAVBAR — Luxury centered-logo, transparent
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 60px);
  background: transparent;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled .nav-inner {
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 120px; /* Much larger logo as requested */
  width: auto;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled .nav-logo img {
  height: 80px;
  filter: brightness(0.2);
}

/* Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-cta-mobile {
  display: none;
}

/* Actions (CTA + Hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Toggle - Hidden by default on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark-gray);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navbar link colors: white on transparent, dark on scrolled */
.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0.8;
}

.navbar.scrolled .nav-link {
  color: var(--dark-gray);
  opacity: 0.7;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
}

/* CTA */
.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.65rem 1.8rem;
  border-radius: 100px;
  border: none;
  transition: all 0.4s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(0, 178, 169, 0.3);
  will-change: transform, box-shadow;
}

/* =============================================
   HERO — Cinematic, immersive, luxury
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 30s linear;
}

.hero-section:hover .hero-bg img {
  transform: scale(1.15);
}

/* Gradient overlay for depth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 90px 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 1.1rem 3rem;
  border-radius: 100px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 178, 169, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   SOCIAL PROOF BAR — Responsive & Clean
   ============================================= */
.social-proof-bar {
  background: var(--black);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.social-proof-bar .panel-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

/* Vertical separators on desktop */
.social-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  height: 20px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .social-proof-bar {
    padding: 2.5rem 1.5rem;
  }
  .social-proof-bar .panel-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .social-item {
    font-size: 0.9rem;
  }
  .social-item:not(:last-child)::after {
    display: none;
  }
}

/* =============================================
   SECTION SYSTEM — Apple-style panels
   ============================================= */
.panel {
  padding: clamp(80px, 12vh, 160px) clamp(20px, 5vw, 80px);
}

.panel-dark {
  background: var(--black);
  color: var(--white);
}

.panel-light {
  background: var(--light-gray);
  color: var(--dark-gray);
}

.panel-white {
  background: var(--white);
  color: var(--dark-gray);
}

.panel-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 650px;
  line-height: 1.7;
  opacity: 0.75;
}

.section-subtitle.center { margin: 0 auto; }

/* =============================================
   SERVICES GRID — Card hover reveal
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 32px;
  padding: 1.2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple);
  will-change: transform, box-shadow;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1.5rem;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card-content {
  padding: 0 0.8rem 0.5rem;
  background: transparent;
  color: var(--dark-gray);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.service-card-content p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.4s var(--ease-out);
}

.service-card:hover .service-card-arrow {
  gap: 0.8rem;
}

/* =============================================
   SPLIT SECTION — Image + Text side by side
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  border-radius: 24px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.split-image:hover img {
  transform: scale(1.04);
}

.split-text {
  max-width: 520px;
}

.split-text .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* =============================================
   REVIEWS GRID
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease-apple), background 0.5s var(--ease-apple), border-color 0.5s var(--ease-apple);
  will-change: transform, background;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.feature-list {
  margin-top: 2rem;
}

.feature-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1.05rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.panel-dark .feature-list li {
  border-bottom-color: rgba(255,255,255,0.08);
}

/* =============================================
   BUTTONS (General)
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-fill {
  background: var(--accent);
  color: var(--white);
}

.btn-fill:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 178, 169, 0.3);
}

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

.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-dark {
  background: var(--dark-gray);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* =============================================
   BEFORE / AFTER SLIDER
   ============================================= */
.ba-container {
  margin-bottom: 6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ba-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  letter-spacing: -0.01em;
}

.ba-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-container {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  z-index: 10;
}

.ba-before-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

.ba-slider-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.ba-slider-btn {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 30;
}

.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 15;
}

.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

/* =============================================
   PRICING TABLE — Clean, minimal
   ============================================= */
.price-table {
  max-width: 720px;
  margin: 4rem auto 0;
}

.price-group { margin-bottom: 4rem; }

.price-group-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color, #E5E5E5);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.price-row:last-child { border-bottom: none; }

.price-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
}

.price-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-gray);
  white-space: nowrap;
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-gray);
  background: var(--light-gray);
  border: 1.5px solid transparent;
  border-radius: 14px;
  transition: all 0.3s;
  outline: none;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 178, 169, 0.08);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2386868b' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

/* =============================================
   FOOTER — Clean dark panel
   ============================================= */
.footer {
  background: var(--dark-gray);
  color: var(--mid-gray);
  padding: 5rem clamp(20px, 5vw, 80px) 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.9rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--mid-gray);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  font-size: 0.8rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE — Comprehensive mobile adjustments
   ============================================= */

/* =============================================
   MEDIA QUERIES (At the end for correct override)
   ============================================= */

@media (max-width: 1024px) {
  /* Navbar Mobile Layout */
  .nav-inner {
    height: 80px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-logo img {
    height: 60px; /* Reduced slightly for mobile */
  }

  /* Mobile Overlay Menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: 0.5s var(--ease);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    color: var(--dark-gray);
    font-size: 1.5rem;
    opacity: 1;
    text-align: center;
  }

  .nav-cta {
    display: none; /* Hide original CTA on mobile */
  }
  
  .nav-links .nav-cta-mobile {
    display: block;
    background: var(--accent);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  /* Hero & Headings */
  .hero-section { min-height: 80vh; }
  .hero-content { padding-top: 80px; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .section-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  
  /* Layout */
  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-card { aspect-ratio: 16/9; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  
  .split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .split-reverse { direction: ltr; }
  .split-image img { aspect-ratio: 4/3; }
  .feature-list { justify-content: center; text-align: left; max-width: 350px; margin: 2rem auto; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; margin-bottom: 1.5rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
  .btn-hero { padding: 0.9rem 2rem; font-size: 0.75rem; }
  
  .panel { padding: 4rem 1.5rem; }
  .section-title { font-size: 2rem; line-height: 1.2; }
  .section-subtitle { font-size: 1rem; }
  
  .price-row { font-size: 0.85rem; padding: 1.2rem 0; }
  .price-val { font-size: 0.9rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-desc { margin: 1rem auto; }
  
  .hero-scroll { display: none; } /* Hide on small screens to save space */
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .btn-hero { width: 100%; justify-content: center; }
  
  .price-row { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.3rem; 
  }
  .price-val { 
    color: var(--accent); 
    font-size: 1.1rem; 
  }
}

/* =============================================
   DYNAMIC GOOGLE REVIEWS WIDGET (PREMIUM)
   ============================================= */
#reviews-widget {
  margin-top: 3rem;
  width: 100%;
}

.reviews-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem;
  margin-bottom: 4rem;
  text-align: left;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dashboard-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 2rem;
}

.score-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-heading);
}

.score-stars {
  color: #FFD700;
  font-size: 1.5rem;
  margin: 0.8rem 0;
  letter-spacing: 2px;
}

.score-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 2rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.bar-label {
  width: 45px;
  text-align: right;
  flex-shrink: 0;
}

.bar-bg {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-count {
  width: 35px;
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  width: 24px;
  height: 24px;
}

.brand-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.brand-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* Controls */
.reviews-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.controls-filters {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.controls-search {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.7rem 1.2rem 0.7rem 2.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 178, 169, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.controls-options {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
}

.controls-options input {
  cursor: pointer;
  accent-color: var(--accent);
}

/* Review Cards Enhancements */
.review-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  text-transform: uppercase;
}

.reviewer-meta {
  flex-grow: 1;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  text-align: left;
}

.reviewer-info {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
  text-align: left;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.review-stars {
  color: #FFD700;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.review-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
  white-space: pre-wrap;
  text-align: left;
}



/* Reactions */
.reaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* Owner Reply */
.owner-reply {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(0, 178, 169, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  font-size: 0.88rem;
  text-align: left;
}

.owner-reply-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--accent-light);
}

.owner-reply-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  white-space: pre-wrap;
  text-align: left;
}

/* Load More Section */
.reviews-load-more {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* Category Widget Cards override (Light mode pages) */
.reviews-category-card {
  background: var(--white) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.reviews-category-card:hover {
  background: var(--white) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-5px) !important;
}

.reviews-category-card .reviewer-name {
  color: var(--black) !important;
}

.reviews-category-card .reviewer-info {
  color: var(--mid-gray) !important;
}

.reviews-category-card .review-text {
  color: var(--dark-gray) !important;
}

.reviews-category-card .owner-reply {
  background: rgba(0, 178, 169, 0.03) !important;
}

.reviews-category-card .owner-reply-text {
  color: var(--dark-gray) !important;
  opacity: 0.9 !important;
}

.reviews-category-card .reaction-badge {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  color: var(--mid-gray) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .reviews-dashboard {
    grid-template-columns: 1fr 1.5fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  .dashboard-brand {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .reviews-dashboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  .dashboard-score {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 1.5rem;
    align-items: center;
  }
  .dashboard-bars {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .dashboard-brand {
    grid-column: span 1;
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .reviews-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .controls-search {
    max-width: none;
  }
}

/* Premium Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  user-select: none;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--dark-gray);
  transform: scale(1.08) rotate(90deg);
}

/* Zoom-in hint for triggering images */
.lightbox-trigger {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.lightbox-trigger:hover {
  transform: scale(1.018);
  filter: brightness(1.04);
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switcher a {
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.6);
}

.lang-switcher a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.lang-switcher a:hover {
  color: var(--white);
}

.navbar.scrolled .lang-switcher a {
  color: rgba(29, 29, 31, 0.45);
}

.navbar.scrolled .lang-switcher a.active {
  color: var(--dark-gray);
  background: rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .lang-switcher a:hover {
  color: var(--dark-gray);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  user-select: none;
}

.navbar.scrolled .lang-divider {
  color: rgba(29, 29, 31, 0.2);
}

@media (max-width: 1024px) {
  .lang-switcher {
    order: -1;
    margin-right: auto;
  }
}
