/* ==========================================================================
   myAutoWatt — stiluri pentru zona publică (homepage, contact)
   Extras din homepage.blade.php
   ========================================================================== */

:root {
    --aw-green:       #16a34a;
    --aw-green-dark:  #15803d;
    --aw-green-light: #dcfce7;
    --aw-green-xlight:#f0fdf4;
    --aw-ink:         #0f172a;
    --aw-muted:       #64748b;
    --aw-border:      #e2e8f0;
    --aw-bg:          #f8fafc;
    --aw-white:       #ffffff;
    --aw-danger:      #dc2626;

    margin: 0;
    padding: 0;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--aw-white);
    color: var(--aw-ink);
}

/* --------------------------------------------------------------------------
   Tipografie
   -------------------------------------------------------------------------- */

.display-heading {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--aw-ink);
}
.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--aw-ink);
}
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aw-green);
}
.section-divider {
    height: 1px; background: var(--aw-border); border: none; margin: 0;
}
.section-light-bg {
    background: var(--aw-bg);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.aw-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--aw-border);
    height: 64px;
    display: flex; align-items: center;
}
.aw-navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; margin: 0 auto; padding: 0 24px;
}
.aw-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.aw-logo-icon {
    width: 36px; height: 36px;
}
.aw-logo-text {
    font-size: 1.15rem; font-weight: 700;
    color: var(--aw-ink); letter-spacing: -0.02em;
}
.aw-logo-text span { color: var(--aw-green); }
.aw-nav-links {
    display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.aw-nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: var(--aw-muted); text-decoration: none;
    transition: color .2s;
}
.aw-nav-links a:hover { color: var(--aw-green); }
.aw-nav-links a.active { color: var(--aw-green); font-weight: 600; }

/* --------------------------------------------------------------------------
   Butoane
   -------------------------------------------------------------------------- */

.btn-aw {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.875rem; font-weight: 600;
    padding: 9px 20px; border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
}
.btn-aw:hover {
    text-decoration: none;
}
.btn-aw-primary {
    background: var(--aw-green); color: #fff;
}
.btn-aw-primary:hover { background: var(--aw-green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,.25); }
.btn-aw-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-aw-outline {
    background: transparent; color: var(--aw-ink);
    border: 1.5px solid var(--aw-border);
}
.btn-aw-outline:hover { border-color: var(--aw-green); color: var(--aw-green); }
.btn-aw-lg {
    font-size: 1rem; padding: 13px 28px; border-radius: 10px;
}
.btn-aw-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: var(--aw-green);
    font-size: 0.95rem; font-weight: 700;
    padding: 13px 26px; border-radius: 10px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .18s;
}
.btn-aw-white:hover { background: #f0fdf4; color: var(--aw-green-dark); transform: translateY(-1px); text-decoration: none; }
.btn-aw-ghost {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.12); color: #fff;
    font-size: 0.95rem; font-weight: 600;
    padding: 13px 26px; border-radius: 10px;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,.2); cursor: pointer;
    transition: all .18s;
}
.btn-aw-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.aw-hero {
    padding: 100px 0 0;
    background: var(--aw-white);
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--aw-green-xlight);
    border: 1px solid var(--aw-green-light);
    color: var(--aw-green);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 99px;
    margin-bottom: 24px;
}
.hero-eyebrow .pulse-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--aw-green);
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.4; transform:scale(1.4); }
}
.hero-highlight {
    color: var(--aw-green);
    position: relative; display: inline-block;
}
.hero-highlight::after {
    content: '';
    position: absolute; bottom: 2px; left: 0; right: 0; height: 5px;
    background: var(--aw-green-light); border-radius: 3px; z-index: -1;
}

/* --------------------------------------------------------------------------
   Hartă (mock de browser + showcase)
   -------------------------------------------------------------------------- */

