/* ========================================
   LED SOLUTIONS PAGE — Matching pixelspot.in
   ======================================== */

/* Hero override — Apple inspired */
.led-hero {
    min-height: 85vh;
    background: #fbfbfd !important;
    position: relative;
}

/* Kill the old gradient bg */
.led-hero .hero-bg,
.led-hero .hero-gradient {
    display: none !important;
}

/* Subtle Apple-style radial wash */
.led-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0,113,227,0.06), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0,113,227,0.04), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.led-hero .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.led-hero .hero-title {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #1d1d1f;
}

.led-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, #0071e3 0%, #40a9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.led-hero .hero-subtitle {
    max-width: 620px;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #6e6e73;
    line-height: 1.6;
    font-weight: 400;
}

.led-hero .hero-buttons .btn-primary {
    background: #0071e3 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 980px !important;
    padding: 16px 36px !important;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

.led-hero .hero-buttons .btn-primary:hover {
    background: #0077ed !important;
    transform: scale(1.04) !important;
}

.led-hero .hero-scroll {
    color: #86868b;
    opacity: 0.5;
}

.led-hero .hero-scroll:hover {
    color: #0071e3;
    opacity: 1;
}

/* ========================================
   PRODUCTS — Apple-style pure white cards
   ======================================== */
#products {
    background: #f5f5f7;
}

#products .section-title {
    color: #1d1d1f;
}

#products .section-subtitle {
    color: #6e6e73;
}

.products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}
.products-grid::-webkit-scrollbar { display: none; }

.product-card {
    flex: 0 0 300px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.product-info p {
    font-size: 0.88rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions .btn-sm {
    color: #0066cc;
    font-weight: 600;
    font-size: 0.88rem;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.product-actions .btn-sm::after {
    content: ' →';
}

.product-actions .btn-sm:hover {
    color: #0055b3;
    text-decoration: none;
}

/* ========================================
   CONFIGURATOR — Live Interactive
   ======================================== */
.configurator-section {
    background: var(--bg-secondary);
}

/* Progress Bar */
.config-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}

.progress-track {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    z-index: 0;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.progress-step span {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s;
}

.progress-step small {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.progress-step.active span {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.progress-step.active small {
    color: var(--accent-light);
}

.progress-step.completed span {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
}

.progress-step.completed small {
    color: var(--text-secondary);
}

/* Configurator Grid */
.configurator-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.config-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    min-height: 500px;
}

/* Wizard Steps */
.config-wizard-step {
    display: none;
}

.config-wizard-step.active {
    display: block;
    animation: configFadeIn 0.4s ease;
}

@keyframes configFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.config-wizard-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.config-wizard-step h3 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.step-tip {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-tip i {
    color: #facc15;
    margin-right: 4px;
}

/* ── Step 1: Environment — True Apple Card Clone ── */
.env-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.env-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    border: none;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
    background: #1c1c1e;
}

/* Photo — fills entire card */
.env-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.env-card:hover .env-card-img {
    transform: scale(1.04);
}

/* Subtle top gradient for text readability */
.env-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.08) 40%,
        transparent 60%,
        transparent 100%
    );
    z-index: 1;
}

/* Content — top-left, Apple typography */
.env-card-content {
    position: relative;
    z-index: 3;
    padding: 32px 28px;
    color: #fff;
}

/* Kicker — Apple small caps label */
.env-card-kicker {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}

/* Headline — Apple large bold */
.env-card-headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    color: #fff;
}

/* Body text */
.env-card-body {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    max-width: 240px;
}

