/* ===================================================
   DESIGN SYSTEM — Almadara · Psicología Holística
   =================================================== */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap");

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Palette */
  --clr-bg: #fdfaf5; /* Warm light beige matching hero */
  --clr-bg-alt: #f5f0e6; /* Slightly darker warm tone */
  --clr-surface: #ffffff;
  --clr-text: #2a2522;
  --clr-text-muted: #5c5c58;
  --clr-accent: #8e8472;
  --clr-accent-soft: #e8e5e0;
  --clr-accent-dark: #665d4f;
  --clr-gold: #c2b280;
  --clr-gold-soft: #f5f2ea;
  --clr-sage: #9caba0;
  --clr-sage-soft: #ebf0ec;
  --clr-lavender: #b5b2c0;
  --clr-warm: #f8efe5;
  --clr-border: #e6e2d8;

  /* Typography */
  --ff-heading: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.75rem;
  --fs-3xl: 3.5rem;
  --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Misc */
  --radius-sm: 0;
  --radius-md: 2px;
  --radius-lg: 4px;
  --radius-xl: 0;
  --radius-pill: 0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.06);
  --shadow-glow: none;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

/* ─── DARK MODE THEME ─── */
[data-theme="dark"] {
  --clr-bg:           #131118; /* Deep rich violet-black */
  --clr-bg-alt:       #18151e; /* Slightly lighter tone */
  --clr-surface:      #1c1a24;
  --clr-text:         #f2efe9;
  --clr-text-muted:   #a3a099;
  --clr-accent:       #b0a696;
  --clr-accent-soft:  #2e2b26;
  --clr-accent-dark:  #c2b49a;
  --clr-gold:         #c2b280;
  --clr-gold-soft:    #2a2720;
  --clr-sage:         #8a9e93;
  --clr-sage-soft:    #1e2820;
  --clr-lavender:     #8f8ca0;
  --clr-warm:         #1f1c18;
  --clr-border:       #2e2b26;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:        0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:        0 12px 32px rgba(0,0,0,0.4);
  --shadow-xl:        0 24px 64px rgba(0,0,0,0.5);
}

/* Smooth colour transition when theme changes */
body, .site-header, .site-footer,
.service-card, .pricing-card, .testimonial-card,
.contact-info-card, .about-stats, .value-item,
.dropdown-menu, .process-step, .quote-band,
input, select, textarea {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

ul,
ol,
li {
  list-style: none !important;
  list-style-type: none !important;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Utility --- */
.container {
  width: min(var(--max-width), 100% - var(--sp-xl) * 2);
  margin-inline: auto;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  line-height: 1.1;
  font-weight: 400;
  color: var(--clr-text);
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-hero);
}
h2 {
  font-size: var(--fs-3xl);
}
h3 {
  font-size: var(--fs-2xl);
}
h4 {
  font-size: var(--fs-xl);
}
h5 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: var(--sp-md);
  text-wrap: pretty;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-size: clamp(var(--fs-xl), 3vw + 0.5rem, var(--fs-2xl));
  margin-bottom: var(--sp-lg);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 55ch;
  margin-bottom: var(--sp-3xl);
}

/* ===================================================
   CURSOR PERSONALIZADO
   =================================================== */
.cursor {
  pointer-events: none;
}

#cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.1s;
  mix-blend-mode: multiply;
}

#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--clr-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.3s,
    width 0.2s ease-out,
    height 0.2s ease-out;
  mix-blend-mode: multiply;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  /* The background and blur are moved to ::before to prevent Safari rendering bugs with gradient text */
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  box-shadow: none;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    -webkit-backdrop-filter var(--transition);
}

.site-header.scrolled::before {
  background: hsla(270, 20%, 98%, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  transition: padding var(--transition);
}

.site-header.scrolled .header-inner {
  padding-top: var(--sp-md);
  padding-bottom: var(--sp-md);
}

/* Logo — anchors left, pushes all other header items to the right */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  position: relative;
  z-index: 210;
  margin-right: auto;
}

.logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--clr-accent);
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.05);
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--clr-text);
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-list {
  display: flex;
  gap: var(--sp-lg);
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  padding-top: var(--sp-sm);
  padding-bottom: var(--sp-sm);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.nav-link--dropdown .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-item--dropdown:hover .chevron,
.nav-item--dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--sp-sm));
  left: 50%;
  min-width: 220px;
  padding: var(--sp-sm);
  background: hsla(0, 0%, 100%, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition:
    background var(--transition),
    color var(--transition);
}

.dropdown-link:hover {
  background: var(--clr-accent-soft);
  color: var(--clr-accent);
}

.dropdown-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.8em 1.8em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn--primary {
  background: var(--clr-text);
  color: var(--clr-surface);
  border: 1px solid var(--clr-text);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, color 0.4s, box-shadow 0.4s;
}

.btn--primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  color: var(--clr-surface);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn--outline {
  border: 1px solid var(--clr-text);
  color: var(--clr-text);
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, color 0.4s, box-shadow 0.4s;
}

.btn--outline:hover {
  background: var(--clr-text);
  color: var(--clr-surface);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn--lg {
  padding: 0.9em 2.2em;
  font-size: var(--fs-base);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--sp-xs);
  position: relative;
  z-index: 210;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-text);
  border-radius: var(--radius-pill);
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition);
}

/* When menu is open, hamburger lines turn into X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   HEADER CONTROLS — Theme toggle & Language switcher
   =================================================== */

/* Wrapper that groups both controls */
.header-controls {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: var(--sp-xs) !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
}

/* ── Theme toggle button ── */
.theme-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--clr-text-muted) !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition) !important;
}

