/* ============================================================
   TheAquaShield — Motion-Studio Grade Landing Page
   ============================================================
   Design: Light, airy, premium — Aesop/Kinfolk aesthetic
   Motion: Emil Kowalski principles + scroll-driven cinema
   - Word-by-word text reveals
   - 3D perspective card tilts
   - Magnetic button interactions
   - clip-path cinematic reveals
   - Floating particle system
   - Parallax depth layers
   - Spring-like counter overshoot
   - Smooth section morphs
   ============================================================ */

/* ── Tokens ── */
:root {
  /* Palette — light & airy */
  --c-primary: #0CC0DF;
  --c-primary-dark: #0AADCA;
  --c-primary-light: #E8FAFB;
  --c-primary-glow: rgba(12, 192, 223, 0.15);
  --c-dark: #0F172A;
  --c-text: #334155;
  --c-muted: #94A3B8;
  --c-subtle: #F1F5F9;
  --c-bg: #FAFCFE;
  --c-white: #FFFFFF;
  --c-border: #E2E8F0;
  --c-glass: rgba(255, 255, 255, 0.72);

  /* Emil Kowalski curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* Layout */
  --container: min(1140px, 90vw);
  --section-py: clamp(80px, 12vw, 140px);

  /* Type scale — generous, editorial */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-hero: clamp(3.2rem, 8vw, 6.5rem);
  --text-h2: clamp(2rem, 4.5vw, 3.5rem);
  --text-h3: clamp(1.2rem, 2vw, 1.5rem);
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
}

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

#theaquashield {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

#theaquashield ::selection { background: var(--c-primary); color: #fff; }
#theaquashield img { max-width: 100%; height: auto; display: block; }

.taq-container { width: var(--container); margin-inline: auto; padding-inline: 20px; }
.taq-section { padding-block: var(--section-py); position: relative; overflow: hidden; }

/* ═══════════════════════════════════════
   TYPOGRAPHY — Editorial elegance
   ═══════════════════════════════════════ */
.taq-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-dark);
}
.taq-h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-dark);
}
.taq-h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.3;
}
.taq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  display: inline-block;
  margin-bottom: 14px;
}
.taq-gradient-text {
  background: linear-gradient(135deg, var(--c-primary) 0%, #38BDF8 60%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   NAVIGATION — Glass, floating
   ═══════════════════════════════════════ */
.taq-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1100px, calc(100% - 24px));
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 400ms var(--ease-out), box-shadow 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.taq-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.06);
  border-color: rgba(226, 232, 240, 0.6);
}
.taq-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.taq-nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--c-dark);
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 1;
  gap: 0;
}
.taq-nav-logo span { color: var(--c-primary); }
.taq-nav-logo small {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 8px;
}
.taq-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.taq-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
  position: relative;
}
.taq-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-primary);
  border-radius: 1px;
  transition: width 300ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .taq-nav-links a:hover { color: var(--c-primary); }
  .taq-nav-links a:hover::after { width: 100%; }
}

/* ═══════════════════════════════════════
   BUTTONS — Magnetic + press feedback
   ═══════════════════════════════════════ */
.taq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 160ms var(--ease-out), box-shadow 300ms var(--ease-out), background 200ms var(--ease-out);
}
.taq-btn:active { transform: scale(0.96) !important; }

.taq-btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(12, 192, 223, 0.2), 0 0 0 0 rgba(12, 192, 223, 0);
}
@media (hover: hover) and (pointer: fine) {
  .taq-btn-primary:hover {
    background: var(--c-primary-dark);
    box-shadow: 0 8px 28px rgba(12, 192, 223, 0.3), 0 0 0 4px rgba(12, 192, 223, 0.06);
    transform: translateY(-2px);
  }
}

.taq-btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid var(--c-border);
}
@media (hover: hover) and (pointer: fine) {
  .taq-btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: var(--c-primary-light);
    transform: translateY(-2px);
  }
}

