/* ============================================================
   NÓ DIGITAL — Romantic Interactive Landing Page
   Warm, soft, love-focused — cream/gold/olive palette
   ============================================================ */

:root {
  --bg: #faf6f1;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-dark: #2c3e2d;
  --text: #3a4a3a;
  --text-muted: #7a8a7a;
  --text-light: #a0b0a0;
  --accent: #c9963a;
  --accent-light: #e0b860;
  --accent-dark: #8a6420;
  --accent-glow: rgba(201, 150, 58, 0.2);
  --olive: #4a5e3a;
  --olive-light: #6a7e5a;
  --olive-dark: #2c3e2d;
  --cream: #f5ede3;
  --cream-dark: #ebe0d2;
  --blush: #f9f0ea;
  --gradient: linear-gradient(135deg, #c9963a, #8a6420);
  --gradient-soft: linear-gradient(135deg, #f5ede3, #faf6f1);
  --radius: 20px;
  --radius-sm: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--cream);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-no {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.logo-digital {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover { color: var(--olive); background: var(--cream); }

.nav-link-cta {
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-link-cta:hover { background: var(--accent-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 246, 241, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

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

.hero-bg canvas {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(201, 150, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--olive-dark);
  letter-spacing: -0.02em;
}

.title-line { display: block; overflow: hidden; }
.title-word { display: inline-block; }
.title-highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive-dark);
}
.stat-plus { font-size: 1.5rem; color: var(--accent); }
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 150, 58, 0.3);
}
.btn-primary .btn-text, .btn-primary .btn-icon { position: relative; z-index: 1; }
.btn-primary .btn-icon { transition: transform 0.3s; }
.btn-primary:hover .btn-icon { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  color: var(--olive);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--transition);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(201, 150, 58, 0.04);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
.section {
  padding: clamp(5rem, 12vw, 9rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-number {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--olive-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

.text-gradient {
  color: var(--accent);
  font-style: italic;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: transform 0.5s var(--transition), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201, 150, 58, 0.3);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(201, 150, 58, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: transform 0.3s var(--transition), background 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(201, 150, 58, 0.12);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 100px;
  background: rgba(201, 150, 58, 0.04);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--cream);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-script);
  font-size: 3.5rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(201, 150, 58, 0.25);
  line-height: 1;
  transition: color 0.4s;
}
.step:hover .step-number { color: var(--accent); }

.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

.step-line { display: none; }

@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step-number { font-size: 2.5rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
  background: var(--bg);
}

.marquee { overflow: hidden; white-space: nowrap; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 35s linear infinite;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-light);
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--transition), border-color 0.4s, box-shadow 0.4s;
}
.pricing-card:hover {
  border-color: rgba(201, 150, 58, 0.25);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 150, 58, 0.03) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 40px -15px var(--accent-glow);
}
.pricing-card-featured:hover { border-color: var(--accent); }

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--olive-dark);
  margin-bottom: 0.5rem;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--cream-dark);
  color: var(--olive);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--transition);
}
.pricing-btn:hover {
  border-color: var(--accent);
  background: rgba(201, 150, 58, 0.04);
  transform: translateY(-2px);
}

.pricing-btn-featured {
  background: var(--gradient);
  border-color: var(--accent);
  color: #fff;
}
.pricing-btn-featured:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: transform 0.4s var(--transition), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--olive-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1.15;
  margin: 1rem 0;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.contact-item:hover { color: var(--accent); }
.contact-item svg { color: var(--accent); flex-shrink: 0; }

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--olive);
}

/* Form */
.contact-form {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}

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

.form-group { margin-bottom: 0.5rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #16a34a;
}
.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--bg);
}
.footer-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .footer-content { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* --- HERO --- */
  .hero { padding: 5.5rem 0 2.5rem; min-height: auto; }
  .hero-title { font-size: 2.2rem; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-cta { margin-bottom: 2.5rem; }
  .hero-stats { gap: 1.5rem; padding-top: 2rem; }
  .stat-number { font-size: 1.5rem; }
  .scroll-indicator { display: none; }

  /* --- SECTIONS tighter --- */
  .section { padding: clamp(3rem, 8vw, 5rem) 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* --- HORIZONTAL SCROLL CARDS (services + admin) --- */
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid .service-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 1.75rem;
  }
  .service-title { font-size: 1.05rem; }
  .service-desc { font-size: 0.85rem; margin-bottom: 1rem; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 1rem; }

  /* --- STEPS tighter --- */
  .step { padding: 2rem 0; gap: 1rem; }
  .step-number { font-size: 2.5rem; }
  .step-title { font-size: 1.15rem; }
  .step-desc { font-size: 0.9rem; }

  /* --- PRICING horizontal scroll --- */
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 2rem;
  }
  .pricing-name { font-size: 1.35rem; }

  /* --- TESTIMONIALS horizontal scroll --- */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 1.75rem;
  }
  .testimonial-text { font-size: 1rem; }

  /* --- CONTACT --- */
  .contact-title { font-size: 1.75rem; }
  .contact-form { padding: 1.5rem; }

  /* --- BUTTONS smaller on mobile --- */
  .btn-primary { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .btn-ghost { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

  /* --- MARQUEE --- */
  .marquee-section { padding: 1.25rem 0; }
  .marquee-track { font-size: 1rem; }

  /* --- Swipe hint for carousels --- */
  .services-grid::after,
  .pricing-grid::after,
  .testimonials-grid::after {
    content: '';
    min-width: 1.5rem;
    flex-shrink: 0;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .services-grid .service-card,
  .pricing-card,
  .testimonial-card { min-width: 260px; }
  .container { padding: 0 1rem; }
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .scroll-line { animation: none; }
}

/* Admin panel section */
.admin-panel {
  background: var(--cream);
}

/* Swipe hint on mobile carousels */
.swipe-hint {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
.swipe-hint svg {
  animation: swipeHint 1.5s ease-in-out infinite;
}
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (max-width: 768px) {
  .swipe-hint { display: flex; }
}