.theme-toggle:hover {
  border-color: var(--clr-accent) !important;
  color: var(--clr-accent) !important;
  background: var(--clr-accent-soft) !important;
}

/* Show sun icon in dark mode, moon icon in light mode */
.theme-toggle .icon-sun  { display: none !important; }
.theme-toggle .icon-moon { display: block !important; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block !important; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none !important; }

.theme-toggle svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* ── Language switcher — inline pills (no dropdown, zero positioning bugs) ── */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  transition: border-color var(--transition);
}

.lang-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 8px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.lang-pill:last-child {
  border-right: none;
}

.lang-pill:hover {
  background: var(--clr-accent-soft);
  color: var(--clr-accent-dark);
}

.lang-pill.active {
  background: var(--clr-accent-soft);
  color: var(--clr-accent-dark);
  font-weight: 700;
}

/* Dark mode for controls */
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .lang-switcher {
  border-color: var(--clr-border);
}

[data-theme="dark"] .lang-pill {
  border-color: var(--clr-border);
}



/* ─── Hero dark mode fixes ─── */
[data-theme="dark"] .hero {
  background: linear-gradient(
    160deg,
    hsl(270, 12%, 5%) 0%,
    hsl(145, 10%, 5%) 50%,
    hsl(40, 10%, 5%) 100%
  );
}

[data-theme="dark"] .hero::before {
  opacity: 0.24;
  mix-blend-mode: screen;
}

[data-theme="dark"] .service-hero {
  background: linear-gradient(
    160deg,
    hsl(270, 12%, 5%) 0%,
    hsl(145, 10%, 5%) 50%,
    hsl(40, 10%, 5%) 100%
  );
}

[data-theme="dark"] .site-header.scrolled::before {
  background: hsla(30, 8%, 10%, 0.92);
}

[data-theme="dark"] .main-nav::before {
  background: hsla(30, 8%, 10%, 0.97);
}

[data-theme="dark"] .marquee-band {
  background: linear-gradient(135deg, hsl(30, 12%, 20%), hsl(30, 10%, 15%));
}

[data-theme="dark"] .quote-band {
  background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-bg-alt) 15%, var(--clr-bg-alt) 85%, var(--clr-bg) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--clr-surface);
  border-color: var(--clr-border);
  color: var(--clr-text);
}

[data-theme="dark"] .hero-editorial__img {
  border-color: var(--clr-border);
  background: var(--clr-surface);
}

/* Soften background orbs/glows in dark mode to prevent high-contrast white spotlights */
[data-theme="dark"] .services::before {
  background: radial-gradient(circle, hsla(265, 40%, 60%, 0.15) 0%, transparent 70%);
}
[data-theme="dark"] .services::after {
  background: radial-gradient(circle, hsla(145, 30%, 55%, 0.15) 0%, transparent 70%);
}
[data-theme="dark"] .process::after {
  background: radial-gradient(circle, hsla(145, 30%, 55%, 0.15) 0%, transparent 70%);
}
[data-theme="dark"] .contact::before {
  background: radial-gradient(circle, hsla(265, 40%, 60%, 0.15) 0%, transparent 70%);
}
[data-theme="dark"] .pricing::before {
  background: radial-gradient(circle, hsla(265, 40%, 60%, 0.15) 0%, transparent 70%);
}
[data-theme="dark"] .service-hero::before {
  background: radial-gradient(circle, hsla(265, 40%, 60%, 0.12) 0%, transparent 70%);
}

[data-theme="dark"] .about::before {
  background: radial-gradient(circle, hsla(270, 30%, 60%, 0.08) 0%, transparent 70%);
  width: 600px;
  height: 600px;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  border-radius: 50%;
}

[data-theme="dark"] .about-stats {
  background: rgba(28, 26, 36, 0.9);
  border-color: var(--clr-border);
}


.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: clip;
  background: linear-gradient(
    160deg,
    hsl(270, 30%, 95%) 0%,
    hsl(145, 20%, 94%) 50%,
    hsl(40, 30%, 95%) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.webp") center / cover no-repeat;
  opacity: 0.24;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 98%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 98%);
}

/* Noise texture overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* hero-content sizing is set in the two-column layout block below */

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) var(--sp-lg);
  background: hsla(265, 45%, 55%, 0.08);
  border: 1px solid hsla(265, 45%, 55%, 0.15);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-xl);
  animation: fadeSlideDown 0.8s ease both;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--sp-xl);
  animation: fadeSlideUp 0.9s ease 0.15s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-accent-dark);
}

.hero-description {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 48ch;
  margin-bottom: var(--sp-2xl);
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  animation: fadeSlideUp 0.9s ease 0.45s both;
}

/* Hero entry animations */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
   HERO — TWO-COLUMN LAYOUT
   =================================================== */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  min-height: 100dvh;
  padding-top: 120px;
  padding-bottom: 5rem;
}

/* ---- Left content ---- */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
  width: fit-content;
}

.hero-stat {
  text-align: left;
}

.hero-stat__num {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-accent-dark);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.hero-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.hero-stat__divider {
  width: 1px;
  height: 30px;
  background-color: var(--clr-border);
}

/* ---- Right visual column ---- */
.hero-editorial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  animation: fadeSlideUp 1s ease 0.5s both;
}

.hero-editorial__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-heading);
  font-size: 30vw;
  font-weight: 300;
  color: var(--clr-text);
  opacity: 0.02;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .hero-editorial__bg-text {
    font-size: 20rem;
    left: 40%;
  }
}

.hero-editorial__images {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-editorial__img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  padding: 0.5rem;
}

