/* ============================================
   ZLECMET — Recruitment Landing Page Styles
   Premium dark theme · Glassmorphism · 3D Cards
   ============================================ */

:root {
  --bg: #0b0f17; --surface: #121826; --surface-2: #1a2340;
  --primary: #ffffff; --accent: #5b8cff; --accent-2: #19d38a;
  --danger: #ff4d4d; --text: #f5f7ff; --muted: #a8b3cf;
  --border: rgba(91, 140, 255, 0.12);
  --radius: 16px; --radius-sm: 10px;
  --font-heading: 'Space Grotesk', sans-serif; --font-body: 'Inter', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
a { color: inherit; text-decoration: none; } img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; } input, textarea, select { font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.required { color: var(--danger); }

/* STATUS & NAV */
.status-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; backdrop-filter: blur(20px); transition: all 0.5s ease; border-bottom: 1px solid transparent; }
.status-bar.status-open { background: rgba(25, 211, 138, 0.06); border-bottom-color: rgba(25, 211, 138, 0.15); }
.status-bar.status-closed { background: rgba(255, 77, 77, 0.06); border-bottom-color: rgba(255, 77, 77, 0.15); }
.status-bar__inner { max-width: 1200px; margin: 0 auto; padding: 10px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; font-weight: 500; }
.status-bar__left { display: flex; align-items: center; gap: 10px; }
.status-bar__right { font-size: 0.8rem; color: var(--muted); } .status-bar__right strong { color: var(--text); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; } .blink-dot { animation: blink 1.5s ease-in-out infinite; }
.blink-dot.green { background: var(--accent-2); box-shadow: 0 0 10px rgba(25,211,138,0.4); } .blink-dot.red { background: var(--danger); box-shadow: 0 0 10px rgba(255,77,77,0.4); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.nav { position: fixed; top: 38px; left: 0; right: 0; z-index: 999; backdrop-filter: blur(24px); background: rgba(11, 15, 23, 0.6); border-bottom: 1px solid var(--border); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--accent); text-transform: lowercase; }
.nav__links { display: flex; align-items: center; gap: 32px; } .nav__link { font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.25s ease; position: relative; }
.nav__link:hover { color: var(--text); } .nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; } .nav__link:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 8px; z-index: 1002; } .nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; } .hero__orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.hero__orb--1 { width: 500px; height: 500px; background: rgba(91, 140, 255, 0.12); top: -150px; right: -100px; animation: orbFloat 8s ease-in-out infinite alternate; }
.hero__orb--2 { width: 350px; height: 350px; background: rgba(25, 211, 138, 0.08); bottom: -100px; left: -80px; animation: orbFloat 10s ease-in-out infinite alternate-reverse; }
.hero__orb--3 { width: 200px; height: 200px; background: rgba(91, 140, 255, 0.1); top: 50%; left: 50%; animation: orbFloat 6s ease-in-out infinite alternate; }
@keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, -30px) scale(1.1); } }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero__content { display: flex; flex-direction: column; gap: 24px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(91, 140, 255, 0.08); border: 1px solid rgba(91, 140, 255, 0.2); border-radius: 100px; padding: 8px 18px; font-size: 0.82rem; font-weight: 500; color: var(--accent); width: fit-content; }
.hero__title { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; text-shadow: 0 0 40px rgba(91, 140, 255, 0.15); }
.hero__subtitle { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__visual { display: flex; align-items: center; justify-content: center; } .hero__truck-wrapper { width: 100%; max-width: 520px; animation: truckDriveRoad 4s ease-in-out infinite; }
@keyframes truckDriveRoad { 0% { transform: translateX(0) translateY(0); } 20% { transform: translateX(8px) translateY(-6px); } 40% { transform: translateX(0) translateY(0); } 60% { transform: translateX(-8px) translateY(-6px); } 80% { transform: translateX(0) translateY(0); } 100% { transform: translateX(0) translateY(0); } }
.float-box--1 { animation: boxFloat1 5s ease-in-out infinite alternate; } .float-box--2 { animation: boxFloat2 6s ease-in-out infinite alternate-reverse; }
@keyframes boxFloat1 { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(8px, -10px) rotate(3deg); } }
@keyframes boxFloat2 { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-6px, -12px) rotate(-2deg); } }
.hero__scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--muted); opacity: 0.4; animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(91,140,255,0.25); } .btn--primary:hover { background: #4a7aee; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(91,140,255,0.35); }
.btn--outline { background: transparent; color: var(--muted); border: 1px solid var(--border); } .btn--outline:hover { color: var(--text); border-color: rgba(91,140,255,0.3); background: rgba(91,140,255,0.05); }
.btn--glow { animation: btnGlow 2.5s ease-in-out infinite; } @keyframes btnGlow { 0%, 100% { box-shadow: 0 4px 20px rgba(91,140,255,0.25); } 50% { box-shadow: 0 4px 30px rgba(91,140,255,0.45), 0 0 60px rgba(91,140,255,0.1); } }
.btn--huge { padding: 20px 48px; font-size: 1.1rem; border-radius: var(--radius); }
.btn--submit { width: 100%; padding: 18px; font-size: 1rem; margin-top: 8px; }
.btn__truck-anim { position: absolute; left: -70px; top: 50%; transform: translateY(-50%); width: 60px; height: 28px; opacity: 0; pointer-events: none; }
.btn.animate-truck .btn__truck-anim { animation: driveAcross 0.7s ease-out forwards; } .btn.animate-truck .btn__label { animation: labelPulse 0.7s ease-out; }
@keyframes driveAcross { 0% { left: -70px; opacity: 1; } 80% { left: calc(100% + 10px); opacity: 1; } 100% { left: calc(100% + 10px); opacity: 0; } }
@keyframes labelPulse { 0% { transform: scale(1); } 40% { transform: scale(1.06); } 100% { transform: scale(1); } }

/* SECTIONS & CARDS */
.section { padding: 100px 0; } .section__header { text-align: center; margin-bottom: 60px; }
.section__badge { display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); background: rgba(91,140,255,0.08); border: 1px solid rgba(91,140,255,0.15); border-radius: 100px; padding: 6px 16px; margin-bottom: 16px; }
.section__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.section__subtitle { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.offer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.offer-card { background: rgba(18,24,38,0.6); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; position: relative; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; }
.offer-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(91,140,255,0.3); box-shadow: 0 20px 50px -15px rgba(91,140,255,0.15); }
.offer-card__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(91,140,255,0.08); border: 1px solid rgba(91,140,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; transition: all 0.3s ease; }
.offer-card:hover .offer-card__icon { background: rgba(91,140,255,0.15); transform: scale(1.08); }
.offer-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; } .offer-card__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.offer-card__glow { position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); width: 150px; height: 150px; background: radial-gradient(circle, rgba(91,140,255,0.15), transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; } .offer-card:hover .offer-card__glow { opacity: 1; }

