/* ============================================================
   EazyTour landing styles — V2 design system
   Tokens, typography, buttons, and section components shared by
   index.html, signup.html, pricing.html, privacy.html, terms.html.
   ============================================================ */

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

:root {
	--bg: #FFFFFF;
	--bg-2: #F4F8FD;
	--bg-3: #E8F1FB;
	--paper: #FFFFFF;
	--ink: #0E1A2B;
	--ink-2: #2A3A52;
	--muted: #6B7C93;
	--line: #E3ECF6;
	--line-2: #CFDDEC;
	--brand: #2D7CF6;
	--brand-2: #1E63D6;
	--brand-3: #0E4DAE;
	--brand-soft: #D7E6FB;
	--brand-tint: #F2F7FE;
	--accent: #F59E0B;
	--success: #25D366;
	--success-2: #1FB957;
	--danger: #B91C1C;
	--danger-bg: #FEF2F2;
	--danger-bd: #FECACA;
	--shadow-sm: 0 1px 2px rgba(14,26,43,0.05);
	--shadow-md: 0 10px 30px -12px rgba(14,26,43,0.18), 0 2px 6px rgba(14,26,43,0.04);
	--shadow-lg: 0 30px 70px -20px rgba(14,26,43,0.25), 0 10px 24px -10px rgba(14,26,43,0.10);
	--radius: 14px;
	--radius-lg: 20px;
	--container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-size: 16px;
	line-height: 1.55;
}

a { color: var(--brand); }
a:hover { color: var(--brand-2); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--brand-tint); padding: 1px 6px; border-radius: 6px; color: var(--brand-3); font-size: 0.9em; }

.display { font-family: 'Anton', 'Bebas Neue', Impact, sans-serif; font-weight: 400; letter-spacing: 0.005em; text-transform: uppercase; }
.italic { font-style: italic; font-weight: 400; }

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

