/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #08060a;
  --bg-2: #0e0b14;
  --bg-3: #16111f;
  --ink: #f0edf5;
  --ink-soft: #c8c2d4;
  --ink-mute: #857d93;
  --accent: #059669;
  --accent-2: #10b981;
  --accent-3: #047857;
  --gradient-1: #059669;
  --gradient-2: #34d399;
  --gradient-3: #10b981;
  --gradient-4: #047857;
  --glass: rgba(255,255,255,0.04);
  --glass-hover: rgba(255,255,255,0.08);
  --line: rgba(240,237,245,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max: 1200px;
  --grid-color: rgba(255,255,255,.5);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --accent-soft: rgba(5,150,105,.08);
  --accent-mute: #22c55e;
  --accent-light: #34d399;
  --whatsapp: #168545;
  --sans: 'Sora', system-ui, -apple-system, sans-serif;
  --display: 'Sora', system-ui, sans-serif;
}
html.light {
  --bg: #f5f3f8;
  --bg-2: #eeebf3;
  --bg-3: #e4e0ec;
  --ink: #1a1625;
  --ink-soft: #4a4359;
  --ink-mute: #7a738a;
  --glass: rgba(0,0,0,0.03);
  --glass-hover: rgba(0,0,0,0.06);
  --line: rgba(0,0,0,0.08);
  --grid-color: rgba(0,0,0,.06);
}

html.light .home-blog::before { background: radial-gradient(ellipse at center, rgba(5,150,105,.05), transparent 66%); }

html.light .testi-slide {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 20px 48px -12px rgba(0,0,0,.08);
  padding: 2rem 2.5rem;
}
html.light .testi-stars {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
html.light .testi-slide p {
  color: #1a1625;
  font-weight: 450;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: none;
}
html.light .testi-slide cite strong {
  font-size: .95rem;
  font-weight: 650;
  color: #1a1625;
}
html.light .testi-slide cite span {
  color: #7a738a;
  font-size: .8rem;
}
html.light .testi-arrow {
  opacity: 1;
  background: #fff;
  border-color: rgba(0,0,0,.06);
  color: #4a4359;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
html.light .testi-arrow:hover {
  background: #f5f3f8;
  border-color: #059669;
  color: #059669;
  box-shadow: 0 4px 16px rgba(5,150,105,.12);
  transform: scale(1.08);
}
html.light .testi-dot {
  background: rgba(0,0,0,.12);
}
html.light .testi-dot.is-active {
  background: #059669;
  transform: scale(1.35);
}
html.light .testi-progress {
  background: rgba(0,0,0,.06);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(180deg, #0e0b14 0%, #08060a 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}
html.light body { background: linear-gradient(180deg, #fcfaff 0%, #f5f1fa 50%, #eae5f2 100%); }

/* Sections unified background wrapper */
.sections-body { position: relative; }
.sections-body::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 900px 500px at 20% 6%, rgba(5,150,105,.06) 0%, transparent 60%), radial-gradient(ellipse 700px 400px at 70% 18%, rgba(16,185,129,.05) 0%, transparent 60%), radial-gradient(ellipse 600px 400px at 30% 38%, rgba(5,150,105,.04) 0%, transparent 60%), radial-gradient(ellipse 500px 350px at 75% 55%, rgba(52,211,153,.03) 0%, transparent 60%), radial-gradient(ellipse 700px 400px at 50% 75%, rgba(16,185,129,.04) 0%, transparent 60%), radial-gradient(ellipse 600px 350px at 25% 92%, rgba(5,150,105,.05) 0%, transparent 60%); }
.sections-body::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .06; background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px); background-size: 72px 72px; }
.sections-body > * { position: relative; z-index: 1; }

html.light .sections-body::before { background: radial-gradient(ellipse 900px 500px at 20% 6%, rgba(5,150,105,.035) 0%, transparent 60%), radial-gradient(ellipse 700px 400px at 70% 18%, rgba(16,185,129,.025) 0%, transparent 60%), radial-gradient(ellipse 600px 400px at 30% 38%, rgba(5,150,105,.02) 0%, transparent 60%), radial-gradient(ellipse 500px 350px at 75% 55%, rgba(52,211,153,.015) 0%, transparent 60%), radial-gradient(ellipse 700px 400px at 50% 75%, rgba(16,185,129,.02) 0%, transparent 60%), radial-gradient(ellipse 600px 350px at 25% 92%, rgba(5,150,105,.025) 0%, transparent 60%); }

img, svg, video { display: block; max-width: 100%; }
img:not(.gallery-card-img) { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
p { text-wrap: pretty; }
.desc-section a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--ink); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 500; }
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; opacity: 0; transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--ink); border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px; margin: -16px;
  border: 1px solid var(--ink); border-radius: 50%;
  mix-blend-mode: difference;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.is-interactive .cursor-ring { width: 48px; height: 48px; margin: -24px; }

/* =============================================================
   4. Scroll progress
   ============================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9998; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform-origin: left; transform: scaleX(0); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 1.5rem; transition: background .4s var(--ease-out), padding .3s; }
.nav.is-scrolled { background: rgba(8,6,10,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: .65rem 1.5rem; }
html.light .nav.is-scrolled { background: rgba(252,250,255,.88); }
.nav-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--display); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: none; gap: .25rem; align-items: center; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--ink-mute); padding: .5rem .75rem; border-radius: var(--radius-sm); transition: color .25s, background .25s; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); background: var(--glass); }
.nav-cta { background: #059669 !important; color: #fff !important; padding: .5rem 1.25rem !important; border-radius: var(--radius-sm) !important; box-shadow: 0 2px 12px rgba(0,0,0,.2) !important; position: relative !important; overflow: hidden !important; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); transform: translateX(-100%); transition: transform .6s; }
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover { opacity: .92 !important; transform: translateY(-1px); }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 36px;
  padding: .38rem .5rem .38rem .42rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--ink);
  background: var(--glass-hover);
  border-color: rgba(5,150,105,.34);
  transform: translateY(-1px);
}
.theme-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f8fafc;
  box-shadow: inset -6px -5px 0 #059669, 0 0 16px rgba(5,150,105,.28);
}
html.light .theme-toggle {
  background: rgba(255,255,255,.72);
  border-color: rgba(26,22,37,.08);
  color: #4a4359;
}
html.light .theme-toggle-icon {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251,191,36,.16), 0 0 20px rgba(251,191,36,.26);
}
.nav-hamburger { display: flex; flex-direction: column; gap: 4px; padding: 8px; border-radius: var(--radius-sm); }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out); }
@media (min-width: 720px) { .nav-links { display: flex; } .nav-hamburger { display: none; } }

/* Mobile nav */
.nav-mobile { position: fixed; inset: 0; z-index: 99; background: rgba(8,6,10,.95); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out); display: flex; align-items: center; justify-content: center; }
html.light .nav-mobile { background: rgba(252,250,255,.95); }
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.nav-mobile-inner a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink-mute); padding: .75rem 1.5rem; border-radius: var(--radius-sm); transition: color .25s, background .25s; }
.nav-mobile-inner a:hover { color: var(--ink); background: var(--glass); }
.nav-mobile-cta { color: var(--accent) !important; }
.theme-toggle-mobile {
  margin: .5rem 0;
  padding: .62rem .85rem;
}