.card-zoom-overlay { position: fixed; inset: 0; z-index: 2500; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.card-zoom-overlay.active { opacity: 1; visibility: visible; } .card-zoom-content { background: var(--surface); border: 1px solid rgba(91,140,255,0.2); border-radius: 24px; padding: 48px; max-width: 500px; width: 90%; transform: scale(0.8) rotateY(20deg); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; } .card-zoom-overlay.active .card-zoom-content { transform: scale(1) rotateY(0); }

/* DETAILS SECTION */
.details__lead { 
  max-width: 850px; 
  margin: 0 auto 80px; 
  padding: 40px 48px; 
  background: linear-gradient(135deg, rgba(26, 35, 64, 0.6), rgba(18, 24, 38, 0.9)); 
  border: 1px solid rgba(91,140,255,0.25); 
  border-radius: 20px; 
  backdrop-filter: blur(16px); 
  position: relative; 
  overflow: hidden; 
  text-align: center;
  box-shadow: 
    0 15px 50px rgba(0,0,0,0.5), /* Głęboki cień unoszący blok */
    0 0 30px rgba(91,140,255,0.08), /* Zewnętrzna poświata */
    inset 0 1px 0 rgba(255,255,255,0.05), /* Subtelne odbicie górnej krawędzi */
    inset 0 0 30px rgba(91,140,255,0.05); /* Wewnętrzny glow */
} 
.details__lead::before { 
  content: ''; 
  position: absolute; 
  top: 10%; 
  left: 0; 
  width: 4px; 
  height: 80%; 
  background: linear-gradient(180deg, var(--accent), var(--accent-2)); 
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 20px rgba(91,140,255,0.6), 0 0 40px rgba(25,211,138,0.2); 
} 
.details__lead p { 
  font-family: var(--font-heading); 
  font-size: 1.25rem; 
  font-weight: 500; 
  color: var(--text); 
  line-height: 1.7; 
  letter-spacing: -0.01em; 
} 
.text-accent { 
  color: var(--accent); 
  font-weight: 700; 
  text-shadow: 0 0 20px rgba(91,140,255,0.2); 
}

.details__steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; perspective: 1000px; flex-wrap: wrap; padding-top: 20px; }
.detail-node { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 220px; padding: 20px 10px; }
.detail-node__circle { width: 140px; height: 140px; border-radius: 50%; background: rgba(18,24,38,0.6); border: 2px solid rgba(91,140,255,0.2); display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 40px rgba(91,140,255,0.05), inset 0 0 30px rgba(91,140,255,0.05); transition: all 0.5s ease; margin-bottom: 24px; }
.detail-node__circle::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px dashed rgba(91,140,255,0.2); animation: spinRing 12s linear infinite; pointer-events: none; }
.detail-node__circle::after { content: ''; position: absolute; inset: -20px; border-radius: 50%; border: 1px dotted rgba(91,140,255,0.1); animation: spinRing 20s linear infinite reverse; pointer-events: none; }
@keyframes spinRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.detail-node:hover .detail-node__circle { border-color: rgba(91,140,255,0.6); box-shadow: 0 0 60px rgba(91,140,255,0.2), inset 0 0 30px rgba(91,140,255,0.1); transform: translateZ(30px) scale(1.05); }
.detail-node__radar { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; }
.detail-node__radar::before { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; background: conic-gradient(from 0deg, transparent 0%, rgba(91,140,255,0.25) 8%, transparent 15%); transform-origin: 0% 0%; animation: radarSweep 3s linear infinite; }
.detail-node__radar::after { content: ''; position: absolute; inset: 10%; border-radius: 50%; border: 1px solid rgba(91,140,255,0.08); }
@keyframes radarSweep { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.detail-node__icon { color: var(--accent); position: relative; z-index: 2; filter: drop-shadow(0 0 10px rgba(91,140,255,0.4)); }
.detail-node__number { position: absolute; bottom: -5px; right: -5px; background: var(--accent); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; box-shadow: 0 0 15px rgba(91,140,255,0.4); z-index: 3; border: 2px solid var(--bg); }
.detail-node__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.detail-node__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.detail-node__line { width: 60px; height: 2px; background: linear-gradient(90deg, rgba(91,140,255,0.1), rgba(91,140,255,0.4), rgba(91,140,255,0.1)); margin: 0 5px; margin-top: 90px; }
.apply__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; } .apply__note { font-size: 0.85rem; color: var(--muted); }