.hero-editorial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-editorial__img--main {
  width: 85%;
  aspect-ratio: 3/4;
  margin-left: 0;
  z-index: 2;
  box-shadow:
    20px 20px 0 -10px var(--clr-bg-alt),
    20px 20px 0 -9px var(--clr-border);
}

.hero-editorial__img--sub {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 50%;
  aspect-ratio: 4/5;
  z-index: 3;
  box-shadow:
    -10px -10px 0 -5px var(--clr-bg),
    -10px -10px 0 -4px var(--clr-border);
}

@keyframes rotateStamp {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-editorial__stamp {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 120px;
  height: 120px;
  z-index: 4;
}

.hero-stamp-svg {
  width: 100%;
  height: 100%;
  animation: rotateStamp 20s linear infinite;
  fill: var(--clr-text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.25em;
  font-family: var(--ff-body);
  text-transform: uppercase;
}

.hero-stamp-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--clr-text);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ===================================================
   HERO RESPONSIVE — single column below 900px
   =================================================== */

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-2xl);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* ===================================================
   SVG ICON HELPERS
   =================================================== */
.icon-svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.footer-social__link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid hsl(260, 10%, 25%);
  color: hsl(260, 10%, 70%);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.footer-social__link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

/* ===================================================
   MARQUEE BAND (between hero and services)
   =================================================== */
.marquee-band {
  background: linear-gradient(
    135deg,
    var(--clr-accent-dark),
    var(--clr-accent)
  );
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-accent-dark), transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-accent), transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding-inline: 2.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.85);
}

.marquee-track span.dot {
  padding-inline: 0;
  color: hsl(40, 60%, 75%);
}

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

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: linear-gradient(
    180deg,
    var(--clr-bg) 0%,
    color-mix(in srgb, var(--clr-bg-alt) 25%, var(--clr-bg)) 50%,
    var(--clr-bg) 100%
  );
  position: relative;
  isolation: isolate;
  transition: background 0.35s ease;
}

/* Decorative background dots */
.services::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, hsl(265, 35%, 90%) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(145, 30%, 92%) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.services-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.services-header .section-subtitle {
  margin-inline: auto;
}

/* Redesigned 2-column grid for Tarot and Psicologia */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  max-width: 1000px;
  margin-inline: auto;
}

.service-card {
  position: relative;
  background: color-mix(in srgb, var(--clr-surface) 60%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: clip;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--clr-accent) 30%, transparent);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: clip;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 17, 24, 0.4) 0%,
    transparent 60%
  );
}

.service-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__icon {
  background: #ffffff;
  color: var(--clr-text);
  border-color: #ffffff;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card__icon svg {
  transform: scale(1.05);
}

.service-card__num {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-family: var(--ff-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  z-index: 2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card__body {
  padding: 1.75rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.service-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-accent);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  transition: color var(--transition), gap var(--transition);
  width: fit-content;
}

.service-card__link:hover {
  color: var(--clr-accent-dark);
  background: transparent;
  gap: 0.75rem;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
}

/* ===================================================
   QUOTE / MANTRA BAND
   =================================================== */
.quote-band {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: hsl(260, 15%, 12%);
  position: relative;
  overflow: clip;
  text-align: center;
  z-index: 5;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      hsla(265, 45%, 55%, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      hsla(40, 60%, 55%, 0.12) 0%,
      transparent 55%
    );
}

.quote-band__inner {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.quote-band__symbol {
  font-family: var(--ff-heading);
  font-size: 5rem;
  color: hsla(265, 45%, 75%, 0.3);
  line-height: 1;
  margin-bottom: -1.5rem;
  display: block;
}

.quote-band__text {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: hsla(0, 0%, 100%, 0.92);
  line-height: 1.4;
  margin-bottom: var(--sp-xl);
}

.quote-band__text em {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(135deg, hsl(265, 60%, 75%), hsl(40, 70%, 70%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-band__author {
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================================
   SERVICE DETAIL SECTIONS
   =================================================== */
.service-detail {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  overflow: clip;
}

.service-detail:nth-child(even) {
  background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-bg-alt) 15%, var(--clr-bg-alt) 85%, var(--clr-bg) 100%);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.service-detail:nth-child(even) .service-detail__inner {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail__inner > * {
  direction: ltr;
}

/* Force image left / text right layout when requested */
.service-detail--img-left .service-detail__inner {
  direction: ltr !important;
}

.service-detail--img-left .service-detail__inner > * {
  direction: ltr !important;
}

.service-detail__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: var(--shadow-lg);
}

.service-detail__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-detail__media::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-detail:hover .service-detail__media::before {
  opacity: 1;
}

.service-detail__content .section-label {
  color: var(--clr-accent-dark);
}

.service-detail__content h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-lg);
}

.service-detail__content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-lg);
  max-width: 50ch;
}

.service-detail__features {
  display: grid;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding: 1.25rem 1.5rem;
  background: color-mix(in srgb, var(--clr-surface) 35%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--clr-text) 6%, transparent);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.02);
}

.feature-item:hover {
  transform: translateX(8px);
  background: color-mix(in srgb, var(--clr-surface) 50%, transparent);
  border-color: color-mix(in srgb, var(--clr-accent) 25%, transparent);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--clr-accent) 20%, transparent), color-mix(in srgb, var(--clr-accent) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--clr-accent) 20%, transparent);
  border-radius: 12px;
  color: var(--clr-accent-dark);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--clr-accent) 30%, transparent), color-mix(in srgb, var(--clr-accent) 10%, transparent));
  border-color: color-mix(in srgb, var(--clr-accent) 40%, transparent);
}