/* =============================================================
   6. Buttons
   ============================================================= */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; font-size: .9rem; font-weight: 600; border-radius: var(--radius-sm); transition: all .35s var(--ease-out); cursor: pointer; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.08); opacity: 0; transition: opacity .35s; }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97) !important; }
.btn-primary { background: #059669; color: #fff; box-shadow: 0 4px 20px rgba(5,150,105,.25); }
.btn-primary:hover { background: #047857; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.btn-ghost { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(5,150,105,.06); box-shadow: 0 0 20px rgba(5,150,105,.08); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #14783d; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-full { width: 100%; justify-content: center; padding: .9rem 1.75rem; }
/* =============================================================
   7. Reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal=left] { transform: translateX(-40px); }
[data-reveal=left].is-revealed { transform: translateX(0); }
[data-reveal=right] { transform: translateX(40px); }
[data-reveal=right].is-revealed { transform: translateX(0); }
[data-reveal=scale] { transform: scale(.92); }
[data-reveal=scale].is-revealed { transform: scale(1); }

/* Stagger reveal for grid children */
[data-stagger-reveal] > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft); transition-delay: calc(var(--i,0) * .07s); }
[data-stagger-reveal].is-revealed > * { opacity: 1; transform: none; }

[data-process-chain] > * { opacity: 0; }

/* Parallax section bg */
[data-parallax] { position: relative; overflow: hidden; }
[data-parallax]::before { content: ''; position: absolute; inset: -20% 0; z-index: 0; background: inherit; will-change: transform; pointer-events: none; }
[data-parallax] > * { position: relative; z-index: 1; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 8rem 1.5rem 4rem; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; max-width: var(--max); margin: 0 auto; width: 100%; }
@media (min-width: 860px) { .hero-inner { grid-template-columns: 1fr 1fr; } }
.hero-text-col { text-align: center; }
@media (min-width: 860px) { .hero-text-col { text-align: left; } }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent-soft); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: .4rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 600; color: var(--accent-light); margin-bottom: 2rem; border: 1px solid rgba(5,150,105,.2); box-shadow: 0 0 20px rgba(5,150,105,.06); }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-mute); display: inline-block; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero-title { font-family: var(--display); font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1.05; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: var(--ink-mute); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
@media (min-width: 860px) { .hero-sub { margin: 0 0 2.5rem; } }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 860px) { .hero-actions { justify-content: flex-start; } }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 480px; margin: 4rem auto 0; }
@media (min-width: 860px) { .hero-stats { margin: 4rem 0 0; } }
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.hero-stat-num span { color: var(--ink-mute); }
.hero-stat-label { font-size: .8rem; color: var(--ink-mute); font-weight: 500; }
/* Hero visual column */
.hero-visual-col { position: relative; display: none; align-items: center; justify-content: center; width: 100%; }
@media (min-width: 860px) { .hero-visual-col { display: flex; } }

/* ---------- Phone mockup ---------- */
/* ---------- Devices mockup container ---------- */
.devices-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  margin: 0 auto;
}

/* Laptop Mockup */
.laptop-mockup {
  position: relative;
  width: 380px;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  z-index: 1;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out);
  margin-right: 120px;
  opacity: .92;
  will-change: transform;
}
@media (max-width: 640px) {
  .laptop-mockup {
    width: 280px;
    margin-right: 30px;
  }
}
.laptop-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #0a0c10;
  border: 8px solid #1a191f;
  border-bottom-width: 12px;
  overflow: hidden;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.6), 
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.laptop-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
  object-position: top;
  background: #0a0c10;
  pointer-events: none;
}
.laptop-base {
  width: 110%;
  height: 8px;
  background: linear-gradient(180deg, #3d3b42, #1b1a1f);
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: -8px;
  left: -5%;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.laptop-notch {
  width: 50px;
  height: 5px;
  background: #111013;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Laptop success toast */
.laptop-success-toast {
  position: absolute;
  bottom: -70px;
  left: 15px;
  right: 15px;
  background: rgba(22, 133, 69, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 12px 30px rgba(22,133,69,0.3);
  z-index: 10;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
}
.laptop-success-toast.is-open {
  transform: translateY(-85px);
}
.laptop-toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: left;
}
.laptop-toast-check {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.laptop-toast-title {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
}
.laptop-toast-sub {
  font-size: 7px;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}

/* Phone Mockup */
.phone-mockup {
  position: absolute;
  bottom: -5px;
  right: 10px;
  width: 248px;
  z-index: 2;
  transform: translateZ(40px);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
  filter: drop-shadow(0 0 40px rgba(5,150,105,.1)) drop-shadow(0 40px 70px rgba(0,0,0,.5));
}
@media (max-width: 640px) {
  .phone-mockup {
    width: 100px;
    right: 8px;
    bottom: -2px;
  }
}
.phone-bezel {
  position: relative;
  width: 100%;
  aspect-ratio: 140 / 280;
  background: linear-gradient(
    155deg,
    #3d3945 0%,
    #2b2930 20%,
    #1f1d24 45%,
    #121016 65%,
    #0d0b0f 85%,
    #08070a 100%
  );
  border-radius: 28px;
  padding: 5px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 2px 0 rgba(0,0,0,.4) inset,
    0 -1px 0 rgba(255,255,255,.04) inset,
    0 25px 60px rgba(0,0,0,0.65),
    0 8px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}
.phone-bezel::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.04) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255,255,255,.02) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(5,150,105,.04) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(16,185,129,.02) 0%, transparent 50%),
    linear-gradient(180deg, #0c0912 0%, #07050a 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,.6);
}
/* ---------- Phone app mockup ---------- */
.phone-app {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.phone-app-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #0c0a1a 0%, #0e0b24 40%, #090718 100%);
}
.phone-app-slides {
  display: flex;
  flex: 1;
  width: 100%;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.phone-app-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}
.phone-app-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 5px;
  font-feature-settings: "tnum";
}
.phone-app-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1.2;
  margin-bottom: 2px;
}
.phone-app-sub {
  font-size: 7px;
  color: rgba(255,255,255,.4);
  line-height: 1.2;
}
.phone-app-dots {
  display: flex;
  gap: 4px;
  padding: 0 0 12px;
  justify-content: center;
}
.phone-app-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: all .4s ease;
}
.phone-app-dot.is-active {
  width: 16px;
  border-radius: 2px;
  background: #059669;
}