/* Hover */
.env-card:hover {
    transform: scale(1.015);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Active/Selected state */
.env-card.active {
    box-shadow:
        0 0 0 3px var(--accent, #6366f1),
        0 20px 60px rgba(99,102,241,0.2);
}

/* Check mark — Apple style minimal */
.env-card-check {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    z-index: 4;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.env-card.active .env-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .env-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .env-card {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }
    .env-card-headline {
        font-size: 1.6rem;
    }
    .env-card-content {
        padding: 24px 22px;
    }
}

/* ── Shared Step Preview Card (shows on steps 2+) ── */
.step-preview-card {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
}
[data-theme="dark"] .step-preview-card {
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

/* Hero: just the 3D canvas container */
.s2p-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.s2p-cad-wrap {
    position: relative;
    width: 100%;
}

.s2p-cad-wrap led-cad-3d-view {
    width: 100%;
    display: block;
}

/* Floating overlays — glassmorphism pills */
.s2p-overlay-top {
    position: absolute;
    top: 26px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    z-index: 5;
}

.s2p-copy {
    max-width: 58%;
}

.s2p-kicker {
    color: rgba(255,255,255,0.72);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.s2p-headline {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 6px 24px rgba(0,0,0,0.38);
}

.s2p-top-pills {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.s2p-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 22px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 48%, transparent 100%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.s2p-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
}

.s2p-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: s2pPulse 2s ease-in-out infinite;
}
@keyframes s2pPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.s2p-dims-pill {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent, #6366f1);
    padding: 10px 18px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.s2p-tech-badge {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
}

.s2p-size {
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.s2p-ai-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.s2p-ai-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-1, linear-gradient(135deg, #6366f1, #8b5cf6));
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}
.s2p-ai-badge i { font-size: 0.5rem; }

.s2p-ai-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}

/* Summary strip — horizontal row below 3D hero */
.s2p-summary-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #d2d4db;
    flex-shrink: 0;
}

.s2p-summary-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 20px;
    background: #f5f5f7;
    border-right: 1px solid #d2d4db;
    min-height: 0;
}
.s2p-summary-item:last-child {
    border-right: none;
}
[data-theme="dark"] .s2p-summary-item {
    background: #101828;
    border-right-color: #273244;
}

.s2p-sum-label {
    font-size: 0.7rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.s2p-sum-val {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--text-primary, #1d1d1f);
    text-align: left;
    line-height: 1.25;
}
[data-theme="dark"] .s2p-sum-val {
    color: #e2e8f0;
}

/* Preview card responsive */
@media (max-width: 768px) {
    .s2p-hero {
        height: 420px;
    }
    .s2p-overlay-top {
        top: 18px;
        left: 16px;
        right: 16px;
    }
    .s2p-copy {
        max-width: 62%;
    }
    .s2p-headline {
        font-size: 1.7rem;
    }
    .s2p-size {
        font-size: 1.45rem;
    }
    .s2p-overlay-bottom {
        padding: 46px 14px 14px;
        gap: 10px;
    }
    .s2p-summary-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .s2p-summary-item {
        border-bottom: 1px solid #d2d4db;
    }
    .s2p-summary-item:nth-child(2n) {
        border-right: none;
    }
    .s2p-summary-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}
@media (max-width: 480px) {
    .s2p-hero {
        height: 320px;
    }
    .s2p-headline {
        font-size: 1.3rem;
        line-height: 1.1;
    }
    .s2p-overlay-bottom {
        padding: 34px 12px 12px;
    }
    .s2p-ai-row {
        display: none;
    }
}

/* ── Step 2: Apple-Clone Pitch Cards ── */
.pitch-scroller-wrap {
    position: relative;
    margin-bottom: 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.pitch-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 14px;
    scrollbar-width: none;
}
.pitch-list::-webkit-scrollbar { display: none; }

/* Cards visible immediately — no entrance animation */
.pitch-card { opacity: 1; }
.pitch-card.pitch-card-enter { opacity: 1; }

/* ── Apple-Clone Card ── */
.pitch-card {
    flex: 0 0 320px;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
    overflow: hidden;
    border: none;
    background: #1c1c1e;
}

/* Photo — fills entire card */
.pitch-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.pitch-card:hover .pitch-card-img {
    transform: scale(1.04);
}

/* Strong gradient overlay for text readability */
.pitch-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 30%,
        rgba(0,0,0,0.15) 55%,
        rgba(0,0,0,0.08) 70%,
        rgba(0,0,0,0.35) 90%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}

/* Shine — removed (keep class for JS compat) */
.pitch-card-shine { display: none; }

/* Content — top-left, Apple typography */
.pitch-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 28px 22px;
    color: #fff;
}

/* Hover — subtle lift */
.pitch-card:hover {
    transform: scale(1.015);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Active/Selected — accent ring */
.pitch-card.active {
    box-shadow:
        0 0 0 3px var(--accent, #6366f1),
        0 20px 60px rgba(99,102,241,0.2);
}

/* Tag — Apple kicker pill */
.pitch-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 20px;
}
.pitch-card-tag.ptag-premium {
    color: #fbbf24;
    background: rgba(251,146,60,0.35);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pitch-card-tag.ptag-popular {
    color: #fde68a;
    background: rgba(251,191,36,0.35);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pitch-card-tag.ptag-budget {
    color: #86efac;
    background: rgba(74,222,128,0.35);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Badge — Apple large hero headline */
.pitch-card-badge {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 4px 32px rgba(0,0,0,0.3);
}

/* Name — bold subheadline */
.pitch-card-name {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* Description — muted body */
.pitch-card-desc {
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Meta — bottom info */
.pitch-card-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.pitch-card-meta i { font-size: 0.6rem; }

/* Check mark — Apple minimal */
.pitch-card-check {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    z-index: 4;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.pitch-card.active .pitch-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Scroll hint text */
.pitch-scroller-wrap::after {
    content: 'Swipe to explore →';
    display: block;
    text-align: center;
    font-size: 0.68rem;
    color: var(--text-muted, #94a3b8);
    margin-top: 4px;
    opacity: 0.45;
    letter-spacing: 0.03em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pitch-card {
        flex: 0 0 240px;
        border-radius: 24px;
    }
    .pitch-card-badge {
        font-size: 3.5rem;
    }
    .pitch-card-content {
        padding: 24px 22px 16px;
    }
    .pitch-card-name {
        font-size: 0.95rem;
    }
}
@media (max-width: 400px) {
    .pitch-card {
        flex: 0 0 200px;
    }
    .pitch-card-badge {
        font-size: 3rem;
    }
}

/* ── Step 3: Dimensions ── */
.dim-inputs {
    margin-bottom: 28px;
}

.dim-input-group {
    margin-bottom: 20px;
}

.dim-input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.dim-input-group label strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.config-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 3px;
    outline: none;
}

.config-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px var(--accent-glow);
    transition: transform 0.2s;
}

.config-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.dim-range {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.dim-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.dim-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.dim-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.dim-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── Step 4: Frame Options ── */
.frame-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.frame-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
}

.frame-option:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.frame-option.active {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.06);
}

.frame-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frame-icon-wrap i {
    font-size: 1.1rem;
    color: var(--accent);
}

.frame-option.active .frame-icon-wrap {
    background: var(--accent);
}

.frame-option.active .frame-icon-wrap i {
    color: white;
}

.frame-body {
    flex: 1;
}

.frame-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.frame-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.frame-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.frame-features li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.frame-features li i {
    color: #22c55e;
    font-size: 0.6rem;
}

.frame-check {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
    flex-shrink: 0;
}

.frame-option.active .frame-check {
    color: var(--accent);
}

/* ── Step 5: Client Details Form ── */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quote-field label i {
    font-size: 0.78rem;
    color: var(--accent);
    opacity: 0.7;
}

.quote-field input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.quote-field input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.quote-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.quote-field input.field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.btn-generate {
    font-weight: 700;
    font-size: 0.95rem;
    gap: 8px;
}

/* ── Config Nav ── */
.config-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    gap: 12px;
}

/* ── Summary Panel (removed — now using inline preview card) ── */
.config-summary {
    display: none;
}

.config-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.config-summary-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.config-summary h4 {
    font-size: 1rem;
    font-weight: 700;
}

.summary-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.summary-screen-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    background: linear-gradient(135deg, #0f1520, #131a2b);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-screen-preview canvas {
    display: block;
    max-width: 100%;
    border-radius: 3px;
}

.summary-dims-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.summary-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row .label {
    color: var(--text-secondary);
}

.summary-row .value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

/* ========================================
   TOOLS GRID — Apple iPad Black Theme
   ======================================== */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

/* ── Outer wrapper ── */
.tool-card-wrapper {
    position: relative;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.tool-card-wrapper:hover {
    transform: scale(1.02);
}
.tool-card:hover {
    transform: none !important;
}
.tool-card-wrapper::before { display: none; }

/* Hide old elements */
.tool-card-glow,
.tool-icon,
.tool-number,
.tool-card-particles,
.tool-status,
.tool-status-dot,
.tool-features { display: none !important; }

/* ── Card ── */
.tool-card {
    position: relative;
    z-index: 2;
    background: #000 !important;
    border: none !important;
    border-radius: 24px !important;
    padding: 0 !important;
    text-decoration: none;
    color: #f5f5f7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 600px;
    box-shadow: none !important;
    transition: box-shadow 0.5s cubic-bezier(0.23,1,0.32,1);
}
.tool-card::before, .tool-card::after { display: none; }
.tool-card-wrapper:hover .tool-card {
    box-shadow: 0 20px 60px rgba(0,0,0,0.45) !important;
}

/* ── Kicker ── */
.tool-card-kicker {
    display: block;
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: #a1a1a6;
    margin-bottom: 8px;
    letter-spacing: 0;
}

/* ── Card Body ── */
.tool-card-body {
    padding: 44px 36px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

/* ── Headline ── */
.tool-card h3 {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #ffffff !important;
}

/* ── Description ── */
.tool-card > p,
.tool-card-body > p {
    color: #86868b;
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 320px;
}

/* ── CTA ── */
.tool-cta {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2997ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.35s ease, color 0.3s ease;
    margin-bottom: 8px;
}
.tool-cta i {
    font-size: 0.85rem;
    transition: transform 0.35s ease;
}
.tool-card-wrapper:hover .tool-cta {
    gap: 10px;
    color: #40a9ff;
}
.tool-card-wrapper:hover .tool-cta i {
    transform: translateX(4px);
}

/* ── Hero Image ── */
.tool-card-hero {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    margin-top: auto;
}
.tool-card-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 0 24px 24px;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.tool-card-wrapper:hover .tool-card-hero-img {
    transform: scale(1.04);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tool-card {
        height: 420px;
    }
    .tool-card-body {
        padding: 32px 24px 0;
    }
    .tool-card h3 {
        font-size: 1.8rem;
    }
    .tool-card-kicker {
        font-size: 0.82rem;
    }
}

/* ── Number badge (hidden) ── */
.tool-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.tool-card-wrapper:hover .tool-number {
    opacity: 0.08;
    transform: scale(1.1) rotate(-3deg);
}

/* ── Status badge ── */
.tool-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(99,102,241,0.1);
    color: var(--accent);
    margin-bottom: 20px;
    width: fit-content;
    position: relative;
    z-index: 1;
}
.tool-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* old mobile override removed — handled above */

/* ========================================
   INDOOR VS OUTDOOR — Apple-style dark cards
   ======================================== */
#compare {
    background: #f5f5f7;
}

#compare .section-title {
    color: #1d1d1f !important;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

#compare .section-subtitle {
    color: #6e6e73 !important;
    font-size: 1.05rem;
}

#compare {
    background: #f5f5f7 !important;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 50px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.compare-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.compare-card-img {
    background: #f5f5f7 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 200px;
    overflow: hidden;
}

.compare-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.compare-card-body {
    padding: 16px 20px 20px;
}

.compare-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc !important;
}

.compare-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.82rem;
    color: #1d1d1f !important;
    border-bottom: none;
}

.compare-feature:last-child {
    border-bottom: none;
}

.compare-feature .check {
    width: 20px;
    height: 20px;
    background: rgba(0, 102, 204, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-feature .check i {
    color: #0066cc !important;
    font-size: 0.55rem;
}

.compare-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.compare-card-link:hover .compare-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.compare-cta {
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0066cc !important;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.compare-cta i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.compare-card-link:hover .compare-cta i {
    transform: translateX(4px);
}

/* Spec Table */
.spec-heading {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.spec-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.spec-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.spec-tab {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.spec-tab.active {
    background: rgba(59, 130, 246, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

.spec-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.spec-table-section h4 {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.05);
    border-bottom: 1px solid var(--border);
}

.spec-row {
    display: grid;
    grid-template-columns: 100px 120px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-row .size {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-row .pitch {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-row .desc {
    padding: 12px 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ═══ Comparison Quote Tool — Wizard Layout ═══ */

/* Wizard steps: only active one is visible */
.cq-wizard-step {
    display: none;
}

.cq-wizard-step.active {
    display: block;
    animation: cqFadeIn 0.4s ease;
}

@keyframes cqFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Keep old .cq-card for backward compat but not used now */
.cq-card {
    margin-top: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 28px 24px 20px;
}

.cq-step {
    margin-bottom: 22px;
    animation: cqFadeIn 0.35s ease both;
}

.cq-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cq-field-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.cq-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cq-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cq-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cq-field input,
.cq-field select {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.cq-field input:focus,
.cq-field select:focus {
    border-color: var(--accent);
}

.cq-field input::placeholder { color: var(--text-muted); }

.cq-toggle {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cq-btn {
    padding: 11px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cq-btn.active {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.12);
    color: var(--text-primary);
}

/* ── Compare-Quote Apple Mini Cards (Brand & Frame) ── */
/* ── Apple-Style Product Cards ── */
.cq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cq-mini-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.cq-mini-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #fafafa;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cq-mini-card::before, .cq-mini-card::after { display: none; }
.cq-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.cq-mini-card.active {
    border-color: var(--accent, #6366f1);
    box-shadow: 0 0 0 2px var(--accent, #6366f1), 0 8px 28px rgba(99,102,241,0.12);
    background: #f5f3ff;
}
/* Product image — centered, explicit size */
.cq-mini-card-img {
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
.cq-mini-card:hover .cq-mini-card-img {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.14));
}
.cq-mini-card.active .cq-mini-card-img {
    animation: cqImgFloat 3.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 18px rgba(99,102,241,0.14));
}
@keyframes cqImgFloat {
    0%, 100% { transform: translateY(0) scale(1.02); }
    50%      { transform: translateY(-5px) scale(1.05); }
}
.cq-mini-card-overlay { display: none; }
/* Text below image */
.cq-mini-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1d1d1f;
    padding: 0;
}
.cq-mini-card-kicker {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent, #6366f1);
    margin-bottom: 2px;
}
.cq-mini-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}
.cq-mini-card-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(0,0,0,0.45);
    margin-top: 2px;
    line-height: 1.3;
}
.cq-mini-card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
    z-index: 5;
    opacity: 0;
    transform: scale(0);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.cq-mini-card.active .cq-mini-card-check {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 768px) {
    .cq-mini-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cq-mini-card-img { height: 100px; }
    .cq-mini-card-name { font-size: 0.95rem; }
}
@media (max-width: 400px) {
    .cq-mini-grid { gap: 10px; }
    .cq-mini-card { border-radius: 14px; padding: 14px 12px 12px; }
    .cq-mini-card-img { height: 80px; }
    .cq-mini-card-name { font-size: 0.85rem; }
}

/* ── Compare-Quote Apple Pitch Cards ── */
.cq-pitch-scroller {
    margin-bottom: 12px;
}
.cq-pitch-scroller .pitch-list.cq-pitch-cards {
    padding: 8px 12px 14px;
}
.cq-pitch-card {
    flex: 0 0 220px;
    aspect-ratio: 3 / 4;
}
.cq-pitch-card .pitch-card-badge {
    font-size: 3.5rem;
}
.cq-pitch-card .pitch-card-content {
    padding: 24px 22px 16px;
}
@media (max-width: 768px) {
    .cq-pitch-card {
        flex: 0 0 180px;
    }
    .cq-pitch-card .pitch-card-badge {
        font-size: 2.8rem;
    }
    .cq-pitch-card .pitch-card-content {
        padding: 18px 16px 12px;
    }
}
@media (max-width: 400px) {
    .cq-pitch-card {
        flex: 0 0 160px;
    }
    .cq-pitch-card .pitch-card-badge {
        font-size: 2.4rem;
    }
}

.cq-pitch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cq-pitch-chip {
    position: relative;
    cursor: pointer;
}

.cq-pitch-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cq-pitch-chip label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 11px 18px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 64px;
}

.cq-pitch-chip label:hover {
    border-color: var(--border-hover);
    background: rgba(30, 41, 59, 0.9);
}

.cq-pitch-chip input:checked + label {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.12);
}

.cq-pitch-value {
    font-size: 0.95rem;
    font-weight: 700;
}

.cq-pitch-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cq-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    min-height: 24px;
}

.cq-selected-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.cq-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Cost table */
.cq-table-wrap {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ── Apple-Style Specs & Pricing Table ── */
.cq-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    letter-spacing: -0.01em;
}
.cq-tbl thead td {
    background: #1d1d1f;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-align: center;
    border-bottom: none;
}
.cq-tbl thead td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.6);
    border-radius: 8px 0 0 0;
}
.cq-tbl thead td:last-child {
    border-radius: 0 8px 0 0;
}
.cq-tbl tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    color: #424245;
    font-weight: 400;
    font-size: 0.88rem;
}
.cq-tbl tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.85rem;
}
.cq-tbl tbody tr:hover td {
    background: rgba(99,102,241,0.03);
}
.cq-tbl tbody tr:last-child td { border-bottom: none; }
/* Compact spec table */
.cq-tbl-compact { font-size: 0.82rem; }
.cq-tbl-compact thead td { padding: 11px 14px; font-size: 0.68rem; }
.cq-tbl-compact tbody td { padding: 10px 14px; font-size: 0.82rem; }
.cq-tbl-compact tbody td:first-child { font-size: 0.8rem; }
.cq-tbl .row-total td {
    background: rgba(99,102,241,0.05);
    font-weight: 700;
    color: #1d1d1f;
    border-top: 2px solid var(--accent, #6366f1);
}
.cq-tbl .row-margin td { font-weight: 700; }

.cq-margin-pos { color: #22c55e !important; }
.cq-margin-neg { color: #f31260 !important; }

.cq-price-input {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 0.88rem;
    color: #fff;
    font-family: inherit;
    width: 100%;
    max-width: 140px;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
}

.cq-price-input::-webkit-inner-spin-button,
.cq-price-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.cq-price-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.cq-gen-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .cq-card { padding: 18px 14px; }
    .cq-row-2 { grid-template-columns: 1fr; }
    .cq-toggle { flex-wrap: wrap; }
    .cq-btn { flex: 1; min-width: 120px; text-align: center; }
}

/* Clickable spec rows */
a.spec-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

a.spec-link:hover {
    background: rgba(59, 130, 246, 0.08);
}

a.spec-link:hover .pitch {
    color: #60a5fa;
}

.spec-link-icon {
    font-size: 0.7rem;
    opacity: 0;
    margin-left: 8px;
    transition: opacity 0.3s ease;
    color: var(--accent-light);
}

a.spec-link:hover .spec-link-icon {
    opacity: 1;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
/* ========================================
   PROCESS — Apple Product Grid Style
   ======================================== */
.process-section {
    background: #f5f5f7;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    display: none;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 20px 36px;
    border-right: 1px solid #d2d2d7;
    transition: background 0.3s ease;
}
.process-step:last-child {
    border-right: none;
}
.process-step:hover {
    background: rgba(0,0,0,0.02);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: none !important;
    border: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: none !important;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.process-icon i {
    font-size: 2.2rem;
    color: #1d1d1f;
}

.process-step:hover .process-icon {
    border-color: transparent;
    box-shadow: none;
    transform: scale(1.12);
}

.process-number {
    display: none;
}

.process-step h4 {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.process-step p {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.85rem;
    color: #86868b;
    line-height: 1.47;
    max-width: 180px;
    margin: 0 auto;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-section {
    padding-top: 80px;
    background: #ffffff !important;
}

.portfolio-stats-bar {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-stats-bar .stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 113, 227, 0.06);
    border: 1px solid rgba(0, 113, 227, 0.12);
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 12px;
}

.portfolio-stats-bar .stat-number {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d1d1f;
}

.portfolio-stats-bar .stat-label {
    font-size: 0.9rem;
    color: #86868b;
}

.portfolio-stats-bar p {
    font-size: 0.95rem;
    color: #86868b;
}

/* ── Portfolio Horizontal Scroll ── */
.portfolio-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}
.portfolio-grid::-webkit-scrollbar { display: none; }

.portfolio-card {
    flex: 0 0 300px;
    background: #f5f5f7 !important;
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    box-shadow: none !important;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s cubic-bezier(0.23,1,0.32,1) !important;
}

.portfolio-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    border-color: transparent !important;
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

/* Make iframe fill & overflow to hide YouTube logo/title */
.portfolio-image iframe {
    position: absolute !important;
    top: -10% !important;
    left: -10% !important;
    width: 120% !important;
    height: 120% !important;
    border: 0 !important;
    pointer-events: none !important;
    object-fit: cover;
}

/* Guard overlay blocks all YouTube UI interaction */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: auto;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 40%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
}

.portfolio-location {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.portfolio-location i {
    color: #2997ff;
    font-size: 0.65rem;
}

.portfolio-info {
    padding: 18px 20px 22px;
}

.portfolio-info h4 {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.portfolio-info p {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.8rem;
    color: #86868b;
    line-height: 1.45;
    margin-bottom: 0;
}

.portfolio-play {
    display: none;
}

.portfolio-play:hover {
    color: var(--accent-light);
}

.portfolio-play i {
    font-size: 0.65rem;
}

/* ========================================
   TRUSTED BY — Apple Watch Horizontal Scroll
   ======================================== */
.trusted-section {
    background: #f5f5f7;
}

.trusted-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 48px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.trusted-grid::-webkit-scrollbar { display: none; }

.trusted-card {
    flex: 0 0 260px;
    max-width: 260px;
    background: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s cubic-bezier(0.23,1,0.32,1) !important;
    scroll-snap-align: start;
    min-height: 340px;
}

.trusted-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1) !important;
    border-color: transparent !important;
}

.trusted-card i { display: none; }

/* ── Card Body (text top) ── */
.trusted-card-body {
    padding: 24px 22px 0;
    flex-shrink: 0;
}

.trusted-kicker {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 6px;
}

.trusted-card h4 {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.trusted-card p {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.78rem;
    color: #86868b;
    line-height: 1.4;
    margin: 0;
}

/* ── Card Image (bottom) ── */
.trusted-card-img {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    margin-top: auto;
    padding-top: 16px;
}

.trusted-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 0 20px 20px;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

.trusted-card:hover .trusted-card-img img {
    transform: scale(1.06);
}

/* ── Stats ── */
.trusted-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.trusted-stat {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    min-width: 0;
}

.trusted-stat .stat-icon {
    font-size: 1.5rem;
    color: #0071e3 !important;
    display: block;
    margin-bottom: 8px;
}

.trusted-stat .num {
    font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0071e3 !important;
    display: block;
    letter-spacing: -0.02em;
}

.trusted-stat .txt {
    font-family: 'SF Pro Text', 'Inter', -apple-system, sans-serif;
    font-size: 0.8rem;
    color: #86868b;
    margin-top: 4px;
    display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    .product-card {
        flex: 0 0 280px !important;
    }
    .configurator-container {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    .portfolio-card {
        flex: 0 0 280px !important;
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-step {
        border-right: 1px solid #d2d2d7;
    }
    .process-step:nth-child(3) {
        border-right: none;
    }
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        border-top: 1px solid #d2d2d7;
    }
    .process-step:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 14px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .product-card {
        flex: 0 0 260px !important;
    }
    .product-info {
        padding: 14px;
    }
    .product-info h3 {
        font-size: 0.95rem;
    }
    .product-info p {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step {
        padding: 28px 16px;
        border-right: 1px solid #d2d2d7;
        border-bottom: 1px solid #d2d2d7;
    }
    .process-step:nth-child(even) {
        border-right: none;
    }
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        border-bottom: none;
    }
    .process-step:last-child {
        border-right: none;
    }
    .process-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    .process-icon i {
        font-size: 1.6rem;
    }
    .process-step h4 {
        font-size: 1.05rem;
    }
    .config-panel {
        padding: 24px;
    }
    .config-progress {
        margin-bottom: 30px;
    }
    .progress-step small {
        display: none;
    }
    .env-grid {
        grid-template-columns: 1fr;
    }
    .dim-visual {
        grid-template-columns: 1fr;
    }
    .frame-features {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 14px;
    }
    .portfolio-card {
        flex: 0 0 260px !important;
    }
    .spec-row {
        grid-template-columns: 80px 90px 1fr;
    }
    .trusted-card {
        flex: 0 0 220px;
        min-height: 300px;
    }
    .trusted-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .product-card {
        flex: 0 0 240px !important;
    }
    .config-panel {
        padding: 18px;
    }
    .config-wizard-step h3 {
        font-size: 1.1rem;
    }
    .portfolio-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px;
        margin: 0 -20px;
        padding: 0 20px 8px;
    }
    .portfolio-card {
        flex: 0 0 240px !important;
    }
    .spec-row {
        grid-template-columns: 1fr;
    }
    .spec-row .size,
    .spec-row .pitch,
    .spec-row .desc {
        border-right: none;
        padding: 8px 16px;
    }
    .spec-row .size {
        font-weight: 700;
        padding-bottom: 0;
    }
    .spec-row .pitch {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .trusted-card {
        flex: 0 0 200px;
        min-height: 280px;
    }
    .trusted-card h4 {
        font-size: 1.15rem;
    }
}

/* ═══════════════════════════════════════════════
   APPLE-INSPIRED FULL PAGE OVERRIDE
   ═══════════════════════════════════════════════ */

/* ── Global Apple Typography ── */
.led-hero ~ .section .section-title,
.led-hero ~ .section h2 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    color: #1d1d1f !important;
}

.led-hero ~ .section .section-subtitle,
.led-hero ~ .section .section-header p {
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif !important;
    color: #6e6e73 !important;
}

/* Kill all gradient-text purple */
.led-hero ~ .section .gradient-text {
    background: linear-gradient(135deg, #0071e3, #40a9ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Kill section-tag purple badge */
.led-hero ~ .section .section-tag {
    background: rgba(0,113,227,0.08) !important;
    color: #0071e3 !important;
    border-color: rgba(0,113,227,0.15) !important;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
}

/* ── Sections: All white base, specific sections get #f5f5f7 ── */
.led-hero ~ .section {
    background: #ffffff !important;
}
#products {
    background: #f5f5f7 !important;
}
.process-section {
    background: #f5f5f7 !important;
}

/* ── Products Section ── */

#products .section-title {
    color: #1d1d1f !important;
}

.product-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

.product-info h3 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #1d1d1f !important;
}

.product-info p {
    color: #6e6e73 !important;
}

.product-actions .btn-sm {
    color: #0071e3 !important;
}

.product-actions .btn-sm:hover {
    color: #0077ed !important;
}

.text-center .btn-outline {
    color: #0071e3 !important;
    border-color: #0071e3 !important;
    border-radius: 980px !important;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif !important;
}

.text-center .btn-outline:hover {
    background: #0071e3 !important;
    color: #fff !important;
}

/* ── Configurator / Tools Section ── */
.configurator-section {
    background: #000000 !important;
}

.configurator-section .section-title,
.configurator-section .section-header h2 {
    color: #f5f5f7 !important;
}

.configurator-section .section-subtitle,
.configurator-section .section-header p {
    color: #86868b !important;
}

.configurator-section .section-tag {
    background: rgba(41,151,255,0.15) !important;
    color: #2997ff !important;
    border-color: rgba(41,151,255,0.25) !important;
}

.tool-card {
    background: #000000 !important;
    border: none !important;
    border-radius: 24px !important;
    box-shadow: none !important;
}

.tool-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.45) !important;
}

.tool-card-kicker {
    color: #a1a1a6 !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
}

.tool-card h3 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.tool-card p,
.tool-card-body > p {
    color: #86868b !important;
}

.tool-cta {
    color: #2997ff !important;
    font-weight: 600 !important;
}

/* ── Comparison Section ── */
#compare {
    background: #f5f5f7 !important;
}

#compare .section-title {
    color: #1d1d1f !important;
}

.compare-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}

.compare-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

.compare-card h3 {
    color: #0071e3 !important;
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
}

.compare-feature .check {
    background: rgba(0,113,227,0.1) !important;
}

.compare-feature .check i {
    color: #0071e3 !important;
}

.compare-cta {
    color: #0071e3 !important;
}

/* ── Process Section ── */
.process-section {
    background: #f5f5f7 !important;
}

.process-icon i {
    color: #1d1d1f !important;
}

.process-step {
    border-color: #d2d2d7 !important;
}

.process-step h4 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #1d1d1f !important;
}