.feature-item__text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.feature-item__text strong {
  display: block;
  color: var(--clr-text);
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* ===================================================
   PRICING LIST LAYOUT
   =================================================== */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  padding: 1.5rem 2rem;
  background: var(--clr-surface);
  border: 1px solid color-mix(in srgb, var(--clr-text) 12%, transparent);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: clip;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pricing-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-list-item--popular::before {
  opacity: 1;
}

.pricing-list-item:hover {
  transform: translateY(-4px);
  background: var(--clr-surface);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-lg);
}

.pricing-list-item__info {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-grow: 1;
}

.pricing-list-item__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--clr-accent) 15%, transparent), color-mix(in srgb, var(--clr-accent) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--clr-accent) 15%, transparent);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pricing-list-item:hover .pricing-list-item__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, color-mix(in srgb, var(--clr-accent) 30%, transparent), color-mix(in srgb, var(--clr-accent) 10%, transparent));
  border-color: color-mix(in srgb, var(--clr-accent) 30%, transparent);
}

.pricing-list-item__text {
  flex-grow: 1;
}

.pricing-list-item__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.pricing-list-item__badge {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--clr-accent-soft);
  color: var(--clr-text);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--clr-accent) 20%, transparent);
}

.pricing-list-item__desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.pricing-list-item__duration {
  font-weight: 600;
  color: var(--clr-gold);
}

.pricing-list-item__separator {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dashed color-mix(in srgb, var(--clr-text) 12%, transparent);
  margin: 0 1rem;
  min-width: 40px;
}

.pricing-list-item__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-shrink: 0;
}

.pricing-list-item__go-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-accent-soft);
  color: var(--clr-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid color-mix(in srgb, var(--clr-accent-dark) 10%, transparent);
  flex-shrink: 0;
}

.pricing-list-item:hover .pricing-list-item__go-btn {
  background: var(--clr-accent-dark);
  color: #ffffff;
  border-color: var(--clr-accent-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(102, 93, 79, 0.2);
}

.pricing-list-item__go-btn svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-list-item:hover .pricing-list-item__go-btn svg {
  transform: translateX(2px);
}

.pricing-list-item__price {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-text);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-list-item__amount {
  font-size: 2rem;
  font-weight: 400;
}

.pricing-list-item__currency {
  font-size: 1.25rem;
  margin-left: 2px;
  color: var(--clr-gold);
}

@media (max-width: 768px) {
  .pricing-list-item {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: var(--sp-md);
  }

  .pricing-list-item__separator {
    display: none;
  }

  .pricing-list-item__actions {
    justify-content: space-between;
    margin-top: var(--sp-xs);
    border-top: 1px solid color-mix(in srgb, var(--clr-text) 5%, transparent);
    padding-top: var(--sp-md);
  }
}

/* ===================================================
   PROCESS / METHODOLOGY SECTION
   =================================================== */
.process {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: var(--clr-bg);
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsl(145, 25%, 90%) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.process-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.process-header .section-subtitle {
  margin-inline: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-accent);
  position: relative;
  z-index: 10;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step__card {
  background: color-mix(in srgb, var(--clr-surface) 60%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  flex: 1;
}

.process-step:hover .process-step__card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--clr-accent) 30%, transparent);
}

.process-step:hover .process-step__number {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.process-step__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
  transition: transform 0.4s ease, color 0.4s ease;
}

.process-step__icon svg {
  width: 100%;
  height: 100%;
}

.process-step:hover .process-step__icon {
  transform: scale(1.1) translateY(-4px);
  color: var(--clr-gold);
}

.process-step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: var(--sp-sm);
}

.process-step__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-bg-alt) 15%, var(--clr-bg-alt) 85%, var(--clr-bg) 100%);
  position: relative;
  overflow: clip;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: linear-gradient(to left, hsla(40, 30%, 95%, 0.6), transparent);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: var(--shadow-xl);
}

.about-image__frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    var(--clr-accent-soft),
    var(--clr-gold-soft)
  );
  z-index: -1;
}

.about-stats {
  position: absolute;
  bottom: var(--sp-xl);
  left: -20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  min-width: 320px;
}

[data-theme="dark"] .about-stats {
  background: hsla(270, 15%, 12%, 0.95);
}

.stat {
  text-align: center;
  padding: var(--sp-sm) var(--sp-md);
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--clr-border);
}

.stat__icon {
  width: 20px;
  height: 20px;
  margin: 0 auto var(--sp-xs);
  color: var(--clr-accent);
  opacity: 0.7;
}

.stat__icon svg {
  width: 100%;
  height: 100%;
}

.stat__number {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 2.5vw, var(--fs-xl));
  font-weight: 700;
  color: var(--clr-accent-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  white-space: nowrap;
}

.about-content h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-lg);
}

.about-content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-lg);
  max-width: 55ch;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--clr-surface) 60%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-item:hover {
  background: color-mix(in srgb, var(--clr-surface) 90%, transparent);
  border-color: color-mix(in srgb, var(--clr-accent) 40%, transparent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-item__icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clr-accent) 10%, transparent);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.value-item__icon-wrapper svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-item__title {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.value-item:hover .value-item__icon-wrapper {
  background: var(--clr-accent);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--clr-accent) 25%, transparent);
}

.value-item:hover .value-item__icon-wrapper svg {
  transform: scale(1.1) rotate(6deg);
}

.value-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--clr-accent) 8%, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-item:hover::after {
  opacity: 1;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: hsl(260, 15%, 12%);
  position: relative;
  overflow: clip;
}