.taq-btn-dark {
  background: var(--c-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .taq-btn-dark:hover { background: #1E293B; transform: translateY(-2px); }
}

.taq-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  .taq-btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
}

.taq-btn-pill { border-radius: 999px; }
.taq-btn-lg { padding: 16px 36px; font-size: 15px; }
.taq-btn-full { width: 100%; }

/* Magnetic wrapper for hero CTA */
.magnetic-wrap {
  display: inline-block;
  transition: transform 400ms var(--ease-out);
}

/* ═══════════════════════════════════════
   ANIMATION SYSTEM — Motion-studio
   ═══════════════════════════════════════ */

/* Reveal from below */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal from left */
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal-left].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal from right */
[data-reveal-right] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal-right].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal */
[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal-scale].revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 70ms; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 140ms; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 210ms; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 280ms; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 350ms; }
[data-stagger].revealed > * { opacity: 1; transform: translateY(0); }

/* clip-path cinematic image reveal */
[data-clip-reveal] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1000ms var(--ease-in-out);
}
[data-clip-reveal].revealed {
  clip-path: inset(0 0 0 0);
}

/* clip from left */
[data-clip-left] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1000ms var(--ease-in-out);
}
[data-clip-left].revealed {
  clip-path: inset(0 0 0 0);
}

/* Word-by-word reveal */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 600ms var(--ease-out);
}
.word-reveal.revealed .word-inner {
  transform: translateY(0);
}

/* ── Floating particles ── */
.taq-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.taq-particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-primary-glow), transparent 70%);
  opacity: 0;
  animation: float-particle var(--duration) var(--delay) var(--ease-in-out) infinite;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(calc(var(--drift) * -1)) scale(1.2); }
}

/* ═══════════════════════════════════════
   HERO — Light, airy, cinematic
   ═══════════════════════════════════════ */
.taq-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  overflow: hidden;
}

.taq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.taq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.taq-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.95), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 60%, var(--c-white) 100%);
}

/* Caustics overlay — the water light pattern */
.taq-hero-caustics {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  mix-blend-mode: multiply;
  animation: caustics-drift 20s linear infinite;
}
.taq-hero-caustics img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  margin: -10%;
}
@keyframes caustics-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, -2%) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}

.taq-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 140px 24px 100px;
}

.taq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: badge-in 800ms 200ms var(--ease-out) forwards;
}
.taq-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  position: relative;
}
.taq-hero-badge .badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--c-primary);
  opacity: 0;
  animation: dot-ring 2s var(--ease-out) infinite;
}
@keyframes dot-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes badge-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero title word-reveal animation */
.taq-hero .taq-hero-title {
  margin-bottom: 24px;
}
.taq-hero .taq-hero-title .word-inner {
  transition-delay: var(--word-delay, 0ms);
}

.taq-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 700ms 900ms var(--ease-out) forwards;
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.taq-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 700ms 1100ms var(--ease-out) forwards;
}

/* Scroll indicator */
.taq-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 600ms 1500ms var(--ease-out) forwards;
}
.taq-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.taq-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--c-muted);
  border-radius: 10px;
  position: relative;
}
.taq-scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: var(--c-primary);
  animation: scroll-dot 1.8s var(--ease-in-out) infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════
   PROOF BAR — Animated counters
   ═══════════════════════════════════════ */
.taq-proof-bar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.taq-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
}
.taq-proof-item {
  text-align: center;
}
.taq-proof-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
}
.taq-proof-label {
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 6px;
}

/* Divider dot between proof items */
.taq-proof-item + .taq-proof-item {
  position: relative;
}
.taq-proof-item + .taq-proof-item::before {
  content: '';
  position: absolute;
  left: calc(clamp(-16px, -3vw, -36px));
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-border);
}

/* ═══════════════════════════════════════
   EXPERIENCE (features) — image + cards
   ═══════════════════════════════════════ */
.taq-experience { background: var(--c-white); }

.taq-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) { .taq-exp-grid { grid-template-columns: 1fr; gap: 48px; } }

