/* ===== One Vasco Landing Page — styles.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --radius: 0.625rem;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --background: #f5f3f0;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --primary: #c0392b;
  --primary-foreground: #ffffff;
  --secondary: #f0eeeb;
  --secondary-foreground: #1c1917;
  --muted: #ebe8e4;
  --muted-foreground: #6b7280;
  --accent: #1a1410;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e2de;
  --input: #e5e2de;
  --ring: #c0392b;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 1024px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(245,243,240,0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,226,222,0.5);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: rgba(245,243,240,0.95); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.navbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar-logo { height: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.625rem 1.25rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #a93226; transform: scale(1.03); }
.btn-primary-lg { padding: 1rem 2rem; font-size: 1rem; font-weight: 700; box-shadow: 0 8px 24px rgba(192,57,43,0.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.25rem;
  border: 1px solid var(--border); border-radius: 0.5rem;
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--foreground); background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(192,57,43,0.05); }
.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-inverted {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary-foreground); color: var(--primary);
  padding: 1rem 2rem; border-radius: 0.5rem;
  font-size: 1rem; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.btn-inverted:hover { background: rgba(255,255,255,0.9); transform: scale(1.03); }
.navbar-cta { display: none; }
@media(min-width:640px){ .navbar-cta { display: inline-flex; } }

/* --- Hero --- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,20,16,0.95), rgba(26,20,16,0.85), transparent); }
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 5rem 1rem; width: 100%; }
.hero-inner { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.2);
  border-radius: 999px; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--primary); }
.hero h1 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 span { color: var(--primary); }
.hero p.lead { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; line-height: 1.7; }
.hero p.sub { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
@media(min-width:640px){ .hero h1 { font-size: 3rem; } }
@media(min-width:1024px){ .hero h1 { font-size: 3.75rem; } .hero p.lead { font-size: 1.25rem; } }

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-lg { padding: 5rem 0; }
@media(min-width:768px){ .section { padding: 7rem 0; } .section-lg { padding: 8rem 0; } }
.bg-card { background: var(--card); }
.bg-background { background: var(--background); }
.bg-accent { background: var(--accent); color: var(--accent-foreground); }
.bg-primary-section { background: var(--primary); }
.bg-muted { background: var(--muted); }

.section-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--muted-foreground); max-width: 768px; margin: 0 auto; line-height: 1.7; }
@media(min-width:768px){ .section-title { font-size: 2.25rem; } }
@media(min-width:1024px){ .section-title { font-size: 3rem; } }

/* --- Pain Section --- */
.pain-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 1rem;
  background: rgba(220,38,38,0.1); margin-bottom: 1.5rem;
}
.pain-icon-wrap svg { width: 28px; height: 28px; color: var(--destructive); }
.pain-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media(min-width:768px){ .pain-grid { grid-template-columns: 1fr 1fr; } }
.pain-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  border-radius: 0.75rem; transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover { transform: translateY(-2px); }
.pain-card--bad { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.1); }
.pain-card--good {
  background: var(--primary); border: 1px solid var(--primary);
  color: var(--primary-foreground); box-shadow: 0 8px 24px rgba(192,57,43,0.3);
}
.pain-card--good:hover { box-shadow: 0 12px 32px rgba(192,57,43,0.4); transform: translateY(-4px); }
.pain-card-icon {
  width: 40px; height: 40px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px;
  transition: background 0.3s;
}
.pain-card--bad .pain-card-icon { background: rgba(220,38,38,0.1); }
.pain-card--bad .pain-card-icon svg { color: var(--destructive); }
.pain-card--good .pain-card-icon { background: rgba(255,255,255,0.15); }
.pain-card--good .pain-card-icon svg { color: #fff; }
.pain-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.pain-card p { font-size: 0.875rem; }
.pain-card--good p { color: rgba(255,255,255,0.85); }

/* --- CTA Box --- */
.cta-box {
  position: relative; border: 2px solid rgba(192,57,43,0.2); border-radius: 1rem;
  background: linear-gradient(135deg, rgba(192,57,43,0.05), var(--background), rgba(192,57,43,0.05));
  padding: 2rem; text-align: center; overflow: hidden;
}
@media(min-width:768px){ .cta-box { padding: 3rem; } }
.cta-box-circle {
  position: absolute; border-radius: 50%; background: rgba(192,57,43,0.05);
}
.cta-box-circle--tr { width: 128px; height: 128px; top: 0; right: 0; transform: translate(50%, -50%); }
.cta-box-circle--bl { width: 96px; height: 96px; bottom: 0; left: 0; transform: translate(-50%, 50%); }
.cta-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.2);
  border-radius: 999px; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
}
.cta-badge svg { width: 16px; height: 16px; }
.cta-checks { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; font-size: 0.875rem; }
.cta-check { display: flex; align-items: center; gap: 0.5rem; }
.cta-check svg { width: 16px; height: 16px; color: var(--primary); }
.cta-check span { font-weight: 500; }

