/* ===== SEO Landing Pages - Shared Stylesheet ===== */
/* Used by all programmatic SEO pages in /resume-builder/ and /cv-writer/ */

/* ===== RESET & BASE ===== */
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-border { to { --border-angle: 360deg; } }

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.65;
  scroll-behavior: smooth;
}
h1, h2, h3 { color: #111827; line-height: 1.3; }
p { font-size: 1.05rem; max-width: 900px; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== HEADER / NAV ===== */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8), 0 4px 20px rgba(0,0,0,0.06), 0 12px 48px rgba(0,0,0,0.04);
  width: 100%; position: fixed; top: 0; left: 0; z-index: 1000;
}
header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.4) 15%, rgba(37,99,235,0.7) 50%, rgba(59,130,246,0.4) 85%, transparent 100%);
}
.container {
  max-width: 1100px; margin: auto; padding: 40px 20px;
}
header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; color: #0f172a; text-decoration: none;
  letter-spacing: -0.03em; white-space: nowrap;
}
.nav-logo:hover { color: #2563eb; }
header nav { display: flex; align-items: center; gap: 4px; }
header nav a {
  text-decoration: none; color: #475569; font-weight: 500; font-size: 1rem;
  padding: 8px 16px; border-radius: 8px; transition: all 0.25s ease; white-space: nowrap;
}
header nav a:hover { color: #1e293b; background: rgba(59,130,246,0.08); }
header nav a.nav-cta {
  background: linear-gradient(135deg, #d4a843 0%, #f5d675 25%, #e8c252 50%, #d4a843 75%, #c49a3a 100%) padding-box,
    conic-gradient(from var(--border-angle), transparent 60%, #8b6914 78%, #a67c1a 88%, #8b6914 98%, transparent 100%) border-box;
  color: #1a1207; font-weight: 700; font-size: 0.88rem; padding: 8px 24px;
  border: 2px solid transparent; letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(245,214,117,0.4); animation: spin-border 3s linear infinite;
}
.nav-toggle { display: none; }

/* ===== SIGN IN BUTTON & USER MENU ===== */
.btn-sign-in {
  background: #0f172a; color: rgba(255,255,255,0.9); border: none;
  padding: 12px 18px; border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.25s ease; margin-left: 20px;
  letter-spacing: -0.01em; white-space: nowrap; box-shadow: none;
}
.btn-sign-in:hover { background: #1e293b; transform: none; box-shadow: none; }
.user-menu {
  display: flex; align-items: center; gap: 0; margin-left: 20px;
  background: #0f172a; border-radius: 10px; padding: 8px 8px 8px 18px;
  transition: background 0.25s ease;
}
.user-menu:hover { background: #1e293b; }
.user-menu span { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); padding-right: 12px; letter-spacing: -0.01em; white-space: nowrap; }
.user-menu button {
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.5);
  padding: 7px 14px; border-radius: 6px; background: rgba(255,255,255,0.08);
  border: none; cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.user-menu button:hover { color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.15); }
.user-menu .btn-dashboard { color: #60a5fa; background: transparent; text-transform: none; letter-spacing: -0.01em; }
.user-menu .btn-dashboard:hover { color: #93bbfd; background: rgba(96,165,250,0.1); }

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 998; opacity: 0; transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; }

/* ===== AUTH MODAL ===== */
.auth-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; padding: 20px; overflow-y: auto; box-sizing: border-box;
}
.auth-modal-content {
  background: #fff; border-radius: 16px; padding: 40px; max-width: 420px; width: 100%;
  position: relative; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06), 0 24px 64px rgba(0,0,0,0.08);
  animation: modalSlideIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  max-height: calc(100vh - 40px); overflow-y: auto;
}
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.auth-modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border: none; background: #f1f5f9; border-radius: 50%; font-size: 1.3rem;
  color: #94a3b8; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all 0.25s ease; line-height: 1;
}
.auth-modal-close:hover { background: #e2e8f0; color: #475569; }
.auth-icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: #f0f9ff;
  border: 2px solid #bfdbfe; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.auth-icon-circle svg { width: 24px; height: 24px; color: #3b82f6; }
.auth-modal-content h2 {
  margin: 0 0 6px; font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-align: center;
}
.auth-modal-content > p { margin: 0 0 28px; color: #64748b; font-size: 0.92rem; text-align: center; }
.auth-form-group { margin-bottom: 20px; }
.auth-form-group label { display: block; margin-bottom: 6px; font-size: 0.88rem; font-weight: 600; color: #1e293b; }
.auth-form-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: 0.95rem; transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box; color: #1e293b; background: #fff;
}
.auth-form-group input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.auth-form-group input::placeholder { color: #94a3b8; }
.auth-error { background: #fef2f2; color: #dc2626; padding: 12px 14px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 16px; border-left: 3px solid #dc2626; }
.auth-btn-primary {
  width: 100%; padding: 14px; background: #0f172a; color: white; border: none;
  border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease; letter-spacing: 0.01em;
}
.auth-btn-primary:hover { background: #1e293b; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,23,42,0.2); }
.auth-btn-primary:disabled { background: #cbd5e1; color: #94a3b8; cursor: not-allowed; transform: none; box-shadow: none; }
.auth-btn-link {
  background: none; border: none; color: #3b82f6; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; margin-top: 16px; display: block; width: 100%; text-align: center;
  transition: color 0.25s ease;
}
.auth-btn-link:hover { color: #1d4ed8; text-decoration: none; }
.auth-divider { display: flex; align-items: center; margin: 30px 0 20px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.auth-divider span { padding: 0 15px; color: #6b7280; font-size: 0.9rem; font-weight: 500; }
.auth-new-user-info { text-align: center; font-size: 0.95rem; color: #374151; line-height: 1.6; margin: 0; background: #f0f9ff; padding: 20px; border-radius: 12px; border: 1px solid #bfdbfe; }
.auth-new-user-info a { display: inline-block; margin-top: 12px; padding: 10px 20px; background: #2563eb; color: white; border-radius: 8px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.auth-new-user-info a:hover { background: #1d4ed8; text-decoration: none; }

/* ===== HERO ===== */
.landing-hero {
  position: relative; background: #0f172a; padding: 160px 20px 80px;
  overflow: hidden; text-align: center;
}
.landing-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.landing-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.18;
}
.landing-hero::before {
  content: ''; position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px; z-index: 1;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, rgba(37,99,235,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.landing-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #60a5fa; background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2); padding: 6px 20px; border-radius: 100px; margin-bottom: 24px;
}
.landing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 8px;
}
.landing-hero h1 .accent { display: block; color: #60a5fa; font-style: italic; font-weight: 700; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem); color: rgba(148,163,184,0.9);
  line-height: 1.7; max-width: 620px; margin: 16px auto 32px;
}
.hero-cta {
  display: inline-block; background: linear-gradient(135deg, #3b82f6, #60a5fa); color: white;
  font-size: 1.05rem; font-weight: 600; padding: 16px 40px; border-radius: 100px;
  text-decoration: none; box-shadow: 0 4px 14px rgba(59,130,246,0.4), 0 12px 36px rgba(59,130,246,0.2);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { left: -100%; } 50%, 100% { left: 100%; } }
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(59,130,246,0.5); }
.hero-trust { margin: 20px 0 0; font-size: 0.95rem; color: rgba(203,213,225,0.9); font-weight: 500; letter-spacing: 0.02em; }
.hero-trust span { margin: 0 8px; opacity: 0.6; }
.hero-divider { width: 60px; height: 2px; margin: 40px auto 0; background: linear-gradient(90deg, transparent, #3b82f6, transparent); }

/* ===== BREADCRUMB (matches site pattern) ===== */
.breadcrumb-nav { font-size: 0.85rem; margin-bottom: 0; padding: 16px 20px; }
.breadcrumb-nav-wrap { max-width: 1100px; margin: 0 auto; }
.breadcrumb { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
.breadcrumb li { display: inline; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin: 0 10px; color: #cbd5e1; }
.breadcrumb a { color: #3b82f6; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: #1d4ed8; }
.breadcrumb li[aria-current="page"] { color: #94a3b8; }
@media (max-width: 639px) {
  .breadcrumb-nav { font-size: 0.8rem; }
  .breadcrumb li:not(:last-child)::after { margin: 0 8px; }
}

/* ===== SECTION LABEL PILL ===== */
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #3b82f6; background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15); padding: 6px 20px; border-radius: 100px; margin-bottom: 16px;
}

/* ===== TIMELINE / HOW IT WORKS ===== */
.timeline-section {
  padding: 72px 20px 48px;
  background: #f0f4f8;
}
.timeline-container { max-width: 1000px; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 56px; }
.timeline-header h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: #0f172a; margin: 0 0 16px; }
.timeline-header p { font-size: 1.05rem; color: #475569; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.timeline-steps { position: relative; padding-left: 80px; }
.timeline-line { position: absolute; left: 19px; top: 0; width: 2px; height: 100%; background: #e2e8f0; }
.timeline-step { position: relative; margin-bottom: 48px; }
.timeline-circle {
  position: absolute; left: -80px; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa); display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.timeline-step h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.timeline-step p { font-size: 0.95rem; color: #475569; line-height: 1.65; margin: 0; }

/* ===== MID-CTA ===== */
.mid-cta-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px 36px; border-top: 1px solid rgba(0,0,0,0.06);
}
.mid-cta {
  display: inline-block; padding: 16px 40px; background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white; border-radius: 100px; font-weight: 600; text-decoration: none; font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(59,130,246,0.25); transition: all 0.25s ease; overflow: hidden;
}
.mid-cta:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(59,130,246,0.35); }
.mid-cta-sub { margin: 12px 0 0; font-size: 1rem; color: #374151; line-height: 1.5; }

/* ===== CONTENT-ALT SECTIONS ===== */
.content-alt-section { padding: 48px 20px; }
.content-row {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.content-text h2 { font-size: 1.8rem; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 20px; }
.content-text p { font-size: 1rem; color: #475569; line-height: 1.75; margin: 0 0 12px; }

/* Section Images */
.section-image { position: relative; overflow: hidden; border-radius: 16px; }
.section-image img { display: block; transition: transform 0.5s ease; }
.section-image:hover img { transform: scale(1.03); }

/* ===== FEATURE CARDS ===== */
.features-section { padding: 60px 20px 36px; background: #f0f4f8; }
.features-container {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.4s ease; text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 10px 38px -10px rgba(14,18,22,0.35); border-color: rgba(59,130,246,0.3); }
.feature-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.feature-card-body { padding: 28px 24px; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.12); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all 0.3s ease;
}
.feature-card:hover .feature-icon { background: rgba(59,130,246,0.15); box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.feature-icon svg { width: 32px; height: 32px; stroke: #3b82f6; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin: 0 0 10px; }
.feature-card p { font-size: 0.92rem; color: #475569; line-height: 1.6; margin: 0; }

/* ===== FAQ ===== */
.faq-section { padding: 24px 20px 16px; background: #ffffff; }
.faq-inner { max-width: 750px; margin: 0 auto; }
.faq-inner h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: #0f172a; margin: 0 0 14px; text-align: center; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 18px 0; }
.faq-item:first-of-type { padding-top: 0; }
.faq-item:last-of-type { border-bottom: none; }
.faq-item h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin: 0 0 10px; line-height: 1.4; }
.faq-item p { font-size: 0.95rem; color: #475569; line-height: 1.7; margin: 0; }
.faq-item a { color: #3b82f6; text-decoration: none; font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }

/* ===== RELATED PILLS ===== */
.related-section { padding: 48px 20px; background: #f0f4f8; }
.related-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.related-inner h2 { font-size: 1.4rem; font-weight: 700; color: #0f172a; margin: 0 0 24px; }
.related-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.related-pill {
  display: inline-block; padding: 10px 20px; background: white; border: 1px solid #e2e8f0;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500; color: #334155;
  text-decoration: none; transition: all 0.25s ease;
}
.related-pill:hover { border-color: #3b82f6; color: #3b82f6; background: rgba(59,130,246,0.04); }

/* ===== FINAL CTA (dark) ===== */
.cta-final {
  padding: 80px 20px; background: #0f172a; position: relative; overflow: hidden; text-align: center;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120%; height: 120%; background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 60%); pointer-events: none;
}
.cta-final::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-final-label {
  display: inline-block; font-size: 0.875rem; font-weight: 600; color: #60a5fa;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 20px;
}
.cta-final h2 { font-size: 2.4rem; font-weight: 800; color: white; line-height: 1.15; margin: 0 0 8px; }
.cta-final .accent { color: #60a5fa; font-style: italic; }
.cta-final p { font-size: 1.1rem; color: rgba(148,163,184,0.95); line-height: 1.7; max-width: 600px; margin: 16px auto 28px; }
.cta-final-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-primary {
  display: inline-block; background: linear-gradient(135deg, #3b82f6, #60a5fa); color: white;
  font-weight: 600; font-size: 1.05rem; padding: 16px 40px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(59,130,246,0.4); transition: all 0.25s ease;
}
.cta-primary:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(59,130,246,0.5); }
.cta-secondary {
  display: inline-block; background: transparent; color: rgba(148,163,184,0.95);
  font-weight: 600; font-size: 1.05rem; padding: 16px 40px; border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(148,163,184,0.3); transition: all 0.25s ease;
}
.cta-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(148,163,184,0.6); color: white; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: #94a3b8; text-align: center; padding: 32px 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer p { max-width: none; margin: 0 auto; font-size: 0.88rem; }
.footer a { color: #94a3b8; text-decoration: none; transition: color 0.25s ease; }
.footer a:hover { color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate="scale-up"] { transform: scale(0.96); }
[data-animate].visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .hero-cta::before { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
    padding: 0; border-radius: 10px; z-index: 1001; position: relative;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: #334155; border-radius: 2px; position: absolute; }
  .nav-toggle span:nth-child(1) { transform: translateY(-6px); }
  .nav-toggle span:nth-child(3) { transform: translateY(6px); }
  header nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100dvh;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(24px);
    flex-direction: column; align-items: stretch; padding: 80px 24px 32px; gap: 2px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1); z-index: 999;
    transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto;
  }
  header nav.open { transform: translateX(0); }
  header nav a { font-size: 1rem; padding: 12px 16px; border-radius: 10px; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }
  .btn-sign-in { margin-left: 0; margin-top: 12px; padding: 12px 20px; font-size: 1rem; width: 100%; align-self: stretch; text-align: center; }
  .user-menu { margin-left: 0; margin-top: 12px; padding: 12px 10px 10px 14px; flex-wrap: wrap; gap: 8px; }
  .user-menu span { font-size: 0.95rem; padding-right: 0; width: 100%; }
  .user-menu button { font-size: 0.92rem; padding: 9px 14px; }
  .user-menu .btn-dashboard { background: rgba(96,165,250,0.1); }
  .user-menu .btn-dashboard:hover { background: rgba(96,165,250,0.18); }
}
@media (max-width: 768px) {
  .landing-hero { padding: 140px 20px 56px; }
  .content-row { grid-template-columns: 1fr; gap: 32px; }
  .content-row.reverse { direction: ltr; }
  .timeline-steps { padding-left: 60px; }
  .timeline-circle { left: -60px; width: 32px; height: 32px; font-size: 0.9rem; }
  .timeline-line { left: 15px; }
  .cta-final h2 { font-size: 1.8rem; }
  .cta-final-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .features-container { grid-template-columns: 1fr; }
}