/* Decorative radial glows */
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      hsla(265, 45%, 55%, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      hsla(40, 60%, 55%, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      hsla(145, 40%, 50%, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Decorative quote mark */
.testimonials::after {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-heading);
  font-size: 20rem;
  color: hsla(265, 45%, 75%, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
  position: relative;
}

.testimonials-header .section-label {
  color: var(--clr-gold);
}

.testimonials-header .section-title {
  color: #fff;
}

.testimonials-header .section-subtitle {
  color: hsla(0, 0%, 100%, 0.55);
  margin-inline: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

.testimonial-card {
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: clip;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: var(--sp-xl);
  font-family: var(--ff-heading);
  font-size: 6rem;
  color: hsla(265, 45%, 75%, 0.15);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.3);
}

.testimonial-card__stars {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.75);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  display: grid;
  place-items: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #fff;
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: hsla(0, 0%, 100%, 0.45);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
  position: relative;
  padding: var(--sp-4xl) 0;
  background: var(--clr-bg);
  overflow: hidden;
}

/* Blobs de fondo orgánicos */
.contact__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact__blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
}

.contact__blob--1 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent-soft);
  top: -100px;
  left: -100px;
}

.contact__blob--2 {
  width: 350px;
  height: 350px;
  background: var(--clr-gold-soft);
  bottom: -50px;
  right: 10%;
}

.contact__blob--3 {
  width: 300px;
  height: 300px;
  background: var(--clr-sage);
  top: 20%;
  right: -50px;
}

.contact__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-4xl);
  align-items: center;
}

/* Columna Izquierda */
.contact__main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3xl);
}

.contact__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
  color: var(--clr-text);
}

.contact__text {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 50ch;
}

.contact__illustration {
  max-width: 100%;
  opacity: 0.8;
}

.contact__svg {
  width: 100%;
  height: auto;
  max-width: 400px;
}

/* Columna Derecha: Grid */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

.contact-card {
  background: color-mix(in srgb, var(--clr-surface) 22%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--clr-text) 8%, transparent);
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
  transform: translateY(-8px);
  background: color-mix(in srgb, var(--clr-surface) 28%, transparent);
  border-color: color-mix(in srgb, var(--clr-text) 18%, transparent);
}

.contact-card:has(.contact-card__icon--wa):hover {
  box-shadow: 0 20px 45px -15px rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.3);
}

.contact-card:has(.contact-card__icon--tg):hover {
  box-shadow: 0 20px 45px -15px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-card:has(.contact-card__icon--phone):hover {
  box-shadow: 0 20px 45px -15px rgba(130, 90, 230, 0.12);
  border-color: color-mix(in srgb, var(--clr-accent) 40%, transparent);
}

.contact-card:has(.contact-card__icon--email):hover {
  box-shadow: 0 20px 45px -15px rgba(200, 160, 50, 0.12);
  border-color: color-mix(in srgb, var(--clr-gold) 40%, transparent);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-lg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-card__icon--wa { 
  color: hsl(142, 60%, 45%); 
  background: color-mix(in srgb, hsl(142, 60%, 45%) 12%, transparent); 
  border-color: color-mix(in srgb, hsl(142, 60%, 45%) 25%, transparent);
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.1);
}
[data-theme="dark"] .contact-card__icon--wa { 
  color: #4ADE80; 
  background: color-mix(in srgb, #4ADE80 12%, transparent); 
  border-color: color-mix(in srgb, #4ADE80 25%, transparent);
}

.contact-card__icon--tg { 
  color: hsl(200, 75%, 45%); 
  background: color-mix(in srgb, hsl(200, 75%, 45%) 12%, transparent); 
  border-color: color-mix(in srgb, hsl(200, 75%, 45%) 25%, transparent);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
[data-theme="dark"] .contact-card__icon--tg { 
  color: #3B82F6; 
  background: color-mix(in srgb, #3B82F6 12%, transparent); 
  border-color: color-mix(in srgb, #3B82F6 25%, transparent);
}

.contact-card__icon--phone { 
  color: var(--clr-accent); 
  background: color-mix(in srgb, var(--clr-accent) 12%, transparent); 
  border-color: color-mix(in srgb, var(--clr-accent) 25%, transparent);
  box-shadow: 0 4px 12px rgba(130, 90, 230, 0.08);
}
.contact-card__icon--email { 
  color: var(--clr-gold); 
  background: color-mix(in srgb, var(--clr-gold) 12%, transparent); 
  border-color: color-mix(in srgb, var(--clr-gold) 25%, transparent);
  box-shadow: 0 4px 12px rgba(200, 160, 50, 0.08);
}

.contact-card__title {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--clr-text);
}

.contact-card__subtitle {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-xl);
}

.contact-card__btn {
  width: 100%;
  padding: 13px var(--sp-sm);
  background: color-mix(in srgb, var(--clr-surface) 40%, transparent);
  color: var(--clr-text);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--clr-text) 12%, transparent);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.contact-card__btn span {
  font-weight: 400;
  opacity: 0.7;
}

.contact-card__btn:hover {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  box-shadow: 0 4px 15px rgba(130, 90, 230, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: var(--sp-3xl);
  }

  .contact__main {
    text-align: center;
    align-items: center;
  }

  .contact__text {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: var(--sp-xl);
  }

  .contact__title {
    font-size: 2.5rem;
  }
}
.site-footer {
  background: hsl(260, 15%, 10%);
  color: hsl(260, 10%, 70%);
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-xl);
  position: relative;
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    hsla(265, 45%, 25%, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid hsl(260, 10%, 18%);
  position: relative;
}

.footer-brand .logo-text {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-md);
  color: #ffffff;
}

.footer-brand p {
  font-size: var(--fs-sm);
  max-width: 35ch;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: hsl(260, 10%, 90%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--clr-lavender);
  padding-left: var(--sp-xs);
}

.footer-social {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid hsl(260, 10%, 22%);
  font-size: 1.1rem;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.footer-social a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.footer-bottom {
  padding-top: var(--sp-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  position: relative;
}

.footer-bottom a {
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--clr-lavender);
}

/* ===================================================
   SERVICE PAGE — HERO
   =================================================== */
.service-hero {
  padding-top: 180px;
  padding-bottom: var(--sp-4xl);
  background: linear-gradient(
    160deg,
    hsl(270, 30%, 95%) 0%,
    hsl(145, 20%, 94%) 50%,
    hsl(40, 30%, 95%) 100%
  );
  overflow: clip;
  position: relative;
  isolation: isolate;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    hsla(265, 45%, 85%, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2xl);
}

.breadcrumb a {
  color: var(--clr-accent);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--clr-accent-dark);
}

.breadcrumb span {
  opacity: 0.5;
}
.breadcrumb span:last-child {
  opacity: 1;
  color: var(--clr-text);
  font-weight: 500;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.service-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-2xl), 4vw + 0.5rem, var(--fs-3xl));
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}