.taq-exp-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.taq-exp-image-wrap img {
  width: 100%;
  border-radius: 24px;
}
/* Floating droplet decoration */
.taq-float-droplet {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -20px;
  right: -20px;
  z-index: 2;
  animation: float-gentle 4s var(--ease-in-out) infinite;
  filter: drop-shadow(0 8px 24px rgba(12, 192, 223, 0.2));
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

.taq-feature-list { display: flex; flex-direction: column; gap: 8px; }

.taq-feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .taq-feature-item:hover {
    background: var(--c-primary-light);
    border-color: rgba(12, 192, 223, 0.12);
    transform: translateX(4px);
  }
}

.taq-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), #7DD3FC);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(12, 192, 223, 0.2);
}

.taq-feature-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.taq-feature-item p {
  font-size: var(--text-sm);
  color: var(--c-text);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   COLLECTION — 3D tilt cards
   ═══════════════════════════════════════ */
.taq-collection {
  background: var(--c-subtle);
  position: relative;
}
/* Caustics section bg */
.taq-section-caustics {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.taq-section-caustics img { width: 100%; height: 100%; object-fit: cover; }

.taq-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.taq-section-header p {
  margin-top: 14px;
  font-size: var(--text-body);
  color: var(--c-muted);
}

.taq-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .taq-product-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* 3D tilt card */
.taq-tilt-card {
  perspective: 800px;
}
.taq-product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .taq-product-card:hover {
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(12, 192, 223, 0.1);
  }
}
.taq-product-card.featured {
  border-color: rgba(12, 192, 223, 0.2);
  box-shadow: 0 12px 40px rgba(12, 192, 223, 0.08);
}
@media (min-width: 961px) {
  .taq-product-card.featured { transform: translateY(-12px); }
}
.taq-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(12, 192, 223, 0.2);
}
.taq-product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-dark);
}
.taq-product-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
}
.taq-product-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-subtle);
  aspect-ratio: 1;
}
.taq-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .taq-product-card:hover .taq-product-image img { transform: scale(1.06); }
}
.taq-product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.taq-product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text);
}
.taq-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
  font-size: 9px;
}
.taq-card-cta { margin-top: auto; }

/* ═══════════════════════════════════════
   COMPARISON — Stacked cards
   ═══════════════════════════════════════ */
.taq-compare { background: var(--c-white); }

.taq-compare-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.taq-compare-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .taq-compare-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  }
}
.taq-compare-card .cc-label {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-dark);
  background: var(--c-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
}
.taq-compare-card .cc-label .cc-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--c-primary);
  flex-shrink: 0;
}
.taq-compare-card .cc-good {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-dark);
  background: rgba(12, 192, 223, 0.04);
  border-left: 2px solid var(--c-primary);
}
.taq-compare-card .cc-bad {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--c-muted);
}
@media (max-width: 640px) {
  .taq-compare-card { grid-template-columns: 1fr; }
  .taq-compare-card .cc-label { font-weight: 700; border-bottom: 1px solid var(--c-border); }
}

/* ═══════════════════════════════════════
   PROCESS / GUARANTEE
   ═══════════════════════════════════════ */
.taq-process { background: var(--c-subtle); }

.taq-process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) { .taq-process-layout { grid-template-columns: 1fr; gap: 48px; } }

.taq-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.taq-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-border));
  border-radius: 1px;
}
.taq-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  position: relative;
}
.taq-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-muted);
  flex-shrink: 0;
  z-index: 1;
  transition: border-color 500ms var(--ease-out), color 500ms var(--ease-out), background 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.taq-step.active .taq-step-num {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-light);
  box-shadow: 0 0 0 6px rgba(12, 192, 223, 0.08);
}
.taq-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.taq-step p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.5;
}

/* Guarantee — elevated card with glow */
.taq-guarantee {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.06);
}
.taq-guarantee::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-primary-glow), transparent);
  pointer-events: none;
}
.taq-guarantee-medal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), #38BDF8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(12, 192, 223, 0.25);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   REVIEWS — Hover lift cards
   ═══════════════════════════════════════ */
.taq-reviews { background: var(--c-white); }

.taq-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .taq-reviews-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.taq-review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .taq-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
  }
}
.taq-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 13px;
}
.taq-review-text {
  font-size: var(--text-body);
  color: var(--c-text);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}