/* Phone process carousel */
.devices-wrap .phone-mockup {
  width: 248px;
  bottom: 88px;
  right: 82px;
}
@media (max-width: 1180px) and (min-width: 861px) {
  .hero-visual-col .laptop-mockup {
    width: 310px;
    margin-right: 104px;
  }
  .devices-wrap .phone-mockup {
    width: 218px;
    right: 20px;
    bottom: 164px;
  }
}
.phone-app-slides[data-app-track] { display: none; }
.phone-process-slides {
  display: flex;
  flex: 1;
  width: 100%;
  transition: transform .72s cubic-bezier(.16,1,.3,1);
}
.phone-process-slides .phone-app-slide {
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  padding: 58px 17px 18px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.phone-app-slide.is-active .phone-app-title,
.phone-app-slide.is-active .phone-app-note,
.phone-app-slide.is-active .phone-template-card,
.phone-app-slide.is-active .phone-brand-row,
.phone-app-slide.is-active .phone-checklist span,
.phone-app-slide.is-active .phone-publish-card,
.phone-app-slide.is-active .phone-time-pill {
  animation: phoneItemIn .58s cubic-bezier(.16,1,.3,1) both;
}
.phone-app-slide.is-active .phone-app-note { animation-delay: .08s; }
.phone-app-slide.is-active .phone-template-card:nth-child(2),
.phone-app-slide.is-active .phone-brand-row:nth-child(2),
.phone-app-slide.is-active .phone-checklist span:nth-child(2) { animation-delay: .08s; }
.phone-app-slide.is-active .phone-brand-row:nth-child(3),
.phone-app-slide.is-active .phone-checklist span:nth-child(3),
.phone-app-slide.is-active .phone-time-pill { animation-delay: .14s; }
.phone-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}
.phone-app-top span {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  color: #ecfdf5;
}
.phone-app-top em {
  font-style: normal;
  font-size: 9.2px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,237,245,.48);
}
.phone-process-slides .phone-app-title {
  margin: 1px 0 1px;
  font-size: 13px;
  line-height: 1.15;
}
.phone-app-note {
  margin-top: auto;
  font-size: 9.4px;
  line-height: 1.35;
  color: rgba(240,237,245,.48);
}
.phone-template-stack,
.phone-brand-panel,
.phone-checklist {
  display: grid;
  gap: 9px;
}
.phone-idea-panel {
  display: grid;
  gap: 12px;
  padding: 18px 0 10px;
}
.phone-idea-panel strong {
  display: block;
  max-width: 190px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: .98;
  color: #ecfdf5;
  letter-spacing: -0.02em;
}
.phone-idea-panel p {
  max-width: 180px;
  font-size: 10.6px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(240,237,245,.62);
}
.phone-template-card,
.phone-brand-row,
.phone-checklist span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 52px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}
.phone-template-card.is-selected {
  border-color: rgba(5,150,105,.52);
  background: linear-gradient(135deg, rgba(5,150,105,.22), rgba(52,211,153,.08));
}
.phone-template-card strong,
.phone-brand-row span,
.phone-checklist span,
.phone-publish-card strong {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}
.phone-template-card small,
.phone-brand-row strong,
.phone-publish-card small {
  font-size: 8.2px;
  font-weight: 700;
  color: rgba(240,237,245,.5);
}
.phone-brand-row {
  min-height: 46px;
}
.phone-brand-row:first-child {
  justify-content: flex-start;
}
.phone-brand-row:first-child span {
  margin-right: auto;
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 0 14px currentColor;
}
.swatch-blue { color: #059669; background: #059669; }
.swatch-cyan { color: #34d399; background: #34d399; }
.swatch-green { color: #22c55e; background: #22c55e; }
.phone-checklist span {
  justify-content: flex-start;
  min-height: 43px;
  font-size: 9.4px;
}
.phone-checklist i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.4);
  position: relative;
}
.phone-checklist i::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #34d399;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.phone-publish-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 22px 12px;
  border-radius: 15px;
  border: 1px solid rgba(34,197,94,.25);
  background: radial-gradient(circle at 50% 0%, rgba(34,197,94,.22), rgba(255,255,255,.045) 55%);
  text-align: center;
}
.publish-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #22c55e;
  color: #06110a;
  font-size: 12px;
  font-weight: 900;
}
.phone-time-pill {
  align-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d9ffe6;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.22);
  font-size: 9.4px;
  font-weight: 800;
}
@keyframes phoneItemIn {
  from { opacity: 0; transform: translateY(9px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .devices-wrap .phone-mockup { width: 156px; bottom: 42px; }
  .phone-app-num { font-size: 20px; margin-bottom: 3px; }
  .phone-app-title { font-size: 7px; }
  .phone-app-sub { font-size: 6px; }
  .phone-app-dots { padding: 0 0 10px; gap: 3px; }
  .phone-app-dot.is-active { width: 12px; }
  .phone-process-slides .phone-app-slide { padding: 39px 9px 11px; gap: 6px; }
  .phone-app-top span { font-size: 17px; }
  .phone-app-top em { font-size: 6px; }
  .phone-process-slides .phone-app-title { font-size: 8px; }
  .phone-app-note { font-size: 6px; }
  .phone-idea-panel { gap: 8px; padding-top: 10px; }
  .phone-idea-panel strong { font-size: 14px; max-width: 118px; }
  .phone-idea-panel p { font-size: 6.6px; max-width: 112px; }
  .phone-template-card,.phone-brand-row,.phone-checklist span { min-height: 28px; padding: 5px 6px; border-radius: 8px; }
  .phone-template-card strong,.phone-brand-row span,.phone-checklist span,.phone-publish-card strong { font-size: 6.2px; }
  .phone-template-card small,.phone-brand-row strong,.phone-publish-card small { font-size: 5.2px; }
}
.phone-camera {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: radial-gradient(circle at 40% 35%, #1a1720, #0d0b0f 60%);
  border: .5px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 1;
}
.phone-camera::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.phone-speaker {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: linear-gradient(180deg, #2a2733, #1a1820);
  border-radius: 3px;
  z-index: 1;
}
.phone-camera::after {
  content: '';
  position: absolute;
  top: .5px;
  left: 1px;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent);
}
.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(6px);
  width: 10px;
  height: 1.5px;
  background: rgba(255,255,255,.04);
  border-radius: 1px;
  z-index: 10;
}

/* Floating Glassmorphic Designer Inspector Panel (Paso 2) */
.designer-inspector {
  position: absolute;
  top: 40px;
  left: 10px;
  width: 135px;
  background: rgba(14, 11, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px 10px;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transform: translateZ(50px);
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0;
  pointer-events: none;
  text-align: left;
}
.designer-inspector.is-open {
  opacity: 1;
  pointer-events: auto;
}
.inspector-header {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 5px;
  margin-bottom: 6px;
}
.inspector-dot-red { width: 4px; height: 4px; border-radius: 50%; background: #fb7185; }
.inspector-dot-yellow { width: 4px; height: 4px; border-radius: 50%; background: #fbbf24; }
.inspector-dot-green { width: 4px; height: 4px; border-radius: 50%; background: #34d399; }
.inspector-title {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.inspector-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.inspector-label {
  font-size: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.inspector-colors-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}
.inspector-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.inspector-color-dot.active {
  border-color: #fff;
  transform: scale(1.15);
}

/* Confetti particles inside phone */
.phone-confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.phone-confetti {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
}

/* Bezel glare effect */
.phone-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.015) 18%,
    transparent 35%,
    transparent 65%,
    rgba(255,255,255,.01) 80%,
    rgba(255,255,255,.035) 100%
  );
  pointer-events: none;
  z-index: 4;
}
.phone-glare::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 35%,
    rgba(255,255,255,.02) 48%,
    rgba(255,255,255,.045) 50%,
    rgba(255,255,255,.02) 52%,
    transparent 65%
  );
  pointer-events: none;
}
.phone-glare::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    -45deg,
    transparent 40%,
    rgba(255,255,255,.008) 45%,
    rgba(255,255,255,.025) 47%,
    rgba(255,255,255,.008) 49%,
    transparent 54%
  );
  pointer-events: none;
  animation: phoneShimmer 8s ease-in-out infinite;
}
@keyframes phoneShimmer {
  0%, 100% { opacity: .3; transform: translateX(-10%); }
  50% { opacity: 1; transform: translateX(10%); }
}