.service-hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero__text {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin-bottom: var(--sp-2xl);
  line-height: 1.7;
}

.service-hero__media {
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px hsla(0, 0%, 100%, 0.15);
  pointer-events: none;
}

.service-hero__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===================================================
   PRICING SECTION
   =================================================== */
.pricing {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-bg-alt) 15%, var(--clr-bg-alt) 85%, var(--clr-bg) 100%);
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(265, 35%, 90%) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.pricing-header .section-subtitle {
  margin-inline: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-xl);
  max-width: 960px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform var(--transition);
}

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

/* Popular card */
.pricing-card--popular {
  border: 1px solid var(--clr-text);
  background: var(--clr-bg-alt);
}

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

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--sp-xs) var(--sp-md);
  background: var(--clr-text);
  color: var(--clr-surface);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  white-space: nowrap;
}

.pricing-card__header {
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-xl);
}

.pricing-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-md);
}

.pricing-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: var(--sp-md);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-xs);
}

.pricing-card__amount {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--clr-accent);
  line-height: 1;
}

.pricing-card__currency {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-text-muted);
}

.pricing-card__duration {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.pricing-card__duration strong {
  color: var(--clr-accent-dark);
}

.pricing-card__features {
  flex: 1;
  text-align: start;
  margin-bottom: var(--sp-xl);
}

.pricing-card__features li {
  padding-top: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  border-bottom: 1px solid hsl(260, 10%, 94%);
}

.pricing-card__features li:last-child {
  border: none;
}

.pricing-card .btn {
  align-self: center;
  width: 100%;
  justify-content: center;
}

/* ===================================================
   CTA SECTION (Service Pages)
   =================================================== */
.cta-section {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
  background: var(--clr-bg-alt);
  position: relative;
  overflow: clip;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, color-mix(in srgb, var(--clr-accent) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  padding: 3.5rem var(--sp-2xl);
  background: color-mix(in srgb, var(--clr-surface) 40%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--clr-text) 8%, transparent);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.cta-inner h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
}

.cta-inner p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2xl);
}

.cta-inner .btn--primary {
  background: var(--clr-text);
  color: var(--clr-bg);
  box-shadow: var(--shadow-md);
}

.cta-inner .btn--primary:hover {
  background: var(--clr-accent);
  color: var(--clr-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================================
   SCROLL ANIMATIONS (Intersection Observer)
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.19s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.26s;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
/* ===================================================
   RESPONSIVE — TABLET (max-width: 900px)
   =================================================== */
@media (max-width: 900px) {

  /* ---- Header controls on mobile ---- */
  /* Controls stay in the header (not inside nav overlay) */
  .header-controls {
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }

  .theme-toggle {
    width: 32px !important;
    height: 32px !important;
  }

  .lang-pill {
    height: 32px;
    min-width: 30px;
    padding: 0 6px;
    font-size: 9px;
  }

  /* ---- Header ---- */
  .hamburger {
    display: flex;
  }

  /* Full-screen overlay nav */
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-3xl);
    opacity: 0;
    visibility: hidden;
    z-index: 205; /* above header (200) but below hamburger/logo (210) */
    pointer-events: none;
    transition:
      opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Frosted glass backdrop for overlay */
  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: hsla(44, 20%, 97%, 0.97);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Nav list stacked vertically */
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--clr-border);
  }

  .nav-list li:first-child {
    border-top: 1px solid var(--clr-border);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-base);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--sp-lg) var(--sp-xl);
    color: var(--clr-text);
  }

  .nav-link::after {
    display: none; /* Remove underline animation inside overlay */
  }

  /* Dropdown: always visible and static inside overlay */
  .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: var(--clr-bg-alt);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid var(--clr-border);
    border-radius: 0;
    box-shadow: none;
    padding: var(--sp-sm) 0;
    min-width: unset;
    width: 100%;
  }

  .nav-item--dropdown:hover .dropdown-menu,
  .nav-item--dropdown:focus-within .dropdown-menu {
    position: static;
    transform: none;
  }

  .dropdown-link {
    justify-content: center;
    padding: var(--sp-sm) var(--sp-xl);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
  }

  .dropdown-icon {
    display: none; /* Clean up in compact mobile list */
  }

  /* CTA button inside overlay */
  .main-nav > .btn {
    font-size: var(--fs-sm);
    padding: 1em 2.5em;
    letter-spacing: 0.12em;
  }

  /* ---- Hero ---- */
  .hero-inner,
  .service-hero {
    padding-top: 100px;
    padding-bottom: var(--sp-3xl);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-2xl);
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0; /* Reset — padding is on .hero-inner now */
    padding-bottom: 0;
  }

  .hero-description {
    margin-inline: auto;
    max-width: 52ch;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }

  .hero-stats {
    margin-inline: auto;
    justify-content: center;
    gap: var(--sp-lg);
  }

  /* Hide the editorial collage on mobile */
  .hero-editorial {
    display: none;
  }

  /* ---- Layout grids ---- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2xl);
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-detail__inner,
  .service-hero__inner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xl);
  }

  .service-detail__content {
    order: 1;
  }

  .service-detail__media {
    order: 2;
  }

  .service-detail:nth-child(even) .service-detail__inner {
    direction: ltr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .about::before {
    display: none;
  }

  .about-image {
    max-width: 400px;
    margin-inline: auto;
  }

  .about-stats {
    position: static;
    margin-top: var(--sp-lg);
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-qr-row {
    grid-template-columns: 1fr;
  }

  .contact-simple-row {
    grid-template-columns: 1fr;
  }

  .contact-simple-card__value {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 12px;
  }

  .contact-qr-card__qr img {
    width: 140px;
    height: 140px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-md);
    text-align: center;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   =================================================== */
