/* =========================================
   MOBILE FIX LAB — Premium Redesign
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --bg: #f7f8fc;
  --bg-2: #eef0f7;
  --surface: #ffffff;
  --surface-2: #f0f2f9;
  --border: rgba(30,40,80,0.09);
  --border-hover: rgba(30,40,80,0.18);
  --text: #0f172a;
  --text-muted: #4b5563;
  --text-dim: #9ca3af;
  --accent: #2563eb;
  --accent-2: #7c3aed;
  --accent-glow: rgba(37,99,235,0.18);
  --gold: #d97706;
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 86px;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.25); border-radius: 3px; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,248,252,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}

.nav.scrolled {
  background: rgba(247,248,252,0.96);
  border-bottom-color: rgba(30,40,80,0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  margin-left: -350px;
}

.site-logo {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-wordmark {
  color: var(--text);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.brand-wordmark span {
  color: #0476bd;
}

.footer-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--accent);
  font-size: 0.65rem;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-links a:hover { color: var(--accent); background: rgba(37,99,235,0.07); }

.nav-links .nav-cta {
  color: #ffffff;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-bounce);
}

.nav-links .nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  background: rgba(247,248,252,0.98);
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: #374151;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover, .nav-mobile a.nav-cta { color: var(--accent); }

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-h) 8vw 80px;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease-smooth);
}

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

/* Background gradients per slide */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-bg-1 {
  background: radial-gradient(ellipse 80% 80% at 70% 40%, rgba(37,99,235,0.10) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(124,58,237,0.07) 0%, transparent 50%),
              var(--bg);
}

.slide-bg-2 {
  background: radial-gradient(ellipse 70% 70% at 60% 50%, rgba(124,58,237,0.09) 0%, transparent 55%),
              radial-gradient(ellipse 50% 50% at 10% 30%, rgba(37,99,235,0.07) 0%, transparent 50%),
              var(--bg);
}

.slide-bg-3 {
  background: radial-gradient(ellipse 75% 75% at 65% 45%, rgba(37,99,235,0.08) 0%, transparent 55%),
              radial-gradient(ellipse 60% 60% at 30% 70%, rgba(217,119,6,0.05) 0%, transparent 50%),
              var(--bg);
}

.slide-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  flex-shrink: 0;
}

/* Slide text animations — triggered on .active */
.slide-eyebrow,
.slide-headline,
.slide-sub,
.slide-actions {
  opacity: 0;
  transform: translateY(30px);
}

.slide.active .slide-eyebrow { animation: slide-in 0.7s 0.15s var(--ease-smooth) forwards; }
.slide.active .slide-headline { animation: slide-in 0.8s 0.3s var(--ease-smooth) forwards; }
.slide.active .slide-sub      { animation: slide-in 0.7s 0.5s var(--ease-smooth) forwards; }
.slide.active .slide-actions  { animation: slide-in 0.7s 0.65s var(--ease-smooth) forwards; }

@keyframes slide-in {
  to { opacity: 1; transform: translateY(0); }
}

.slide-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.slide-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.35s var(--ease-bounce);
  box-shadow: 0 8px 28px rgba(91,141,238,0.35);
}

.btn-hero-primary:hover {
  background: #7aaaf5;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(91,141,238,0.45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1.5px solid #d1d5db;
  transition: all 0.25s ease;
}

.btn-hero-ghost:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Slide Visual Area ── */
.slide-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.slide.active .slide-visual { animation: fade-up-vis 1s 0.25s var(--ease-smooth) both; }

@keyframes fade-up-vis {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Hero Photo ── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(37,99,235,0.15), 0 8px 24px rgba(0,0,0,0.08);
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  width: 200px;
  height: 380px;
}

.phone-frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(37,99,235,0.15);
  border-radius: 36px;
  background: rgba(37,99,235,0.03);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.06), 0 40px 80px rgba(37,99,235,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  z-index: 2;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

.phone-screen {
  position: absolute;
  inset: 4px;
  border-radius: 32px;
  z-index: 1;
}

.phone-screen.cracked {
  background: linear-gradient(135deg, #dde3f0 0%, #c8d0e8 100%);
  background-image:
    linear-gradient(45deg, transparent 30%, rgba(0,0,0,0.04) 31%, rgba(0,0,0,0.04) 32%, transparent 33%),
    linear-gradient(-45deg, transparent 20%, rgba(0,0,0,0.03) 21%, rgba(0,0,0,0.03) 22%, transparent 23%);
  opacity: 1;
  animation: fade-cracked 4s 1s ease-in-out infinite;
}

.phone-screen.fixed {
  background: linear-gradient(135deg, #e8efff 0%, #d0dcff 30%, #e8efff 100%);
  opacity: 0;
  animation: fade-fixed 4s 1s ease-in-out infinite;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(37,99,235,0.12);
  border-radius: 3px;
}

@keyframes fade-cracked {
  0%, 40% { opacity: 1; }
  60%, 100% { opacity: 0; }
}

@keyframes fade-fixed {
  0%, 40% { opacity: 0; }
  60%, 100% { opacity: 1; }
}

.repair-beam {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  z-index: 3;
  transform: translateX(-50%);
  animation: beam-scan 4s 1s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}

@keyframes beam-scan {
  0%, 35% { top: 0; height: 380px; opacity: 1; }
  55%, 100% { top: 380px; height: 0; opacity: 0; }
}

/* Badge stack */
.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 280px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
}

.badge:hover {
  transform: translateX(6px);
  border-color: var(--border-hover);
}

.slide.active .badge:nth-child(1) { animation: badge-in 0.6s 0.35s both; }
.slide.active .badge:nth-child(2) { animation: badge-in 0.6s 0.5s both; }
.slide.active .badge:nth-child(3) { animation: badge-in 0.6s 0.65s both; }
.slide.active .badge:nth-child(4) { animation: badge-in 0.6s 0.8s both; }

@keyframes badge-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.badge-icon { font-size: 1.4rem; flex-shrink: 0; }

.badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.badge small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Floating card */
.floating-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 300px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37,99,235,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

.fc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
}

.fc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.fc-dot.green { background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,0.5); }