/* --- Qualification --- */
.qual-wrap { display: flex; flex-direction: column; gap: 3rem; }
@media(min-width:768px){ .qual-wrap { flex-direction: row; gap: 4rem; align-items: flex-start; } }
.qual-left { width: 100%; }
@media(min-width:768px){ .qual-left { width: 40%; position: sticky; top: 7rem; } }
.qual-right { width: 100%; display: flex; flex-direction: column; gap: 1rem; }
@media(min-width:768px){ .qual-right { width: 60%; } }
.qual-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.75rem; }
.qual-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.qual-card:hover { border-color: rgba(192,57,43,0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-2px); }
.qual-card-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(192,57,43,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s;
}
.qual-card:hover .qual-card-icon { background: rgba(192,57,43,0.15); }
.qual-card-icon svg { width: 20px; height: 20px; color: var(--primary); }
.qual-card p { font-weight: 500; font-size: 0.875rem; }
.qual-card-check { margin-left: auto; flex-shrink: 0; }
.qual-card-check svg { width: 20px; height: 20px; color: rgba(192,57,43,0.3); }

/* --- Benefits --- */
.benefits-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: center; gap: 1rem; }
.benefit-icon {
  width: 40px; height: 40px; border-radius: 0.75rem;
  background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192,57,43,0.2);
  transition: transform 0.3s;
}
.benefit-item:hover .benefit-icon { transform: scale(1.1); }
.benefit-icon svg { width: 20px; height: 20px; color: #fff; }
.benefit-item p { font-weight: 500; }

/* --- Journey --- */
.journey-wrap { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media(min-width:768px){ .journey-wrap { flex-direction: row; gap: 4rem; } }
.journey-svg-col { display: none; width: 50%; justify-content: center; }
@media(min-width:768px){ .journey-svg-col { display: flex; } }
.journey-svg-wrap { position: relative; width: 288px; }
.journey-svg-wrap svg { width: 100%; height: auto; overflow: visible; }
.journey-path-bg { stroke: rgba(107,114,128,0.3); stroke-width: 2; stroke-dasharray: 10 8; stroke-linecap: round; fill: none; }
.journey-path-active { stroke: var(--primary); stroke-width: 2.5; stroke-dasharray: 10 8; stroke-linecap: round; fill: none; transition: clip-path 0.5s ease; }
.journey-dot { transition: r 0.3s, fill 0.3s; }
.journey-plane {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px;
  pointer-events: none; z-index: 10;
  transition: transform 0.55s ease-in-out;
}
.journey-plane img { width: 40px; height: 40px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.journey-content { width: 100%; }
@media(min-width:768px){ .journey-content { width: 50%; } }
.journey-steps-dots { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.journey-dot-btn {
  height: 6px; border-radius: 999px; transition: width 0.3s, background 0.3s; cursor: pointer;
}
.journey-dot-btn.active { width: 32px; background: var(--primary); }
.journey-dot-btn.past { width: 16px; background: rgba(192,57,43,0.4); }
.journey-dot-btn.future { width: 16px; background: rgba(107,114,128,0.2); }
.journey-step-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.journey-step-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
@media(min-width:768px){ .journey-step-title { font-size: 1.875rem; } }
.journey-step-desc { color: var(--muted-foreground); line-height: 1.7; }
.journey-nav { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; }
.journey-cta { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* --- Testimonials --- */
.testimonial-box {
  border: 1px solid var(--border); border-radius: 1rem; background: var(--background);
  padding: 1.5rem; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; position: relative;
}
@media(min-width:640px){ .testimonial-box { padding: 2rem; } }
.testimonial-slide {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute; inset: 1.5rem; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-slide.active { opacity: 1; transform: translateX(0); position: relative; inset: auto; }
.testimonial-quote svg { width: 24px; height: 24px; color: rgba(192,57,43,0.2); margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
@media(min-width:640px){ .testimonial-text { font-size: 1rem; } }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 0.25rem; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--primary); color: var(--primary); }
.testimonial-name { font-weight: 700; font-size: 0.875rem; }
.testimonial-dest { font-size: 0.75rem; color: var(--muted-foreground); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.testimonial-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); transition: color 0.2s, border-color 0.2s;
}
.testimonial-arrow:hover { color: var(--foreground); border-color: rgba(192,57,43,0.5); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--border); transition: width 0.3s, background 0.3s; cursor: pointer;
}
.testimonial-dot.active { width: 24px; background: var(--primary); }

/* --- Urgency --- */
.urgency-section { background: var(--primary); text-align: center; color: #fff; }
.urgency-section h2 { color: #fff; }
.urgency-section p { color: rgba(255,255,255,0.8); }
.urgency-section .strong { color: #fff; font-weight: 600; font-size: 1.25rem; }
.urgency-icon { width: 48px; height: 48px; color: rgba(255,255,255,0.8); margin: 0 auto 1.5rem; }

/* --- About --- */
.about-wrap { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media(min-width:768px){ .about-wrap { flex-direction: row; } }
.about-img { width: 100%; border-radius: 0.75rem; overflow: hidden; }
@media(min-width:768px){ .about-img { width: 50%; } }
.about-img img { width: 100%; height: 256px; object-fit: cover; }
@media(min-width:768px){ .about-img img { height: 380px; } }
.about-text { width: 100%; }
@media(min-width:768px){ .about-text { width: 50%; } }
.about-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.about-stats { display: flex; gap: 2rem; margin-bottom: 1.25rem; }
.about-stat-num { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.about-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }

/* --- Travel Extras --- */
.extras-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
@media(min-width:768px){ .extras-grid { grid-template-columns: 1fr 1fr; } }
.extra-card {
  padding: 2rem; border-radius: 1rem; background: var(--background); border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.extra-card:hover { border-color: rgba(192,57,43,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.extra-card-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  background: rgba(192,57,43,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.3s;
}
.extra-card:hover .extra-card-icon { background: rgba(192,57,43,0.15); }
.extra-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.extra-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.extra-card p { color: var(--muted-foreground); line-height: 1.7; }

/* --- Form Section --- */
.form-section { background: var(--muted); }
.form-grid { display: grid; gap: 3rem; align-items: start; }
@media(min-width:768px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.form-benefits { display: flex; flex-direction: column; gap: 1rem; }
.form-benefit { display: flex; align-items: center; gap: 0.75rem; }
.form-benefit svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.form-benefit span { font-weight: 500; }
.form-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.2);
  border-radius: 0.5rem; padding: 0.5rem 1rem; margin-bottom: 2rem;
  font-size: 0.875rem; font-weight: 500;
}
.form-badge svg { width: 16px; height: 16px; color: var(--primary); }
.form-card {
  background: var(--card); border-radius: 1rem; padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--border);
}
.form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.form-card .form-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 500; margin-bottom: 0.375rem; font-size: 0.875rem; }
.form-input, .form-select {
  width: 100%; height: 36px; border: 1px solid var(--input); border-radius: 0.375rem;
  padding: 0.25rem 0.75rem; font-size: 0.875rem; background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s; font-family: var(--font-body);
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--ring); box-shadow: 0 0 0 2px rgba(192,57,43,0.15); }
.form-select { appearance: auto; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-footer { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 0.75rem; }

/* --- Success state --- */
.form-success { text-align: center; padding: 3rem 0; }
.form-success svg { width: 64px; height: 64px; color: var(--primary); margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* --- Footer --- */
.footer { background: var(--accent); color: var(--accent-foreground); padding: 2rem 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media(min-width:640px){ .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo { height: 32px; filter: brightness(0) invert(1); }
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-slide-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-slide-right.visible { opacity: 1; transform: translateX(0); }
.animate-slide-left {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.animate-slide-left.visible { opacity: 1; transform: translateX(0); }
.animate-scale-in {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.animate-scale-in.visible { opacity: 1; transform: scale(1); }

/* SVG Icons inline — use the class for sizing */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 48px; height: 48px; }

/* Journey step fade transition */
.journey-step-content {
  animation: fadeInUp 0.3s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
