/* ============================================================
   Phone Aid Plus — Main Stylesheet
   ============================================================ */

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

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #ede9fe;
  --secondary: #0d0521;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-size: 15px;
  font-weight: 600; border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; box-shadow: 0 2px 8px rgba(124,58,237,.3); }
.btn-primary:hover { background: linear-gradient(135deg, #6d28d9, #5b21b6); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(124,58,237,.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #0d0521;
  border-bottom: 1px solid rgba(124,58,237,.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: #fff; text-decoration: none; letter-spacing: -.01em;
}
.nav-brand svg { color: #a78bfa; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link { color: #c4b5fd; font-size: 14px; font-weight: 500; text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover { color: #fff; background: rgba(124,58,237,.2); }
.nav-link.active { color: #fff; background: rgba(124,58,237,.25); }
.nav-btn { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0d0521 0%, #2e1065 50%, #1a0a38 100%);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%; width: 55%; height: 220%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.7), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label { font-size: 12px; font-weight: 700; color: #c4b5fd; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.page-hero-subtitle { color: #a78bfa; font-size: 17px; max-width: 520px; }
.page-hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

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

.hero{
    position:relative;
    overflow:hidden;
    height:590px;
    background:#0d0521;
}

.slide{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    opacity:0;
    transition:opacity .7s ease;
    pointer-events:none;
}

.slide.active{
    opacity:1;
    pointer-events:auto;
}

.slide-bg{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ===== SLIDE 1 ===== */

.slide-bg-1{

    background:
    linear-gradient(
        rgba(8,5,20,.72),
        rgba(8,5,20,.72)
    ),
    url('../img/image_slide1.webp');

    background-size:cover;
    background-position:center;
}

/* ===== SLIDE 2 ===== */

.slide-bg-2{

    background:
    linear-gradient(
        rgba(8,5,20,.72),
        rgba(8,5,20,.72)
    ),
    url('../img/image_slide2.webp');

    background-size:cover;
    background-position:center;
}

/* ===== SLIDE 3 ===== */

.slide-bg-3{

    background:
    linear-gradient(
        rgba(8,5,20,.72),
        rgba(8,5,20,.72)
    ),
    url('../img/image_slide1.webp');

    background-size:cover;
    background-position:center;
}

.slide-content { position: relative; z-index: 2; max-width: 560px; padding: 0 64px; }
.slide-graphic { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); z-index: 1; opacity: .18; pointer-events: none; }

.phone-mock { width: 140px; height: 260px; border: 3px solid #fff; border-radius: 24px; padding: 20px 14px; display: flex; flex-direction: column; gap: 12px; }
.phone-bar { height: 10px; background: #fff; border-radius: 6px; width: 100%; }
.phone-bar.short { width: 60%; }
.phone-circle { width: 40px; height: 40px; border: 3px solid #fff; border-radius: 50%; margin-top: 8px; }

.clock-face { width: 160px; height: 160px; border: 4px solid #fff; border-radius: 50%; position: relative; }
.clock-hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; background: #fff; border-radius: 4px; }
.clock-hand.hour { width: 4px; height: 44px; margin-left: -2px; transform: rotate(-60deg); }
.clock-hand.minute { width: 3px; height: 58px; margin-left: -1.5px; transform: rotate(120deg); }
.clock-dot { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; background: #fff; border-radius: 50%; transform: translate(-50%,-50%); }

.brands-float { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.brands-float span { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .04em; padding: 6px 18px; border: 2px solid rgba(255,255,255,.5); border-radius: 8px; }

.slide-badge { display: inline-block; padding: 5px 14px; background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.45); color: #c4b5fd; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.slide-content h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.slide-content h1 span { color: #a78bfa; }
.slide-content p { color: #cbd5e1; font-size: 18px; margin-bottom: 30px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-controls { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 28px; height: 4px; background: rgba(255,255,255,.35); border: none; border-radius: 2px; cursor: pointer; transition: var(--transition); padding: 0; }
.slider-dot.active { background: var(--primary); width: 44px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: var(--transition); }
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ---- Service Cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 40px 32px; text-align: center; cursor: pointer;
  transition: all .25s ease; text-decoration: none; display: block; color: var(--text);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.04), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 16px 40px rgba(124,58,237,.18); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; transform: scale(1.1) rotate(-3deg); }
.service-icon { width: 72px; height: 72px; background: var(--primary-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--primary); transition: all .3s ease; }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.service-card .link-text { color: var(--primary); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }

/* ---- How It Works ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.step-item { text-align: center; }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 8px 20px rgba(124,58,237,.35); }
.step-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-item p { color: var(--text-muted); font-size: 14px; }

/* ---- Trust Badges ---- */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.badge-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .2s ease; }
.badge-card:hover { border-color: var(--primary-light); box-shadow: 0 8px 24px rgba(124,58,237,.1); transform: translateY(-3px); }
.badge-card .badge-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.badge-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.badge-card p { color: var(--text-muted); font-size: 13px; }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-date { color: var(--text-muted); font-size: 12px; }
.stars { display: flex; gap: 3px; color: #facc15; font-size: 16px; margin-bottom: 10px; }
.review-text { color: #475569; font-size: 14px; line-height: 1.75; font-style: italic; }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, #3b0764 0%, #7c3aed 55%, #8b5cf6 100%); color: #fff; padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,.08), transparent 65%); }
.cta-banner::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,.06), transparent 65%); }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 18px; opacity: .88; margin-bottom: 40px; position: relative; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white { font-size: 16px; padding: 15px 44px; border-radius: var(--radius); font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.2); position: relative; }
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 14px; font-size: 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white); color: var(--text);
  font-family: inherit; transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.form-control.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-error { color: var(--danger); font-size: 12px; margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Cards / Panels ---- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-header { padding: 18px 26px; border-bottom: 1px solid var(--border); background: #fafbff; }
.card-header h3 { font-size: 16px; font-weight: 700; }
.card-body { padding: 28px; }

/* ---- Alert ---- */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ---- Quote Flow ---- */
.quote-page { min-height: calc(100vh - 68px); background: var(--bg); padding: 52px 0 88px; }
.quote-container { max-width: 720px; margin: 0 auto; }

.quote-progress { display: flex; gap: 0; margin-bottom: 44px; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.progress-step::after { content: ''; position: absolute; top: 14px; left: calc(50% + 14px); width: calc(100% - 28px); height: 2px; background: var(--border); }
.progress-step:last-child::after { display: none; }
.progress-step.done::after, .progress-step.active::after { background: var(--primary); }
.step-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--border); color: var(--text-muted); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: var(--transition); }
.progress-step.active .step-circle { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px rgba(124,58,237,.2); }
.progress-step.done .step-circle { background: var(--success); color: #fff; }
.step-label { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 6px; text-align: center; }
.progress-step.active .step-label { color: var(--primary); font-weight: 700; }

.quote-panel { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 44px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.quote-panel h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.quote-panel .sub { color: var(--text-muted); font-size: 15px; margin-bottom: 34px; }

.device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.device-option { border: 2px solid var(--border); border-radius: 14px; padding: 30px 16px; text-align: center; cursor: pointer; transition: all .2s ease; }
.device-option:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(124,58,237,.15); }
.device-option.selected { border-color: var(--primary); background: var(--primary-light); }
.device-option svg { color: var(--primary); margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.device-option span { font-size: 14px; font-weight: 700; color: var(--text); display: block; }

.brand-grid, .model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-btn { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 15px 14px; text-align: center; cursor: pointer; background: none; font-size: 15px; font-weight: 600; color: var(--text); transition: var(--transition); width: 100%; }
.option-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.option-btn.selected { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.back-link { background: none; border: none; color: var(--text-muted); font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 4px 0; margin-bottom: 24px; font-weight: 500; }
.back-link:hover { color: var(--primary); }

.success-box { text-align: center; padding: 52px 24px; }
.success-icon { width: 84px; height: 84px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--success); }
.success-icon svg { width: 42px; height: 42px; }
.success-box h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.success-box p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ---- Pre-Owned Request ---- */
.preowned-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.preowned-option-btn {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--border); border-radius: 12px;
  padding: 16px 18px; cursor: pointer; transition: all .2s ease;
  background: var(--white); width: 100%; text-align: left;
}
.preowned-option-btn:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }
.preowned-option-btn.selected { border-color: var(--primary); background: var(--primary-light); }
.po-icon { width: 42px; height: 42px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.preowned-option-btn.selected .po-icon { background: var(--primary); color: #fff; }
.po-label { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.po-sub { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ---- Reviews Page ---- */
.reviews-page { background: var(--bg); min-height: calc(100vh - 68px); padding: 52px 0 88px; }
.reviews-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

/* Stars interactive */
.star-picker { display: flex; gap: 6px; margin-top: 6px; }
.star-picker button { background: none; border: none; cursor: pointer; font-size: 30px; color: #e2e8f0; transition: var(--transition); padding: 0; line-height: 1; }
.star-picker button.on, .star-picker button.hover { color: #facc15; }

/* ---- Contact Page ---- */
.contact-page { background: var(--bg); min-height: calc(100vh - 68px); padding: 52px 0 88px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; }
.contact-info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--shadow); transition: all .2s ease; }
.contact-info-card:hover { box-shadow: 0 8px 24px rgba(124,58,237,.1); border-color: var(--primary-light); transform: translateX(3px); }
.contact-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ---- Footer ---- */
.footer { background: #0d0521; color: #94a3b8; padding: 68px 0 0; border-top: 1px solid rgba(124,58,237,.2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 14px; }
.footer-brand svg { color: #a78bfa; }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 220px; }
.footer-col h4 { color: #e2e8f0; font-size: 12px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: #c4b5fd; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; text-align: center; font-size: 13px; }

/* ---- Spinner ---- */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .6s linear infinite; margin: 36px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Status badges ---- */
.badge { display: inline-flex; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-new { background: #ede9fe; color: #5b21b6; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-booked { background: #f3e8ff; color: #6b21a8; }
.badge-completed { background: #dcfce7; color: #14532d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #0d0521; flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid rgba(124,58,237,.25); }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .nav-inner { position: relative; }
  .hero { height: auto; min-height: 500px; }
  .slide-content { padding: 44px 20px; }
  .slide-content h1 { font-size: 32px; }
  .reviews-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .brand-grid, .model-grid { grid-template-columns: 1fr; }
  .preowned-options-grid { grid-template-columns: 1fr; }
  .quote-panel { padding: 24px 20px; }
  .page-hero { padding: 44px 0 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; max-width: 280px; }
}