.map-browser {
    background: var(--aw-white);
    border: 1px solid var(--aw-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(15,23,42,.1), 0 4px 12px rgba(0,0,0,.05);
    transform: perspective(1000px) rotateY(-4deg) rotateX(1.5deg);
    transition: transform .5s ease;
}
.map-browser:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0.5deg); }
.map-browser-bar {
    background: #f1f5f9; border-bottom: 1px solid var(--aw-border);
    height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 14px;
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-url {
    flex: 1; margin-left: 6px;
    background: var(--aw-white); border: 1px solid var(--aw-border);
    border-radius: 6px; height: 24px;
    display: flex; align-items: center; padding: 0 10px;
    font-size: 11px; color: var(--aw-muted); font-weight: 500;
}
.browser-pwa-badge {
    display: flex; align-items: center; gap: 5px;
    background: var(--aw-green-xlight); border: 1px solid var(--aw-green-light);
    border-radius: 5px; padding: 2px 8px;
    font-size: 10px; font-weight: 700; color: var(--aw-green);
}
#map-hero { height: 360px; width: 100%; }
.map-float-card {
    position: absolute; bottom: -18px; right: 20px;
    background: var(--aw-white); border: 1px solid var(--aw-border);
    border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    display: flex; align-items: center; gap: 12px; z-index: 10;
}
.map-float-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--aw-green-xlight);
    display: flex; align-items: center; justify-content: center;
}
.map-float-label { font-size: 12px; font-weight: 700; color: var(--aw-ink); }
.map-float-sub { font-size: 11px; color: var(--aw-muted); }
.map-float-badge {
    display: inline-block; margin-top: 3px;
    background: var(--aw-green); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 2px 9px; border-radius: 99px;
}
.leaflet-tile { filter: saturate(.85) brightness(1.02); }
:root[data-bs-theme="dark"] .leaflet-tile-pane,
[data-bs-theme="dark"] .leaflet-tile-pane,
body.theme-dark .leaflet-tile-pane,
.theme-dark .leaflet-tile-pane {
    filter: invert(1) hue-rotate(180deg) brightness(0.95) contrast(0.9);
    -webkit-filter: invert(1) hue-rotate(180deg) brightness(0.95) contrast(0.9);
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
[data-bs-theme="dark"] #map-hero,
[data-bs-theme="dark"] #map-showcase,
body.theme-dark #map-hero,
body.theme-dark #map-showcase {
    background: #182433 !important;
}
[data-bs-theme="dark"] .leaflet-bar,
body.theme-dark .leaflet-bar {
    border-color: #374151 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
}
[data-bs-theme="dark"] .leaflet-bar a,
body.theme-dark .leaflet-bar a {
    background-color: #1f2937 !important;
    border-color: #374151 !important;
    color: #f9fafb !important;
}
[data-bs-theme="dark"] .leaflet-bar a:hover,
body.theme-dark .leaflet-bar a:hover {
    background-color: #374151 !important;
    color: #3b82f6 !important;
}
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.1) !important;
    border: 1px solid var(--aw-border) !important;
    font-family: 'Geist', sans-serif !important;
}
[data-bs-theme="dark"] .leaflet-popup-content-wrapper,
body.theme-dark .leaflet-popup-content-wrapper {
    background-color: #1f2937 !important;
    border-color: #374151 !important;
    color: #f9fafb !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
}
.leaflet-popup-content { margin: 12px 16px !important; }
.leaflet-popup-tip-container { display: none; }
.leaflet-popup-close-button { color: var(--aw-muted) !important; }
[data-bs-theme="dark"] .leaflet-popup-close-button,
body.theme-dark .leaflet-popup-close-button {
    color: #9ca3af !important;
}
.leaflet-control-attribution { font-size: 10px !important; }
[data-bs-theme="dark"] .leaflet-control-attribution,
body.theme-dark .leaflet-control-attribution {
    background-color: rgba(24, 36, 51, 0.85) !important;
    color: #9ca3af !important;
}
[data-bs-theme="dark"] .leaflet-control-attribution a,
body.theme-dark .leaflet-control-attribution a {
    color: #60a5fa !important;
}
.map-showcase-wrap {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border: 1px solid var(--aw-border);
    border-bottom: none;
    position: relative;
}
[data-bs-theme="dark"] .map-showcase-wrap,
body.theme-dark .map-showcase-wrap {
    border-color: #374151;
}
#map-showcase { height: 600px; width: 100%; }
.map-legend {
    position: absolute; bottom: 16px; left: 16px; z-index: 500;
    background: var(--aw-white); border: 1px solid var(--aw-border);
    border-radius: 10px; padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    display: flex; gap: 14px; align-items: center;
}
[data-bs-theme="dark"] .map-legend,
body.theme-dark .map-legend {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-label { font-size: 12px; color: var(--aw-muted); font-weight: 500; }
[data-bs-theme="dark"] .legend-label,
body.theme-dark .legend-label {
    color: #9ca3af;
}
.map-cta-strip {
    background: var(--aw-green);
    border-radius: 0 0 16px 16px;
    padding: 20px 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.map-cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,.75); margin: 0; }