.fc-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.fc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.fc-label { color: var(--text-muted); }

.fc-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.fc-progress {
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.fc-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: fill-bar 3s 1.2s ease-in-out forwards;
}

@keyframes fill-bar {
  to { width: 72%; }
}

.fc-footer small { color: var(--text-muted); font-size: 0.78rem; }

/* Slide Controls */
.slide-controls {
  position: absolute;
  bottom: 40px;
  left: 8vw;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
  padding: 0;
}

.slide-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px var(--accent-glow);
}

.slide-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 10;
}

.slide-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: none;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.05);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =========================================
   SECTIONS — SHARED
   ========================================= */
.section { padding: 100px 40px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.overline {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-desc {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s var(--ease-smooth);
  cursor: default;
  animation: card-fade-up 0.6s var(--delay, 0s) var(--ease-smooth) both;
}

@keyframes card-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-card:hover {
  border-color: rgba(37,99,235,0.25);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.1), 0 0 0 1px rgba(37,99,235,0.12);
}

.service-icon { font-size: 1.8rem; margin-bottom: 4px; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.service-card p {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.65;
  flex: 1;
}

.card-link {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
  transition: gap 0.2s ease;
  display: inline-block;
}

.card-link:hover { text-decoration: underline; }

.section-cta-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

/* =========================================
   BENTO GRID — WHY US
   ========================================= */
.why-section {
  padding: 100px 40px;
  background: var(--bg-2);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.bento-card:hover {
  border-color: rgba(91,141,238,0.25);
  transform: translateY(-3px);
}

.bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(37,99,235,0.05) 100%);
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon { font-size: 2rem; margin-bottom: 16px; }

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.bento-accent {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,141,238,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tech-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================
   PRICING
   ========================================= */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.price-card:hover {
  border-color: rgba(37,99,235,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.1);
}

.price-card.price-featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(124,58,237,0.04) 100%);
  border-color: rgba(37,99,235,0.25);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.price-service {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-amount span {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  flex: 1;
}

.btn-price {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border-hover);
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 6px;
}

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

.price-card.price-featured .btn-price {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-section {
  background: var(--bg-2);
  padding: 100px 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s var(--ease-smooth);
}

.review-card:hover {
  border-color: rgba(91,141,238,0.2);
  transform: translateY(-3px);
}

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

.review-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  font-weight: 400;
  flex: 1;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.reviewer span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section { background: var(--bg); padding: 100px 40px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left h2 { margin-bottom: 14px; }

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong { font-size: 0.85rem; color: var(--text); display: block; margin-bottom: 2px; }
.contact-item div { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.contact-right {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
  box-shadow: 0 8px 24px rgba(91,141,238,0.3);
}

.btn-submit:hover {
  background: #7aaaf5;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(91,141,238,0.4);
}

.form-feedback {
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: #34d399;
}

.form-feedback.error {
  display: block;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  color: #f87171;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-muted); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* =========================================
   BOOKING PAGE
   ========================================= */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 40px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner { max-width: 700px; }

.page-hero .overline { margin-bottom: 14px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Booking form layout */
.booking-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.booking-info h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}

.info-list { display: flex; flex-direction: column; gap: 16px; }

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ii-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.info-item span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.info-item strong { display: block; font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

.booking-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.booking-form { display: flex; flex-direction: column; gap: 20px; }

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

/* Services page */
.services-page-body { padding: 60px 40px 100px; }

.services-page-inner { max-width: 1100px; margin: 0 auto; }

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-col-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.service-col-card h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.service-col-card ul { list-style: none; display: flex; flex-direction: column; gap: 0; }

.service-col-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-col-card li:last-child { border-bottom: none; }

.service-col-card li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.service-note-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.service-note-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
  font-weight: 300;
}

.service-note-card p:last-child { margin-bottom: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .service-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { margin-left: -8px; }
  .site-logo { width: 58px; height: 58px; }
  .brand-wordmark { font-size: 1.35rem; }
  .section { padding: 70px 24px; }
  .why-section, .reviews-section, .contact-section, .pricing-section { padding: 70px 24px; }
  .slide { flex-direction: column; padding-top: calc(var(--nav-h) + 40px); padding-left: 24px; padding-right: 24px; justify-content: center; }
  .slide-visual { min-height: auto; display: none; }
  .slide-headline { font-size: 2.4rem; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-columns { grid-template-columns: 1fr; }
  .page-hero, .booking-layout, .services-page-body { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 14px; }
  .nav-logo { margin-left: -6px; gap: 7px; }
  .site-logo { width: 50px; height: 50px; }
  .brand-wordmark { font-size: 1.05rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .slide-headline { font-size: 2rem; }
  .stats-bar { padding: 24px; }
}
