/* ===== BRAND VARIABLES ===== */
:root {
  --navy: #1B2A4A;
  --navy-light: #243656;
  --navy-dark: #12192e;
  --amber: #F5A623;
  --amber-light: #ffc947;
  --amber-dark: #d4900a;
  --white: #ffffff;
  --off-white: #f9f8f5;
  --light-gray: #F0EEE9;
  --mid-gray: #9B9B9B;
  --text: #1B2A4A;
  --text-muted: #6B7280;
  --border: #E5E2DB;
  --card-bg: #ffffff;
  --success: #22c55e;
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-dark); }

/* ===== TYPOGRAPHY UTILITIES ===== */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 248, 245, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  padding: 0 2.5rem;
}

.navbar.scrolled {
  background: rgba(249, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-phone:hover { opacity: 1; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  opacity: 0.75;
}

.nav-link:hover {
  opacity: 1;
  color: var(--amber-dark);
  background: rgba(245, 166, 35, 0.08);
}

.nav-link-email {
  font-size: 0.8rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(27,42,74,0.06); }

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: var(--navy);
  z-index: 2000;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -4px 0 32px rgba(0,0,0,0.25);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.5);
  z-index: 1999;
  backdrop-filter: blur(4px);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-menu-close:hover { color: var(--amber); }

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
}

.mobile-menu-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
  background: rgba(245,166,35,0.12);
  color: var(--amber-light);
}

.mobile-menu-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
  margin-top: auto;
}

.mobile-menu-email:hover { color: var(--amber-light); }

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-link-email { display: none; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 7rem 2.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36, 54, 86, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(27, 42, 74, 0.4) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--amber-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.hero-pill svg { color: var(--amber); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 42, 74, 0.1);
  border: 1.5px solid rgba(27, 42, 74, 0.25);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary-dark:hover {
  background: rgba(27, 42, 74, 0.15);
  transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.3s ease;
}

.hero-card:hover { transform: translateY(-4px); }

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.card-status .status-dot {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.card-meta { text-align: right; }
.card-name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.card-location { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.card-mockup {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mockup-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.mockup-bar.short { width: 60%; }
.mockup-bar.medium { width: 75%; }

.mockup-btns {
  display: flex;
  gap: 0.6rem;
}

.mockup-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.mockup-btn.order {
  background: var(--navy-light);
  color: var(--white);
}

.mockup-btn.book {
  background: var(--amber);
  color: var(--navy-dark);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-rating .stars {
  display: flex;
  gap: 0.1rem;
}

.card-rating .star {
  width: 14px; height: 14px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.card-rating .rating-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.3rem;
}

.hero-testimonial {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.hero-testimonial-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.hero-testimonial-credit {
  font-size: 0.7rem;
  color: var(--amber);
  font-weight: 600;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

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

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.services-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 42, 74, 0.1);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, var(--card-bg) 60%);
}

.service-card.featured::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--navy);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--amber);
  color: var(--navy-dark);
  transform: scale(1.05);
}

.service-card.featured .service-icon {
  background: var(--amber);
  color: var(--navy-dark);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-expand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}

.service-card:hover .service-expand { gap: 0.6rem; }

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

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

.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-header .section-label { color: var(--amber); }

.process-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 44px);
  right: calc(16.67% + 44px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.2), var(--amber));
  pointer-events: none;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-icon-wrap {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon-wrap {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
}

.step-icon-wrap .step-icon {
  width: 40px; height: 40px;
  color: var(--amber);
  transition: color 0.3s ease;
}

.process-step:hover .step-icon-wrap .step-icon { color: var(--navy-dark); }

.step-num-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', serif;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pricing-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--navy);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 42, 74, 0.1);
}

.pricing-card-head {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 2.5rem;
  text-align: center;
}

.pricing-card-head h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.pricing-card-head h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pricing-card-head .price-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.pricing-card-body { padding: 2.5rem; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.price-feature .check {
  width: 22px;
  height: 22px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dark);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.pricing-guarantee svg { color: var(--success); flex-shrink: 0; }

.pricing-compare {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light-gray);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-compare .vs-tag {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ===== WHO THIS IS FOR ===== */
.who {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

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

.who-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.who-header .section-label { color: var(--amber); }

.who-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.who-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.vertical-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vertical-card:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
}

.vertical-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--amber);
}

.vertical-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-family: 'Fraunces', serif;
}

.vertical-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.who-cta {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}

.who-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-family: 'Fraunces', serif;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.08);
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.author-info .author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info .author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--navy);
  border-radius: 18px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.trust-badge-item svg { color: var(--amber); }

/* ===== FAQ ===== */
.faq {
  padding: 6rem 2.5rem;
  background: var(--light-gray);
}

.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: var(--amber); }

