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


:root {
  --black:   #04080f;
  --deep:    #070d16;
  --surface: #0d1520;
  --border:  #152030;
  --gold:    #3ddde8;
  --gold-lt: #7eeef5;
  --gold-dk: #1a8fa0;
  --text:    #d0e8f0;
  --muted:   #5a7a8a;
  --white:   #e8f5f8;
  --radius:  4px;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'DM Sans', sans-serif;
  --ease:     cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background .4s, backdrop-filter .4s;
}
header.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-img {
  height: 64px; width: auto; display: block; object-fit: contain;
}
.logo-img-placeholder {
  height: 38px; width: 38px;
  background: var(--border);
  border: 1px dashed var(--gold-dk);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; letter-spacing: .06em;
  color: var(--gold-dk); text-transform: uppercase;
  font-family: var(--ff-sans); flex-shrink: 0;
}

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
}
nav a:hover { color: var(--gold); }

.nav-cta {
  font-size: .78rem !important;
  font-weight: 500 !important;
  letter-spacing: .1em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dk);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background .25s, color .25s !important;
}
.nav-cta:hover { background: var(--gold); color: #04080f !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-cta {
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 500;
  color: #04080f !important;
  background: var(--gold);
  padding: 14px 40px;
  border-radius: var(--radius);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
  text-align: center;
}

/* radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61,221,232,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* diagonal gold line */
.hero-line {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-line::before {
  content: '';
  position: absolute;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-dk), transparent);
  left: 18%;
  animation: lineFade 4s ease-in-out infinite alternate;
}
.hero-line::after {
  content: '';
  position: absolute;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-dk), transparent);
  right: 18%;
  animation: lineFade 4s ease-in-out infinite alternate-reverse;
}
@keyframes lineFade { from { opacity: .2; } to { opacity: .6; } }

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #04080f;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 0 20px rgba(61,221,232,.2);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 0 32px rgba(61,221,232,.4); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gold-dk); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold-dk), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 5vw; }
.section-pad { padding: 110px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: .98rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── LOGOS / SOCIAL PROOF STRIP ── */
.proof-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.proof-track {
  display: flex; align-items: center; gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.proof-item {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.proof-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-dk);
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROBLEMA / ARGUMENTO ── */
.argument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.argument-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.stat-card:first-child { border-radius: var(--radius) 0 0 0; }
.stat-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.stat-card:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.stat-card:last-child { border-radius: 0 0 var(--radius) 0; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .8rem; color: var(--muted); line-height: 1.4; }

.argument-visual {
  position: relative;
}
.argument-visual-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.argument-visual-inner::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.problem-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; padding-bottom: 0; }
.problem-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(61,221,232,.08);
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.problem-text strong { display: block; font-size: .9rem; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.problem-text span { font-size: .82rem; color: var(--muted); }

/* ── SERVICES ── */
.services-bg { background: var(--deep); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: background .3s, border-color .3s;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { background: #0e1e2e; border-color: var(--gold-dk); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--ff-serif);
  font-size: .85rem;
  color: var(--gold-dk);
  margin-bottom: 28px;
  font-style: italic;
}
.service-icon { font-size: 1.8rem; margin-bottom: 20px; }
.service-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc { font-size: .84rem; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 64px auto 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.step-title { font-size: 1.05rem; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.step-desc { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--deep); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
}
.testi-quote {
  font-family: var(--ff-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-dk);
  margin-bottom: 16px;
}
.testi-text { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 500; color: var(--white); }
.testi-role { font-size: .76rem; color: var(--muted); }
.testi-stars { color: var(--gold); font-size: .75rem; margin-bottom: 12px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(61,221,232,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
.cta-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--muted); letter-spacing: .06em;
  margin-top: 20px;
}
.cta-guarantee::before { content: '✦'; color: var(--gold); font-size: .65rem; }

/* ── FAQ ── */
.faq-list { max-width: 680px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: .96rem; font-weight: 400; color: var(--text);
  list-style: none;
  gap: 20px;
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--gold);
  transition: transform .3s, border-color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold-dk); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
  font-size: .88rem; color: var(--muted); line-height: 1.75;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 5vw 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: .84rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .86rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.footer-copy span { color: var(--gold-dk); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPop .6s var(--ease) 2s both;
}
@keyframes waPop { from { transform: scale(0); } to { transform: scale(1); } }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .argument-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .argument-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .step { grid-template-columns: 44px 1fr; gap: 20px; }
}
/* ══ TESTIMONIAL CAROUSEL ══ */
.tc-root { margin-top: 64px; position: relative; }

.tc-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  user-select: none;
}
.tc-viewport:active { cursor: grabbing; }

.tc-track {
  display: flex;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.tc-slide {
  min-width: 100%;
  padding: 0 8px;
}

.tc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.tc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.tc-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.tc-glyph {
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: .8;
  color: var(--gold-dk);
  opacity: .5;
}

.tc-text {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.tc-author { display: flex; align-items: center; gap: 16px; }
.tc-avatar {
  width: 48px; height: 48px;
  background: rgba(61,221,232,.1);
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.tc-name { font-size: .92rem; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.tc-role { font-size: .78rem; color: var(--muted); }

/* Controls */
.tc-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 32px;
}

.tc-btn {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .2s;
  flex-shrink: 0;
}
.tc-btn svg { width: 18px; height: 18px; stroke: var(--muted); transition: stroke .25s; }
.tc-btn:hover { border-color: var(--gold-dk); background: rgba(201,168,76,.06); transform: scale(1.06); }
.tc-btn:hover svg { stroke: var(--gold); }
.tc-btn:disabled { opacity: .3; pointer-events: none; }

.tc-dots { display: flex; align-items: center; gap: 8px; }
.tc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
  padding: 0;
}
.tc-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* Progress bar */
.tc-progress-wrap {
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  border-radius: 1px;
  overflow: hidden;
}
.tc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  border-radius: 1px;
  transition: width .1s linear;
  width: 0%;
}

@media (max-width: 600px) {
  .tc-card { padding: 32px 24px; }
  .tc-text { font-size: 1.05rem; }
}