:root{
	--black:#030303;
	--dark:#0b0b0d;
	--red:#DC2626;
	--orange:#F97316;
	--text:#f6f6f7;
	--muted:#b8b8c0;
	--line:rgba(255,255,255,.12);
	--card:rgba(255,255,255,.055);
	--carbon:linear-gradient(135deg,rgba(255,255,255,.045) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.045) 50%,rgba(255,255,255,.045) 75%,transparent 75%,transparent);
	--grad:linear-gradient(135deg,#030303 0%,#DC2626 55%,#F97316 100%)
}
 *{
	box-sizing:border-box
}
html{
	scroll-behavior:smooth
}
body{
	margin:0;
	font-family:Inter,Arial,sans-serif;
	background:radial-gradient(circle at 20% 0%,rgba(220,38,38,.25),transparent 30%),radial-gradient(circle at 80% 10%,rgba(249,115,22,.18),transparent 25%),#030303;
	color:var(--text);
	line-height:1.6
}
body:before{
	content:"";
	position:fixed;
	inset:0;
	background-image:var(--carbon);
	background-size:18px 18px;
	opacity:.1;
	pointer-events:none;
	z-index:-1
}
a{
	color:inherit;
	text-decoration:none
}
img{
	max-width:100%;
	display:block
}
.container{
	width:min(1180px,92%);
	margin:auto
}
.topline{
	font-size:13px;
	color:#ddd;
	border-bottom:1px solid var(--line);
	background:rgba(3,3,3,.8);
	backdrop-filter:blur(12px)
}
.topline .container{
	display:flex;
	justify-content:space-between;
	gap:16px;
	padding:8px 0
}
.navbar{
	position:sticky;
	top:0;
	z-index:50;
	background:rgba(3,3,3,.78);
	backdrop-filter:blur(16px);
	border-bottom:1px solid var(--line)
}
.nav-inner{
	height:76px;
	display:flex;
	align-items:center;
	justify-content:space-between
}
.brand{
	display:flex;
	align-items:center;
	gap:12px;
	font-weight:900;
	letter-spacing:.8px
}
.brand-mark{
	width:44px;
	height:44px;
	border-radius:14px;
	background:var(--grad);
	display:grid;
	place-items:center;
	box-shadow:0 0 30px rgba(220,38,38,.35)
}
.brand small{
	display:block;
	color:var(--orange);
	font-size:11px;
	letter-spacing:2px;
	text-transform:uppercase
}
.nav-links{
	display:flex;
	align-items:center;
	gap:22px;
	font-weight:700;
	font-size:14px
}
.nav-links a{
	color:#eee;
	opacity:.9
}
.nav-links a:hover{
	color:var(--orange)
}
.burger{
	display:none;
	width:44px;
	height:44px;
	border:1px solid var(--line);
	border-radius:12px;
	background:rgba(255,255,255,.04);
	color:#fff;
	font-size:24px
}
.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	border:0;
	border-radius:999px;
	padding:14px 22px;
	font-weight:900;
	cursor:pointer;
	transition:.25s;
	background:var(--grad);
	color:#fff;
	box-shadow:0 10px 28px rgba(220,38,38,.35)
}
.btn:hover{
	transform:translateY(-2px);
	box-shadow:0 18px 40px rgba(249,115,22,.33)
}
.btn.outline{
	background:transparent;
	border:1px solid rgba(249,115,22,.55);
	box-shadow:none
}
.hero{
	position:relative;
	overflow:hidden;
	padding:96px 0 80px
}
.hero-grid{
	display:grid;
	grid-template-columns:1.05fr .95fr;
	gap:44px;
	align-items:center
}
.eyebrow{
	display:inline-flex;
	padding:8px 12px;
	border:1px solid rgba(249,115,22,.45);
	border-radius:999px;
	color:#ffbd82;
	background:rgba(249,115,22,.08);
	font-weight:800;
	font-size:13px
}
.hero h1{
	font-size:clamp(42px,6vw,50px);
	line-height:.94;
	margin:20px 0 18px;
	letter-spacing:-3px
}
.grad-text{
	background:linear-gradient(90deg,#fff,#ff9a3d,#DC2626);
	-webkit-background-clip:text;
	color:transparent
}
.lead{
	font-size:clamp(18px,2vw,22px);
	color:#d9d9df;
	max-width:720px
}
.hero-actions{
	display:flex;
	gap:14px;
	flex-wrap:wrap;
	margin-top:28px
}
.hero-card{
	position:relative;
	border:1px solid var(--line);
	border-radius:30px;
	background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
	padding:18px;
	box-shadow:0 30px 90px rgba(0,0,0,.55)
}
.hero-card:before{
	content:"";
	position:absolute;
	inset:-2px;
	border-radius:32px;
	background:var(--grad);
	z-index:-1;
	filter:blur(26px);
	opacity:.35
}
.stats{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:12px;
	margin-top:24px
}
.stat{
	padding:18px;
	border:1px solid var(--line);
	border-radius:18px;
	background:rgba(255,255,255,.045)
}
.stat b{
	display:block;
	font-size:28px;
	color:#fff
}
.stat span{
	font-size:13px;
	color:var(--muted)
}
section{
	padding:78px 0
}
.section-head{
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:24px;
	margin-bottom:32px
}
.section-head h2{
	font-size:clamp(32px,4vw,54px);
	line-height:1;
	margin:0;
	letter-spacing:-1.5px
}
.section-head p{
	color:var(--muted);
	max-width:520px;
	margin:0
}
.cards{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:18px
}
.card{
	border:1px solid var(--line);
	border-radius:24px;
	background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
	padding:24px;
	position:relative;
	overflow:hidden
}
.card:after{
	content:"";
	position:absolute;
	right:-50px;
	top:-50px;
	width:140px;
	height:140px;
	border-radius:50%;
	background:rgba(220,38,38,.18);
	filter:blur(10px)
}
.card h3{
	font-size:22px;
	margin:14px 0 10px
}
.card p,.muted{
	color:var(--muted)
}
.fleet{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px
}
.car{
	border:1px solid var(--line);
	border-radius:28px;
	overflow:hidden;
	background:rgba(255,255,255,.045)
}
.car-body{
	padding:22px
}
.tags{
	display:flex;
	gap:8px;
	flex-wrap:wrap;
	margin:12px 0
}
.tag{
	font-size:12px;
	color:#ffd1ac;
	border:1px solid rgba(249,115,22,.35);
	padding:5px 9px;
	border-radius:999px;
	background:rgba(249,115,22,.07)
}
.price{
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:12px;
	margin-top:16px
}
.price b{
	font-size:28px
}
.split{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:28px;
	align-items:center
}
.panel{
	border:1px solid var(--line);
	border-radius:30px;
	background:rgba(255,255,255,.05);
	padding:30px
}
.list{
	display:grid;
	gap:12px;
	margin:22px 0
}
.list li{
	list-style:none;
	padding:14px 16px;
	border-left:3px solid var(--orange);
	background:rgba(255,255,255,.04);
	border-radius:12px
}
.steps{
	counter-reset:s;
	display:grid;
	gap:14px
}
.step{
	counter-increment:s;
	display:grid;
	grid-template-columns:54px 1fr;
	gap:15px;
	align-items:start;
	padding:18px;
	border:1px solid var(--line);
	border-radius:20px;
	background:rgba(255,255,255,.04)
}
.step:before{
	content:counter(s);
	width:44px;
	height:44px;
	border-radius:14px;
	background:var(--grad);
	display:grid;
	place-items:center;
	font-weight:900
}
.form-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:14px
}
.form-grid .full{
	grid-column:1/-1
}
input,select,textarea{
	width:100%;
	background:#0c0c0f;
	border:1px solid rgba(255,255,255,.14);
	border-radius:16px;
	color:#fff;
	padding:15px 16px;
	font:inherit
}
textarea{
	min-height:120px;
	resize:vertical
}
label{
	display:grid;
	gap:7px;
	font-weight:800;
	font-size:13px;
	color:#eee
}
.footer{
	border-top:1px solid var(--line);
	padding:44px 0;
	background:#050505
}
.footer-grid{
	display:grid;
	grid-template-columns:1.2fr repeat(3,1fr);
	gap:24px
}
.footer a{
	color:#cfcfd8
}
.footer a:hover{
	color:var(--orange)
}
.page-hero{
	padding:70px 0 34px
}
.breadcrumb{
	color:#ffbd82;
	font-size:13px;
	font-weight:800
}
.table{
	overflow:auto;
	border:1px solid var(--line);
	border-radius:22px
}
.table table{
	width:100%;
	border-collapse:collapse;
	min-width:720px;
	background:rgba(255,255,255,.04)
}
th,td{
	padding:16px;
	border-bottom:1px solid var(--line);
	text-align:left
}
th{
	color:#ffbd82
}
.map-placeholder{
	border:1px dashed rgba(249,115,22,.55);
	border-radius:26px;
	padding:28px;
	background:rgba(255,255,255,.035);
	text-align:center
}
.cookie-banner{
	position:fixed;
	left:20px;
	right:20px;
	bottom:20px;
	z-index:100;
	display:none
}
.cookie-box{
	max-width:980px;
	margin:auto;
	border:1px solid rgba(249,115,22,.45);
	border-radius:24px;
	background:rgba(10,10,12,.94);
	backdrop-filter:blur(18px);
	padding:20px;
	box-shadow:0 22px 70px rgba(0,0,0,.6);
	display:grid;
	grid-template-columns:1fr auto;
	gap:18px;
	align-items:center
}
.alert{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.72);
	z-index:200;
	display:none;
	align-items:center;
	justify-content:center;
	padding:20px
}
.alert.active{
	display:flex
}
.alert-card{
	width:min(460px,100%);
	border:1px solid rgba(249,115,22,.55);
	border-radius:28px;
	background:#08080a;
	padding:32px;
	text-align:center;
	animation:pop .42s ease
}
.alert-icon{
	width:76px;
	height:76px;
	border-radius:50%;
	background:var(--grad);
	margin:0 auto 16px;
	display:grid;
	place-items:center;
	font-size:34px;
	box-shadow:0 0 50px rgba(220,38,38,.45)
}
@keyframes pop{
	from{
		transform:scale(.78) translateY(20px);
		opacity:0
	}
	to{
		transform:scale(1);
		opacity:1
	}
}
@media(max-width:900px){
	.topline{
		display:none
	}
	.burger{
		display:block
	}
	.nav-links{
		position:fixed;
		top:76px;
		left:0;
		right:0;
		display:none;
		flex-direction:column;
		align-items:stretch;
		padding:18px 4%;
		background:#050505;
		border-bottom:1px solid var(--line)
	}
	.nav-links.active{
		display:flex
	}
	.nav-links a,.nav-links .btn{
		padding:14px
	}
	.hero-grid,.split,.footer-grid{
		grid-template-columns:1fr
	}
	.cards,.fleet{
		grid-template-columns:1fr
	}
	.section-head{
		display:block
	}
	.stats{
		grid-template-columns:1fr
	}
	.form-grid{
		grid-template-columns:1fr
	}
	.form-grid .full{
		grid-column:auto
	}
	.cookie-box{
		grid-template-columns:1fr
	}
	.hero{
		padding-top:58px
	}
	.nav-inner{
		height:70px
	}
	.nav-links{
		top:70px
	}
}
 .hero-home{
	background: linear-gradient(90deg,rgba(3,3,3,.92) 0%,rgba(3,3,3,.78) 38%,rgba(3,3,3,.55) 58%,rgba(3,3,3,.82) 100%), linear-gradient(180deg,rgba(220,38,38,.18),rgba(249,115,22,.12)), url('../img/hero-bg.jpg') center/cover no-repeat;
	 border-bottom:1px solid var(--line)
}
 .hero-home:before{
	content:"";
	position:absolute;
	inset:0;
	background:radial-gradient(circle at 18% 20%,rgba(249,115,22,.2),transparent 30%),radial-gradient(circle at 85% 18%,rgba(220,38,38,.28),transparent 28%);
	pointer-events:none
}
 .hero-grid-home{
	position:relative;
	z-index:1
}
 .hero-copy{
	max-width:760px
}
.hero-side{
	display:flex;
	justify-content:flex-end
}
.booking-teaser{
	max-width:480px
}
.teaser-head h2{
	font-size:clamp(28px,3vw,40px);
	line-height:1.05;
	margin:16px 0 14px;
	letter-spacing:-1px
}
.hero-bullets{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin-top:22px
}
.hero-bullets span{
	padding:9px 12px;
	border-radius:999px;
	background:rgba(255,255,255,.07);
	border:1px solid rgba(255,255,255,.12);
	color:#f5d0b0;
	font-weight:700;
	font-size:13px
}
.check-list{
	display:grid;
	gap:12px;
	padding:0;
	margin:18px 0 0
}
.check-list li{
	list-style:none;
	padding:0 0 12px 24px;
	position:relative;
	border-bottom:1px solid rgba(255,255,255,.08);
	color:#e7e7ec
}
.check-list li:last-child{
	border-bottom:0;
	padding-bottom:0
}
.check-list li:before{
	content:'✓';
	position:absolute;
	left:0;
	top:0;
	color:var(--orange);
	font-weight:900
}
.teaser-cta{
	margin-top:22px
}
.trust-strip{
	padding:24px 0;
	border-bottom:1px solid var(--line);
	background:rgba(255,255,255,.03)
}
.trust-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:18px
}
.trust-grid div{
	padding:18px 20px;
	border:1px solid var(--line);
	border-radius:22px;
	background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.025))
}
.trust-grid b{
	display:block;
	font-size:17px;
	margin-bottom:6px
}
.trust-grid span{
	display:block;
	color:var(--muted);
	font-size:14px
}
.compact-list li{
	padding:12px 14px
}
.panel-glow{
	box-shadow:0 20px 80px rgba(220,38,38,.14)
}
.reviews-grid .review-card p{
	font-size:17px
}
.faq-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:16px
}
.faq-item{
	border:1px solid var(--line);
	border-radius:20px;
	background:rgba(255,255,255,.04);
	padding:18px 20px
}
.faq-item summary{
	cursor:pointer;
	font-weight:900;
	list-style:none;
	padding-right:28px;
	position:relative
}
.faq-item summary::-webkit-details-marker{
	display:none
}
.faq-item summary:after{
	content:'+';
	position:absolute;
	right:0;
	top:-1px;
	font-size:28px;
	line-height:1;
	color:var(--orange)
}
.faq-item[open] summary:after{
	content:'−'
}
.faq-item p{
	margin:14px 0 0;
	color:var(--muted)
}
.cta-section{
	padding-top:20px
}
.cta-strip{
	display:grid;
	grid-template-columns:1.3fr auto;
	gap:24px;
	align-items:center;
	border:1px solid rgba(249,115,22,.4);
	border-radius:30px;
	padding:32px;
	background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.03))
}
.cta-strip h2{
	font-size:clamp(30px,4vw,48px);
	line-height:1.04;
	letter-spacing:-1.4px;
	margin:16px 0 10px
}
.cta-actions{
	display:grid;
	gap:12px;
	min-width:260px
}
.cta-actions .btn{
	width:100%
}
 @media(max-width:900px){
	.hero-home{
		background: linear-gradient(180deg,rgba(3,3,3,.9),rgba(3,3,3,.84)), linear-gradient(180deg,rgba(220,38,38,.18),rgba(249,115,22,.12)), url('../img/hero-bg.jpg') center/cover no-repeat
	}
	.trust-grid,.faq-grid,.cta-strip{
		grid-template-columns:1fr
	}
	.hero-side{
		justify-content:stretch
	}
	.booking-teaser{
		max-width:none
	}
	.hero-bullets span{
		width:100%;
		text-align:center
	}
}
/* v3 refinements */
 .hero h1{
	font-size:clamp(34px,4.8vw,50px);
	line-height:1.02;
	letter-spacing:-1.8px;
	max-width:760px
}
 .lead{
	font-size:clamp(16px,1.45vw,19px);
	line-height:1.72;
	max-width:700px
}
 .hero-home .eyebrow{
	font-size:12px;
	padding:7px 11px
}
 .hero-bullets{
	margin-top:18px
}
 .hero-bullets span{
	font-size:12px;
	padding:8px 11px
}
 .hero-actions{
	margin-top:22px
}
 .stats{
	margin-top:22px
}
 .stat b{
	font-size:24px
}
 .stat span{
	font-size:12px
}
 .teaser-head h2{
	font-size:clamp(24px,2.2vw,34px);
	line-height:1.12;
	margin:14px 0 12px
}
 .hero-card{
	padding:20px
}
 .review-card{
	padding:22px
}
 .review-top{
	display:flex;
	align-items:center;
	gap:14px;
	margin-bottom:12px;
	position:relative;
	z-index:1
}
 .review-avatar{
	width:72px;
	height:72px;
	border-radius:50%;
	object-fit:cover;
	border:1px solid rgba(249,115,22,.45);
	box-shadow:0 10px 30px rgba(0,0,0,.35);
	background:#111
}
 .review-meta h3{
	margin:0 0 4px;
	font-size:20px
}
 .review-meta span{
	display:block;
	font-size:13px;
	color:#ffcfab
}
 .review-stars{
	position:relative;
	z-index:1;
	color:#ffb65c;
	letter-spacing:3px;
	font-size:14px;
	margin-bottom:10px
}
 .reviews-grid .review-card p{
	font-size:16px;
	line-height:1.7;
	margin:0;
	position:relative;
	z-index:1
}
 @media(max-width:900px){
	 .hero h1{
		font-size:clamp(30px,8vw,42px);
		letter-spacing:-1px;
		line-height:1.06
	}
	 .lead{
		font-size:16px;
		line-height:1.65
	}
	 .review-top{
		align-items:flex-start
	}
	 .review-avatar{
		width:64px;
		height:64px
	}
	 .review-meta h3{
		font-size:18px
	}
}
 