.faq-item.open { border-color: var(--amber); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', system-ui, sans-serif;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--amber-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--amber);
  color: var(--navy-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== LEAD FORM ===== */
.lead-form {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

.lead-form-inner { max-width: 720px; margin: 0 auto; }

.lead-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lead-form-header .section-label { color: var(--amber); }

.lead-form-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.lead-form-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.lead-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.form-group .optional {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--white);
  transition: all 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--navy); color: var(--white); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-submit-btn {
  flex: 1;
  background: var(--amber);
  color: var(--navy-dark);
  border: none;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.form-submit-btn:hover:not(:disabled) {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.45);
}

.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-or-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  flex: 1;
}

.form-direct-contact {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-call, .btn-sms {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-call {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-call:hover { background: rgba(255,255,255,0.12); }

.btn-sms {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.btn-sms:hover { background: rgba(37, 211, 102, 0.2); }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4ade80;
  margin-top: 1rem;
}

.form-error-msg {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--amber);
  margin-top: 1rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
}

.hidden { display: none !important; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== EXTRA POLISH ===== */

/* Footer logo size upgrade */
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

/* Footer email link */
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--amber);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--amber-light); }

/* Button pulse glow on scroll into view */
.cta-glow {
  position: relative;
}
.cta-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--amber);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  z-index: -1;
}
.cta-glow.glowing::after { opacity: 0.35; }

/* Link underline grow animation */
.link-underline {
  position: relative;
  text-decoration: none;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.link-underline:hover::after { width: 100%; }

/* Icon spin on hover */
.spin-hover:hover svg {
  animation: iconSpin 0.5s ease;
}
@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-15deg); }
  100% { transform: rotate(0deg); }
}

/* Testimonial card reveal slide */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,74,0.12);
}

/* Pricing card popular badge pulse */
.pricing-popular .popular-badge {
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,166,35,0); }
}

/* FAQ answer slide down */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0.75rem;
}

/* Hover scale on feature items */
.sp-feature-item {
  transition: transform 0.2s ease;
}
.sp-feature-item:hover { transform: translateX(4px); }

/* Service section badge float */
.sp-badge-num {
  display: inline-block;
  transition: transform 0.3s ease;
}
.sp-service-section:hover .sp-badge-num {
  transform: translateY(-4px);
}

/* Process step connector line animation */
.process-step-line {
  position: relative;
}
.process-step-line::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 100%;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--amber), transparent);
  transition: height 0.6s ease;
}
.process-step:hover .process-step-line::before { height: 40px; }

/* Services page visual card hover lift */
.sp-visual-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sp-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(27,42,74,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-pills { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2rem; }
  .trust-badges-row { gap: 1.25rem; }
}

@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .services, .process, .pricing, .who, .testimonials, .faq, .lead-form { padding: 4rem 1.5rem; }
  .navbar { padding: 0 1.5rem; }
  .nav-phone { display: none; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .process-step { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; }
  .step-icon-wrap { margin: 0; flex-shrink: 0; }
  .step-text { flex: 1; }
  .pricing-card-body { padding: 1.75rem; }
  .lead-form-card { padding: 1.75rem; }
  .form-submit-row { flex-direction: column; }
  .form-submit-btn { width: 100%; }
  .form-or-text { display: none; }
  .form-direct-contact { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1.25rem 3rem; }
  .services, .process, .pricing, .who, .testimonials, .faq, .lead-form { padding: 3rem 1.25rem; }
  .hero-headline { font-size: 2rem; }
  .hero-pills { display: none; }
  .verticals-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .vertical-card { padding: 1.25rem 1rem; }
  .testimonial-card { padding: 1.5rem; }
  .trust-badges-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary, .btn-whatsapp, .btn-secondary { width: 100%; justify-content: center; }
}

/* ===== SERVICES PAGE ===== */
.services-page-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 7rem 2.5rem 5rem;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sp-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(36, 54, 86, 0.8) 0%, transparent 50%);
}

.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

.sp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.sp-hero-content { max-width: 760px; }

.sp-hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sp-hero-headline .highlight { color: var(--amber); font-style: italic; }

.sp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.sp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-dark {
  background: var(--amber);
  color: var(--navy-dark);
}

.btn-primary-dark:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

/* Service Sections */
.sp-service-section {
  padding: 6rem 2.5rem;
}

.sp-service-web { background: var(--off-white); }
.sp-service-reviews { background: var(--navy); }
.sp-service-seo { background: var(--light-gray); }

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

.sp-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.sp-badge-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.sp-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.sp-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sp-service-grid-reverse { direction: rtl; }
.sp-service-grid-reverse > * { direction: ltr; }

.sp-service-content { }

.sp-service-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

.sp-service-reviews .sp-service-title { color: var(--white); }
.sp-service-reviews .sp-service-desc { color: rgba(255,255,255,0.65); }

.sp-service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.sp-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.sp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.sp-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 2px;
}

