/* ============================================================
   PC Madness - Main Stylesheet
   Dark theme, blue accent, modern tech aesthetic
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --color-primary: #0066CC;
    --color-primary-hover: #0055AA;
    --color-primary-light: rgba(0, 102, 204, 0.15);
    --color-primary-glow: rgba(0, 102, 204, 0.4);

    --color-bg: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-elevated: #1a1a1a;
    --color-bg-input: #1e1e1e;
    --color-bg-nav: rgba(10, 10, 10, 0.95);

    --color-text: #ffffff;
    --color-text-body: #cccccc;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #999999;
    --color-text-dim: #8a8a8a;

    --color-border: #2a2a2a;
    --color-border-hover: #3a3a3a;

    --color-success: #00cc66;
    --color-warning: #ff9900;
    --color-error: #cc3333;
    --color-info: #0099ff;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.0625rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--color-primary-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --nav-height: 85px;
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-body);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--space-md);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-muted);
}

.text-primary {
    color: var(--color-primary);
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Grid System ---- */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid--4,
    .grid--3,
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ---- Section ---- */
.section {
    padding: var(--space-4xl) 0;
}

.section__header {
    margin-bottom: var(--space-3xl);
}

.section__header h2 {
    margin-bottom: var(--space-sm);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background: var(--color-bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
    font-weight: 800;
    font-size: var(--font-size-xl);
    text-decoration: none;
}

.nav__logo:hover {
    color: var(--color-text);
}

.nav__logo-icon {
    display: flex;
    gap: 3px;
}

.nav__logo-block {
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 2px;
}

.nav__logo-block:first-child {
    background: #1a1a1a;
    border: 2px solid var(--color-primary);
}

.nav__logo-img {
    height: 85px;
    max-height: 85px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Nav Menu */
.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text-body);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-text);
    background: var(--color-primary-light);
}

.nav__link.active {
    color: var(--color-primary);
}

/* Nav CTA */
.nav__cta {
    margin-left: var(--space-lg);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 1001;
}

.nav__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    transform-origin: center;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-spacer {
    height: var(--nav-height);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav__hamburger {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        justify-content: flex-start;
        padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: var(--space-xs);
    }

    .nav__link {
        width: 100%;
        padding: var(--space-md);
        font-size: var(--font-size-base);
    }

    .nav__cta {
        margin-left: 0;
        margin-top: var(--space-lg);
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--color-text-muted);
    border-color: transparent;
}

.btn--ghost:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
    border-color: var(--color-border-hover);
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.card__icon svg {
    width: 24px;
    height: 24px;
}

.card__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ============================================================
   FORMS
   ============================================================ */
.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form__required {
    color: var(--color-error);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-dim);
}

.form__select {
    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 fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__row {
    display: grid;
    gap: var(--space-md);
}

.form__row--2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .form__row--2 {
        grid-template-columns: 1fr;
    }
}

/* Radio / Checkbox */
.form__fieldset {
    border: none;
    margin-bottom: var(--space-lg);
}

.form__legend {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form__radio-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.form__radio {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.form__radio input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-bg-input);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.form__radio input[type="radio"]:checked {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: inset 0 0 0 3px var(--color-bg-input);
}

.form__radio-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-body);
}

/* Form Actions */
.form__actions {
    margin-top: var(--space-lg);
}