/* ---------- 3D entrance animation ---------- */
.devices-wrap {
  transform-style: preserve-3d;
  opacity: 0;
  visibility: hidden;
}
.devices-wrap.is-visible {
  animation: deviceEntrance 1s .3s var(--ease-out) forwards;
}
@keyframes deviceEntrance {
  0% { opacity: 0; visibility: visible; transform: translate3d(0, 80px, -200px) rotateY(-18deg) rotateX(15deg) scale(.75); }
  100% { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0) rotateY(-6deg) rotateX(3deg) scale(1); }
}
.devices-wrap.is-visible .laptop-mockup,
.devices-wrap.is-visible .phone-mockup {
  transition: transform 0.4s var(--ease-out);
}
.devices-wrap.is-visible:hover .laptop-mockup {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}


/* =============================================================
   9. Section
   ============================================================= */
.section {
  padding: 5rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .75rem; padding: .25rem .8rem; border-radius: 100px; background: rgba(5,150,105,.08); border: 1px solid rgba(5,150,105,.15); }
.section-header h2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1rem; }
.section-header h2 em { color: var(--accent); font-style: normal; }
.section-header p { color: var(--ink-mute); max-width: 520px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }

/* =============================================================
   10. Gallery
   ============================================================= */
.galleries { max-width: var(--max); margin: 0 auto; padding: 5rem 1.5rem; position: relative; }

.gallery-controls { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; align-items: center; }
@media (min-width: 720px) { .gallery-controls { flex-direction: row; justify-content: space-between; } }
.gallery-filters { display: flex; flex-wrap: wrap; gap: .25rem; }
.gallery-filter { padding: .4rem .85rem; font-size: .8rem; font-weight: 500; border-radius: var(--radius-sm); color: var(--ink-mute); transition: all .25s var(--ease-out); }
.gallery-filter:hover { color: var(--ink); background: var(--glass); }
.gallery-filter.is-active { background: var(--accent); color: #fff; }
.gallery-search { position: relative; width: 100%; }
@media (min-width: 720px) { .gallery-search { width: 220px; } }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); pointer-events: none; }
.search-input { width: 100%; padding: .6rem .75rem .6rem 2.2rem; background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .85rem; color: var(--ink); outline: none; transition: border-color .25s; }
.search-input::placeholder { color: var(--ink-mute); }
.search-input:focus { border-color: var(--accent); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 540px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid .gallery-card.is-hidden { display: none; }
.gallery-footer { text-align: center; margin-top: 2rem; }
.gallery-more svg { transition: transform .3s var(--ease-out); }
.gallery-more:hover svg { transform: translateY(2px); }
.gallery-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s var(--ease-out);
  cursor: pointer; position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 0 0 0 rgba(5,150,105,0);
}
.gallery-card:hover {
  transform: translateY(-8px); border-color: rgba(5,150,105,.3);
  box-shadow: 0 0 0 1px rgba(5,150,105,.08), 0 32px 80px rgba(5,150,105,.1);
}
.gallery-card-img-wrap { position: relative; overflow: hidden; background: var(--bg-2); }
.browser-content { overflow: hidden; position: relative; background: var(--bg-2); border-radius: 20px 20px 0 0; }
.browser-content::before { content: ''; display: block; padding-top: 56.25%; }
.browser-content .gallery-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease-out); }
.gallery-card:hover .browser-content .gallery-card-img { transform: scale(1.05); }