@media (max-width: 600px) {

  /* Header tighter on small screens */
  .header-inner {
    padding-top: var(--sp-md);
    padding-bottom: var(--sp-md);
    gap: var(--sp-xs) !important;
    flex-wrap: nowrap !important;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  /* Smaller lang pills on very small screens */
  .lang-pill {
    height: 28px;
    min-width: 26px;
    padding: 0 5px;
    font-size: 9px;
  }

  /* Hero */
  .hero-inner,
  .service-hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: var(--fs-base);
  }

  .hero-actions .btn--lg {
    padding: 0.8em 1.6em;
    font-size: var(--fs-xs);
  }

  .hero-stats {
    gap: var(--sp-md);
  }

  .hero-stat__num {
    font-size: 1.5rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Section spacing */
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  /* About */
  .about-values {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-bottom {
    font-size: var(--fs-xs);
  }
  /* Contact QR cards */
  .contact-qr-card {
    padding: var(--sp-lg);
  }

  .contact-qr-card__qr img {
    width: 120px;
    height: 120px;
  }

  .contact-qr-card__btn {
    font-size: 12px;
    padding: 0.65em 1em;
  }
}

/* Tablet: QR side-by-side but smaller */
@media (min-width: 601px) and (max-width: 900px) {
  .contact-v2 {
    max-width: 100%;
  }

  .contact-simple-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-simple-card--hours {
    grid-column: 1 / -1;
  }
}

/* Editorial alignment: Stretch image to cover the full height of the text column on desktop */
@media (min-width: 901px) {
  .service-detail__inner {
    align-items: stretch;
  }

  .service-detail__media {
    display: flex;
    align-self: stretch;
    height: 100%;
  }

  .service-detail__media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}


/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-accent-dark);
}

/* --- Professional Trust Tag --- */
.credentials-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 6px 14px;
  background: var(--clr-accent-soft);
  border: 1px solid var(--clr-border);
  color: var(--clr-accent-dark);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-lg);
  border-radius: 2px;
}

/* --- Floating Contact Menu --- */
.contact-menu-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  animation: bounceIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes float-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  50% { transform: scale(1.05); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
}

.contact-menu-float__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--clr-accent-dark);
  color: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-breathe 3s infinite ease-in-out;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.contact-menu-float__trigger::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  opacity: 0;
  animation: pulseWhatsApp 2.2s infinite;
}

.contact-menu-float:not(.active) .contact-menu-float__trigger:hover::before {
  opacity: 0.6;
}

.contact-menu-float__trigger:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.contact-menu-float__trigger svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.contact-menu-float__icon-close {
  opacity: 0;
  transform: scale(0) rotate(90deg);
}

.contact-menu-float.active .contact-menu-float__icon-chat {
  opacity: 0;
  transform: scale(0) rotate(-90deg);
}

.contact-menu-float.active .contact-menu-float__icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-menu-float.active .contact-menu-float__trigger {
  background-color: var(--clr-text);
  transform: rotate(180deg);
}

.contact-menu-float__options {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: center;
  pointer-events: none;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.contact-menu-float.active .contact-menu-float__options {
  pointer-events: auto;
}

.contact-menu-float__opt {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease, box-shadow 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.85);
  position: relative;
}