.process-step p {
    color: #86868b !important;
}

/* ── Portfolio Section ── */
.portfolio-section {
    background: #ffffff !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.portfolio-stats-bar .stat-badge {
    background: rgba(0,113,227,0.06) !important;
    border-color: rgba(0,113,227,0.12) !important;
}

.portfolio-card {
    background: #f5f5f7 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}

.portfolio-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    transform: translateY(-2px) !important;
}

.portfolio-info h4 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #1d1d1f !important;
}

.portfolio-info p {
    color: #6e6e73 !important;
}

/* ── Trusted Section ── */
.trusted-section {
    background: #f5f5f7 !important;
}

.trusted-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}

.trusted-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
    transform: translateY(-4px) !important;
}

.trusted-kicker {
    color: #6e6e73 !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

.trusted-card h4 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #1d1d1f !important;
    font-weight: 700 !important;
}

.trusted-card p {
    color: #6e6e73 !important;
}

.trusted-stats {
    background: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}

.trusted-stat .stat-icon {
    color: #0071e3 !important;
}

.trusted-stat .num {
    color: #1d1d1f !important;
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
}

.trusted-stat .txt {
    color: #86868b !important;
}

/* ── Quote Section ── */
.quote-section {
    background: #ffffff !important;
}

.quote-section .section-title {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #1d1d1f !important;
}

