*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #0B0B0F; --bg-secondary: #111118; --bg-card: #16161E; --bg-card-hover: #1C1C26;
  --accent: #F27F0C; --accent-light: #FF9A3C; --accent-dark: #C56200; --white: #FFFFFF;
  --gray-100: #F0EDE8; --gray-200: #D4D0C8; --gray-300: #A8A49C; --gray-400: #787470;
  --gray-500: #4A4844; --gray-600: #2A2A30;
  --font-display: 'Bebas Neue', sans-serif; --font-condensed: 'Barlow Condensed', sans-serif; --font-body: 'Barlow', sans-serif;
  --max-w: 1280px; --section-py: clamp(80px, 10vw, 140px);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--gray-200); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* TEXTURE */
body::before { content: ''; position: fixed; filter: opacity(0.65); inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; }

/* TOPBAR */
.topbar { background: var(--accent); color: var(--bg-primary); font-size: 13px; font-weight: 600; padding: 6px 0; letter-spacing: 0.02em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--bg-primary); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* NAVBAR */
.navbar { background: rgba(11,11,15,0.92); backdrop-filter: blur(12px); position: -webkit-sticky; position: sticky; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.06); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 24px; height: 24px; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--bg-primary); padding: 10px 24px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-light); }
.mobile-toggle { display: none; background: none; color: var(--white); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-primary); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0B0B0F 0%, #14141C 50%, #1A150F 100%); }
.hero-bg::after { content: ''; position: absolute; right: -10%; top: -20%; width: 70%; height: 140%; background: radial-gradient(ellipse at center, rgba(242,127,12,0.08) 0%, transparent 70%); }
.hero-geometric { position: absolute; right: 0; top: 0; width: 55%; height: 100%; overflow: hidden; }
.hero-geometric::before { content: ''; position: absolute; right: -5%; top: 10%; width: 80%; height: 80%; border: 2px solid rgba(242,127,12,0.12); transform: rotate(12deg); }
.hero-geometric::after { content: ''; position: absolute; right: 5%; top: 20%; width: 60%; height: 60%; border: 2px solid rgba(242,127,12,0.06); transform: rotate(-6deg); }
.hero-stripe { position: absolute; left: 0; bottom: 0; width: 100%; height: 6px; background: var(--accent); }
.hero-accent-block { position: absolute; right: 60px; bottom: 80px; width: 320px; height: 320px; background: var(--accent); opacity: 0.06; clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
.hero-content { max-width: 620px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-condensed); font-size: 14px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.hero-tag::before { content: ''; width: 40px; height: 2px; background: var(--accent); }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); line-height: 0.95; color: var(--white); letter-spacing: 2px; margin-bottom: 24px; }
.hero-title .accent { color: var(--accent); }
.hero-subtitle { font-size: 18px; color: var(--gray-300); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-phone { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(242,127,12,0.08); border-left: 3px solid var(--accent); }
.hero-phone-number { font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 2px; }
.hero-phone-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }

/* HERO SHOWCASE */
.hero-showcase { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-showcase::before { content: ''; position: absolute; width: 140%; height: 140%; background: radial-gradient(circle, rgba(242,127,12,0.12) 0%, transparent 60%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none; }
.hero-showcase-inner { position: relative; width: 100%; max-width: 460px; height: 520px; z-index: 1; }
.showcase-frame { position: absolute; inset: 0; border: 2px dashed rgba(242,127,12,0.4); transform: translate(24px, 24px); opacity: 0.4; }
.showcase-image { position: relative; width: 100%; height: 100%; background: transparent; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.showcase-image img { object-fit: cover; width: 100%; height: 100%; }
.showcase-badge { position: absolute; bottom: 40px; left: -20px; z-index: 3; background: var(--accent); color: var(--bg-primary); padding: 16px 24px; display: flex; align-items: center; gap: 12px; }
.showcase-badge-number { font-family: var(--font-display); font-size: 42px; line-height: 1; letter-spacing: 1px; }
.showcase-badge-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.3; }

/* BUTTONS */
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; padding: 16px 36px; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-primary { background: var(--accent); color: var(--bg-primary); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px var(--accent); background: var(--accent-light); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); border-color: var(--accent); }
.btn-primary svg, .btn-secondary svg, .fleet-card-link svg { transition: transform 0.3s ease; }
.btn-primary:hover svg, .btn-secondary:hover svg, .fleet-card-link:hover svg { transform: translateX(5px); }

/* TRUST BAR */
.trust-bar { position: relative; background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 48px 0; }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { text-align: center; }
.trust-number { font-family: var(--font-display); font-size: clamp(42px, 5vw, 64px); color: var(--accent); letter-spacing: 2px; line-height: 1; }
.trust-label { font-size: 13px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; font-weight: 600; }

/* SECTION HEADERS */
.section-header { margin-bottom: 56px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-condensed); font-size: 14px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.section-tag::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); color: var(--white); letter-spacing: 2px; line-height: 1; margin-bottom: 16px; }
.section-title .accent { color: var(--accent); }
.section-desc { font-size: 17px; color: var(--gray-400); max-width: 560px; line-height: 1.7; }