/* ====== NAV (over light hero) ====== */
.nav-wrap { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-links { display: none; align-items: center; gap: 36px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
@media (min-width: 960px) { .nav-links { display: flex; } }

/* Solid nav variant (for inner pages without a transparent hero) */
.nav-solid { position: relative; background: #fff; border-bottom: 1px solid var(--line); }
.nav-solid .nav { height: 72px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ====== LOGO ====== */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo-mark { display: inline-block; }
.logo-text {
	font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 0.01em; line-height: 1;
	text-transform: uppercase; color: inherit;
}
.logo-text .accent { color: var(--brand); }
.logo.light .logo-text { color: #fff; }
.logo.light .logo-text .accent { color: #fff; opacity: 0.7; }

/* ====== BUTTONS ====== */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	height: 46px; padding: 0 22px; border-radius: 999px;
	font-weight: 600; font-size: 14.5px; cursor: pointer;
	border: 1px solid transparent; text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
	white-space: nowrap; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(45,124,246,0.6); }
.btn-primary:hover { background: var(--brand-2); color: #fff; }
.btn-wa { background: var(--success); color: #fff; box-shadow: 0 10px 24px -10px rgba(37,211,102,0.6); }
.btn-wa:hover { background: var(--success-2); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--brand); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ====== HERO — V2 SPLIT + WhatsApp chat ====== */
.hero {
	position: relative; overflow: hidden;
	background: linear-gradient(180deg, #F8FBFF 0%, #EAF3FE 100%);
	padding: 130px 0 80px;
}
.hero-grid {
	display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 60px;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow {
	display: inline-block; letter-spacing: 0.3em; text-transform: uppercase;
	font-size: 12px; color: var(--brand); font-weight: 600;
}
.hero-headline {
	font-family: 'Anton', sans-serif; text-transform: uppercase;
	font-size: clamp(56px, 9vw, 110px); line-height: 0.92; letter-spacing: 0.005em;
	color: var(--ink); margin: 18px 0 0;
}
.hero-headline .pop { color: var(--brand); }
.hero-sub {
	max-width: 520px; margin: 24px 0 0;
	font-size: 17px; color: var(--ink-2); line-height: 1.55;
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-right { display: flex; justify-content: center; }

/* WhatsApp-style chat mock */
.wa-chat {
	width: 360px; max-width: 100%;
	background: #ECE5DD; border-radius: 22px;
	box-shadow: 0 30px 60px -25px rgba(14,26,43,0.3);
	overflow: hidden; transform: rotate(2deg);
}
.wa-head {
	height: 56px; background: #128C7E; color: #fff;
	display: flex; align-items: center; gap: 12px; padding: 0 16px;
}
.wa-head .av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.wa-head .who { line-height: 1.15; }
.wa-head .who .n { font-size: 14px; font-weight: 600; }
.wa-head .who .s { font-size: 11px; opacity: 0.8; }
.wa-body { padding: 16px; min-height: 380px; background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 40%); }
.bubble { max-width: 80%; padding: 10px 12px; border-radius: 14px; margin-bottom: 8px; font-size: 13.5px; line-height: 1.4; color: var(--ink); box-shadow: 0 1px 1px rgba(0,0,0,0.06); }
.bubble.in { background: #fff; border-bottom-left-radius: 4px; }
.bubble.out { background: #DCF8C6; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble .ts { font-size: 10px; color: var(--muted); display: block; text-align: right; margin-top: 2px; }
.bubble .field { font-size: 12.5px; color: var(--ink-2); }
.bubble .field b { color: var(--ink); }

/* ====== SECTIONS ====== */
section { padding: 110px 0; }
.eyebrow { display: inline-block; letter-spacing: 0.3em; text-transform: uppercase; font-size: 12px; color: var(--brand); font-weight: 600; }
h2.display-title {
	font-family: 'Anton', sans-serif; text-transform: uppercase;
	font-size: clamp(40px, 6vw, 84px); line-height: 0.95; letter-spacing: 0.005em;
	margin: 14px 0 16px; color: var(--ink); max-width: 900px;
}
.section-sub { font-size: 16.5px; color: var(--muted); max-width: 640px; line-height: 1.55; }
.section-head { text-align: center; margin: 0 auto 56px; }
.section-head .section-sub { margin: 14px auto 0; }
.section-head h2.display-title { margin-left: auto; margin-right: auto; }

/* Inner-page hero (no big gradient, for signup/pricing/privacy/terms) */
.page-hero { padding: 80px 0 32px; text-align: left; }
.page-hero h1 {
	font-family: 'Anton', sans-serif; text-transform: uppercase;
	font-size: clamp(40px, 6vw, 72px); line-height: 0.95; letter-spacing: 0.005em;
	margin: 12px 0 14px; color: var(--ink);
}
.page-hero p { font-size: 17px; color: var(--ink-2); max-width: 640px; }

/* "How it works" — 3 steps */
.steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
	position: relative; background: var(--paper); border: 1px solid var(--line);
	border-radius: 20px; padding: 32px 28px 28px; overflow: hidden;
}
.step-num {
	position: absolute; top: 24px; right: 24px;
	font-family: 'Anton', sans-serif; font-size: 80px; line-height: 1; color: var(--brand);
}
.step-tag {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
	margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 10px; font-weight: 600; color: var(--ink); }
.step p { color: var(--ink-2); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* Browser mockup (used inside Pilot panel) */
.browser {
	background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden;
	border: 1px solid var(--line);
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.browser-bar .url { flex: 1; margin: 0 10px; padding: 5px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 11.5px; color: var(--muted); text-align: center; font-family: ui-monospace, monospace; }
.browser-body { padding: 24px; min-height: 380px; }

.booking-page-hero {
	height: 140px; border-radius: 12px; position: relative; overflow: hidden;
	background: linear-gradient(135deg, #2D7CF6 0%, #1E63D6 100%);
	color: #fff; padding: 20px 22px; display: flex; flex-direction: column; justify-content: space-between;
}
.booking-page-hero::after { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; }
.booking-page-hero::before { content: ""; position: absolute; right: -10px; top: -10px; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; }
.booking-page-hero .op-mini { font-size: 11.5px; opacity: 0.85; letter-spacing: 0.05em; text-transform: uppercase; }
.booking-page-hero h5 { margin: 0; font-family: 'Anton', sans-serif; font-size: 24px; line-height: 1; }

.form-stack { margin-top: 18px; display: grid; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.form-field.focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-soft); }
.form-field .ff-lbl { font-size: 10.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.form-field .ff-val { font-size: 13px; color: var(--ink); font-weight: 500; margin-top: 2px; }

.fare-summary { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--brand-tint); border: 1px solid var(--brand-soft); border-radius: 10px; }
.fare-summary .lbl { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-3); font-weight: 600; }
.fare-summary .val { font-family: 'Anton', sans-serif; font-size: 32px; color: var(--brand-3); line-height: 1; }

.demo-cta { margin-top: 14px; height: 48px; background: var(--success); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 14px; }

/* Pilot panel */
.pilot {
	background:
		radial-gradient(70% 100% at 100% 0%, rgba(255,255,255,0.06), transparent 60%),
		linear-gradient(135deg, #1E63D6 0%, #0E4DAE 100%);
	color: #fff; border-radius: 28px; padding: 72px 64px; position: relative; overflow: hidden;
	display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .pilot { grid-template-columns: 1fr; padding: 48px 32px; gap: 36px; } }
.pilot .pilot-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(255,255,255,0.15); border-radius: 999px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.pilot h2 { font-family: 'Anton', sans-serif; font-size: clamp(48px, 6vw, 88px); line-height: 0.94; margin: 18px 0 22px; text-transform: uppercase; }
.pilot p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 460px; line-height: 1.55; }
.pilot-mock { position: relative; z-index: 1; }
.pilot-mock .browser { transform: rotate(-1.5deg); }
.pilot-decoration { position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; pointer-events: none; }
.pilot-decoration::before { content: ""; position: absolute; inset: 40px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; }
.pilot-decoration::after { content: ""; position: absolute; inset: 80px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; }

/* Footer (simplified) */
footer.site-footer { padding: 36px 0; border-top: 1px solid var(--line); background: var(--bg-2); }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot a { color: var(--ink-2); text-decoration: none; font-size: 14px; }
.foot a:hover { color: var(--brand); }
.foot .foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot .foot-copy { color: var(--muted); font-size: 13px; }

/* ====== FORMS (signup, contact) ====== */
.form-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: 36px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="password"], .field textarea, .field select {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px;
	background: #fff; color: var(--ink); font-size: 15px; font-family: inherit;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft);
}
.field .help { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.field.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.field.checkbox input { margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; }
.field.checkbox label { margin: 0; font-weight: 500; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }
.field.checkbox a { color: var(--brand); text-decoration: underline; }

.alert {
	padding: 12px 14px; border-radius: 10px; font-size: 14px; margin-bottom: 16px;
}
.alert.error { background: var(--danger-bg); border: 1px solid var(--danger-bd); color: var(--danger); }
.alert.success { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; }

/* ====== PRICING / CONTENT PAGES ====== */
.prose { max-width: 760px; }
.prose h2 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 4vw, 44px); line-height: 1; text-transform: uppercase; margin: 48px 0 16px; color: var(--ink); }
.prose h3 { font-size: 20px; font-weight: 600; margin: 32px 0 10px; color: var(--ink); }
.prose p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); line-height: 1.75; }
.prose li { margin-bottom: 4px; }
.prose a { color: var(--brand); }

.callout {
	background: var(--brand-tint); border: 1px solid var(--brand-soft);
	border-radius: 14px; padding: 20px 22px; margin: 24px 0;
	color: var(--ink-2);
}
.callout strong { color: var(--ink); }

/* ====== THEME VARIANTS (no toggle UI shipped) ====== */
body.theme-coral {
	--brand: #FF6B5A; --brand-2: #E54B3B; --brand-3: #B73526;
	--brand-soft: #FFE0DC; --brand-tint: #FFF4F2;
}
body.theme-emerald {
	--brand: #10B981; --brand-2: #059669; --brand-3: #047857;
	--brand-soft: #D1F4E2; --brand-tint: #F0FDF8;
}
body.theme-violet {
	--brand: #7C5BF1; --brand-2: #5B3FD4; --brand-3: #3E27A8;
	--brand-soft: #E1D9FB; --brand-tint: #F4F0FE;
}