.map-cta-strip p strong { color: #fff; }

/* --------------------------------------------------------------------------
   Carduri / pași / alerte
   -------------------------------------------------------------------------- */

.aw-card {
    background: var(--aw-white);
    border: 1px solid var(--aw-border);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.aw-card:hover {
    box-shadow: 0 12px 40px rgba(22,163,74,.1);
    transform: translateY(-3px);
}
.aw-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--aw-green-xlight);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--aw-green);
}
.aw-card h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--aw-ink); margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.aw-card p { font-size: 0.875rem; color: var(--aw-muted); line-height: 1.7; margin: 0; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--aw-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800;
    flex-shrink: 0;
}
.aw-alert {
    background: var(--aw-green-xlight);
    border: 1px solid var(--aw-green-light);
    border-radius: 12px; padding: 18px 22px;
    display: flex; gap: 14px; align-items: flex-start;
}
.aw-alert-icon { color: var(--aw-green); flex-shrink: 0; margin-top: 1px; }
.aw-alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
}
.aw-alert-danger .aw-alert-icon { color: var(--aw-danger); }

/* --------------------------------------------------------------------------
   Bloc CTA
   -------------------------------------------------------------------------- */

.aw-cta-block {
    background: var(--aw-green);
    border-radius: 20px;
    padding: 56px 48px;
    position: relative; overflow: hidden;
}
.aw-cta-block::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 360px; height: 360px; border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.aw-cta-block::after {
    content: '';
    position: absolute; bottom: -60px; left: -40px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.pwa-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.8);
    font-size: 0.75rem; font-weight: 600;
    padding: 4px 12px; border-radius: 99px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.aw-footer {
    background: var(--aw-ink);
    padding: 40px 0 24px;
}
.footer-logo-text {
    font-size: 1.1rem; font-weight: 700;
    color: #fff; letter-spacing: -0.02em;
}
.footer-logo-text span { color: var(--aw-green); }
.footer-link { font-size: 0.8rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-link:hover { color: rgba(255,255,255,.7); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,.2); }

/* --------------------------------------------------------------------------
   Animație reveal
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ==========================================================================
   Pagina de contact
   ========================================================================== */

.aw-page-hero {
    padding: 128px 0 56px;
    background: var(--aw-white);
}

/* --- Widget FAQ (accordeon) --- */