/* Staggered transition delays for expansion */
.contact-menu-float.active .contact-menu-float__opt {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-menu-float.active .contact-menu-float__opt--wa {
  transition-delay: 0.05s;
}

.contact-menu-float.active .contact-menu-float__opt--tg {
  transition-delay: 0.1s;
}

.contact-menu-float.active .contact-menu-float__opt--email {
  transition-delay: 0.15s;
}

.contact-menu-float__opt svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Specific Social Colors and Effects */
.contact-menu-float__opt--wa {
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.contact-menu-float__opt--wa:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.contact-menu-float__opt--tg {
  background-color: #0088cc;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
}
.contact-menu-float__opt--tg:hover {
  background-color: #0077b3;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 136, 204, 0.45);
}

.contact-menu-float__opt--email {
  background-color: var(--clr-accent);
  box-shadow: 0 4px 12px rgba(142, 132, 114, 0.25);
}
.contact-menu-float__opt--email:hover {
  background-color: var(--clr-accent-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(142, 132, 114, 0.45);
}

/* Tooltips next to icons */
.contact-menu-float__tooltip {
  position: absolute;
  right: 56px;
  background-color: var(--clr-surface);
  color: var(--clr-text);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.contact-menu-float__opt:hover .contact-menu-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* General Labels */
.contact-menu-float__label {
  position: absolute;
  right: 68px;
  bottom: 11px;
  background: var(--clr-surface);
  color: var(--clr-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  visibility: hidden;
}

.contact-menu-float:not(.active):hover .contact-menu-float__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulseWhatsApp {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .contact-menu-float {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }
  .contact-menu-float__label {
    display: none !important;
  }
  .contact-menu-float__trigger {
    width: 50px;
    height: 50px;
  }
  .contact-menu-float__trigger svg {
    width: 20px;
    height: 20px;
  }
  .contact-menu-float__opt {
    width: 42px;
    height: 42px;
  }
  .contact-menu-float__opt svg {
    width: 18px;
    height: 18px;
  }
  .contact-menu-float__tooltip {
    right: 48px;
    font-size: 10px;
  }
}


/* ═════════════════════════════════════════════════
   13. 21st.dev PREMIUM EFFECTS & MOBILE OPTIMIZATION
═════════════════════════════════════════════════ */

/* --- Mobile First Optimizations --- */
@media (max-width: 768px) {
  /* Reduce excessive paddings and grid gaps */
  .section {
    padding-block: 3rem;
  }
  
  .pricing-list {
    gap: 1.5rem;
    grid-template-columns: 1fr !important;
  }
  
  .pricing-list-item {
    padding: 1.5rem !important;
  }
  
  .hero-inner, .about-inner {
    padding-inline: 1rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.1 !important;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .site-header {
    padding-block: 0.75rem;
  }
}

/* --- Premium Hover Effects (21st.dev style) --- */

/* Pricing Card Shine/Glare */
.pricing-list-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-list-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

[data-theme="dark"] .pricing-list-item::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.pricing-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.pricing-list-item:hover::after {
  left: 200%;
}

/* Animated Gradient Border for Popular Card */
@keyframes border-rotate {
  0% { --bg-angle: 0deg; }
  100% { --bg-angle: 360deg; }
}

@property --bg-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.pricing-list-item--popular {
  position: relative;
  background: var(--clr-surface);
  border: none !important;
  border-radius: var(--radius-lg);
}

.pricing-list-item--popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: conic-gradient(
    from var(--bg-angle),
    var(--clr-border) 0%,
    var(--clr-accent) 50%,
    var(--clr-border) 100%
  );
  border-radius: inherit;
  animation: border-rotate 4s linear infinite;
  opacity: 0.6;
}

.pricing-list-item--popular:hover::before {
  opacity: 1;
}

/* Make sure inner elements have higher z-index to stay above the border */
.pricing-list-item--popular > * {
  position: relative;
  z-index: 2;
}

/* Glass Buttons with Premium Feel */
.btn-wa-dynamic {
  position: relative;
  overflow: hidden;
}

.btn-wa-dynamic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.btn-wa-dynamic:hover::before {
  transform: scaleX(1);
}

/* ═════════════════════════════════════════════════
   14. 21st.dev - MAGNETIC & SHINY BUTTON EFFECTS
═════════════════════════════════════════════════ */

/* Animated Shiny Button Effect for Primary Buttons */
.btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  z-index: -1;
}

.btn--primary:hover::before {
  animation: shine 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Subtle magnetic levitation on hover for cards */
.service-card, .pricing-list-item {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.service-card:hover, .pricing-list-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

[data-theme="dark"] .service-card:hover, [data-theme="dark"] .pricing-list-item:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* 21st.dev style "Pulse" animation for the popular tag */
.pricing-list-item__badge {
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { box-shadow: 0 0 0 0 rgba(194, 178, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(194, 178, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 178, 128, 0); }
}

/* Extreme Mobile First Overrides */
@media (max-width: 480px) {
  :root {
    --sp-md: 0.75rem;
    --sp-lg: 1rem;
    --sp-xl: 1.5rem;
    --sp-2xl: 2rem;
    --sp-3xl: 2.5rem;
    --fs-hero: 2.25rem;
    --fs-xl: 1.75rem;
  }
  
  .pricing-list-item__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ═════════════════════════════════════════════════
   14. BOOKING CHANNEL SELECTOR POPOVER & TOAST
   ═════════════════════════════════════════════════ */
.booking-popover {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: var(--sp-md);
}

.booking-popover.active {
  opacity: 1;
  visibility: visible;
}

.booking-popover__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 17, 24, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.booking-popover__card {
  background: color-mix(in srgb, var(--clr-surface) 80%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: var(--sp-2xl);
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.booking-popover.active .booking-popover__card {
  transform: translateY(0) scale(1);
}

.booking-popover__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 0;
}

.booking-popover__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-bottom: var(--sp-xs);
}

.booking-popover__summary {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1rem;
  font-size: var(--fs-sm);
  color: var(--clr-text);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.booking-popover__summary-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-accent-dark);
}

.booking-popover__summary-price {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.booking-popover__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.booking-popover__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.85em 1.5em;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.booking-popover__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.booking-popover__btn--wa {
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.booking-popover__btn--wa:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.booking-popover__btn--tg {
  background-color: #0088cc;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.booking-popover__btn--tg:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.35);
}

.booking-popover__cancel {
  background: transparent;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.75em 1.5em;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--sp-xs);
}

.booking-popover__cancel:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
}

/* Toast Notification styling */
.booking-popover__toast {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--clr-text);
  color: var(--clr-surface);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  z-index: 10;
}

.booking-popover__toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===================================================
   PRO MAX UX/UI ENHANCEMENTS
   =================================================== */

/* Advanced Hover States */
@media (hover: hover) and (pointer: fine) {
  .services-grid:has(.service-card:hover) .service-card:not(:hover) {
    opacity: 0.5;
    transform: scale(0.98);
    filter: blur(2px);
  }
}

/* View Transitions */
@view-transition {
  navigation: auto;
}