.gallery-card-overlay { position: absolute; inset: 0; background: rgba(8,6,10,0); transition: background .4s var(--ease-soft); display: flex; align-items: center; justify-content: center; gap: .75rem; z-index: 2; backdrop-filter: blur(0px); }
.gallery-card:hover .gallery-card-overlay { background: rgba(8,6,10,.65); backdrop-filter: blur(2px); }
.gallery-card-cta, .gallery-card-cta-wa { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.25rem; border-radius: 100px; font-size: .8rem; font-weight: 600; opacity: 0; transform: translateY(12px); transition: all .4s var(--ease-out); }
.gallery-card-cta { background: rgba(255,255,255,.92); color: var(--bg); }
.gallery-card-cta:hover { background: #fff; }
.gallery-card-cta-wa { background: #168545; color: #fff; }
.gallery-card-cta-wa:hover { background: #14783d; }
.gallery-card-cta-wa svg { width: 14px; height: 14px; }
.gallery-card:hover .gallery-card-cta, .gallery-card:hover .gallery-card-cta-wa { opacity: 1; transform: translateY(0); }
.gallery-card:hover .gallery-card-cta-wa { transition-delay: .06s; }
.gallery-card-body { padding: 1.35rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.gallery-card-category { display: inline-block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: .35rem; }
.gallery-card h3 { font-family: var(--display); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.gallery-card p { font-size: .82rem; color: var(--ink-mute); line-height: 1.5; flex: 1; }
.gallery-card-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .75rem; }
.gallery-card-tags span { font-size: .68rem; padding: .2rem .55rem; border-radius: 100px; background: rgba(255,255,255,0.04); color: var(--ink-mute); border: 1px solid rgba(255,255,255,0.06); }
.gallery-empty { display: none; text-align: center; padding: 4rem 1rem; color: var(--ink-mute); }
.gallery-empty.is-visible { display: block; }

/* Premium template showroom */
.galleries { max-width: none; overflow: hidden; isolation: isolate; }
.galleries > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.gallery-showcase-stats { display: grid; grid-template-columns: 1fr; gap: .65rem; margin: -1.5rem auto 2rem; }
@media (min-width: 680px) { .gallery-showcase-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; } }
.gallery-showcase-stats span { display: flex; align-items: baseline; justify-content: center; gap: .45rem; min-height: 48px; padding: .7rem 1rem; color: var(--ink-mute); font-size: .82rem; border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-sm); background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.gallery-showcase-stats strong { font-family: var(--display); font-size: 1.25rem; color: var(--ink); letter-spacing: 0; }
.gallery-controls { align-items: stretch; padding: .7rem; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.035); box-shadow: 0 24px 80px rgba(0,0,0,.18); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
@media (min-width: 720px) { .gallery-controls { align-items: center; } }
.gallery-filters { gap: .35rem; padding: .2rem; border-radius: 14px; background: rgba(0,0,0,.16); }
.gallery-filter { min-height: 38px; padding: .5rem .9rem; border-radius: 12px; position: relative; overflow: hidden; }
.gallery-filter::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: 6px; height: 1px; background: currentColor; opacity: .5; transition: left .25s var(--ease-out), right .25s var(--ease-out); }
.gallery-filter:hover::after,.gallery-filter.is-active::after { left: 18px; right: 18px; }
.gallery-filter.is-active { background: #d1fae5; color: #022c22; box-shadow: 0 10px 30px rgba(5,150,105,.22); }
.gallery-search { max-width: none; }
@media (min-width: 720px) { .gallery-search { width: 300px; } }
.search-input { min-height: 44px; border-radius: 14px; background: rgba(8,6,10,.42); border-color: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.search-input:focus { border-color: rgba(5,150,105,.55); box-shadow: 0 0 0 4px rgba(5,150,105,.12); }
.gallery-grid { gap: 1.5rem; align-items: stretch; }
@media (min-width: 1180px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.65rem; } }
.gallery-card { border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border-color: rgba(255,255,255,.09); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); transform-style: preserve-3d; }
.gallery-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.gallery-card:hover::before { opacity: 1; }
.gallery-card:hover { transform: translateY(-10px); border-color: rgba(238,240,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12); }
.gallery-card-img-wrap { padding: .7rem .7rem 0; overflow: visible; background: transparent; z-index: 1; }
.gallery-browser-bar { display: flex; align-items: center; gap: .34rem; height: 32px; padding: 0 .75rem; color: var(--ink-mute); background: rgba(5,4,8,.76); border: 1px solid rgba(255,255,255,.07); border-bottom: 0; border-radius: 13px 13px 0 0; }
.gallery-browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.gallery-browser-bar span:nth-child(1) { background: #fb7185; }
.gallery-browser-bar span:nth-child(2) { background: #fbbf24; }
.gallery-browser-bar span:nth-child(3) { background: #34d399; }
.gallery-browser-bar em { margin-left: .45rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-style: normal; font-size: .72rem; color: rgba(240,237,245,.58); }
.browser-content { border-radius: 0 0 14px 14px; border: 1px solid rgba(255,255,255,.07); box-shadow: 0 18px 50px rgba(0,0,0,.26); }
.browser-content::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 22%, rgba(8,6,10,.16)); }
.browser-content .gallery-card-img { transition: transform 1.15s var(--ease-out), filter .45s var(--ease-out); }
.gallery-card:hover .browser-content .gallery-card-img { transform: scale(1.055) translateY(-2%); filter: saturate(1.08) contrast(1.03); }
.gallery-card-overlay { inset: .7rem .7rem 0; border-radius: 13px; align-items: flex-end; padding: 1rem; background: linear-gradient(180deg, transparent 32%, rgba(8,6,10,.84)); backdrop-filter: blur(0); }
.gallery-card:hover .gallery-card-overlay { background: linear-gradient(180deg, rgba(8,6,10,.08), rgba(8,6,10,.88)); backdrop-filter: blur(1px); }
.gallery-card-cta,.gallery-card-cta-wa { min-height: 40px; border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.gallery-card-cta { background: #ecfdf5; color: #022c22; }
.gallery-card-cta-wa { background: #17a34a; }
.gallery-card-body { padding: 1.2rem 1.2rem 1.3rem; position: relative; z-index: 1; }
.gallery-card-kicker { display: flex; justify-content: space-between; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.gallery-card-category { margin: 0; color: #34d399; }
.gallery-card-status { flex-shrink: 0; font-size: .66rem; font-weight: 700; letter-spacing: .04em; color: rgba(240,237,245,.62); text-transform: uppercase; }
.gallery-card h3 { display: flex; align-items: center; justify-content: space-between; gap: .75rem; font-size: 1.08rem; line-height: 1.2; letter-spacing: 0; }
.gallery-card h3 svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); opacity: .72; transform: translate(-2px,2px); transition: transform .28s var(--ease-out), opacity .28s; }
.gallery-card:hover h3 svg { opacity: 1; transform: translate(2px,-2px); }
.gallery-card p { color: rgba(200,194,212,.78); }
.gallery-card-tags span { background: rgba(255,255,255,.055); color: rgba(240,237,245,.68); border-color: rgba(255,255,255,.08); }
.gallery-footer { margin-top: 2.5rem; }
@media (max-width: 539px) { .gallery-showcase-stats { margin-top: -1rem; } .gallery-controls { border-radius: 16px; } .gallery-filters { display: grid; grid-template-columns: 1fr 1fr; width: 100%; } .gallery-filter:first-child { grid-column: 1 / -1; } .gallery-card-overlay { align-items: flex-end; flex-wrap: wrap; } .gallery-card-cta,.gallery-card-cta-wa { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .gallery-card,.gallery-card::before,.gallery-card-img,.gallery-filter::after { transition: none !important; } }

/* =============================================================
   11. Benefits
   ============================================================= */
.benefits { padding: 5rem 1.5rem; max-width: none; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 960px; margin: 0 auto; }
@media (min-width: 540px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 20px; border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
  position: relative; transform-style: preserve-3d;
  z-index: 1;
}
.benefit-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-card:hover {
  transform: translateY(-8px); border-color: rgba(238,240,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius);
  background: rgba(5,150,105,.1); color: var(--accent);
  margin-bottom: 1.25rem;
  transition: transform .4s var(--ease-out), background .3s;
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: rgba(5,150,105,.18);
}
.benefit-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.2; }
.benefit-card p { font-size: .85rem; color: var(--ink-mute); line-height: 1.65; }
.benefit-metric {
  display: inline-block; margin-top: .85rem;
  font-size: .72rem; font-weight: 600; color: var(--accent);
  padding: .2rem .7rem; border-radius: 100px;
  background: rgba(5,150,105,.08);
  letter-spacing: .02em;
}

/* =============================================================
   12. Process
   ============================================================= */
.process { max-width: none; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 960px; margin: 0 auto; position: relative; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .process-card { position: relative; }
  .process-card:not(:last-child) .process-connector {
    content: ''; position: absolute; top: 28px; left: calc(100% + .25rem);
    width: calc(100% - 2.5rem); height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, transparent 100%);
    opacity: .25;
  }
}
.process-card { text-align: center; padding: 2.25rem 1.25rem; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.09); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); position: relative; transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s; transform-style: preserve-3d; z-index: 1; }
.process-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.process-card > * { position: relative; z-index: 1; }
.process-card:hover::before { opacity: 1; }
.process-card:hover { transform: translateY(-8px); border-color: rgba(238,240,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12); }
.process-card--pay { background: linear-gradient(180deg, rgba(52,211,153,.08), rgba(52,211,153,.025)); border-color: rgba(52,211,153,.12); }
.process-card--pay::before { background: linear-gradient(135deg, rgba(52,211,153,.2), transparent 24%, transparent 68%, rgba(5,150,105,.1)); }
.process-card--pay:hover { border-color: rgba(52,211,153,.25); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(52,211,153,.12); }
.process-card--pay .process-icon { background: rgba(52,211,153,.1); color: var(--gradient-3); }
.process-card--pay:hover .process-icon { background: rgba(52,211,153,.2); }
.process-milestone {
  display: inline-block; vertical-align: middle; margin-left: .35rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .04em; padding: .12rem .45rem;
  border-radius: 100px; background: var(--glass); color: var(--ink-soft); line-height: 1.4;
}
.process-num { position: absolute; top: 1rem; right: 1rem; font-size: .7rem; font-weight: 700; color: var(--ink-mute); opacity: .3; font-family: var(--display); }
.process-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--radius); background: rgba(5,150,105,.1); color: var(--accent); margin-bottom: 1.25rem; transition: transform .4s var(--ease-out), background .3s; }
.process-card:hover .process-icon { transform: scale(1.1); background: rgba(5,150,105,.18); }
.process-card h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.process-card p { font-size: .875rem; color: var(--ink-mute); line-height: 1.6; max-width: 280px; margin: 0 auto; }
.process-footnote { text-align: center; margin-top: 2.5rem; }
.process-footnote p { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-mute); padding: .55rem 1.25rem; border-radius: 100px; background: rgba(5,150,105,.05); border: 1px solid rgba(5,150,105,.08); line-height: 1.5; }