/* MODAL & FORM */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; } .modal { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 16px; right: 16px; background: rgba(91,140,255,0.08); border: 1px solid rgba(91,140,255,0.15); border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.25s ease; z-index: 10; } .modal__close:hover { color: var(--text); background: rgba(91,140,255,0.15); }
.modal__header { margin-bottom: 28px; } .modal__title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; } .modal__subtitle { font-size: 0.88rem; color: var(--muted); }
.apply-form { display: flex; flex-direction: column; gap: 18px; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } .form-group { display: flex; flex-direction: column; gap: 6px; position: relative; } .form-group label { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.form-group input[type="text"], .form-group input[type="email"], .form-group textarea, .form-group select { background: rgba(91,140,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.92rem; color: var(--text); transition: all 0.25s ease; outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(91,140,255,0.4); box-shadow: 0 0 0 3px rgba(91,140,255,0.08); }
.form-group input.error, .form-group textarea.error, .form-group select.error { border-color: rgba(255,77,77,0.5); box-shadow: 0 0 0 3px rgba(255,77,77,0.08); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23a8b3cf'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: #151d33; color: #f5f7ff; border: 1px solid rgba(91,140,255,0.2); }
.form-error { font-size: 0.78rem; color: var(--danger); min-height: 16px; }
.form-warning { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #f0a030; background: rgba(240,160,48,0.08); border: 1px solid rgba(240,160,48,0.15); border-radius: 8px; padding: 8px 12px; margin-top: 4px; }

/* CALENDAR */
.calendar-wrapper { position: relative; z-index: 10; } .calendar-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--accent); pointer-events: none; }
.calendar-dropdown { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(340px, 90vw); background: #131b2e; border: 1px solid rgba(91,140,255,0.3); border-radius: var(--radius); padding: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(91,140,255,0.15); z-index: 9999; display: none; backdrop-filter: blur(20px); }
.calendar-dropdown.open { display: block; animation: calOpen 0.3s ease forwards; }
@keyframes calOpen { from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 8px; }
.cal-nav-btn { background: rgba(91,140,255,0.1); border: none; color: var(--accent); width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.cal-nav-btn:hover { background: rgba(91,140,255,0.2); transform: scale(1.1); }
.cal-selects { display: flex; gap: 6px; flex-grow: 1; justify-content: center; }
.cal-select { background: #1a2340; border: 1px solid rgba(91,140,255,0.3); border-radius: 8px; color: #f5f7ff; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; padding: 8px 12px; cursor: pointer; outline: none; appearance: none; text-align: center; transition: border-color 0.2s; }
.cal-select:focus { border-color: var(--accent); box-shadow: 0 0 10px rgba(91,140,255,0.2); }
.cal-select option { background: #121826; color: #f5f7ff; }
#calMonthSelect { width: 55%; } #calYearSelect { width: 35%; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; text-align: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.cal-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dates.slide-left { animation: slideLeft 0.3s ease; } .cal-dates.slide-right { animation: slideRight 0.3s ease; }
@keyframes slideLeft { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideRight { from { transform: translateX(-20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.cal-date { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; border-radius: 8px; cursor: pointer; color: var(--text); transition: all 0.2s; border: none; background: transparent; }
.cal-date:hover { background: rgba(91,140,255,0.15); transform: scale(1.1); }
.cal-date.today { border: 1px solid var(--accent); color: var(--accent); }
.cal-date.selected { background: var(--accent); color: #fff; font-weight: 600; box-shadow: 0 0 20px rgba(91,140,255,0.6), inset 0 0 5px rgba(255,255,255,0.2); transform: scale(1.15); }
.cal-date.other-month { color: rgba(168,179,207,0.2); pointer-events: none; }
.cal-selected-info { text-align: center; font-size: 0.85rem; color: var(--accent-2); margin-top: 16px; font-weight: 600; min-height: 20px; text-shadow: 0 0 10px rgba(25,211,138,0.3); }

/* RADIO & CHECKBOX */
.radio-group { display: flex; gap: 16px; margin-top: 4px; } .radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); cursor: pointer; }
.radio-label input { display: none; } .radio-custom { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(91,140,255,0.25); position: relative; transition: all 0.3s ease; flex-shrink: 0; }
.radio-label input:checked + .radio-custom { border-color: var(--accent); box-shadow: 0 0 15px rgba(91,140,255,0.6); background: rgba(91,140,255,0.1); }
.radio-label input:checked + .radio-custom::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); cursor: pointer; } .checkbox-label input { display: none; }
.checkbox-custom { width: 22px; height: 22px; border-radius: 6px; border: 2px solid rgba(91,140,255,0.25); flex-shrink: 0; transition: all 0.3s ease; position: relative; margin-top: 1px; }
.checkbox-label input:checked + .checkbox-custom { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 15px rgba(91,140,255,0.4); }
.checkbox-label input:checked + .checkbox-custom::after { content: ''; position: absolute; top: 3px; left: 6px; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.link { background: none; border: none; color: var(--accent); cursor: pointer; text-decoration: underline; } .regulations-box { background: rgba(91,140,255,0.04); border: 1px solid rgba(91,140,255,0.1); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.82rem; color: var(--muted); }

/* SUCCESS */
.success-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: all 0.5s ease; }
.success-overlay.active { opacity: 1; visibility: visible; } .success-content { text-align: center; max-width: 500px; background: rgba(18,24,38,0.8); border: 1px solid rgba(25,211,138,0.2); border-radius: 24px; padding: 48px; transform: scale(0.8); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 0 60px rgba(25,211,138,0.1); } .success-overlay.active .success-content { transform: scale(1); }
.success-icon { color: var(--accent-2); margin-bottom: 24px; filter: drop-shadow(0 0 20px rgba(25,211,138,0.4)); animation: successPulse 2s ease infinite; } @keyframes successPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.success-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; } .success-subtitle { font-size: 1rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; } .footer__inner { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; color: var(--accent); font-size: 1.1rem; text-transform: lowercase; }
.footer__rodo { max-width: 600px; font-size: 0.78rem; color: var(--muted); line-height: 1.6; background: rgba(91,140,255,0.03); border: 1px solid var(--border); padding: 16px; border-radius: var(--radius-sm); } .footer__rodo strong { color: var(--text); font-weight: 600; }
.footer__copy { font-size: 0.82rem; color: rgba(168,179,207,0.5); }

/* ANIMATIONS */
.anim-in { opacity: 0; transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.anim-in[data-anim="fade-up"] { transform: translateY(80px); }
.anim-in[data-anim="fade-down"] { transform: translateY(-80px); }
.anim-in[data-anim="fade-left"] { transform: translateX(100px); }
.anim-in[data-anim="fade-right"] { transform: translateX(-100px); }
.anim-in[data-anim="scale-rotate"] { transform: scale(0.5) rotate(-10deg); }
.anim-in.visible { opacity: 1; transform: translate(0) scale(1) rotate(0deg); }

/* RESPONSIVE */
@media (max-width: 1024px) { 
  .offer__grid { grid-template-columns: repeat(2, 1fr); } 
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; } .hero__badge { margin: 0 auto; } .hero__subtitle { margin: 0 auto; } .hero__actions { justify-content: center; } .hero__visual { order: -1; } .hero__truck-wrapper { max-width: 360px; margin: 0 auto; } 
  .details__steps { flex-direction: column; gap: 10px; align-items: center; }
  .detail-node__line { width: 2px; height: 40px; margin: 0; }
}
@media (max-width: 768px) { 
  .nav__burger { display: none; }
  .nav__links { display: flex; flex-direction: row; gap: 10px; position: static; background: none; border: none; box-shadow: none; padding: 0; transform: none; width: auto; justify-content: flex-end; overflow: visible; }
  .nav__link { font-size: 0.82rem; }
  .nav__link::after { display: none; }
  .status-bar__inner { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .offer__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } .form-row { grid-template-columns: 1fr; } .modal { padding: 28px 20px; max-height: 95vh; } .hero { padding-top: 100px; min-height: auto; }
  .calendar-dropdown { width: min(310px, 90vw); padding: 20px; }
  .detail-node__circle { width: 110px; height: 110px; }
  .details__lead { padding: 28px 24px; margin-bottom: 60px; }
  .details__lead p { font-size: 1.1rem; }
}
@media (max-width: 480px) { 
  .hero__title { font-size: 1.8rem; } .section { padding: 60px 0; } .btn--huge { padding: 18px 32px; font-size: 1rem; } .radio-group { flex-direction: column; gap: 12px; } 
  .status-bar__inner { padding: 8px 16px; font-size: 0.75rem; }
  .nav__inner { height: auto; flex-wrap: wrap; justify-content: center; padding: 10px 16px; gap: 6px; }
  .nav__link { font-size: 0.75rem; }
  .calendar-dropdown { width: min(290px, 90vw); padding: 15px; }
  .modal { padding: 24px 16px; }
  .details__lead p { font-size: 1rem; }
}