.quote-section .quote-form input,
.quote-section .quote-form select {
    background: #f5f5f7 !important;
    border: 1px solid #d2d2d7 !important;
    border-radius: 12px !important;
    color: #1d1d1f !important;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}

.quote-section .quote-form input:focus,
.quote-section .quote-form select:focus {
    border-color: #0071e3 !important;
    box-shadow: 0 0 0 4px rgba(0,113,227,0.12) !important;
    outline: none !important;
}

.quote-section .quote-form input::placeholder {
    color: #86868b !important;
}

.quote-section .btn-primary.btn-full {
    background: #0071e3 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 980px !important;
    padding: 16px 36px !important;
    font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    transition: all 0.3s !important;
}

.quote-section .btn-primary.btn-full:hover {
    background: #0077ed !important;
    transform: scale(1.02) !important;
}

/* ── Active/Selected states → Apple blue ── */
.env-card.active {
    box-shadow: 0 0 0 3px #0071e3, 0 20px 60px rgba(0,113,227,0.2) !important;
}

.env-card-check {
    background: #0071e3 !important;
}

.progress-step.active span {
    background: #0071e3 !important;
    border-color: #0071e3 !important;
    box-shadow: 0 0 20px rgba(0,113,227,0.3) !important;
}

.progress-step.active small {
    color: #0071e3 !important;
}

/* ── Configurator accent overrides ── */
.pitch-option.active,
.size-option.active,
.frame-option.active {
    border-color: #0071e3 !important;
    box-shadow: 0 0 0 3px rgba(0,113,227,0.15) !important;
}

.config-nav .btn-primary {
    background: #0071e3 !important;
    border-color: #0071e3 !important;
    border-radius: 980px !important;
}

.config-nav .btn-primary:hover {
    background: #0077ed !important;
}

/* ── Footer Apple ── */
.footer {
    background: #1d1d1f !important;
    border-top: 1px solid #424245 !important;
}

.footer h4 {
    font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif !important;
    color: #f5f5f7 !important;
}

.footer a {
    color: #a1a1a6 !important;
}

.footer a:hover {
    color: #f5f5f7 !important;
}

.footer-bottom {
    border-top-color: #424245 !important;
    color: #86868b !important;
}