/* =============================================================
   13. Plans / Pricing
   ============================================================= */
.plans { padding: 5rem 1.5rem; max-width: none; }
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; align-items: start; }
@media (min-width: 720px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.09); padding: 2.25rem 1.75rem; display: flex; flex-direction: column; transition: opacity .8s var(--ease-soft), transform .5s var(--ease-out), border-color .4s, box-shadow .5s; position: relative; transform-style: preserve-3d; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); }
.plan-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.plan-card > * { position: relative; z-index: 1; }
.plan-card:hover::before { opacity: 1; }
.plan-card:hover { transform: translateY(-10px); border-color: rgba(238,240,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12); }
.plan-card--popular { border-color: var(--accent); background: linear-gradient(180deg, rgba(5,150,105,.10), rgba(5,150,105,.03)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(5,150,105,.3), 0 34px 96px rgba(0,0,0,.34); }
.plan-card--popular::before { background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 24%, transparent 68%, rgba(5,150,105,.22)); }
.plan-card--popular:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(5,150,105,.5), 0 34px 96px rgba(0,0,0,.4), 0 0 90px rgba(5,150,105,.15); }
.plan-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: linear-gradient(135deg, #059669, #10b981); color: #fff; font-size: .68rem; font-weight: 700; padding: .35rem 1.25rem; border-radius: 20px; white-space: nowrap; font-family: var(--display); box-shadow: 0 4px 20px rgba(5,150,105,.35), 0 0 40px rgba(5,150,105,.12); letter-spacing: .02em; }
.plan-header { margin-bottom: 1.25rem; }
.plan-header h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; margin-bottom: .35rem; }
.plan-header p { font-size: .8rem; color: var(--ink-mute); line-height: 1.5; }
.plan-price { margin-bottom: 1.5rem; }
.plan-amount { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--ink); }
.plan-period { font-size: .8rem; color: var(--ink-mute); margin-left: .25rem; }
.plan-features { list-style: none; margin: 0 0 1.5rem 0; padding: 0; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--ink-soft); padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.4; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li svg { flex-shrink: 0; color: var(--accent); margin-top: .15rem; }
.plan-card .btn-outline { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.plan-card .btn-outline:hover { border-color: var(--accent); color: var(--ink); background: var(--glass); }

/* =============================================================
   14. Testimonials
   ============================================================= */
.testimonials { padding: 5rem 1.5rem; max-width: none; }
.testi-carousel { max-width: 640px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform .5s var(--ease-out), opacity .3s var(--ease-out); }
.testi-slide { flex: 0 0 100%; text-align: center; padding: 2.5rem 2rem; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.09); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); }
.testi-stars { font-size: 1.2rem; color: #34d399; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-slide p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.5rem; font-style: italic; max-width: 520px; margin-left: auto; margin-right: auto; }
.testi-slide cite { font-style: normal; display: block; }
.testi-slide cite strong { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); }
.testi-slide cite span { font-size: .78rem; color: var(--ink-mute); }
.testi-dots { display: flex; justify-content: center; gap: .4rem; margin-top: 1.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.testi-dot.is-active { background: var(--accent); transform: scale(1.3); }

.testi-carousel { position: relative; }
.testi-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); pointer-events: none; display: flex; justify-content: space-between; z-index: 2; }
.testi-arrow { pointer-events: auto; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--glass); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s var(--ease-out); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; }
.testi-carousel:hover .testi-arrow { opacity: 1; }
.testi-arrow:hover { background: var(--glass-hover); color: var(--ink); border-color: var(--accent); transform: scale(1.1); }
.testi-arrow:active { transform: scale(.95); }
.testi-arrow svg { width: 18px; height: 18px; display: block; stroke-linecap: round; stroke-linejoin: round; }
.testi-progress { height: 2px; background: var(--line); border-radius: 2px; margin-top: 1.25rem; overflow: hidden; max-width: 320px; margin-left: auto; margin-right: auto; }
.testi-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; width: 100%; }