.sp-feature-icon-amber { background: rgba(245, 166, 35, 0.15); color: var(--amber-dark); }
.sp-feature-icon-navy { background: rgba(27, 42, 74, 0.1); color: var(--navy); }

.sp-service-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sp-cta-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Visual Cards */
.sp-visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 42, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(27, 42, 74, 0.12);
}

.sp-visual-card-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

.sp-visual-card-dark:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,0.3);
}

.sp-visual-card-seo {
  background: var(--card-bg);
  border: 2px solid var(--navy);
}

.sp-visual-header { padding: 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.sp-reviews-header { text-align: center; }
.sp-reviews-big {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.sp-reviews-stars { font-size: 1.25rem; color: var(--amber); margin: 0.5rem 0; }
.sp-reviews-count { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

.sp-review-item { padding: 1.25rem 1.75rem; border-top: 1px solid rgba(255,255,255,0.06); }
.sp-review-stars { font-size: 0.85rem; color: var(--amber); margin-bottom: 0.4rem; }
.sp-review-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.6; margin-bottom: 0.3rem; }
.sp-review-author { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.sp-visual-header-page {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}

.sp-visual-dots { display: flex; gap: 0.35rem; }
.sp-visual-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.sp-visual-dots span:first-child { background: #ff5f57; }
.sp-visual-dots span:nth-child(2) { background: #febc2e; }
.sp-visual-dots span:nth-child(3) { background: #28c840; }

.sp-visual-url { font-size: 0.75rem; color: var(--text-muted); }

.sp-visual-body { padding: 1.5rem; }

.sp-mock-hero { height: 80px; background: linear-gradient(135deg, var(--amber) 0%, #e8910a 100%); border-radius: 8px; margin-bottom: 1rem; }

.sp-mock-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.sp-mock-btn { flex: 1; padding: 0.6rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-align: center; }
.sp-mock-btn-amber { background: var(--amber); color: var(--navy-dark); }
.sp-mock-btn-navy { background: var(--navy); color: var(--white); }

.sp-mock-stars { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.sp-mock-stars span { color: var(--amber); font-size: 0.85rem; }
.sp-mock-reviews { font-size: 0.75rem; color: var(--text-muted); margin-left: 0.5rem; }

.sp-mock-map { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); }

/* SEO Visual */
.sp-seo-search-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light-gray);
  border-radius: 12px 12px 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.sp-seo-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.sp-seo-result:hover { background: var(--light-gray); }
.sp-seo-result:last-child { border-bottom: none; }

.sp-seo-result-top { background: rgba(245, 166, 35, 0.05); }

.sp-seo-result-num { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--amber); flex-shrink: 0; width: 20px; text-align: center; }

.sp-seo-result-body { flex: 1; }
.sp-seo-result-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.sp-seo-result-name-gold { color: var(--amber-dark); }
.sp-seo-result-snippet { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.sp-seo-result-snippet-muted { color: rgba(107, 114, 128, 0.6); }

/* Final CTA */
.sp-final-cta {
  padding: 7rem 2.5rem;
  background: var(--navy);
  text-align: center;
}

.sp-final-inner { max-width: 700px; margin: 0 auto; }

.sp-final-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: 'Fraunces', serif;
}

.sp-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.sp-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-email-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.btn-email-dark:hover { color: var(--white); }

/* Responsive Services Page */
@media (max-width: 1024px) {
  .sp-service-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-service-grid-reverse { direction: ltr; }
  .sp-service-visual { order: -1; }
}

@media (max-width: 768px) {
  .services-page-hero { padding: 6rem 1.5rem 4rem; }
  .sp-service-section { padding: 4rem 1.5rem; }
  .sp-final-cta { padding: 4rem 1.5rem; }
  .sp-hero-ctas { flex-direction: column; align-items: flex-start; }
  .sp-final-actions { flex-direction: column; }
}

/* ===== ADVANCED ANIMATIONS ===== */
/* Magnetic hover on buttons */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Card shimmer on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.06), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::after { left: 150%; }

/* Text reveal animation */
@keyframes textReveal {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Staggered entrance */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Glow pulse for CTA buttons */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(245, 166, 35, 0.7); }
}

.btn-primary {
  animation: none;
}

.btn-primary:hover {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Cursor sparkle effect */
@keyframes sparkle {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  100% { transform: scale(1.5) rotate(180deg); opacity: 0; }
}

/* Number counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section divider wave */
.wave-divider {
  height: 60px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.wave-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 0);
}

/* Progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--amber);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 480px) {
  .services-page-hero { padding: 5rem 1.25rem 3rem; }
  .sp-service-section { padding: 3rem 1.25rem; }
  .sp-badge-num { font-size: 2rem; }
  .sp-service-cta { flex-direction: column; align-items: flex-start; }
}