@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #080e1a;
  --ink-2: #111827;
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --gold-pale: #fdf6e7;
  --gold-dim: rgba(201,149,42,0.12);
  --cream: #faf8f4;
  --white: #ffffff;
  --slate: #6b7893;
  --slate-2: #94a3b8;
  --line: rgba(8,14,26,0.08);
  --line-gold: rgba(201,149,42,0.22);
  --navy: #0d1d3a;
  --navy-mid: #162847;
  --r: 20px;
  --r-lg: 28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --shadow: 0 20px 60px rgba(8,14,26,0.10);
  --shadow-gold: 0 8px 32px rgba(201,149,42,0.25);
  --shadow-sm: 0 4px 16px rgba(8,14,26,0.06);
  --container: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
main { display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 99px; }

/* EYEBROW */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); padding: 5px 14px 5px 10px;
  background: var(--gold-dim); border: 1px solid var(--line-gold);
  border-radius: 99px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-sm { font-size: clamp(1.8rem, 3vw, 2.5rem) !important; }

.section-lead { font-size: 1.02rem; line-height: 1.82; color: var(--slate); font-weight: 300; max-width: 640px; }
.divider { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 14px 0; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-badge {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; overflow: hidden; padding: 2px;
  background: white; box-shadow: 0 2px 12px rgba(201,149,42,0.22), 0 0 0 1.5px var(--line-gold);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-badge { transform: rotate(-5deg) scale(1.05); }
.brand-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-copy strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.brand-copy small { display: block; color: var(--slate); font-size: 10.5px; font-weight: 500; letter-spacing: 0.04em; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > a { padding: 9px 14px; border-radius: 99px; font-size: 13.5px; font-weight: 500; color: var(--slate); white-space: nowrap; transition: color 0.2s, background 0.2s; }
.nav-menu > a:hover, .nav-menu > a.active { color: var(--ink); background: rgba(8,14,26,0.05); }

.mobile-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: white; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.mobile-toggle span { width: 18px; height: 1.5px; background: var(--ink); border-radius: 99px; display: block; transition: all 0.3s; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px; border-radius: 99px; border: none;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }

.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(201,149,42,0.4); }
.btn-secondary { background: var(--ink); color: white; box-shadow: 0 8px 28px rgba(8,14,26,0.28); }
.btn-secondary:hover { box-shadow: 0 12px 36px rgba(8,14,26,0.35); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-light:hover { background: rgba(255,255,255,0.25); }
.btn-ghost-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--line-gold); }
.btn-ghost-gold:hover { background: var(--gold-dim); }
.nav-btn { min-height: 40px; padding: 9px 20px; font-size: 13px; }

/* HERO HOME */
.hero-home { padding: 156px 0 80px; position: relative; overflow: hidden; }
.hero-home::before { content: ''; position: absolute; top: -180px; right: -280px; width: 860px; height: 860px; border-radius: 50%; background: radial-gradient(circle, rgba(201,149,42,0.07) 0%, transparent 65%); pointer-events: none; }
.hero-home::after { content: ''; position: absolute; bottom: -80px; left: -160px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(13,29,58,0.04) 0%, transparent 70%); pointer-events: none; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: stretch; position: relative; z-index: 1; }

.hero-copy { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 58px 54px 50px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-copy::before { content: ''; position: absolute; top: 0; right: 0; width: 280px; height: 280px; border-radius: 0 var(--r-lg) 0 280px; background: linear-gradient(225deg, rgba(201,149,42,0.07), transparent 60%); }
.hero-copy h1 { font-family: var(--font-display); font-size: clamp(3rem, 5.2vw, 5rem); font-weight: 600; line-height: 0.97; letter-spacing: -0.02em; color: var(--ink); margin: 12px 0 20px; }
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.hero-copy > p { color: var(--slate); line-height: 1.78; font-size: 1.04rem; max-width: 460px; font-weight: 300; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.badge-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 16px 14px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.badge-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-gold); }
.badge-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.badge-card span { color: var(--slate); font-size: 0.76rem; line-height: 1.5; display: block; font-weight: 300; }

.hero-visual { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 600px; }
.hero-travel { background: linear-gradient(160deg, rgba(8,14,26,0.08) 0%, rgba(8,14,26,0.62) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=90') center/cover no-repeat; }

.hero-overlay { position: absolute; inset: auto 20px 20px 20px; background: rgba(250,248,244,0.92); backdrop-filter: blur(24px) saturate(1.4); border-radius: 18px; padding: 28px 28px 22px; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 8px 40px rgba(8,14,26,0.2); }
.overlay-kicker { font-size: 10.5px; font-weight: 800; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.hero-overlay h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 7px; }
.hero-overlay p { color: var(--slate); font-size: 0.88rem; line-height: 1.65; font-weight: 300; }
.overlay-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.overlay-actions .btn { min-height: 38px; padding: 8px 18px; font-size: 12.5px; }
.hero-overlay-compact {}

/* SECTIONS */
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-mid { padding: 88px 0; }
.section-head { margin-bottom: 44px; }
.section-head .section-lead { margin-top: 12px; }

/* FEATURE STRIP */
.feature-strip { background: var(--gold-dim); border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); padding: 28px 0; }
.feature-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.feature-item { display: flex; align-items: center; gap: 9px; padding: 10px 28px; font-size: 0.87rem; font-weight: 600; color: var(--ink); position: relative; }
.feature-item span { font-size: 1.05rem; }
.feature-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 18px; background: var(--line-gold); }