/* SERVICES */
.services { padding: var(--section-py) 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); padding: 40px 32px; overflow: hidden; transition: border-color 0.3s; }
.service-card:hover { border-color: rgba(242,127,12,0.2); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-family: var(--font-display); font-size: 72px; color: rgba(242,127,12,0.08); position: absolute; top: -8px; right: 16px; letter-spacing: 2px; line-height: 1; }
.service-icon { width: 56px; height: 56px; background: rgba(242,127,12,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-name { font-family: var(--font-condensed); font-size: 24px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.service-desc { font-size: 15px; color: var(--gray-400); line-height: 1.6; margin-bottom: 24px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* FLEET */
.fleet { padding: var(--section-py) 0; background: var(--bg-secondary); position: relative; overflow: hidden; }
.fleet::before { content: 'FLOTA'; position: absolute; top: 40px; right: -20px; font-family: var(--font-display); font-size: clamp(100px, 14vw, 200px); color: rgba(255,255,255,0.015); letter-spacing: 12px; pointer-events: none; }
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.fleet-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); display: grid; grid-template-columns: 200px 1fr; overflow: hidden; transition: border-color 0.3s; }
.fleet-card:hover { border-color: rgba(242,127,12,0.2); }
.fleet-card-image { background: var(--bg-primary); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.fleet-card-image::after { content: ''; position: absolute; inset: 0; border-right: 3px solid var(--accent); }
.fleet-card-image img { transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fleet-card:hover .fleet-card-image img { transform: scale(1.08); }
.fleet-card-content { padding: 32px; }
.fleet-card-model { font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 2px; margin-bottom: 4px; }
.fleet-card-type { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.fleet-spec { display: flex; flex-direction: column; }
.fleet-spec-value { font-family: var(--font-condensed); font-size: 22px; font-weight: 700; color: var(--white); }
.fleet-spec-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.fleet-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* PROCESS */
.process { padding: var(--section-py) 0; }
.process .section-header { text-align: center; }
.process .section-desc { margin: 0 auto; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 60px; }
.process-steps::before { content: ''; position: absolute; top: 41px; left: 12.5%; width: 75%; height: 3px; background: rgba(242,127,12,0.4); }
.process-step { text-align: center; position: relative; padding: 0 16px; }
.step-number { width: 80px; height: 80px; margin: 0 auto 24px; background: var(--bg-card); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 32px; color: var(--accent); letter-spacing: 1px; position: relative; z-index: 2; }
.step-title { font-family: var(--font-condensed); font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--gray-400); line-height: 1.6; }

/* REGIONS & MAP */
.regions { padding: var(--section-py) 0; background: var(--bg-secondary); position: relative; overflow: hidden; }
.regions .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 32px; }
.region-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); font-size: 15px; font-weight: 500; color: var(--gray-200); transition: border-color 0.2s; }
.region-item:hover { border-color: rgba(242,127,12,0.3); }
.region-dot { width: 8px; height: 8px; background: var(--accent); flex-shrink: 0; }
.region-map-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.region-map-visual iframe { filter: invert(90%) hue-rotate(180deg) contrast(100%) opacity(0.8); border-radius: 8px; transition: filter 0.4s ease; }
.region-map-visual iframe:hover { filter: invert(90%) hue-rotate(180deg) contrast(100%) opacity(1); }
.map-circle-outer, .map-circle-mid { border-style: dashed; opacity: 0.6; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.map-circle-outer { width: 90%; aspect-ratio: 1; border: 1px dashed rgba(242,127,12,0.1); }
.map-circle-mid { width: 65%; aspect-ratio: 1; border: 1px dashed rgba(242,127,12,0.15); }
.map-circle-inner { width: 50%; aspect-ratio: 1; background: rgba(242, 127, 12, 0.15); box-shadow: 0 0 40px rgba(242, 127, 12, 0.15); border: 2px solid rgba(242,127,12,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 20px; }
.map-center-label { font-family: var(--font-display); font-size: 24px; color: var(--accent); letter-spacing: 2px; }
.map-center-sub { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.map-point { position: absolute; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px rgba(242, 127, 12, 0.8); animation: pulse-point 2.5s infinite; }
.map-point::after { content: ''; position: absolute; inset: -4px; border: 1px solid rgba(242,127,12,0.3); border-radius: 50%; }
.map-point:nth-child(4) { top: 8%; left: 45%; } .map-point:nth-child(5) { top: 25%; right: 10%; } .map-point:nth-child(6) { bottom: 30%; right: 8%; } .map-point:nth-child(7) { bottom: 10%; left: 35%; } .map-point:nth-child(8) { top: 35%; left: 5%; } .map-point:nth-child(9) { bottom: 25%; left: 15%; }
@keyframes pulse-point { 0% { box-shadow: 0 0 0 0 rgba(242, 127, 12, 0.5); } 70% { box-shadow: 0 0 0 10px rgba(242, 127, 12, 0); } 100% { box-shadow: 0 0 0 0 rgba(242, 127, 12, 0); } }

/* TESTIMONIALS & WHY US */
.testimonials { padding: var(--section-py) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); padding: 36px 32px; position: relative; }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 80px; color: var(--accent); opacity: 0.2; line-height: 1; position: absolute; top: 16px; right: 24px; }
.testimonial-stars { margin-bottom: 16px; color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-300); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: rgba(242,127,12,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--accent); }
.testimonial-name { font-weight: 700; color: var(--white); font-size: 15px; }
.testimonial-role { font-size: 12px; color: var(--gray-500); }
.why-us { padding: var(--section-py) 0; background: var(--bg-secondary); position: relative; }
.why-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.why-feature-icon { width: 56px; height: 56px; background: rgba(242,127,12,0.1); border: 1px solid rgba(242,127,12,0.2); display: flex; align-items: center; justify-content: center; }
.why-feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
.why-feature-title { font-family: var(--font-condensed); font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.why-feature-desc { font-size: 14px; color: var(--gray-400); line-height: 1.6; }

/* FAQ */
.faq { padding: var(--section-py) 0; }
.faq .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: transparent; color: var(--white); font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; transition: color 0.2s; }
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-answer-inner { padding: 0 40px 20px 24px; font-size: 15px; color: var(--gray-400); line-height: 1.7; max-width: 850px; }

/* CTA FINAL */
.cta-final { padding: var(--section-py) 0; background: var(--accent); position: relative; overflow: hidden; }
.cta-final::before, .cta-final::after { content: ''; position: absolute; transform: rotate(15deg); }
.cta-final::before { right: -10%; top: -50%; width: 60%; height: 200%; background: rgba(255,255,255,0.04); }
.cta-final::after { right: 5%; top: -30%; width: 40%; height: 160%; background: rgba(255,255,255,0.03); }
.cta-final .container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); color: var(--bg-primary); letter-spacing: 2px; line-height: 1; margin-bottom: 12px; }
.cta-desc { font-size: 17px; color: rgba(11,11,15,0.7); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-primary); color: var(--white); padding: 18px 40px; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.2s; }
.btn-dark:hover { background: #1a1a24; }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--bg-primary); padding: 16px 36px; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; border: 2px solid rgba(11,11,15,0.3); transition: border-color 0.2s; }
.btn-outline-dark:hover { border-color: var(--bg-primary); }

/* FOOTER */
.footer { padding: 64px 0 32px; background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-top: 16px; }
.footer-heading { font-family: var(--font-condensed); font-size: 16px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--gray-400); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: var(--gray-600); }
.footer-bottom a span[style*="color"] { color: var(--gray-500) !important; transition: color 0.2s ease; }
.footer-bottom a:hover span[style*="color"] { color: var(--accent) !important; }