.form__actions--row {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

/* Form Messages */
.form__message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.form__message--success {
    background: rgba(0, 204, 102, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(0, 204, 102, 0.2);
}

.form__message--error {
    background: rgba(204, 51, 51, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(204, 51, 51, 0.2);
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear var(--transition-base), opacity var(--transition-base);
}

.modal.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__container {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
}

.modal.active .modal__container {
    transform: translateY(0) scale(1);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-xl) 0;
}

.modal__title {
    font-size: var(--font-size-2xl);
}

.modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.modal__close:hover {
    color: var(--color-text);
    background: var(--color-border);
}

.modal__body {
    padding: var(--space-xl);
}

.modal__desc {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

/* Compact modal (newsletter) */
.modal--compact .modal__container {
    max-width: 420px;
}

/* Modal scrollbar */
.modal__container::-webkit-scrollbar {
    width: 6px;
}

.modal__container::-webkit-scrollbar-track {
    background: transparent;
}

.modal__container::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .modal__container {
        width: 95%;
        max-height: 85vh;
    }

    .modal__header {
        padding: var(--space-lg) var(--space-lg) 0;
    }

    .modal__body {
        padding: var(--space-lg);
    }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: var(--font-size-md);
    color: var(--color-text);
}

.faq-item__icon {
    transition: transform var(--transition-fast);
    color: var(--color-primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-lg);
    opacity: 0;
    transition: all var(--transition-normal);
}



.faq-item.open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item.open .faq-item__answer {
    max-height: 1000px;
    /* Approximate max height */
    padding-bottom: var(--space-lg);
    opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--color-primary-light) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero__title span {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero__title {
        font-size: var(--font-size-3xl);
    }

    .hero__subtitle {
        font-size: var(--font-size-base);
    }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats__item {
    padding: var(--space-lg) var(--space-md);
}

.counter {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.counter__label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-banner h2 {
    margin-bottom: var(--space-sm);
}

.cta-banner__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* ============================================================
   FLOATING HELP BUTTON
   ============================================================ */
.floating-help {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.25rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-help:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
}

.floating-help svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-help__text {
        display: none;
    }

    .floating-help {
        padding: 0.875rem;
        border-radius: 50%;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
    font-weight: 800;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    text-decoration: none;
}

.footer__logo:hover {
    color: var(--color-text);
}

.footer__logo-img {
    height: 150px;
    max-height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer__desc {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.footer__heading {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: var(--color-text-body);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-body);
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer__contact a {
    color: var(--color-text-body);
}

.footer__contact a:hover {
    color: var(--color-primary);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    font-size: var(--font-size-xs);
    color: var(--color-text-dim);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a {
    color: var(--color-text-dim);
}

.footer__bottom-links a:hover {
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: var(--space-md) 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.breadcrumb__item::after {
    content: '/';
    margin-left: var(--space-sm);
    color: var(--color-text-dim);
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__item a {
    color: var(--color-text-muted);
}

.breadcrumb__item a:hover {
    color: var(--color-primary);
}

.breadcrumb__item--active {
    color: var(--color-text);
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-container {
    padding-top: var(--space-md);
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    animation: flashIn 0.3s ease;
}

@keyframes flashIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash--success {
    background: rgba(0, 204, 102, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(0, 204, 102, 0.2);
}

.flash--error {
    background: rgba(204, 51, 51, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(204, 51, 51, 0.2);
}

.flash--warning {
    background: rgba(255, 153, 0, 0.1);
    color: var(--color-warning);
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.flash--info {
    background: rgba(0, 153, 255, 0.1);
    color: var(--color-info);
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.flash__close {
    font-size: 1.25rem;
    color: inherit;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.flash__close:hover {
    opacity: 1;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

/* ============================================================
   HERO COMPACT VARIANT
   ============================================================ */
.hero--compact {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero--compact .hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   SHOP / PRODUCTS PAGE
   ============================================================ */
.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.shop-header__text h1 {
    margin-bottom: var(--space-xs);
}

.shop-header__sort .form__select {
    min-width: 180px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Filters Sidebar */
.shop-filters {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.shop-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.shop-filters__header h3 {
    margin: 0;
    font-size: var(--font-size-lg);
}

.shop-filters__clear {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
}

.filter-group {
    margin-bottom: var(--space-lg);
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group__title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.filter-group__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-group__list li {
    margin-bottom: 2px;
}

.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.filter-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
}

.filter-link.active {
    background: rgba(0, 102, 204, 0.15);
    color: var(--color-primary);
    font-weight: 500;
}

.filter-link__count {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Shop Grid */
.shop-grid {
    min-height: 400px;
}

.shop-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-text-muted);
}

.shop-empty svg {
    margin-bottom: var(--space-lg);
    opacity: 0.3;
}

.shop-empty h3 {
    margin-bottom: var(--space-sm);
}

/* Mobile Filter Toggle */
.shop-filter-toggle {
    display: none;
    position: fixed;
    bottom: calc(var(--space-xl) + 60px);
    right: var(--space-lg);
    background: var(--color-primary);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    align-items: center;
    gap: var(--space-xs);
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }

    .shop-filters.open {
        transform: translateX(0);
    }

    .shop-filter-toggle {
        display: flex;
    }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card__image-link {
    display: block;
}

.product-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-elevated);
    overflow: hidden;
}

.product-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-muted);
}

.product-card__placeholder--large {
    aspect-ratio: 1 / 1;
    min-height: 400px;
}

.product-card__placeholder--thumb {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
}

.product-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--color-primary);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card__badge--large {
    font-size: var(--font-size-sm);
    padding: 6px 14px;
}

.product-card__body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__category {
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.product-card__title {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-card__title a {
    color: var(--color-text);
}

.product-card__title a:hover {
    color: var(--color-primary);
}

.product-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.product-card__price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.product-detail__gallery {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
}

.product-detail__main-image {
    position: relative;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-detail__thumbs {
    display: flex;
    gap: var(--space-sm);
}

.product-detail__thumb {
    width: 80px;
    height: 80px;
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.product-detail__thumb.active,
.product-detail__thumb:hover {
    border-color: var(--color-primary);
}

.product-detail__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-detail__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0;
}

.product-detail__desc {
    color: var(--color-text-secondary);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.product-detail__price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.product-detail__stock {
    margin-bottom: var(--space-sm);
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.stock-badge--in {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
}

.stock-badge--out {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-error);
}

.product-detail__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-detail__specs {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.product-detail__specs h3 {
    margin-bottom: var(--space-md);
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: var(--space-sm) 0;
}

.specs-table__label {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    width: 40%;
    padding-right: var(--space-md);
}

.specs-table__value {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail__gallery {
        position: static;
    }
}

/* ============================================================
   SERVICE CARDS (Repairs Page)
   ============================================================ */
.service-card {
    padding: var(--space-xl);
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.service-card__header h3 {
    margin: 0;
    font-size: var(--font-size-xl);
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.service-card__list li:last-child {
    border-bottom: none;
}

.service-card__list li svg {
    flex-shrink: 0;
}

/* ============================================================
   REPAIR PROCESS STEPS
   ============================================================ */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 200px;
    flex: 1;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step__number {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #38bdf8);
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover .process-step__number {
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
    transform: scale(1.1);
}

/* Animated ring around number */
.process-step__number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: rgba(56, 189, 248, 0.4);
    animation: processRingSpin 4s linear infinite;
    opacity: 0.6;
}

.process-step:hover .process-step__number::before {
    opacity: 1;
    border-top-color: #38bdf8;
    border-right-color: var(--color-primary);
}

/* Subtle pulse glow */
.process-step__number::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: processPulse 3s ease-in-out infinite;
}

@keyframes processRingSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes processPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.15;
    }
}

/* Stagger the pulse per step */
.process-step:nth-child(1) .process-step__number::after {
    animation-delay: 0s;
}

.process-step:nth-child(3) .process-step__number::after {
    animation-delay: 0.5s;
}

.process-step:nth-child(5) .process-step__number::after {
    animation-delay: 1s;
}

.process-step:nth-child(7) .process-step__number::after {
    animation-delay: 1.5s;
}

@media (prefers-reduced-motion: reduce) {

    .process-step__number::before,
    .process-step__number::after {
        animation: none;
    }
}

.process-step__title {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-xs);
    transition: color 0.3s ease;
}

.process-step:hover .process-step__title {
    color: var(--color-primary);
}

.process-step__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.process-step__arrow {
    display: flex;
    align-items: center;
    padding-top: var(--space-md);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step__arrow {
        animation: none;
    }
}

@media (max-width: 768px) {
    .process-step__arrow {
        display: none;
    }

    .process-steps {
        gap: var(--space-xl);
    }
}

/* ============================================================
   ANIMATED SERVICE SELECTOR (Repairs Page)
   ============================================================ */
.repair-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.repair-service {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
    width: 100%;
}

.repair-service:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.repair-service:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.repair-service__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.repair-service:hover .repair-service__icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.repair-service__icon svg {
    width: 28px;
    height: 28px;
}

.repair-service__name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.repair-service__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.repair-service__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.repair-service:hover .repair-service__cta {
    opacity: 1;
    transform: translateY(0);
}

.repair-service__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.repair-service:hover .repair-service__cta svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .repair-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .repair-services {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .repair-service {
        padding: var(--space-xl);
    }

    .repair-service__cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   REPAIR WIZARD MODAL
   ============================================================ */
.modal--wizard .modal__container {
    max-width: 640px;
}

/* Progress bar */
.wizard-progress {
    padding: var(--space-md) var(--space-xl) 0;
}

.wizard-progress__bar {
    height: 4px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.wizard-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #38bdf8);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
    width: 0%;
}

.wizard-progress__steps {
    display: flex;
    justify-content: space-between;
}

.wizard-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
    opacity: 0.4;
    transition: opacity var(--transition-normal);
}

.wizard-progress__step.active,
.wizard-progress__step.completed {
    opacity: 1;
}

.wizard-progress__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.wizard-progress__step.active .wizard-progress__num {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.wizard-progress__step.completed .wizard-progress__num {
    border-color: var(--color-success);
    background: var(--color-success);
    color: white;
}

.wizard-progress__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

/* Wizard panels */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: wizardSlideIn 0.35s ease forwards;
}

.wizard-panel.slide-reverse {
    animation: wizardSlideInReverse 0.35s ease forwards;
}

@keyframes wizardSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wizardSlideInReverse {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-panel__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
}

.wizard-panel__desc {
    margin-bottom: var(--space-lg);
}

/* Wizard service options grid (Step 1) */
.wizard-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.wizard-option {
    position: relative;
    cursor: pointer;
}

.wizard-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wizard-option__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
    height: 100%;
}

.wizard-option__card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-elevated);
}

.wizard-option__input:checked+.wizard-option__card {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.wizard-option__icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-option__icon svg {
    width: 28px;
    height: 28px;
}

.wizard-option__name {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.3;
}

/* Device type / Urgency cards (2-col) */
.wizard-options--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.wizard-options--2col .wizard-option__card {
    padding: var(--space-xl);
}

.wizard-options--2col .wizard-option__icon {
    width: 48px;
    height: 48px;
}

.wizard-options--2col .wizard-option__icon svg {
    width: 36px;
    height: 36px;
}

.wizard-options--2col .wizard-option__name {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.wizard-option__desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Wizard date input - dark theme calendar picker */
.wizard-date-wrap {
    position: relative;
    max-width: 280px;
    cursor: pointer;
}

.wizard-date-wrap .form__input[type="date"] {
    cursor: pointer;
    padding-right: 3rem;
}

.wizard-date-wrap .form__input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8);
    cursor: pointer;
    padding: 4px;
    margin-right: -4px;
}

.wizard-date-wrap__icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
    display: none;
}

/* Firefox: no native calendar icon, show our custom one */
@-moz-document url-prefix() {
    .wizard-date-wrap__icon {
        display: block;
    }
}

/* Wizard navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-xl) var(--space-xl);
    gap: var(--space-md);
}

/* Wizard validation error */
.wizard-error {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
    background: rgba(204, 51, 51, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(204, 51, 51, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    animation: fadeIn 200ms ease;
}

/* Wizard responsive */
@media (max-width: 768px) {
    .modal--wizard .modal__container {
        max-width: 95%;
    }

    .wizard-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-progress__label {
        display: none;
    }

    .wizard-nav {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .wizard-options--2col {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    color: var(--color-text);
    font-size: var(--font-size-md);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item__answer p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   PC BUILDER PAGE
   ============================================================ */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-xl);
    align-items: start;
}

/* Builder Progress */
.builder-progress {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-2xl);
}

.builder-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.builder-progress-bar__track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    overflow: hidden;
}

.builder-progress-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.9), rgba(56, 189, 248, 0.95));
    border-radius: inherit;
    transition: width 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.builder-progress__step {
    flex: 1;
    text-align: center;
    padding: var(--space-sm) var(--space-xs);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform 200ms ease, border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.builder-progress__step:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.builder-progress__step.active {
    background: rgba(0, 102, 204, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

.builder-progress__step.completed {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--color-success);
    color: var(--color-success);
}

/* Builder Steps/Panels */
.builder-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.builder-step {
    display: none;
}

.builder-step.active {
    display: block;
}

.builder-step__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
}

.builder-step__subtitle {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xl);
}

/* Builder Options */
.builder-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.builder-option {
    position: relative;
}

.builder-option__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.builder-option__card {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.builder-option__card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.builder-option__input:checked+.builder-option__card {
    border-color: var(--color-primary);
    background: rgba(0, 102, 204, 0.08);
}

.builder-option__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    margin-right: var(--space-md);
    flex-shrink: 0;
    position: relative;
    transition: border-color var(--transition-fast);
}

.builder-option__input:checked+.builder-option__card .builder-option__radio {
    border-color: var(--color-primary);
}

.builder-option__input:checked+.builder-option__card .builder-option__radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}

.builder-option__info {
    flex: 1;
}

.builder-option__name {
    font-weight: 600;
    margin-bottom: 2px;
}

.builder-option__desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.builder-option__price {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-left: var(--space-md);
    white-space: nowrap;
}

.builder-option__badge {
    font-size: var(--font-size-xs);
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-left: var(--space-sm);
    font-weight: 500;
}

/* Builder Navigation */
.builder-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Builder Overview */
.builder-overview {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.builder-overview__list {
    list-style: none;
    margin: var(--space-md) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.builder-overview__list li::before {
    content: '•';
    margin-right: var(--space-xs);
    color: var(--color-primary);
}

/* end Builder Overview */

/* Builder Summary Sidebar */
.builder-summary {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.builder-summary__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.builder-summary__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.builder-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: var(--font-size-sm);
}

.builder-summary__item:last-child {
    border-bottom: none;
}

.builder-summary__label {
    color: var(--color-text-muted);
}

.builder-summary__value {
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.builder-summary__value.empty {
    color: var(--color-text-muted);
    font-style: italic;
    font-weight: 400;
}

.builder-summary__divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-md) 0;
}

.builder-summary__assembly {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.builder-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 2px solid var(--color-border);
}

.builder-summary__total-label {
    font-size: var(--font-size-md);
    font-weight: 600;
}

.builder-summary__total-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.builder-summary__actions {
    margin-top: var(--space-lg);
}

.builder-summary__note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

@media (max-width: 1024px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }

    .builder-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .builder-progress {
        flex-wrap: wrap;
    }

    .builder-progress__step {
        flex: 0 0 calc(33.333% - var(--space-xs));
    }

    .builder-option__card {
        flex-wrap: wrap;
    }

    .builder-option__price {
        width: 100%;
        margin-left: calc(20px + var(--space-md));
        margin-top: var(--space-xs);
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-hero__content h1 {
    margin-bottom: var(--space-lg);
}

.about-hero__content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-hero__image {
    aspect-ratio: 4 / 3;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero__image {
        order: -1;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
    padding: var(--space-xl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-xs);
}

/* Contact Map */
.contact-map {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-map__embed {
    aspect-ratio: 16 / 9;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
}

.contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: brightness(0.85) contrast(1.1) saturate(0.8);
}

.contact-map__info {
    padding: var(--space-xl);
}

.contact-map__info h3 {
    margin-bottom: var(--space-md);
}

.contact-map__info h4 {
    margin-bottom: var(--space-sm);
}

/* Location cards */
.contact-location {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-location:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

/* HQ card accent */
.contact-location--hq {
    border-left: 3px solid var(--color-primary);
}

.contact-location__badge {
    display: inline-block;
    padding: 1px 8px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: var(--space-xs);
}

/* Animated pin icon */
.contact-location__pin {
    position: relative;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.contact-location:hover .contact-location__pin {
    transform: scale(1.15);
}

/* Pulsing dot for HQ */
.contact-location__pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
}

.contact-location__pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-success);
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-location__pulse::after {
        animation: none;
    }
}

/* Service Areas */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.service-area-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all 0.25s ease;
}

.service-area-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.service-area-tag--more {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}

/* Business Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: var(--space-xs) 0;
    font-size: var(--font-size-sm);
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td:first-child {
    color: var(--color-text-secondary);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MISSING CLASS FIXES (Phase 4 Polish)
   ============================================================ */

/* About Hero sub-elements */
.about-hero__lead {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.about-hero__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-muted);
}

/* Builder Progress sub-elements */
.builder-progress__num {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1;
}

.builder-progress__label {
    display: block;
    font-size: var(--font-size-xs);
    margin-top: 2px;
}

/* Builder Panels wrapper */
.builder-panels {
    position: relative;
}

/* Builder Steps wrapper */
.builder-steps {
    display: flex;
    flex-direction: column;
}

.page-builder .builder-layout {
    grid-template-columns: 1fr 340px;
}

.page-builder .builder-layout {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-builder .builder-layout.builder-layout--visible {
    opacity: 1;
    transform: translateY(0);
}

.page-builder .builder-steps,
.page-builder .builder-panels,
.page-builder .builder-nav {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.page-builder .builder-panel {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.4rem;
}

.page-builder .builder-nav {
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: 0.4rem;
}

.page-builder .builder-nav .btn {
    padding: 1.05rem 2.4rem;
}

.page-builder .builder-next--hidden {
    display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .page-builder .builder-layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 768px) {
    .page-builder .builder-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "overview"
            "summary"
            "progress"
            "panels"
            "nav";
    }

    .page-builder .builder-steps {
        display: contents;
    }

    .page-builder .builder-overview {
        grid-area: overview;
    }

    .page-builder .builder-progress-wrap {
        grid-area: progress;
    }

    .page-builder .builder-panels {
        grid-area: panels;
    }

    .page-builder .builder-nav {
        grid-area: nav;
    }

    .page-builder .builder-summary {
        grid-area: summary;
        position: static;
        order: 0;
        width: 100%;
        padding: var(--space-lg);
    }

    .page-builder .builder-summary__title {
        font-size: var(--font-size-base);
    }
}

/* Button loading state */
.btn__text,
.btn__loader {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn__loader[hidden] {
    display: none;
}

/* Spinner for buttons */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Text primary utility */
.text-primary {
    color: var(--color-primary);
}

/* ============================================================
   PC Builder - Extended Styles (8-Step Questionnaire)
   ============================================================ */

/* Checkbox variant for builder options (Step 7) */
.builder-option__checkbox {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-border);
    margin-right: var(--space-md);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
}

.builder-option__input:checked+.builder-option__card .builder-option__checkbox {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.builder-option__input:checked+.builder-option__card .builder-option__checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Budget field (Step 7) */
.builder-budget {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.builder-budget__label {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.builder-budget__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 250px;
}

.builder-budget__currency {
    position: absolute;
    left: var(--space-md);
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: var(--font-size-lg);
    pointer-events: none;
}

.builder-budget__input {
    width: 100%;
    padding: var(--space-sm) var(--space-md) var(--space-sm) var(--space-xl);
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--font-size-lg);
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.builder-budget__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.builder-budget__hint {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

/* Contact form (Step 8) */
.builder-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.builder-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.builder-form-label {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.builder-form-label .required {
    color: var(--color-primary);
}

.builder-form-input,
.builder-form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.builder-form-input:focus,
.builder-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.builder-form-input::placeholder,
.builder-form-textarea::placeholder {
    color: var(--color-text-muted);
}

.builder-form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form messages */
.builder-form-message {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.builder-form-message--error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.builder-form-message--success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Step validation error */
.builder-step-error {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    animation: fadeIn 200ms ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary sidebar items (text-based, no prices) */
.builder-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: var(--space-md);
}

.builder-summary__item:last-child {
    border-bottom: none;
}

.builder-summary__item-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 70px;
}

.builder-summary__item-value {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: 500;
    text-align: right;
}

.builder-summary__item--budget .builder-summary__item-value {
    color: var(--color-primary);
    font-weight: 700;
}

.builder-summary__empty {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    padding: var(--space-xl) 0;
}

/* Summary sticky inner wrapper */
.builder-summary__sticky {
    display: flex;
    flex-direction: column;
}

/* Summary includes list */
.builder-summary__includes {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.builder-summary__includes h4 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.builder-summary__includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.builder-summary__includes li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    padding: 3px 0;
}

.builder-summary__includes li svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* Success overlay */
.builder-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-xl);
    animation: fadeIn 300ms ease;
}

.builder-success-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.builder-success__icon {
    color: var(--color-success);
    margin-bottom: var(--space-lg);
}

.builder-success-card h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
}

.builder-success-card p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.builder-success__ref {
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: inline-block;
    margin: var(--space-md) 0;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
}

.builder-success-card .btn {
    margin-top: var(--space-lg);
}

/* Button success variant */
.btn--success {
    background: var(--color-success);
}

.btn--success:hover {
    background: #059669;
}

/* Turnstile widget in builder */
.builder-contact-form .cf-turnstile {
    margin-top: var(--space-sm);
}

/* Builder panel show/hide (only active is visible) */
.builder-panel {
    display: none;
}

.builder-panel.active {
    display: block;
}

/* Responsive: stack progress steps for 8 steps */
@media (max-width: 768px) {
    .builder-progress__step {
        padding: var(--space-xs) 2px;
    }

    .builder-progress__num {
        font-size: var(--font-size-sm);
    }

    .builder-progress__label {
        font-size: 9px;
    }

    .builder-budget__input-wrap {
        max-width: 100%;
    }

    .builder-success-card {
        padding: var(--space-xl);
    }
}