.taq-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.taq-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
}
.taq-author-info strong {
  display: block;
  font-size: 14px;
  color: var(--c-dark);
}
.taq-author-info span {
  font-size: 12px;
  color: var(--c-muted);
}

/* ═══════════════════════════════════════
   FAQ — Silky accordion
   ═══════════════════════════════════════ */
.taq-faq { background: var(--c-subtle); }

.taq-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.taq-faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.taq-faq-item.open {
  border-color: rgba(12, 192, 223, 0.18);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}
.taq-faq-trigger {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
  text-align: left;
  transition: color 200ms var(--ease-out);
}
.taq-faq-trigger:hover { color: var(--c-primary); }
.taq-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 350ms var(--ease-out), background 350ms var(--ease-out), color 350ms var(--ease-out);
  color: var(--c-muted);
}
.taq-faq-item.open .taq-faq-icon {
  transform: rotate(45deg);
  background: var(--c-primary);
  color: #fff;
}
.taq-faq-icon svg { width: 12px; height: 12px; }
.taq-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease-out);
}
.taq-faq-item.open .taq-faq-body { max-height: 300px; }
.taq-faq-answer {
  padding: 0 22px 18px;
  font-size: var(--text-sm);
  color: var(--c-text);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CTA — Dark section with depth
   ═══════════════════════════════════════ */
.taq-cta-section {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.taq-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(12, 192, 223, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(56, 189, 248, 0.05), transparent 50%);
}
.taq-cta-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .taq-cta-layout { grid-template-columns: 1fr; text-align: center; }
}
.taq-cta-copy h2 { color: #fff; }
.taq-cta-copy p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-body);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 440px;
}
@media (max-width: 860px) { .taq-cta-copy p { margin-inline: auto; } }

.taq-form-card {
  background: var(--c-white);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.2);
}
.taq-form-card form { display: flex; flex-direction: column; gap: 14px; }
.taq-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  margin-bottom: 5px;
}
.taq-field input,
.taq-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-subtle);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-dark);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.taq-field input:focus,
.taq-field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(12, 192, 223, 0.08);
}
.taq-form-note {
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.taq-footer {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.taq-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.taq-footer-social {
  display: flex;
  gap: 10px;
}
.taq-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  text-decoration: none;
  font-size: 14px;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .taq-footer-social a:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
}
.taq-footer-social a:active { transform: scale(0.95); }
.taq-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--c-muted);
}
.taq-footer-links { display: flex; gap: 20px; }
.taq-footer-links a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.taq-footer-links a:hover { color: var(--c-primary); }

/* ═══════════════════════════════════════
   WHATSAPP + STICKY
   ═══════════════════════════════════════ */
.taq-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  border: 2px solid rgba(255,255,255,0.9);
}
@media (hover: hover) and (pointer: fine) {
  .taq-whatsapp:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
}
.taq-whatsapp:active { transform: scale(0.94); }

.taq-sticky-bar { display: none; }
@media (max-width: 720px) {
  .taq-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 16px;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.06);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--c-border);
  }
  .taq-sticky-text { font-weight: 600; font-size: 13px; color: var(--c-dark); }
  .taq-sticky-bar .taq-btn { padding: 14px 24px; font-size: 13px; }
  .taq-whatsapp { bottom: 72px; }
}

/* ═══════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════ */
.taq-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  z-index: 101;
}
.taq-mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-dark);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
}
.taq-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.taq-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.taq-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.taq-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 450ms var(--ease-drawer);
}
.taq-mobile-menu.open { transform: translateX(0); }
.taq-mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-dark);
  text-decoration: none;
}

@media (max-width: 860px) {
  .taq-nav-links { display: none; }
  .taq-nav > .taq-nav-inner > .taq-btn { display: none; }
  .taq-mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════ */
.taq-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), #38BDF8);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 100ms linear;
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-left], [data-reveal-right], [data-reveal-scale],
  [data-stagger] > *, [data-clip-reveal], [data-clip-left] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .word-reveal .word-inner { transform: none !important; }
  .taq-hero-badge, .taq-hero-sub, .taq-hero-ctas, .taq-scroll-hint {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