/* ANIMATIONS (SCROLL) */
.fade-up-element { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-up-element.visible { opacity: 1; transform: translateY(0); }

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-showcase { display: none; }
  .services-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid, .regions .container, .why-us .container, .faq .container { grid-template-columns: 1fr; }
  .region-map-visual { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  html, body { max-width: 100vw; }
  .navbar .container { height: 72px; min-height: 72px; }
  .topbar-right { display: none; }
  .mobile-toggle { display: block; }
  
  /* MOBILE MENU */
  .nav-links { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; width: 100%; background: rgba(11, 11, 15, 0.98); backdrop-filter: blur(12px); padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease; border-bottom: 1px solid rgba(255,255,255,0.06); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
  .nav-links.open { max-height: 400px; padding: 24px 0 32px 0; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px 24px; font-size: 16px; }
  .nav-cta { margin: 16px auto 0; width: max-content; }
  
  /* HERO MOBILE */
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(42px, 12vw, 56px); margin-bottom: 16px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 32px; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-phone { justify-content: center; }
  
  /* LAYOUT ADJUSTMENTS */
  .services-grid, .fleet-card, .trust-bar .container, .testimonials-grid, .region-list, .footer-grid { grid-template-columns: 1fr; }
  .fleet-card-image { height: 240px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .cta-final .container { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; justify-content: center; }
  .cta-actions a { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* === NOWE POPRAWKI MOBILE === */
  
  /* 1. Kompaktowa lista regionów (2 kolumny) */
  .region-list { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .region-item { font-size: 13px; padding: 10px 8px; }

  /* 2. Ochrona zdjęć maszyn przed ucięciem */
  .fleet-card-image img { object-fit: contain !important; padding: 16px; }

  /* 3. Wyśrodkowanie nagłówków sekcji dla lepszej symetrii */
  .section-header { text-align: center; }
  .section-tag { justify-content: center; }
  .section-desc { margin: 0 auto; text-align: center; }

  /* 4. Wyśrodkowanie paska kontaktowego na samej górze */
  .topbar-left { justify-content: center; width: 100%; flex-wrap: wrap; gap: 16px; }

  /* Zwiększamy wysokość kontenera na zdjęcia maszyn */
  .fleet-card-image { 
    height: 540px !important; 
  }

  /* Usuwamy sztuczny margines, żeby zdjęcie mogło wypełnić kadr */
  .fleet-card-image img { 
    object-fit: contain !important; 
    padding: 0 !important; 
  }

  /* NAPRAWA TOPBARA (PASEK KONTAKTOWY) */
  .topbar-left { 
    justify-content: center; 
    width: 100%; 
    flex-direction: column; /* Ułożenie telefonu i maila jeden pod drugim, by zyskać na czytelności */
    gap: 8px; 
    text-align: center;
  }

  /* NAPRAWA SEKCJI HERO (WYŚRODKOWANIE I ODDECH) */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Wyśrodkowanie zawartości kontenera */
    text-align: center;  /* Wyśrodkowanie tekstu */
    padding: 0 16px;     /* Dodatkowy margines boczny, by tekst nie kleił się do krawędzi */
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px auto; /* Wyśrodkowanie bloku tekstu i odpowiedni odstęp od dołu */
  }

  .hero-actions {
    width: 100%;
    max-width: 320px; /* Ograniczenie szerokości przycisków, by nie były zbyt rozciągnięte */
    margin: 0 auto 32px auto;
  }

  .hero-phone {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  /* Naprawa mapy Google, która rozpychała sekcję Regiony poza ekran */
  .region-map-visual iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important; /* Odpowiednia wysokość dla telefonów */
  }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  /* 1. Globalne poprawki układu i oddech dla małych ekranów */
  .container { 
    padding: 0 16px !important; /* Zmniejszamy bazowy padding na krawędziach bocznych telefonu */
  }

  /* Wymuszenie zawijania długich tekstów/linków (np. adres email u góry) */
  * {
    word-break: break-word;
  }

  /* 2. Topbar i Nawigacja */
  .topbar-left {
     padding: 4px 0;
     font-size: 12px; /* Drobniejszy tekst dla maila/telefonu */
  }
  
  /* Zmniejszamy logo, żeby nie spychało "hamburgera" z ekranu */
  .logo {
    font-size: 20px !important; 
    gap: 8px;
  }
  .logo-icon {
    width: 32px !important;
    height: 32px !important;
  }

  /* 3. Sekcja Hero */
  .hero-title {
    font-size: clamp(34px, 10vw, 42px) !important; /* Upewniamy się, że główne hasło jest czytelne */
  }
  .hero-subtitle {
     font-size: 15px; /* Lżejszy opis */
  }
  
  /* Przyciski muszą mieścić się na ekranie (ograniczenie maksymalnej szerokości lub mniejsze paddingi) */
  .btn-primary, .btn-secondary, .btn-dark, .btn-outline-dark {
    padding: 14px 24px !important;
    font-size: 13px !important;
    width: 100% !important; /* Na 320px dajemy je zawsze na pełną dostępną szerokość */
    justify-content: center;
  }
  
  /* 4. Trust Bar (Wąskie statystyki) */
  .trust-bar .container {
    grid-template-columns: 1fr !important; /* Na 320px 2 kolumny statystyk mogą być zbyt ściśnięte, lepiej ułożyć je jedna pod drugą w kolumnie (opcjonalne, przetestuj) */
    gap: 24px;
  }
  .trust-number {
    font-size: 38px !important;
  }

  /* 5. Mniejsze paddingi wewnątrz "kart" (Usługi, Flota, Opinie) */
  .service-card, .testimonial-card, .fleet-card-content, .faq-question {
    padding: 24px 20px !important; /* Zmniejszamy te ogromne paddingi z 40px/32px */
  }

  .service-number {
    font-size: 48px !important; /* Mniejsza cyfra wodna w tle */
    right: 8px !important;
  }
  .service-name {
    font-size: 20px !important;
  }
  
  /* 6. Flota */
  .fleet-card-image { 
    height: 320px !important; /* Nieco niższe zdjęcia maszyn, żeby nie zajmowały 1.5 ekranu pionowego */
  }
  .fleet-card-model {
     font-size: 22px !important;
  }
  .fleet-specs {
     gap: 8px;
  }
  .fleet-spec-value {
    font-size: 18px !important;
  }

  /* 7. Proces "Jak to działa" */
  .process-steps { 
    grid-template-columns: 1fr !important; /* Jedna kolumna to jedyne rozsądne wyjście dla 320px */
    gap: 32px;
  }
  .step-number {
    width: 64px !important;
    height: 64px !important;
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }

  /* 8. Mapa i Regiony */
  .region-list { 
    grid-template-columns: 1fr !important; /* Na 320px wracamy do jednej kolumny miast - w dwóch będą się krzaczyć */
  }

  /* 9. Dlaczego My / Funkcje */
  .why-feature {
    grid-template-columns: 48px 1fr !important; /* Minimalnie mniejsza ikonka po lewej */
    gap: 16px !important;
  }
  .why-feature-icon {
     width: 48px !important;
     height: 48px !important;
  }

  /* 10. Opinie */
  .testimonial-quote-mark {
     font-size: 50px !important; /* Mniejszy cudzysłów */
     top: 10px !important;
     right: 16px !important;
  }

  /* 11. Stopka */
  .footer {
    padding: 40px 0 24px !important;
  }
  .footer-grid {
    gap: 32px !important;
  }
}
/* ==========================================================================
   JASNY MOTYW (LIGHT THEME) I PRZEŁĄCZNIK
   ========================================================================== */

/* Ostylowanie ikony przełącznika */
.theme-toggle {
  background: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 8px;
  transition: background 0.2s, transform 0.2s;
}
.theme-toggle:hover {
  background: rgba(128,128,128,0.1);
  transform: scale(1.05);
}
.theme-toggle svg { width: 22px; height: 22px; }

/* Ukrywanie/pokazywanie słońca i księżyca w zależności od motywu */
body.light-theme .theme-toggle .sun-icon { display: none; }
body:not(.light-theme) .theme-toggle .moon-icon { display: none; }

/* -------------------------------------------
   Zmienne kolorystyczne dla jasnego motywu
------------------------------------------- */
body.light-theme {
  --bg-primary: #FAFAFD; /* Bardzo delikatny, chłodny szary (zamiast czystej bieli) */
  --bg-secondary: #F0F0F5;
  --bg-card: #FFFFFF;    /* Czysta biel zarezerwowana tylko dla kart - da to efekt 3D */
  --bg-card-hover: #FFFFFF;
  --white: #111118;      /* Ciemny tekst nagłówków */
  --gray-100: #1C1C22;
  --gray-200: #33333C;   /* Znacznie ciemniejszy, czytelny tekst bazowy */
  --gray-300: #4A4A56;
  --gray-400: #5C5C68;
  --gray-500: #888894;
  --gray-600: #D0D0D8;
}

/* -------------------------------------------
   Nadpisania specjalne dla jasnego motywu
------------------------------------------- */
body.light-theme .navbar { background: rgba(255,255,255,0.95); border-bottom-color: rgba(0,0,0,0.06); }

/* Miękkie gradienty tła na jasnym motywie */
body.light-theme .hero-bg { background: linear-gradient(135deg, #FAFAFD 0%, #F0F0F5 50%, #E8E8EE 100%); }
body.light-theme .hero-bg::after { background: radial-gradient(ellipse at center, rgba(242,127,12,0.1) 0%, transparent 70%); }

/* Dodanie głębi (cieni) do kart zamiast płaskich ramek */
body.light-theme .service-card,
body.light-theme .fleet-card,
body.light-theme .region-item,
body.light-theme .testimonial-card,
body.light-theme .faq-item { 
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.06); /* Przestrzenny cień */
  border-color: rgba(0,0,0,0.03) !important;      /* Prawie niewidoczna ramka */
}

/* Uwidocznienie dekoracji w tle */
body.light-theme .service-number { color: rgba(242, 127, 12, 0.15); }
body.light-theme .fleet::before { color: rgba(0,0,0,0.04); }
body.light-theme .testimonial-quote-mark { opacity: 0.15; color: var(--accent); }
body.light-theme .hero-geometric::before, body.light-theme .hero-geometric::after { border-color: rgba(242,127,12,0.25); }

/* Naprawa Mapy (Zdejmujemy filtry, Google Maps w jasnym trybie wygląda super) */
body.light-theme .region-map-visual iframe { filter: none !important; opacity: 1 !important; }

/* Inne granice i ikony */
body.light-theme .trust-bar, body.light-theme .footer { border-color: rgba(0,0,0,0.06) !important; }
body.light-theme .why-feature-icon { border-color: rgba(242,127,12,0.3) !important; }
body.light-theme .step-number { background: #FFFFFF; }

/* Poprawki przycisków */
body.light-theme .btn-secondary { border-color: rgba(0,0,0,0.2); color: var(--white); }
body.light-theme .btn-secondary:hover { border-color: var(--accent); background: rgba(242,127,12,0.05); }

/* Utrzymanie czarnego tekstu na pomarańczowych akcentach (Topbar, Przyciski CTA) */
body.light-theme .topbar, 
body.light-theme .topbar a, 
body.light-theme .nav-cta, 
body.light-theme .btn-primary, 
body.light-theme .showcase-badge { color: #0B0B0F !important; }

/* Zmiana kolorystyki w stopce wezwania do akcji (Ciemna zamiast białej) */
body.light-theme .cta-title { color: #0B0B0F; }
body.light-theme .cta-desc { color: rgba(11,11,15,0.8); }
body.light-theme .btn-dark { background: #0B0B0F; color: #FFFFFF; }
body.light-theme .btn-dark:hover { background: #1a1a24; }
body.light-theme .btn-outline-dark { border-color: rgba(11,11,15,0.3); color: #0B0B0F; }
body.light-theme .btn-outline-dark:hover { border-color: #0B0B0F; }
body.light-theme .showcase-image { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important; }

@media (max-width: 768px) {
  body.light-theme .nav-links { background: rgba(255, 255, 255, 0.98); border-bottom-color: rgba(0,0,0,0.06); }
}


/* ==========================================================================
   EFEKT WOW - PREMIUM UPGRADES
   ========================================================================== */

/* --- 1. Gradientowe teksty (Bebas Neue aż prosi się o gradient) --- */
.hero-title .accent,
.section-title .accent,
.showcase-badge-number,
.trust-number {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
  display: inline-block; /* Konieczne dla poprawnego działania background-clip na elementach inline */
}

/* --- 2. Lewitujące karty (Smooth Hover) --- */
.service-card, .fleet-card, .testimonial-card, .why-feature {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
}

.service-card:hover, .fleet-card:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  z-index: 10; /* Zapewnia, że podniesiona karta jest nad innymi */
}

/* W jasnym trybie cień musi być inny */
body.light-theme .service-card:hover, 
body.light-theme .fleet-card:hover, 
body.light-theme .testimonial-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

/* --- 3. Magiczny Glow w sekcji Flota --- */
.fleet-card {
  position: relative;
}
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(242,127,12,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.fleet-card:hover::before {
  opacity: 1;
}
.fleet-card-image { z-index: 2; } /* Zdjęcie nad poświatą */
.fleet-card-content { z-index: 2; position: relative; }

/* --- 4. Animowany przycisk "Zamów wycenę" (Pulsacja) --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  padding-top: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.btn-primary:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: 0s; /* Natychmiastowe pojawienie się po kliknięciu */
}

/* --- 5. Ożywienie "Radaów" na mapie (Regiony) --- */
.map-circle-outer {
  animation: rotate-slow 20s linear infinite;
}
.map-circle-mid {
  animation: rotate-slow 15s linear infinite reverse;
}
@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- 6. Interaktywne ikony w usługach --- */
.service-icon svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efekt sprężyny */
}
.service-card:hover .service-icon svg {
  transform: scale(1.2) rotate(5deg);
}

/* --- 7. Stylowy pasek postępu czytania (Opcjonalny bajer) --- */
body::after {
  content: '';
  position: fixed;
  top: 72px; /* Wysokość navbaru */
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(var(--scroll, 0));
  z-index: 1001;
}

/* ==========================================================================
   POPRAWKI KONTRASTU I CZYTELNOŚCI (ACCESSIBILITY / WCAG)
   ========================================================================== */

/* 1. Naprawa plakietki "17M" (usunięcie gradientu, mocny kontrast czerni na pomarańczu) */
.showcase-badge-number {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: initial !important;
  background-clip: unset !important;
  color: #0B0B0F !important; /* Głęboka czerń na pomarańczowym tle to kontrast ~9:1 */
}

/* Wymuszenie czarnego tekstu obok liczby w plakietce */
.showcase-badge, .showcase-badge-text {
  color: #0B0B0F !important; 
}

/* 2. Przyciemnienie szarości dla jasnego motywu (Lepsza czytelność mniejszych tekstów) */
body.light-theme {
  --gray-300: #33333C; 
  --gray-400: #4A4A56; /* Główny tekst opisów */
  --gray-500: #62626A; /* Teksty poboczne */
  --gray-600: #7A7A82; /* Dół stopki */
}

/* 3. Optymalizacja pomarańczowego tekstu na białym tle (Użycie --accent-dark) */
body.light-theme .hero-tag,
body.light-theme .section-tag,
body.light-theme .service-link,
body.light-theme .fleet-card-type,
body.light-theme .fleet-card-link,
body.light-theme .step-number,
body.light-theme .map-center-label,
body.light-theme .footer-links a:hover,
body.light-theme .testimonial-stars {
  color: var(--accent-dark) !important; /* #C56200 zapewnia kontrast 4.5:1 na bieli */
}

/* 4. Ciemniejszy gradient dla wielkich nagłówków w jasnym motywie */
body.light-theme .hero-title .accent,
body.light-theme .section-title .accent,
body.light-theme .trust-number {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* 5. Obramowanie kółka z numerem etapu w jasnym motywie dla lepszej widoczności */
body.light-theme .step-number {
  border-color: var(--accent-dark) !important;
}

/* 6. Ikonki w jasnym trybie niech korzystają z wyraźnego akcentu */
body.light-theme .service-icon svg,
body.light-theme .why-feature-icon svg,
body.light-theme .faq-icon {
  color: var(--accent-dark) !important;
}

/* ==========================================================================
   POPRAWKI KONTRASTU DLA MOTYWU CIEMNEGO (DOMYŚLNEGO)
   ========================================================================== */

/* 1. Rozjaśnienie szarości w ciemnym motywie (Lepsza czytelność długich opisów) */
:root {
  --gray-300: #C4C0B8; /* Jasny szary dla mniejszych nagłówków */
  --gray-400: #A5A199; /* Główny tekst opisów - znacznie jaśniejszy i wyraźniejszy */
  --gray-500: #88857E; /* Etykiety techniczne i górna część stopki */
  --gray-600: #6B6863; /* Najciemniejszy tekst (dolna belka stopki) */
}

/* 2. Maksymalny kontrast na pomarańczowym tle (Górny pasek kontaktowy) */
.topbar {
  font-size: 14px !important; /* Minimalnie większy font dla lepszej czytelności numeru */
  font-weight: 700 !important; /* Mocniejsze pogrubienie */
  color: #000000 !important;   /* Absolutna, smolista czerń */
}
.topbar a {
  color: #000000 !important;
}

/* Pogrubienie ikon na górnym pasku */
.topbar svg {
  color: #000000 !important;
  stroke-width: 2.5px !important; 
}

/* 3. Wzmocnienie czerni na głównych przyciskach i plakietkach */
.nav-cta, 
.btn-primary,
.showcase-badge,
.showcase-badge-number,
.showcase-badge-text {
  color: #000000 !important;
  font-weight: 800 !important; /* Ekstremalne pogrubienie na pomarańczu */
}

/* Pogrubienie ikonek wewnątrz przycisków */
.nav-cta svg, .btn-primary svg {
  stroke-width: 2.5px !important;
}

/* 4. Drobna poprawka wyśrodkowania dla paska w mobile */
@media (max-width: 768px) {
  .topbar-left {
    font-size: 13px !important; /* Na telefonach minimalnie mniejszy, by się zmieścił */
  }
}

/* ==========================================================================
   POPRAWKI CZYTELNOŚCI - CIEMNA WERSJA MOBILNA (HERO) - CZYSTA WERSJA
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Usunięcie szumu w tle, który brudził ekran na telefonach */
  body::before {
    opacity: 0.01 !important;
    z-index: -1 !important;
  }

  /* 2. Czysty, elegancki opis - bez brudnych cieni i sztucznego pogrubienia */
  body:not(.light-theme) .hero-subtitle {
    color: var(--gray-200) !important; /* Łagodniejszy, czytelny odcień */
    font-size: 15px !important;
    font-weight: 400 !important; /* Normalna, elegancka grubość liter */
    text-shadow: none !important; /* CAŁKOWITE usunięcie cienia */
    line-height: 1.6 !important;
  }

  /* 3. Naprawa tytułu i brudnego gradientu na słowie "WYSOKOŚCI" */
  body:not(.light-theme) .hero-title {
    text-shadow: none !important; /* Usunięcie cienia spod głównego nagłówka */
  }
  
  body:not(.light-theme) .hero-title .accent {
    /* Jaśniejszy, czysty gradient specjalnie dla ciemnego tła (bez wpadania w brąz) */
    background: linear-gradient(135deg, #FFB366 0%, #F27F0C 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  /* 4. Czysty tag nad tytułem */
  body:not(.light-theme) .hero-tag {
    color: var(--accent) !important;
    text-shadow: none !important;
  }

  /* 5. Minimalne wygaszenie wektorów w tle, żeby nie właziły pod tekst */
  body:not(.light-theme) .hero-geometric,
  body:not(.light-theme) .hero-accent-block {
    opacity: 0.03 !important;
  }

  /* 6. Pudełko kontaktowe "Zadzwoń teraz" - powrót do delikatności */
  body:not(.light-theme) .hero-phone {
    background: rgba(255,255,255,0.04) !important;
    border-left: 3px solid var(--accent) !important;
  }
  body:not(.light-theme) .hero-phone-label {
    color: var(--gray-400) !important;
    font-weight: 500 !important;
  }
}