/* SERVICES */
.services-section { background: white; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px;
  position: relative; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.card:hover::after { transform: scaleX(1); }

.card-icon { width: 54px; height: 54px; background: var(--gold-dim); border: 1px solid var(--line-gold); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; transition: transform 0.3s var(--ease); }
.card:hover .card-icon { transform: scale(1.1) rotate(-4deg); }
.card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.card p { color: var(--slate); font-size: 0.88rem; line-height: 1.7; font-weight: 300; flex: 1; }

.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: 0.84rem; margin-top: 18px; transition: gap 0.2s; }
.text-link:hover { gap: 10px; }
.text-link:hover::after { transform: translateX(3px); }
.text-link::after { content: '→'; transition: transform 0.2s; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
.split-equal { grid-template-columns: 1fr 1fr; }
.split-rev { grid-template-columns: 0.9fr 1.1fr; }

.image-card { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.image-card-travel { min-height: 500px; background: linear-gradient(160deg, rgba(8,14,26,0.05) 0%, rgba(8,14,26,0.45) 100%), url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=900&q=85') center/cover no-repeat; }
.image-card-hotel { min-height: 460px; background: linear-gradient(160deg, rgba(8,14,26,0.05) 0%, rgba(8,14,26,0.35) 100%), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=85') center/cover no-repeat; }
.image-card-job { min-height: 460px; background: linear-gradient(160deg, rgba(8,14,26,0.05) 0%, rgba(8,14,26,0.4) 100%), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=85') center/cover no-repeat; }
.image-card-soft { min-height: 420px; background: linear-gradient(160deg, rgba(201,149,42,0.1) 0%, rgba(8,14,26,0.08) 100%), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=900&q=85') center/cover no-repeat; }

.img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(250,248,244,0.93); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.6); border-radius: 14px; padding: 13px 17px; box-shadow: 0 4px 20px rgba(8,14,26,0.15); }
.img-badge strong { display: block; font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.img-badge span { color: var(--slate); font-size: 0.76rem; }

.info-stack { display: flex; flex-direction: column; gap: 0; margin-top: 22px; }
.info-row { padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 3px; }
.info-row span { color: var(--slate); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
.info-row a { color: var(--gold); font-weight: 600; transition: opacity 0.2s; }
.info-row a:hover { opacity: 0.75; }

/* STATS BAR */
.stats-bar { background: var(--ink); padding: 56px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,0.06); gap: 1px; }
.stat-item { padding: 36px 28px; background: var(--ink); text-align: center; transition: background 0.2s; }
.stat-item:hover { background: var(--ink-2, #111827); }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 3.5vw, 3.6rem); font-weight: 600; line-height: 1; color: var(--gold-light); display: block; margin-bottom: 7px; }
.stat-label { color: rgba(255,255,255,0.45); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* PAGE HERO */
.page-hero { padding: 156px 0 68px; }
.page-shell { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 50px 54px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.page-shell::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; border-radius: 0 var(--r-lg) 0 300px; background: linear-gradient(225deg, rgba(201,149,42,0.07), transparent 60%); }
.page-shell-travel {}
.page-shell .section-title { margin-top: 10px; }
.page-shell .section-lead { margin-top: 10px; }

/* FORMS */
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.field input, .field select, .field textarea { padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; outline: none; appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(201,149,42,0.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field textarea { resize: vertical; min-height: 108px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236b7893' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; cursor: pointer; }

.form-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.small-note { font-size: 0.78rem; color: var(--slate-2); font-weight: 300; line-height: 1.5; }

.side-copy { padding: 4px 0; }
.side-copy .section-lead { margin-top: 10px; font-size: 0.95rem; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 100%); border-radius: var(--r-lg); padding: 64px 54px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,149,42,0.12), transparent 65%); }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: white; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; margin-bottom: 28px; position: relative; }
.cta-banner .hero-actions { justify-content: center; position: relative; }

/* TESTIMONIALS */
.testimonials { background: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--gold-light); opacity: 0.28; position: absolute; top: 12px; right: 18px; }
.stars { color: var(--gold); font-size: 0.76rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-text { color: var(--slate); font-size: 0.88rem; line-height: 1.72; font-weight: 300; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.82rem; color: var(--ink); flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.reviewer-loc { font-size: 0.74rem; color: var(--slate-2); font-weight: 300; }

/* FOOTER */
.footer { background: var(--ink); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-wrap { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; padding: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,149,42,0.22); margin-bottom: 16px; }
.footer-logo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-brand-text { color: rgba(255,255,255,0.4); font-size: 0.86rem; line-height: 1.7; font-weight: 300; max-width: 280px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.38); font-size: 0.78rem; font-weight: 700; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(201,149,42,0.08); }
.footer-links-col h4, .footer-contact-col h4 { font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-links-col a, .footer-contact-col a, .footer-contact-col span { display: block; color: rgba(255,255,255,0.42); font-size: 0.86rem; font-weight: 300; padding: 5px 0; transition: color 0.2s; }
.footer-links-col a:hover { color: rgba(255,255,255,0.8); }
.footer-contact-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { color: rgba(255,255,255,0.26); font-size: 0.78rem; font-weight: 300; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,0.42); color: white; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 82px; left: 0; right: 0; z-index: 999; flex-direction: column; gap: 0; padding: 12px; background: rgba(250,248,244,0.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav-menu.open { display: flex; }
  .nav-menu > a { padding: 13px 15px; border-radius: 12px; font-size: 15px; }
  .mobile-toggle { display: flex; }
}
@media (max-width: 1024px) {
  .hero-grid, .split, .split-equal, .split-rev { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-home { padding: 116px 0 56px; }
  .hero-copy { padding: 34px 26px 30px; }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-badges { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .page-shell { padding: 34px 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; }
  .feature-item:not(:last-child)::after { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-actions { flex-direction: column; align-items: flex-start; }
}

/* VOLARE MANAGER PAGE */
.vm-hero { background: linear-gradient(135deg, var(--ink) 0%, #0f2040 100%); padding: 156px 0 80px; position: relative; overflow: hidden; }
.vm-hero::before { content: ''; position: absolute; top: -180px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201,149,42,0.1), transparent 65%); }
.vm-hero .eyebrow { background: rgba(201,149,42,0.15); color: var(--gold-light); border-color: rgba(201,149,42,0.28); }
.vm-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 600; color: white; line-height: 0.98; letter-spacing: -0.02em; margin: 14px 0 18px; }
.vm-hero h1 em { font-style: italic; color: var(--gold-light); }
.vm-hero p { color: rgba(255,255,255,0.58); font-size: 1.06rem; line-height: 1.78; font-weight: 300; max-width: 520px; }
.vm-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; position: relative; z-index: 1; }
.vm-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.vm-mockup { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.vm-topbar { height: 30px; background: rgba(255,255,255,0.06); display: flex; align-items: center; padding: 0 14px; gap: 6px; }
.vm-dot { width: 9px; height: 9px; border-radius: 50%; }
.vm-dot-r { background: #ff5f57; } .vm-dot-y { background: #febc2e; } .vm-dot-g { background: #28c840; }
.vm-body { padding: 20px; display: grid; gap: 10px; }
.vm-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vm-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px; }
.vm-stat .n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.vm-stat .l { font-size: 0.68rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.vm-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 9px; padding: 9px 12px; }
.vm-code { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); font-family: monospace; }
.vm-route { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.vm-status { background: rgba(34,197,94,0.15); color: #4ade80; border-radius: 99px; padding: 2px 9px; font-size: 0.68rem; font-weight: 700; }

.vm-feats { background: white; }
.vm-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vm-feat { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.vm-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.vm-feat-icon { width: 42px; height: 42px; background: var(--gold-dim); border: 1px solid var(--line-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; }
.vm-feat h4 { font-weight: 700; font-size: 0.92rem; color: var(--ink); margin-bottom: 5px; }
.vm-feat p { color: var(--slate); font-size: 0.82rem; line-height: 1.65; font-weight: 300; }

.vm-pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.pricing-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 34px; position: relative; transition: transform 0.3s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--gold-light); box-shadow: 0 0 0 2px var(--gold-dim), var(--shadow); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--ink); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 14px; border-radius: 99px; white-space: nowrap; }
.pricing-name { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 12px; }
.pricing-amount { font-family: var(--font-display); font-size: 3.8rem; font-weight: 600; line-height: 1; color: var(--ink); }
.pricing-amount sup { font-size: 1.4rem; vertical-align: super; }
.pricing-period { color: var(--slate); font-size: 0.84rem; margin-top: 3px; margin-bottom: 22px; }
.pricing-features { list-style: none; margin-bottom: 26px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 7px; padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 0.87rem; font-weight: 300; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

@media (max-width: 900px) {
  .vm-hero-grid { grid-template-columns: 1fr; }
  .vm-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { max-width: 100%; }
}
@media (max-width: 600px) {
  .vm-feat-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.anim-up { animation: fadeUp 0.7s var(--ease) both; }
.anim-up-2 { animation: fadeUp 0.7s var(--ease) 0.1s both; }
.anim-up-3 { animation: fadeUp 0.7s var(--ease) 0.2s both; }
.anim-up-4 { animation: fadeUp 0.7s var(--ease) 0.3s both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