.aw-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aw-accordion-item {
    background: var(--aw-white);
    border: 1px solid var(--aw-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.aw-accordion-item.open {
    border-color: var(--aw-green-light);
    box-shadow: 0 12px 40px rgba(22,163,74,.08);
}
.aw-accordion-trigger {
    width: 100%;
    display: flex; align-items: center; gap: 16px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px 22px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--aw-ink);
    transition: color .2s;
}
.aw-accordion-trigger:hover { color: var(--aw-green); }
.aw-accordion-trigger:focus-visible {
    outline: 2px solid var(--aw-green);
    outline-offset: -2px;
}
.aw-accordion-trigger > span:not(.aw-accordion-icon) { flex: 1 1 auto; min-width: 0; }
.aw-accordion-icon {
    flex: 0 0 30px;
    width: 30px; height: 30px; border-radius: 8px;
    background: var(--aw-green-xlight);
    color: var(--aw-green);
    display: flex; align-items: center; justify-content: center;
    transition: transform .25s ease, background .2s;
}
.aw-accordion-item.open .aw-accordion-icon {
    transform: rotate(180deg);
    background: var(--aw-green);
    color: #fff;
}
.aw-accordion-panel {
    overflow: hidden;
    height: 0;
    transition: height .28s ease;
}
.aw-accordion-panel-inner {
    padding: 0 22px 22px;
    font-size: .9rem;
    color: var(--aw-muted);
    line-height: 1.75;
}
.aw-accordion-panel-inner p { margin: 0 0 10px; }
.aw-accordion-panel-inner p:last-child { margin-bottom: 0; }

/* --- Formular de contact --- */

.aw-form-card {
    background: var(--aw-white);
    border: 1px solid var(--aw-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 64px rgba(15,23,42,.06);
}
.aw-field { margin-bottom: 18px; }
.aw-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--aw-ink);
    margin-bottom: 7px;
}
.aw-label .req { color: var(--aw-danger); }
.aw-input,
.aw-textarea,
.aw-select {
    width: 100%;
    font-family: inherit;
    font-size: .9rem;
    color: var(--aw-ink);
    background: var(--aw-white);
    border: 1.5px solid var(--aw-border);
    border-radius: 10px;
    padding: 11px 14px;
    transition: border-color .18s, box-shadow .18s;
}
.aw-input::placeholder,
.aw-textarea::placeholder { color: #94a3b8; }
.aw-input:focus,
.aw-textarea:focus,
.aw-select:focus {
    outline: none;
    border-color: var(--aw-green);
    box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.aw-input.is-invalid,
.aw-textarea.is-invalid,
.aw-select.is-invalid { border-color: var(--aw-danger); }
.aw-textarea { resize: vertical; min-height: 140px; }
.aw-error {
    display: block;
    font-size: .75rem;
    color: var(--aw-danger);
    margin-top: 6px;
}
.aw-help { font-size: .75rem; color: var(--aw-muted); margin-top: 6px; }
.aw-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* --- Carduri de informații de contact --- */

.aw-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.aw-contact-row {
    display: flex; gap: 14px; align-items: flex-start;
}
.aw-contact-row .aw-card-icon {
    width: 42px; height: 42px; border-radius: 10px; margin-bottom: 0;
}
.aw-contact-row-label {
    font-size: .75rem; font-weight: 700; color: var(--aw-muted);
    text-transform: uppercase; letter-spacing: .06em;
}
.aw-contact-row-value {
    font-size: .9rem; font-weight: 600; color: var(--aw-ink);
    text-decoration: none;
    word-break: break-word;
}
a.aw-contact-row-value:hover { color: var(--aw-green); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .aw-nav-links { display: none; }
    .map-browser { transform: none; }
    .map-float-card { display: none; }
    .aw-cta-block { padding: 36px 24px; }
    .aw-form-card { padding: 22px; }
    .aw-page-hero { padding: 104px 0 40px; }
}
@media (max-width: 576px) {
    .display-heading { font-size: 2rem; }
    .aw-accordion-trigger { font-size: .92rem; padding: 17px 18px; }
    .aw-accordion-panel-inner { padding: 0 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .aw-accordion-panel { transition: none; }
    .map-browser { transition: none; }
}

/* ==========================================================================
   Clase utilitare — înlocuiesc atributele style inline din Blade
   ========================================================================== */

/* --- Spațiere secțiuni --- */

.section-pad      { padding: 80px 0; }
.section-pad-sm   { padding: 72px 0; }
.section-pad-top  { padding: 80px 0 0; }

/* --- Text --- */

.hero-lead {
    font-size: 1.05rem;
    color: var(--aw-muted);
    line-height: 1.7;
}
.hero-lead-narrow { max-width: 560px; }

.hero-note {
    font-size: .8rem;
    color: var(--aw-muted);
}

.section-lead {
    font-size: .95rem;
    color: var(--aw-muted);
    line-height: 1.7;
    margin: 0;
}
.section-lead-narrow { max-width: 540px; }
.section-lead-spaced { margin-bottom: 32px; }

.aw-note {
    font-size: .85rem;
    color: var(--aw-muted);
}

.aw-link {
    color: var(--aw-green);
    font-weight: 600;
    text-decoration: none;
}
.aw-link:hover {
    color: var(--aw-green-dark);
    text-decoration: underline;
}

.icon-baseline { vertical-align: -1px; }

/* --- Logo --- */

.aw-logo-img { height: 38px; }

/* --- Mock de browser --- */

.browser-dot-red    { background: #ff5f57; }
.browser-dot-yellow { background: #febc2e; }
.browser-dot-green  { background: #28c840; }

/* --- Valul SVG de sub hero --- */

.hero-wave {
    margin-top: 48px;
    overflow: hidden;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
}

/* --- Alerte --- */

.aw-alert-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--aw-green);
}
.aw-alert-text {
    font-size: .8rem;
    color: var(--aw-muted);
    margin-top: 2px;
}
.aw-alert-body {
    font-size: .875rem;
    color: var(--aw-ink);
    line-height: 1.6;
}

/* --- Pași numerotați --- */

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--aw-ink);
    margin-bottom: 5px;
}
.step-text {
    font-size: .875rem;
    color: var(--aw-muted);
    line-height: 1.6;
}
.step-text-inline { padding-top: 5px; }

.step-num-sm {
    width: 32px;
    height: 32px;
    font-size: .85rem;
}

/* --- Legenda hărții --- */

.legend-dot-free    { background: #16a34a; }
.legend-dot-busy    { background: #f59e0b; }
.legend-dot-offline { background: #9ca3af; }

/* --- Blocul CTA --- */

.cta-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.cta-text {
    font-size: .95rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 420px;
}
.cta-fineprint {
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    text-align: center;
    margin: 0;
}

/* --- Butoane cu etichetă pe două rânduri --- */

.btn-aw-block {
    width: 100%;
    justify-content: center;
}
.btn-stack { text-align: left; }
.btn-stack-label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.btn-stack-value {
    display: block;
    font-size: .95rem;
    font-weight: 700;
}
.btn-aw-white .btn-stack-label { color: rgba(22,163,74,.7); }
.btn-aw-ghost .btn-stack-label { color: rgba(255,255,255,.5); }

/* --- Footer --- */

.aw-footer-top { border-bottom: 1px solid rgba(255,255,255,.08); }

/* --- Formular: etichete și checkbox --- */

.aw-label-optional {
    color: var(--aw-muted);
    font-weight: 500;
}
.aw-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}
.aw-checkbox-input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--aw-green);
    flex-shrink: 0;
}
.aw-checkbox-text {
    font-size: .8rem;
    color: var(--aw-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Instalare PWA
   ========================================================================== */

.pwa-install-btn:disabled {
    opacity: .8;
    cursor: default;
    transform: none;
    box-shadow: none;
}
.btn-aw-ghost.pwa-install-btn.is-installed {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.35);
}

.pwa-hint {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 16px 18px;
}
.pwa-hint[hidden] { display: none; }

.pwa-hint-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.8);
    margin-bottom: 10px;
}
.pwa-hint-steps {
    margin: 0;
    padding-left: 18px;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}
.pwa-hint-steps li + li { margin-top: 4px; }
.pwa-hint-steps strong { color: #fff; font-weight: 700; }

.pwa-hint-light {
    background: var(--aw-green-xlight);
    border-color: var(--aw-green-light);
    text-align: left;
}
.pwa-hint-light .pwa-hint-title { color: var(--aw-green); }
.pwa-hint-light .pwa-hint-steps { color: var(--aw-muted); }
.pwa-hint-light .pwa-hint-steps strong { color: var(--aw-ink); }

/* ==========================================================================
   Pagina offline (public/offline.html)
   ========================================================================== */

.offline-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--aw-bg);
    text-align: center;
}
.offline-card {
    max-width: 420px;
}
.offline-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--aw-green-xlight);
    color: var(--aw-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.offline-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}