@media (max-width: 640px) {
  .testi-arrow { display: none; }
}

/* =============================================================
   14b. Home Blog
   ============================================================= */
.home-blog { position: relative; max-width: none; }
.home-blog-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 760px) { .home-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.home-blog-card { display: flex; flex-direction: column; gap: .75rem; min-height: 100%; padding: 1.4rem; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); backdrop-filter: blur(8px); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s; position: relative; transform-style: preserve-3d; z-index: 1; }
.home-blog-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.home-blog-card:hover::before { opacity: 1; }
.home-blog-card > * { position: relative; z-index: 1; }
.home-blog-card:hover { transform: translateY(-6px); border-color: rgba(238,240,255,.28); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12); }
.home-blog-card span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
.home-blog-card h3 { font-family: var(--display); font-size: 1.08rem; line-height: 1.25; letter-spacing: 0; }
.home-blog-card p { color: var(--ink-mute); font-size: .9rem; line-height: 1.65; }
.home-blog-card strong { margin-top: auto; font-size: .86rem; color: var(--ink); }
.home-blog-footer { display: flex; justify-content: center; margin-top: 2rem; }
.home-blog::before { content: ''; position: absolute; left: 50%; top: 12%; z-index: -1; width: min(620px, 80vw); height: 280px; background: radial-gradient(ellipse at center, rgba(5,150,105,.09), transparent 66%); filter: blur(26px); transform: translateX(-50%); pointer-events: none; animation: homeBlogAura 12s ease-in-out infinite; }
.home-blog-card { position: relative; overflow: hidden; }
.home-blog-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,.08), transparent 38%); transform: translateX(-120%); transition: transform .75s var(--ease-out); pointer-events: none; }
.home-blog-card:hover::before { transform: translateX(120%); }
.home-blog-card strong { display: inline-flex; align-items: center; gap: .35rem; }
.home-blog-card strong::after { content: ''; width: 16px; height: 1px; background: currentColor; transform-origin: left; transform: scaleX(.55); transition: transform .25s var(--ease-out); }
.home-blog-card:hover strong::after { transform: scaleX(1); }
@keyframes homeBlogAura { 0%,100% { transform: translateX(-50%) translateY(0) scale(1); } 50% { transform: translateX(-50%) translateY(22px) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .home-blog::before { animation: none; } .home-blog-card::before { display: none; } }

/* =============================================================
   15. Clients Marquee
   ============================================================= */
.clients { max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem; }
.marquee-wrap { overflow: hidden; width: 100%; }
.marquee-track { overflow: hidden; }
.marquee-content { display: flex; gap: 3rem; width: max-content; animation: marquee-scroll 25s linear infinite; padding: 1rem 0; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 1.5rem; font-family: var(--display); font-size: .95rem; font-weight: 700; color: var(--ink-mute); background: var(--glass); border: 1px solid var(--line); border-radius: 100px; white-space: nowrap; letter-spacing: .02em; opacity: .6; transition: opacity .3s, color .3s, transform .3s; }
.client-logo:hover { opacity: 1; color: var(--ink); transform: translateY(-2px); }

/* =============================================================
   16. FAQ
   ============================================================= */
.faq { padding: 5rem 1.5rem; max-width: none; }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { padding: 0 1.25rem; margin-bottom: .75rem; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); transition: border-color .3s, box-shadow .3s; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22); }
.faq-item[open] { border-color: rgba(238,240,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34); }
.faq-item:first-child { margin-top: 0; }
.faq-q { list-style: none; padding: 1.15rem 0; font-weight: 600; font-size: .9rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; color: var(--ink); transition: color .25s; }
.faq-q:hover { color: var(--accent); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 0 1.1rem 0; font-size: .85rem; color: var(--ink-soft); line-height: 1.65; }

/* =============================================================
   17. Renewal / post-year
   ============================================================= */
