/* ========== Vesora Redesign — Financial-style ========== */
:root {
  --bg: #f2f4f3;
  --bg-card: #ffffff;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-light: rgba(13, 148, 136, 0.12);
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --font: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent);
}

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 16px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

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

.nav-link.active {
  color: #fff;
  background: var(--accent);
}

.nav-link.active:hover {
  background: var(--accent-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
}

.btn-white:hover {
  background: #f0fdfa;
  color: var(--accent-hover);
}

.btn-icon::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 24px;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
}

.site-header.is-open .nav-mobile {
  display: block;
}

@media (max-width: 900px) {
  .nav-main {
    display: none;
  }
  .header-actions .btn:not(.nav-mobile .btn) {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ========== Hero ========== */
.hero {
  padding: 80px 0 100px;
  background: var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--text);
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  max-width: 520px;
}

.hero-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

/* Hero cards visual */
.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.hero-card {
  position: absolute;
  left: 0;
  right: 0;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.hero-card-1 {
  top: 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  transform: rotate(-3deg);
}

.hero-card-2 {
  top: 140px;
  left: 32px;
  right: -32px;
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  transform: rotate(2deg);
}

.card-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 6px;
}

.card-number {
  display: block;
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 6px;
}

.card-name {
  display: block;
  font-size: 0.9375rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead {
    max-width: none;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-tags {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    min-height: 340px;
  }
  .hero-card-stack {
    margin: 0 auto;
    max-width: 380px;
  }
}

/* ========== Trust strip ========== */
.trust-strip {
  padding: 32px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-align: center;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.trust-logos span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ========== Section common ========== */
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 800px;
}

.section-title .highlight {
  color: var(--accent);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 40px;
  max-width: 720px;
}

/* ========== Features ========== */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.95;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

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

/* ========== CTA Steps ========== */
.cta-steps {
  padding: 80px 0;
  background: var(--accent);
  color: #fff;
}

.cta-steps-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
}

.cta-steps-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.cta-balance-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.balance-header {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
}

.balance-label {
  font-size: 0.8125rem;
  opacity: 0.85;
  margin: 0 0 4px;
}

.balance-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 24px;
}

.balance-actions .btn {
  width: 100%;
}

.cta-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.step-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.step-item p {
  font-size: 0.9375rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cta-steps-grid {
    grid-template-columns: 1fr;
  }
  .cta-balance-card {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ========== Composition ========== */
.composition {
  padding: 80px 0;
  background: var(--bg-card);
}

.composition-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.composition-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.composition-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.composition-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.composition-visual {
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.composition-visual img {
  width: 280px;
  height: auto;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .composition-grid {
    grid-template-columns: 1fr;
  }
  .composition-visual {
    order: -1;
    justify-self: center;
  }
}

/* ========== Testimonials ========== */
.testimonials {
  padding: 80px 0;
  background: var(--bg);
}

.testimonials .section-title,
.testimonials .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider {
  margin-bottom: 32px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(100%, 380px);
  scroll-snap-align: start;
  margin: 0;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.testimonial-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonials .btn {
  display: block;
  margin: 0 auto;
}

/* ========== Advantages ========== */
.advantages {
  padding: 80px 0;
  background: var(--bg-card);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.advantage-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.125rem;
}

.advantage-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.advantage-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

/* ========== Final CTA ========== */
.final-cta {
  padding: 80px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.final-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 20px;
}

.final-cta-text {
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq .section-title,
.faq .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.accordion {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.accordion-item[open] summary::after {
  transform: rotate(45deg);
}

.accordion-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 20px;
}

/* ========== Footer ========== */
.site-footer {
  padding: 48px 0 32px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-cta {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-cta:hover {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0 auto 16px;
}

.footer-contact {
  font-size: 0.9375rem;
  margin: 0 0 8px;
}

.footer-contact a {
  color: var(--accent);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 24px 0 0;
}