.offline-text {
    font-size: .9rem;
    color: var(--aw-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

/* ==========================================================================
   Responsive pentru clasele noi
   ========================================================================== */

@media (max-width: 768px) {
    .section-pad     { padding: 56px 0; }
    .section-pad-sm  { padding: 48px 0; }
    .section-pad-top { padding: 56px 0 0; }
    .hero-wave       { margin-top: 32px; }
}

/* ==========================================================================
   Pagina /download — ținta codului QR de pe stații
   ========================================================================== */

.dl-page {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: var(--aw-bg);
}
.dl-card {
    width: 100%;
    max-width: 400px;
    background: var(--aw-white);
    border: 1px solid var(--aw-border);
    border-radius: 18px;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 20px 64px rgba(15,23,42,.08);
}
.dl-logo {
    height: 42px;
    margin-bottom: 24px;
}
.dl-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.15;
    color: var(--aw-ink);
    margin: 0 0 10px;
}
.dl-text {
    font-size: .9rem;
    color: var(--aw-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.dl-card .pwa-hint {
    margin-top: 16px;
}
.dl-secondary {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--aw-border);
    font-size: .82rem;
}

@media (max-width: 400px) {
    .dl-card { padding: 28px 20px 22px; }
    .dl-title { font-size: 1.4rem; }
}