.renewal { padding: 5rem 1.5rem 6rem; max-width: none; }
.renewal-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 720px) { .renewal-grid { grid-template-columns: 1fr 1fr; } }
.renewal-card {
  padding: 2.75rem 2rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 70px rgba(0,0,0,.22);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
  display: flex; flex-direction: column; position: relative; transform-style: preserve-3d; z-index: 1;
}
.renewal-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 24%, transparent 68%, rgba(5,150,105,.16)); opacity: 0; transition: opacity .35s var(--ease-out); }
.renewal-card:hover::before { opacity: 1; }
.renewal-card > * { position: relative; z-index: 1; }
.renewal-card:hover { transform: translateY(-6px); border-color: rgba(238,240,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 96px rgba(0,0,0,.34), 0 0 70px rgba(5,150,105,.12); }
.renewal-card--alt {
  background: linear-gradient(135deg, rgba(52,211,153,.04) 0%, rgba(5,150,105,.04) 100%);
  border-color: rgba(52,211,153,.1);
  overflow: hidden;
}
.renewal-card--alt::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,.3), rgba(5,150,105,.3), transparent);
  opacity: 0; transition: opacity .5s;
}
.renewal-card--alt:hover { border-color: rgba(52,211,153,.2); box-shadow: 0 20px 60px rgba(52,211,153,.1); }
.renewal-card--alt:hover::after { opacity: 1; }
.renewal-badge {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: .7rem; font-weight: 600; letter-spacing: .02em;
  padding: .25rem .75rem; border-radius: 100px; margin-bottom: 1.25rem;
  background: rgba(34,197,94,.08); color: #22c55e;
  border: 1px solid rgba(34,197,94,.15);
  text-transform: uppercase;
}
.renewal-card-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(5,150,105,.1); color: var(--accent);
  margin-bottom: 1.25rem; transition: transform .4s var(--ease-out);
}
.renewal-card--alt .renewal-card-icon-wrap { background: rgba(52,211,153,.1); color: var(--gradient-3); }
.renewal-card:hover .renewal-card-icon-wrap { transform: scale(1.08); }
.renewal-card h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.renewal-card--alt h3 { color: var(--accent); }
.renewal-card p { font-size: .85rem; color: var(--ink-mute); line-height: 1.65; margin-bottom: 0; }
.renewal-card--alt p { font-size: .8rem; }
.renewal-note {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; font-size: .78rem; font-weight: 500;
  color: #22c55e; padding: .3rem .75rem;
  border-radius: 100px; background: rgba(34,197,94,.08);
  width: fit-content;
}
.renewal-link { margin-top: 1rem; width: fit-content; }
.renewal-price {
  display: flex; align-items: baseline; gap: .25rem;
  margin: 1rem 0 1.25rem; padding: 1rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.renewal-amount { font-family: var(--display); font-size: 2rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.renewal-card--alt .renewal-amount { color: var(--accent); }
.renewal-period { font-size: .85rem; color: var(--ink-mute); font-weight: 500; }
.renewal-features { list-style: none; margin: 0 0 .75rem; padding: 0; }
.renewal-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--ink-soft); padding: .45rem 0; line-height: 1.45; }
.renewal-features li svg { flex-shrink: 0; color: var(--gradient-3); margin-top: .15rem; width: 16px; height: 16px; }
.renewal-card--alt .renewal-features li svg { color: #22c55e; }
.renewal-disclaimer {
  font-size: .72rem !important; color: var(--ink-mute) !important;
  padding-top: .75rem; border-top: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 0 !important; font-style: italic; line-height: 1.5 !important;
}
.renewal-trust {
  font-size: .78rem !important; color: var(--ink-mute) !important;
  padding: .75rem 0 0; margin-bottom: 1.25rem !important;
  line-height: 1.55 !important;
}
.renewal-trust::before { content: '"'; color: rgba(52,211,153,.3); font-size: 1.2rem; font-weight: 700; margin-right: .2rem; }
.renewal-trust::after { content: '"'; color: rgba(52,211,153,.3); font-size: 1.2rem; font-weight: 700; margin-left: .2rem; }
.renewal-cta { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; width: fit-content; }
.renewal-cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.renewal-cta:hover svg { transform: translateX(3px); }
.renewal-footnote { text-align: center; margin-top: 2.5rem; }
.renewal-footnote p { font-size: .85rem; color: var(--ink-mute); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* =============================================================
   18. Contact
   ============================================================= */
.contact { padding: 5rem 1.5rem; text-align: center; max-width: none; }
.contact-guarantee { margin-bottom: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.contact-guarantee-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem; border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: .8rem; font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.18);
  white-space: nowrap;
}
.contact-guarantee-badge.alt { background: rgba(52,211,153,.08); color: var(--gradient-3); border-color: rgba(52,211,153,.15); }
.contact-form-wrap { max-width: 520px; margin: 0 auto; text-align: left; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-input { width: 100%; padding: .75rem 1rem; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); font-size: .875rem; color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.18); }
.form-input::placeholder { color: var(--ink-mute); }
.form-input:focus { border-color: rgba(5,150,105,.35); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 3px rgba(5,150,105,.12), 0 12px 48px rgba(0,0,0,.26); }
.form-input option { background: var(--bg-2); color: var(--ink); }
textarea.form-input { resize: vertical; min-height: 100px; }
.phone-wrapper { display: flex; align-items: center; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.18); transition: border-color .25s, box-shadow .25s; }
.phone-wrapper:focus-within { border-color: rgba(5,150,105,.35); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 3px rgba(5,150,105,.12), 0 12px 48px rgba(0,0,0,.26); }
.phone-prefix { padding: .75rem 0 .75rem 1rem; font-size: .875rem; color: var(--ink); white-space: nowrap; position: relative; margin-right: .25rem; }
.phone-prefix::after { content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: rgba(255,255,255,.08); }
.phone-input { border: none !important; background: none !important; box-shadow: none !important; padding-left: .5rem !important; }
.phone-input:focus { border: none !important; box-shadow: none !important; }
.email-wrapper { position: relative; }
.email-suggestions { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; list-style: none; margin: 4px 0 0; padding: 0; background: var(--bg-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); box-shadow: 0 12px 48px rgba(0,0,0,.4); display: none; overflow: hidden; }
.email-suggestions li { padding: .6rem 1rem; font-size: .85rem; color: var(--ink); cursor: pointer; transition: background .2s; }
.email-suggestions li:hover { background: rgba(255,255,255,.06); }
.email-suggestions li span { color: var(--ink-mute); font-size: .8rem; }
.form-submitted .contact-form { display: none; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success-icon { color: var(--accent); margin-bottom: 1rem; }
.form-success h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: var(--ink-mute); }
.form-submitted .form-success { display: block; }

/* Secondary CTA after form */
.contact-cta-alt {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-cta-alt p { color: var(--ink-mute); margin-bottom: .75rem; font-size: .9rem; }

/* =============================================================
   18. Footer
   ============================================================= */
.footer { background: var(--bg-2); padding: 4rem 1.5rem 1.5rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: .85rem; color: var(--ink-mute); margin-top: .5rem; max-width: 280px; line-height: 1.6; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a, .footer-contact a { font-size: .875rem; color: var(--ink-mute); transition: color .25s; width: fit-content; }
.footer-links a:hover, .footer-contact a:hover { color: var(--ink); }
.footer-bottom { max-width: var(--max); margin: 2rem auto 0; text-align: center; font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero { padding: 6rem 2rem 3rem; }
  .section { padding: 5rem 2rem; }
  .galleries { padding: 5rem 2rem; }
  .benefits { padding: 5rem 2rem; }
  .process { padding: 5rem 2rem; }
  .plans { padding: 5rem 2rem; }
  .testimonials { padding: 5rem 2rem; }
  .home-blog { padding: 5rem 2rem; }
  .renewal { padding: 5rem 2rem; }
  .faq { padding: 5rem 2rem; }
  .contact { padding: 5rem 2rem; }
}
@media (min-width: 860px) {
  .hero { padding: 8rem 2rem 4rem; }
  .section { padding: 6rem 2rem; }
  .galleries { padding: 6rem 2rem; }
  .benefits { padding: 6rem 2rem; }
  .process { padding: 6rem 2rem; }
  .plans { padding: 6rem 2rem; }
  .testimonials { padding: 6rem 2rem; }
  .home-blog { padding: 6rem 2rem; }
  .renewal { padding: 6rem 2rem; }
  .faq { padding: 6rem 2rem; }
  .contact { padding: 6rem 2rem; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: 5.5rem; }
}

/* =============================================================
   20. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge-dot { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
