/* FixStop 2026 Redesign - Header, Footer, Homepage */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Core palette */
    --blue: #0070C0;
    --blue-bright: #00A0F0;
    --blue-deep: #004A80;
    --blue-glow: #00B4FF;
    --dark: #0A0E14;
    --dark-surface: #111820;
    --dark-card: #161E28;
    --dark-border: #1E2A36;
    --slate: #8A9BB0;
    --light: #F0F4F8;
    --white: #FFFFFF;
    --accent-green: #00D68F;
    --accent-orange: #FF8C42;
    --accent-red: #FF4757;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;

    /* Spacing */
    --section-pad: clamp(60px, 10vw, 120px);
    --container: min(1280px, 92vw);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: #2D3748;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.top-divider { display: none; }

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; box-sizing: border-box; width: 100%; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Inline SVG icon base */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}
.service-icon .icon,
.buysell-icon .icon,
.it-feature-icon .icon {
    width: 1.3em;
    height: 1.3em;
}

/* Scroll-reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Push content below fixed header - only when new fixed header exists */
body:has(.site-header) { padding-top: 68px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-main {
    background: var(--white);
    border-bottom: 1px solid #E8EDF2;
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}
.nav-main a {
    color: #4A5568;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.nav-main a:hover {
    color: var(--blue);
    background: rgba(0, 112, 192, 0.06);
}
/* Dropdown menu */
.nav-dropdown-wrap {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.nav-dropdown-toggle svg {
    transform: rotate(90deg);
    transition: transform 0.2s var(--ease);
}
.nav-dropdown-wrap:hover .nav-dropdown-toggle svg {
    transform: rotate(90deg) translateX(2px);
}
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 20px 24px;
    min-width: min(420px, 90vw);
    gap: 24px;
    z-index: 1000;
    margin-top: 8px;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: -20px;
    right: -20px;
    height: 24px;
}
.nav-dropdown-wrap:hover .nav-dropdown {
    display: flex;
}
.nav-dropdown-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-dropdown-heading {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94A3B8;
    padding: 4px 12px 8px;
    margin-bottom: 2px;
}
.nav-dropdown a {
    padding: 7px 12px !important;
    font-size: 0.84rem !important;
    font-weight: 500 !important;
    color: #4A5568 !important;
    border-radius: 6px;
    white-space: nowrap;
}
.nav-dropdown a:hover {
    background: rgba(0, 112, 192, 0.06) !important;
    color: var(--blue) !important;
}
.nav-dropdown-single {
    min-width: 220px;
}

.hide-mobile { display: inline; }
.show-mobile-only { display: none; }
.nav-mobile-only { display: none !important; }
.nav-separator { display: none; }
.mobile-phone-link { display: none; }
.mobile-cta-link { display: none !important; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-phone {
    color: #4A5568;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.25s;
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { width: 0.75rem; height: 0.75rem; color: var(--blue); }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid transparent;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-cta:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 160, 240, 0.35);
}
.btn-cta:hover::before { opacity: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #CBD5E0;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(0, 112, 192, 0.04);
}
/* Dark section variant */
.dark-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.dark-section .btn-outline:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    background: rgba(0, 160, 240, 0.08);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    padding: 70px 0 56px;
    max-width: 100vw;
}

/* Subtle light background pattern */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%230070C0' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'%3E%3Crect x='30' y='20' width='28' height='48' rx='4'/%3E%3Cline x1='40' y1='58' x2='48' y2='58'/%3E%3Crect x='180' y='30' width='50' height='34' rx='3'/%3E%3Cpath d='M172 64h66'/%3E%3Crect x='350' y='25' width='52' height='32' rx='10'/%3E%3Cline x1='368' y1='34' x2='368' y2='48'/%3E%3Cline x1='361' y1='41' x2='375' y2='41'/%3E%3Ccircle cx='390' cy='37' r='3'/%3E%3Ccircle cx='396' cy='43' r='3'/%3E%3Cpath d='M530 22c4-4 10-4 14 0s4 10 0 14l-28 28-14-14 28-28z'/%3E%3Cline x1='520' y1='50' x2='508' y2='62'/%3E%3Crect x='670' y='20' width='52' height='38' rx='3'/%3E%3Cline x1='696' y1='58' x2='696' y2='68'/%3E%3Cline x1='684' y1='68' x2='708' y2='68'/%3E%3Crect x='60' y='180' width='36' height='36' rx='4'/%3E%3Cline x1='70' y1='176' x2='70' y2='170'/%3E%3Cline x1='82' y1='176' x2='82' y2='170'/%3E%3Cline x1='70' y1='220' x2='70' y2='226'/%3E%3Cline x1='82' y1='220' x2='82' y2='226'/%3E%3Cline x1='56' y1='192' x2='50' y2='192'/%3E%3Cline x1='56' y1='204' x2='50' y2='204'/%3E%3Cline x1='100' y1='192' x2='106' y2='192'/%3E%3Cline x1='100' y1='204' x2='106' y2='204'/%3E%3Crect x='230' y='170' width='40' height='56' rx='4'/%3E%3Ccircle cx='250' cy='218' r='3'/%3E%3Crect x='400' y='172' width='56' height='38' rx='2'/%3E%3Cline x1='416' y1='214' x2='440' y2='214'/%3E%3Cline x1='412' y1='218' x2='444' y2='218'/%3E%3Cline x1='580' y1='170' x2='580' y2='210'/%3E%3Ccircle cx='580' cy='168' r='5'/%3E%3Crect x='576' y='210' width='8' height='16' rx='1'/%3E%3Cpath d='M700 200c0-14 10-24 24-24s24 10 24 24'/%3E%3Crect x='696' y='198' width='8' height='16' rx='3'/%3E%3Crect x='744' y='198' width='8' height='16' rx='3'/%3E%3Crect x='20' y='340' width='60' height='24' rx='3'/%3E%3Cline x1='30' y1='348' x2='36' y2='348'/%3E%3Cline x1='42' y1='348' x2='48' y2='348'/%3E%3Cline x1='54' y1='348' x2='60' y2='348'/%3E%3Cline x1='30' y1='356' x2='60' y2='356'/%3E%3Crect x='210' y='340' width='36' height='20' rx='3'/%3E%3Crect x='246' y='346' width='4' height='8' rx='1'/%3E%3Crect x='214' y='344' width='10' height='12' rx='1'/%3E%3Ccircle cx='410' cy='350' r='8'/%3E%3Cline x1='402' y1='342' x2='394' y2='336'/%3E%3Cline x1='418' y1='342' x2='426' y2='336'/%3E%3Cline x1='402' y1='358' x2='394' y2='364'/%3E%3Cline x1='418' y1='358' x2='426' y2='364'/%3E%3Ccircle cx='394' cy='334' r='6'/%3E%3Ccircle cx='426' cy='334' r='6'/%3E%3Ccircle cx='394' cy='366' r='6'/%3E%3Ccircle cx='426' cy='366' r='6'/%3E%3Ccircle cx='580' cy='350' r='12'/%3E%3Ccircle cx='580' cy='350' r='6'/%3E%3Cline x1='580' y1='335' x2='580' y2='340'/%3E%3Cline x1='580' y1='360' x2='580' y2='365'/%3E%3Cline x1='565' y1='350' x2='570' y2='350'/%3E%3Cline x1='590' y1='350' x2='595' y2='350'/%3E%3Cpath d='M710 360a20 20 0 0 1 28 0' fill='none'/%3E%3Cpath d='M716 354a12 12 0 0 1 16 0' fill='none'/%3E%3Ccircle cx='724' cy='362' r='2.5'/%3E%3Crect x='50' y='500' width='28' height='48' rx='4'/%3E%3Cline x1='58' y1='504' x2='70' y2='504'/%3E%3Cline x1='230' y1='496' x2='260' y2='536'/%3E%3Ccircle cx='228' cy='494' r='4'/%3E%3Crect x='380' y='500' width='52' height='16' rx='3'/%3E%3Ccircle cx='394' cy='508' r='4'/%3E%3Crect x='416' y='504' width='8' height='8' rx='1'/%3E%3Cline x1='392' y1='516' x2='386' y2='524'/%3E%3Cline x1='420' y1='516' x2='426' y2='524'/%3E%3Ccircle cx='580' cy='510' r='14'/%3E%3Cline x1='590' y1='520' x2='600' y2='530'/%3E%3Crect x='690' y='498' width='48' height='20' rx='3'/%3E%3Ccircle cx='728' cy='508' r='4'/%3E%3Cline x1='696' y1='508' x2='716' y2='508'/%3E%3Crect x='40' y='660' width='22' height='34' rx='10'/%3E%3Cline x1='51' y1='662' x2='51' y2='674'/%3E%3Crect x='220' y='664' width='20' height='28' rx='2'/%3E%3Cline x1='226' y1='660' x2='226' y2='656'/%3E%3Cline x1='234' y1='660' x2='234' y2='656'/%3E%3Crect x='390' y='660' width='40' height='28' rx='4'/%3E%3Ccircle cx='410' cy='676' r='8'/%3E%3Crect x='400' y='656' width='12' height='6' rx='2'/%3E%3Cpolygon points='585,656 575,676 583,676 577,696 593,672 585,672 591,656'/%3E%3Crect x='700' y='658' width='16' height='28' rx='2'/%3E%3Cpath d='M716 664l12-8v32l-12-8z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(0, 112, 192, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 100%, rgba(0, 112, 192, 0.03) 0%, transparent 40%),
        linear-gradient(105deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0.92) 70%, rgba(255,255,255,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(0, 112, 192, 0.08);
    border: 1px solid rgba(0, 112, 192, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}
.hero-title .accent { color: var(--blue); }
.hero-title .accent-green { color: var(--accent-green); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}
.hero-actions .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}
.hero-stat {
    position: relative;
}
.hero-stat::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #E2E8F0;
}
.hero-stat:first-child::before { display: none; }
.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
}
.hero-stat-number .star { color: #FFD700; }
.hero-stat-label {
    font-size: 0.78rem;
    color: #64748B;
    margin-top: 2px;
    font-weight: 500;
}

/* Right side - store photo visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -55px;
    animation: fadeIn 1s var(--ease-out) 0.6s both;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
}
.hero-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.hero-photo-exterior {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    object-position: center 60%;
    transform: scale(1.08);
    transform-origin: center 60%;
    aspect-ratio: 4/3;
    border: 4px solid var(--white);
    z-index: 3;
}
/* Decorative accent behind photo */
.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 50%;
    height: 50%;
    background: var(--blue);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.12;
}
.hero-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 40%;
    height: 40%;
    background: var(--accent-green);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

/* Quick-info cards floating over photo */
.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
    white-space: nowrap;
}
.hero-float-card svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
}
.hero-float-card.card-rating {
    bottom: 20px;
    right: -16px;
    animation: floatUp 3s ease-in-out infinite;
}
.hero-float-card.card-open {
    top: 20px;
    right: -16px;
    animation: floatUp 3s ease-in-out infinite 1.5s;
}
.hero-float-card .stars { color: #FFD700; font-size: 0.7rem; }
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--light);
    padding: 28px 0;
    border-bottom: 1px solid #E2E8F0;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A5568;
    white-space: nowrap;
}
.trust-item svg {
    color: var(--blue);
    width: 1.1rem;
    height: 1.1rem;
}
.trust-item .stars { color: #FFD700; font-size: 0.8rem; letter-spacing: 1px; }

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 560px;
    line-height: 1.7;
    margin: 0 auto 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
    border-color: rgba(0, 112, 192, 0.2);
    box-shadow: 0 8px 32px rgba(0, 112, 192, 0.08);
    transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,112,192,0.08), rgba(0,160,240,0.04));
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--blue);
    transition: all 0.3s var(--ease);
}
.service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: filter 0.3s var(--ease);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0,112,192,0.12), rgba(0,160,240,0.08));
    color: var(--blue);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
}

.service-card.featured-service {
    background: var(--dark);
    border-color: var(--dark);
    grid-column: span 2;
}
.service-card.featured-service h3 { color: var(--white); }
.service-card.featured-service p { color: var(--slate); }
.service-card.featured-service .service-icon {
    background: rgba(0, 160, 240, 0.15);
    color: var(--blue-bright);
}
.service-card.featured-service:hover .service-icon {
    background: rgba(0, 160, 240, 0.2);
}
.service-card.featured-service:hover {
    border-color: var(--blue);
}
.featured-tag {
    display: inline-block;
    background: rgba(0, 214, 143, 0.15);
    color: var(--accent-green);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* ============================================
   WHY FIXSTOP
   ============================================ */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 50%, var(--blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--accent-green) 0%, transparent 50%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}
.why-card:hover {
    border-color: rgba(0, 160, 240, 0.2);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-bright);
    margin-bottom: 8px;
    line-height: 1;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ============================================
   BUY/SELL
   ============================================ */
.buysell {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.buysell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.buysell-card {
    padding: 48px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.buysell-card:hover { transform: translateY(-4px); }

.buysell-sell {
    background: linear-gradient(135deg, #EBF5FF, #F0F7FF);
    border: 1px solid #D0E4F5;
}
.buysell-buy {
    background: linear-gradient(135deg, #E8FFF5, #F0FFF8);
    border: 1px solid #B8E8D0;
}

.buysell-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.buysell-sell .buysell-icon { background: rgba(0,112,192,0.12); color: var(--blue); }
.buysell-buy .buysell-icon { background: rgba(0,214,143,0.15); color: var(--accent-green); }

.buysell-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.buysell-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 24px;
}
.buysell-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.buysell-list li {
    padding: 6px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4A5568;
    border: 1px solid rgba(0,0,0,0.06);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
}
.btn-blue:hover {
    background: var(--blue-bright);
    box-shadow: 0 8px 24px rgba(0,112,192,0.25);
    transform: translateY(-2px);
}
.btn-green {
    background: var(--accent-green);
    color: var(--dark);
}
.btn-green:hover {
    background: #00E89E;
    box-shadow: 0 8px 24px rgba(0,214,143,0.3);
    transform: translateY(-2px);
}

/* ============================================
   IT SERVICES
   ============================================ */
.it-section {
    padding: var(--section-pad) 0;
    background: var(--light);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.it-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.it-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.it-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s var(--ease);
}
.it-feature:hover {
    border-color: rgba(0,112,192,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.it-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,112,192,0.08);
    border-radius: 10px;
    color: var(--blue);
    flex-shrink: 0;
}
.it-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.it-feature p {
    font-size: 0.83rem;
    color: #64748B;
    line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-header .section-subtitle { margin: 0 auto; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s var(--ease);
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.review-stars {
    color: #FFD700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.review-text {
    font-size: 0.92rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
}
.review-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
}
.review-source {
    font-size: 0.75rem;
    color: #94A3B8;
}

/* ============================================
   REPAIR SHOWCASE (Film Strip)
   ============================================ */
.repair-showcase {
    padding: 64px 0 72px;
    background: var(--dark);
    overflow: hidden;
}
.repair-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}
.repair-showcase-header .section-label {
    justify-content: center;
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.15);
}
.repair-showcase-header .section-title {
    color: var(--white);
}
.repair-showcase-header .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
}
.film-track-wrapper {
    position: relative;
}
.film-track-wrapper::before,
.film-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.film-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}
.film-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}
.film-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: filmScroll 53s linear infinite;
}
.film-track:hover {
    animation-play-state: paused;
}
.film-track-reverse {
    animation-direction: reverse;
    margin-top: 20px;
}
@keyframes filmScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.film-card {
    flex-shrink: 0;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out);
}
.film-card:hover {
    transform: scale(1.03);
}
.film-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.film-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
}
.film-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}
.film-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}
a.film-card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.01em;
    text-decoration: none;
}
a.film-card-tag::after {
    content: '';
    position: absolute;
    inset: 0;
}
.film-card-cta {
    font-size: 0.72rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-top: 2px;
}
@media (max-width: 768px) {
    .film-card { width: 240px; }
    .film-card img { height: 170px; }
    .film-track { gap: 14px; }
    .film-track-reverse { margin-top: 14px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: var(--section-pad) 0;
    background: var(--light);
    border-top: 1px solid #E2E8F0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}
.faq-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s var(--ease);
}
.faq-item:hover {
    border-color: rgba(0,112,192,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.faq-item p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
}

/* ============================================
   AREAS SERVED (SEO)
   ============================================ */
/* SEO Content Blocks */
.seo-content {
    padding: 64px 0;
    background: var(--white);
}
.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.seo-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.seo-block p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4A5568;
}
.seo-block a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}
.seo-block a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.areas-section {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}
.areas-inner {
    text-align: center;
}
.areas-inner h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.areas-tags a {
    padding: 6px 16px;
    background: var(--light);
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #4A5568;
    transition: all 0.25s;
}
.areas-tags a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,112,192,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0,214,143,0.08) 0%, transparent 60%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn-cta {
    padding: 16px 40px;
    font-size: 1rem;
}
.cta-banner .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-outline:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark) !important;
    border-top: 1px solid var(--dark-border) !important;
    padding: 64px 0 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-logo img { display: block; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--slate);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    font-family: var(--font-main) !important;
}
.footer-col a {
    display: block !important;
    font-size: 0.88rem !important;
    color: var(--slate) !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    transition: all 0.25s;
    font-family: var(--font-main) !important;
}
.footer-col a:hover {
    color: var(--blue-bright) !important;
    padding-left: 4px !important;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--slate);
}
.footer-contact-item svg {
    color: var(--blue);
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.footer-contact-item a { display: inline; padding: 0; }
.footer-contact-item a:hover { color: var(--blue-bright); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copyright {
    font-size: 0.8rem;
    color: #4A5568;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.8rem;
    color: #4A5568;
    transition: color 0.25s;
}
.footer-legal a:hover { color: var(--blue-bright); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hide-mobile { display: none; }
    .show-mobile-only { display: inline; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 32px; overflow: visible; }
    .hero-text { min-width: 0; overflow-wrap: break-word; }
    .hero-subtitle { margin: 0 auto 28px; max-width: 100%; }
    .hero-actions { justify-content: center; flex-wrap: nowrap; margin-bottom: 32px; }
    .hero-actions .btn-cta,
    .hero-actions .btn-outline { padding: 12px 20px; font-size: 0.88rem; white-space: nowrap; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 0; }
    .hero-photo-wrapper { max-width: 480px; margin: 0 auto; }

    .nav-main { display: none; }
    .header-actions { display: none; }
    .menu-toggle { display: flex; }

    /* Center logo on mobile between empty space and burger */
    .header-inner {
        justify-content: center;
        position: relative;
    }
    .header-inner .menu-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-main.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        border-top: 1px solid #E2E8F0;
        padding: 20px 24px;
        gap: 4px;
        animation: slideDown 0.3s var(--ease-out);
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-main.mobile-open a {
        padding: 10px 14px;
        font-size: 0.92rem;
        border-radius: 8px;
        color: #4A5568;
    }
    .nav-main.mobile-open a:hover { background: rgba(0, 112, 192, 0.06); color: var(--blue); }
    .nav-main.mobile-open .nav-dropdown-wrap { display: none; }
    .nav-main.mobile-open .nav-mobile-only { display: flex !important; }

    /* Mobile nav sections */
    .nav-main.mobile-open .mobile-nav-section {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
        padding: 12px 0 4px;
        border-top: 1px solid #E8EDF2;
    }
    .nav-main.mobile-open .mobile-nav-section:first-of-type {
        border-top: none;
        padding-top: 8px;
    }
    .nav-main.mobile-open .mobile-nav-heading {
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94A3B8;
        padding: 4px 14px 6px;
    }
    .nav-main.mobile-open .mobile-nav-link {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 10px 14px !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        color: #4A5568 !important;
        text-align: left;
    }
    .nav-main.mobile-open .mobile-nav-link .icon {
        width: 1.1em;
        height: 1.1em;
        color: var(--blue);
        flex-shrink: 0;
    }
    .nav-main.mobile-open .mobile-nav-link:hover {
        background: rgba(0, 112, 192, 0.06) !important;
        color: var(--blue) !important;
    }

    /* Show phone number in mobile menu */
    .nav-main.mobile-open .mobile-phone-link {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid #E2E8F0;
        color: var(--blue);
        font-weight: 700;
    }

    /* Mobile CTA button in menu */
    .nav-main.mobile-open .mobile-cta-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 4px;
        padding: 14px 24px !important;
        background: var(--blue);
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        border-radius: 8px;
        text-align: center;
    }

    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .buysell-grid { grid-template-columns: 1fr; }
    .it-content { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .seo-content-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured-service { grid-column: span 1; }
    .service-card.featured-service > img { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    body:has(.site-header) { padding-top: 60px; }
    .header-inner { height: 60px; }
    .logo img { height: 42px; }
    .logo { padding: 6px 0; }
    .header-inner .menu-toggle { right: 8px; }
    .nav-main.mobile-open { top: 60px; }
    .hero { padding: 76px 0 42px; }
    .hero-title { font-size: 2.2rem; }
    .hero-photo-wrapper::before,
    .hero-photo-wrapper::after { display: none; }
    .hero-photo-exterior { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 12px; border: none; border-radius: 16px; }
    .hero-float-card { font-size: 0.75rem; padding: 10px 14px; }
    .hero-float-card.card-rating { right: -8px; bottom: 12px; }
    .hero-float-card.card-open { right: -8px; top: 12px; }
    .hero-stats { gap: 24px; flex-wrap: nowrap; justify-content: center; }
    .hero-stat::before { left: -13px; }
    .hero-stat-number { font-size: 1.1rem; }
    .hero-stat-label { font-size: 0.68rem; white-space: nowrap; }

    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .seo-content-grid { grid-template-columns: 1fr; }

    .buysell-card { padding: 32px 24px; }

    .faq-item { padding: 20px; }
    .film-track-wrapper::before,
    .film-track-wrapper::after { width: 40px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; gap: 12px; justify-content: center; }

    .btn-cta, .btn-outline { min-height: 44px; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* --- About Hero --- */
.about-hero {
    position: relative;
    padding: 64px 0 80px;
    background: var(--white);
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 112, 192, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 214, 143, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.about-hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-hero-content {
    max-width: 720px;
}
.about-hero-photo {
    animation: fadeIn 1s var(--ease-out) 0.5s both;
}
.about-hero-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}
.about-hero-title .accent { color: var(--blue); }

.about-hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    color: #64748B;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 600px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}
.about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

/* --- Our Story --- */
.about-story {
    padding: var(--section-pad) 0;
    background: var(--light);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-story-text h2 {
    margin-bottom: 24px;
}
.about-story-text p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
}
.about-stat-item {
    text-align: center;
}
.about-stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.about-stat-label {
    display: block;
    font-size: 0.78rem;
    color: #64748B;
    margin-top: 6px;
    font-weight: 500;
}

.about-story-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-story-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s var(--ease);
}
.about-story-card:hover {
    border-color: rgba(0,112,192,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}
.about-story-card-icon {
    margin-bottom: 16px;
}
.about-story-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.about-story-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* --- What Makes Us Different --- */
.about-difference {
    position: relative;
    padding: 80px 0 60px;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}
.about-difference-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background:
        radial-gradient(circle at 30% 50%, var(--blue) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, #7C3AED 0%, transparent 50%);
    pointer-events: none;
}
.about-difference-header {
    position: relative;
    z-index: 1;
}
.about-difference-header .section-label::before {
    background: rgba(255,255,255,0.3);
}

/* --- Expert Cards --- */
.about-experts {
    padding: 0 0 var(--section-pad);
    background: var(--dark);
    position: relative;
}
.about-experts::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--white);
}
.about-experts .container {
    position: relative;
    z-index: 1;
}

.about-experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expert-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: rgba(0,112,192,0.15);
}
.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.4s var(--ease-out);
}
.expert-card:hover .expert-avatar {
    transform: scale(1.08);
}
.expert-avatar svg {
    width: 56px;
    height: 56px;
}

.expert-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,112,192,0.08);
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 14px;
}

.expert-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.expert-specialty {
    font-size: 0.82rem;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 14px;
}

.expert-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 18px;
}

.expert-skills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.expert-skills li {
    padding: 5px 12px;
    background: var(--light);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A5568;
    border: 1px solid #E2E8F0;
    line-height: 1.4;
}
.expert-skills-inline {
    justify-content: flex-start;
}

/* Wide card (TV Repair) */
.expert-card-wide {
    grid-column: span 3;
    text-align: left;
}
.expert-card-wide-inner {
    display: flex;
    gap: 32px;
    align-items: center;
}
.expert-card-wide .expert-avatar {
    margin: 0;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}
.expert-card-wide .expert-avatar svg {
    width: 64px;
    height: 64px;
}

/* --- Quality Promise --- */
.about-promise {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.about-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-promise-text h2 {
    margin-bottom: 24px;
}
.about-promise-text p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-promise-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-promise-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s var(--ease);
}
.about-promise-item:hover {
    border-color: rgba(0,112,192,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transform: translateX(4px);
}
.about-promise-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}
.about-promise-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.about-promise-item p {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* --- About Page Responsive --- */
@media (max-width: 1024px) {
    .about-hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-hero-subtitle { margin: 0 auto 36px; }
    .about-hero-actions { justify-content: center; }
    .about-hero-photo { max-width: 520px; margin: 0 auto; }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expert-card-wide {
        grid-column: span 2;
    }
    .about-promise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 0 60px;
    }
    .about-hero-title {
        font-size: 2.2rem;
    }
    .about-story-stats {
        gap: 20px;
    }
    .about-stat-number {
        font-size: 1.5rem;
    }
    .about-experts-grid {
        grid-template-columns: 1fr;
    }
    .expert-card-wide {
        grid-column: span 1;
    }
    .expert-card-wide-inner {
        flex-direction: column;
        text-align: center;
    }
    .expert-skills-inline {
        justify-content: center;
    }
    .about-difference {
        padding: 60px 0 40px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 36px 0 48px;
    }
    .about-hero-title {
        font-size: 1.9rem;
    }
    .about-story-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* ============================================
   MICRO SOLDERING PAGE
   ============================================ */

/* --- Micro Hero --- */
.micro-hero {
    position: relative;
    padding: 64px 0 80px;
    background: var(--dark);
    overflow: hidden;
}
.micro-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 112, 192, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 214, 143, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.micro-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.micro-hero-text {
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}
.micro-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.micro-hero-title .accent { color: var(--blue-bright); }
.micro-hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 500px;
}
.micro-hero-perks {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.micro-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.micro-perk svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}
.micro-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.micro-hero-actions .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
}
.micro-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s var(--ease-out) 0.5s both;
}

/* Circuit Board SVG Illustration */
.circuit-illustration {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 180, 255, 0.15));
}
.circuit-illustration .board-bg {
    fill: var(--dark-surface);
    stroke: var(--dark-border);
    stroke-width: 1.5;
}
.circuit-illustration .trace {
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.2;
    opacity: 0.5;
}
.circuit-illustration .trace-bright {
    fill: none;
    stroke: var(--blue-bright);
    stroke-width: 1.5;
    opacity: 0.7;
}
.circuit-illustration .chip {
    fill: var(--dark-card);
    stroke: var(--blue);
    stroke-width: 1;
    rx: 4;
}
.circuit-illustration .chip-label {
    fill: var(--blue-bright);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
}
.circuit-illustration .solder-point {
    fill: var(--accent-green);
    opacity: 0.9;
}
.circuit-illustration .solder-glow {
    fill: var(--accent-green);
    opacity: 0.3;
}
.circuit-illustration .component {
    fill: var(--dark-card);
    stroke: rgba(138, 155, 176, 0.4);
    stroke-width: 0.8;
}
.circuit-illustration .pin {
    fill: var(--slate);
    opacity: 0.6;
}
/* Pulse animation on solder points */
@keyframes solderPulse {
    0%, 100% { opacity: 0.9; r: 4; }
    50% { opacity: 1; r: 6; }
}
.circuit-illustration .solder-point {
    animation: solderPulse 2.5s ease-in-out infinite;
}
.circuit-illustration .solder-point:nth-child(2) { animation-delay: 0.8s; }
.circuit-illustration .solder-point:nth-child(3) { animation-delay: 1.6s; }

/* --- Micro Trust Bar --- */
.micro-trust {
    background: var(--dark-surface);
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.micro-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 56px);
    flex-wrap: wrap;
}
.micro-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
    white-space: nowrap;
}
.micro-trust-item svg {
    color: var(--blue-bright);
    width: 1.1rem;
    height: 1.1rem;
}

/* --- Micro Features --- */
.micro-features {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.micro-features-header {
    text-align: center;
    margin-bottom: 56px;
}
.micro-features-header .section-subtitle {
    margin: 0 auto;
}
.micro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.micro-feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}
.micro-feature-card:hover {
    border-color: rgba(0, 112, 192, 0.2);
    box-shadow: 0 8px 32px rgba(0, 112, 192, 0.08);
    transform: translateY(-4px);
}
.micro-feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 16px;
    transition: all 0.3s var(--ease);
}
.micro-feature-icon svg {
    width: 36px;
    height: 36px;
}
.micro-feature-icon.icon-guarantee {
    background: rgba(0, 214, 143, 0.1);
    color: var(--accent-green);
}
.micro-feature-icon.icon-expert {
    background: rgba(0, 112, 192, 0.08);
    color: var(--blue);
}
.micro-feature-icon.icon-discount {
    background: rgba(255, 140, 66, 0.1);
    color: var(--accent-orange);
}
.micro-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.micro-feature-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
}

/* --- How It Works --- */
.micro-steps {
    padding: var(--section-pad) 0;
    background: var(--light);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.micro-steps-header {
    text-align: center;
    margin-bottom: 56px;
}
.micro-steps-header .section-subtitle {
    margin: 0 auto;
}
.micro-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
/* Connecting line between steps */
.micro-steps-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(16.67% + 12px);
    right: calc(16.67% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--accent-green));
    opacity: 0.3;
    z-index: 0;
}
.micro-step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}
.micro-step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 112, 192, 0.3);
}
.micro-step-card:nth-child(2) .micro-step-number {
    background: var(--blue-bright);
}
.micro-step-card:nth-child(3) .micro-step-number {
    background: var(--accent-green);
    color: var(--dark);
}
.micro-step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--blue);
}
.micro-step-icon svg {
    width: 32px;
    height: 32px;
}
.micro-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.micro-step-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* --- Micro CTA Banner --- */
.micro-cta {
    padding: 40px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}
.micro-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0,214,143,0.06) 0%, transparent 50%);
}
.micro-cta-content {
    position: relative;
    z-index: 1;
}
.micro-cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.micro-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.micro-cta-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    color: var(--white);
    flex-shrink: 0;
}
.micro-cta h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}
.micro-cta p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.micro-cta-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.micro-cta .btn-cta {
    background: var(--white);
    color: var(--blue);
}
.micro-cta .btn-cta:hover {
    background: var(--light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.micro-phone-highlight {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
    .micro-cta-layout {
        flex-direction: column;
        text-align: center;
    }
    .micro-cta-left {
        flex-direction: column;
    }
    .micro-cta-right {
        flex-direction: column;
    }
}

/* --- Micro Nationwide --- */
.micro-nationwide {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.micro-nationwide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.micro-nationwide-text h2 {
    margin-bottom: 20px;
}
.micro-nationwide-text p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}
.micro-nationwide-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.micro-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}
.micro-highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}
.micro-nationwide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.micro-nationwide-visual svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* --- Micro Details/FAQ --- */
.micro-details {
    padding: var(--section-pad) 0;
    background: var(--light);
    border-top: 1px solid #E2E8F0;
}
.micro-details-header {
    text-align: center;
    margin-bottom: 48px;
}
.micro-details-header .section-subtitle {
    margin: 0 auto;
}
.micro-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.micro-detail-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s var(--ease);
}
.micro-detail-card:hover {
    border-color: rgba(0, 112, 192, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.micro-detail-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.micro-detail-card h3 svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
}
.micro-detail-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
}

/* --- Micro Page Responsive --- */
@media (max-width: 1024px) {
    .micro-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .micro-hero-subtitle { margin: 0 auto 32px; }
    .micro-hero-perks { justify-content: center; }
    .micro-hero-actions { justify-content: center; }
    .micro-hero-visual { max-width: 400px; margin: 0 auto; }
    .circuit-illustration { max-width: 400px; }
    .micro-features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .micro-steps-grid::before { display: none; }
    .micro-steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .micro-nationwide-content { grid-template-columns: 1fr; text-align: center; }
    .micro-nationwide-highlights { align-items: center; }
    .micro-details-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .micro-hero { padding: 48px 0 60px; }
    .micro-hero-title { font-size: 2rem; }
    .micro-hero-perks { flex-direction: column; align-items: center; gap: 12px; }
    .micro-hero-actions { flex-direction: column; align-items: center; }
    .circuit-illustration { max-width: 300px; }
}

/* ============================================
   STORE LOCATION UC
   ============================================ */
.store-location {
    padding: var(--section-pad) 0 calc(var(--section-pad) - 20px);
    background: var(--light);
    border-top: 1px solid #E2E8F0;
}
.store-location-header {
    text-align: center;
    margin-bottom: 48px;
}
.store-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 40px;
    max-width: 960px;
    margin: 0 auto;
    transition: all 0.3s var(--ease);
}
.store-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: rgba(0,112,192,0.15);
}

.store-card-photo {
    width: 180px;
    flex-shrink: 0;
}
.store-card-photo img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.store-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.store-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
}
.store-card-name a {
    color: inherit;
    transition: color 0.25s;
}
.store-card-name a:hover {
    color: var(--blue);
}
.store-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.store-card-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}
.store-card-rating-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748B;
}
.store-card-address {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.6;
}
.store-card-address .store-plaza {
    font-style: italic;
    color: #64748B;
    font-size: 0.84rem;
}

.store-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}
.store-card-phone {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.store-card-phone a {
    color: inherit;
    transition: color 0.25s;
}
.store-card-phone a:hover {
    color: var(--blue-bright);
}
.store-card-hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(0, 214, 143, 0.1);
    border: 1px solid rgba(0, 214, 143, 0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-green);
    white-space: nowrap;
}
.store-card-hours svg {
    width: 14px;
    height: 14px;
}
.store-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    transition: all 0.25s;
    white-space: nowrap;
}
.store-card-cta:hover {
    color: #00F0A0;
    gap: 10px;
}
.store-card-cta svg {
    width: 16px;
    height: 16px;
}
.store-card-speak {
    font-size: 0.85rem;
    color: #64748B;
    text-align: right;
    line-height: 1.6;
}
.store-card-speak strong {
    color: var(--dark);
}

/* Store Location Responsive */
@media (max-width: 1024px) {
    .store-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 28px;
        gap: 24px;
    }
    .store-card-photo {
        width: 200px;
        margin: 0 auto;
    }
    .store-card-rating {
        flex-direction: column;
        gap: 4px;
    }
    .store-card-actions {
        align-items: center;
    }
    .store-card-speak {
        text-align: center;
    }
}
@media (max-width: 640px) {
    .store-card-photo {
        width: 160px;
    }
    .store-card-name {
        font-size: 1.15rem;
    }
    .store-card-phone {
        font-size: 1rem;
    }
}

/* ============================================
   SMART HOME PAGE
   ============================================ */

/* --- Smart Hero --- */
.smart-hero {
    position: relative;
    background: #F8FAFC;
    padding: 80px 0 70px;
    overflow: hidden;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.smart-hero-bg {
    display: none;
}
.smart-hero .container {
    position: relative;
    z-index: 1;
}
.smart-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.smart-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.smart-hero-title .accent {
    color: var(--blue);
}
.smart-hero-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}
.smart-hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 36px;
}
.smart-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}
.smart-perk svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}
.smart-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Smart Home House SVG */
.smart-house-illustration {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: block;
}
.smart-house-illustration .house-outline {
    fill: none;
    stroke: rgba(0,112,192,0.3);
    stroke-width: 2;
}
.smart-house-illustration .house-fill {
    fill: rgba(0,112,192,0.04);
}
.smart-house-illustration .device-icon {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.smart-house-illustration .device-label {
    fill: #64748B;
    font-family: var(--font-mono);
    font-size: 8px;
    text-anchor: middle;
    letter-spacing: 0.5px;
}
.smart-house-illustration .connection-line {
    stroke: var(--blue-bright);
    stroke-width: 0.8;
    stroke-dasharray: 4 3;
    opacity: 0.25;
}
.smart-house-illustration .hub-glow {
    fill: var(--blue-bright);
    opacity: 0.15;
}
.smart-house-illustration .hub-dot {
    fill: var(--blue-bright);
}
.smart-house-illustration .device-dot {
    fill: var(--accent-green);
}
.smart-house-illustration .device-glow {
    fill: var(--accent-green);
    opacity: 0.15;
}

@keyframes smart-pulse {
    0%, 100% { opacity: 0.15; r: 12; }
    50% { opacity: 0.3; r: 16; }
}
.smart-house-illustration .hub-glow {
    animation: smart-pulse 3s ease-in-out infinite;
}
.smart-house-illustration .device-glow {
    animation: smart-pulse 3s ease-in-out infinite 1.5s;
}

/* --- Smart Features --- */
.smart-features {
    padding: 100px 0;
    background: var(--white);
}
.smart-features-header {
    text-align: center;
    margin-bottom: 60px;
}
.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.smart-feature-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s var(--ease);
    text-align: center;
}
.smart-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: rgba(0,112,192,0.15);
}
.smart-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.smart-feature-icon svg {
    width: 30px;
    height: 30px;
}
.smart-feature-icon.icon-light {
    background: rgba(255,200,0,0.12);
    color: #E6A800;
}
.smart-feature-icon.icon-power {
    background: rgba(0,112,192,0.1);
    color: var(--blue);
}
.smart-feature-icon.icon-security {
    background: rgba(0,214,143,0.1);
    color: var(--accent-green);
}
.smart-feature-icon.icon-thermo {
    background: rgba(255,140,66,0.1);
    color: var(--accent-orange);
}
.smart-feature-icon.icon-access {
    background: rgba(0,160,240,0.1);
    color: var(--blue-bright);
}
.smart-feature-icon.icon-camera {
    background: rgba(120,80,200,0.1);
    color: #7850C8;
}
.smart-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.smart-feature-card p {
    font-size: 0.92rem;
    color: #4A5568;
    line-height: 1.65;
}

/* --- Smart CTA Banner --- */
.smart-cta {
    background: var(--blue);
    padding: 0;
}
.smart-cta-content {
    padding: 48px 0;
}
.smart-cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.smart-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}
.smart-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}
.smart-cta-left h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}
.smart-cta-left p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.smart-cta-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.smart-phone-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}
.smart-cta-right .btn-cta {
    background: var(--white);
    color: var(--blue);
}
.smart-cta-right .btn-cta:hover {
    background: rgba(255,255,255,0.9);
}

/* --- Smart How It Works --- */
.smart-steps {
    padding: 100px 0;
    background: #F8FAFC;
}
.smart-steps-header {
    text-align: center;
    margin-bottom: 60px;
}
.smart-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.smart-step-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 44px 32px 36px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s var(--ease);
}
.smart-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.smart-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.smart-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,112,192,0.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.smart-step-icon svg {
    width: 24px;
    height: 24px;
}
.smart-step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.smart-step-card p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.65;
}

/* --- Smart Contact Form --- */
.smart-contact {
    padding: 100px 0;
    background: var(--white);
}
.smart-contact-header {
    text-align: center;
    margin-bottom: 60px;
}
.smart-contact-header .section-subtitle { margin: 0 auto; }
.smart-contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.smart-form {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.06);
}
.smart-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.smart-form-subtitle {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 28px;
}
.smart-form .form-field {
    margin-bottom: 18px;
}
.smart-form .form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.smart-form .form-field input,
.smart-form .form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.smart-form .form-field input:focus,
.smart-form .form-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.smart-form .form-field input::placeholder,
.smart-form .form-field textarea::placeholder {
    color: #A0AEC0;
}
.smart-form .captcha-field {
    margin-bottom: 20px;
}
.smart-form .captcha-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.smart-form .captcha-field input {
    width: 80px;
    padding: 10px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    text-align: center;
}
.smart-form .captcha-field input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.smart-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--font-primary);
}
.smart-form .btn-submit:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
}
.smart-form .form-result {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}
.smart-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.smart-sidebar-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.06);
}
.smart-sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.smart-sidebar-card h3 svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}
.smart-sidebar-card p {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.6;
}
.smart-sidebar-phone {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    margin-top: 8px;
}
.smart-sidebar-phone a {
    color: inherit;
    transition: color 0.25s;
}
.smart-sidebar-phone a:hover {
    color: var(--blue-bright);
}
.smart-sidebar-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    background: rgba(0,214,143,0.08);
    border: 1px solid rgba(0,214,143,0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-green);
    width: fit-content;
}
.smart-sidebar-hours svg {
    width: 14px;
    height: 14px;
}
.smart-sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.smart-sidebar-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.5;
}
.smart-sidebar-benefits li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Smart Home Responsive --- */
@media (max-width: 1024px) {
    .smart-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .smart-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .smart-hero-perks {
        justify-content: center;
    }
    .smart-hero-actions {
        justify-content: center;
    }
    .smart-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .smart-cta-layout {
        justify-content: center;
        text-align: center;
    }
    .smart-cta-left {
        flex-direction: column;
        text-align: center;
    }
    .smart-cta-right {
        flex-direction: column;
    }
    .smart-steps-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .smart-contact-layout {
        grid-template-columns: 1fr;
    }
    .smart-contact-sidebar {
        order: -1;
    }
}
@media (max-width: 640px) {
    .smart-hero {
        padding: 80px 0 60px;
    }
    .smart-hero-title {
        font-size: 2rem;
    }
    .smart-features-grid {
        grid-template-columns: 1fr;
    }
    .smart-form {
        padding: 28px 22px;
    }
}

/* ============================================
   MONTHLY SPECIALS PAGE
   ============================================ */

/* --- Specials Hero --- */
.specials-hero {
    position: relative;
    background: #F8FAFC;
    padding: 80px 0 60px;
    overflow: hidden;
    color: var(--dark);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.specials-hero-bg {
    display: none;
}
.specials-hero .container {
    position: relative;
    z-index: 1;
}
.specials-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.specials-hero-title .accent {
    color: #E74C3C;
}
.specials-hero-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 520px;
    margin: 0 auto;
}

/* --- Category Cards --- */
.specials-categories {
    padding: 80px 0;
    background: var(--white);
}
.specials-categories-header {
    text-align: center;
    margin-bottom: 50px;
}
.specials-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.specials-category-card {
    display: block;
    background: #F8FAFC;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s var(--ease);
    text-decoration: none;
    color: inherit;
}
.specials-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: rgba(0,112,192,0.15);
    text-decoration: none;
    color: inherit;
}
.specials-category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.specials-category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.05));
}
.specials-category-body {
    padding: 28px 24px;
    text-align: center;
}
.specials-category-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.specials-category-body p {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 16px;
}
.specials-category-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--blue);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.25s;
}
.specials-category-card:hover .specials-category-cta {
    background: var(--blue-bright);
}

/* --- Special Detail Card --- */
.specials-detail {
    padding: 80px 0;
    background: var(--white);
}
.specials-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 32px;
    transition: color 0.25s;
}
.specials-back:hover {
    color: var(--blue-bright);
}
.specials-back svg {
    width: 16px;
    height: 16px;
}
.specials-detail-card {
    max-width: 680px;
    margin: 0 auto;
    background: #F8FAFC;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.specials-detail-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.specials-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #E74C3C;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.specials-detail-body {
    padding: 36px 40px 40px;
}
.specials-detail-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.specials-detail-desc {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 24px;
}
.specials-detail-desc ul {
    margin: 14px 0;
    padding-left: 0;
    list-style: none;
}
.specials-detail-desc li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.specials-detail-desc li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
}
.specials-detail-desc em {
    color: #64748B;
    font-size: 0.88rem;
}
.specials-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.specials-price-old {
    font-size: 1.3rem;
    color: #A0AEC0;
    text-decoration: line-through;
}
.specials-price-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-green);
    letter-spacing: -0.02em;
}
.specials-price-save {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(0,214,143,0.1);
    border: 1px solid rgba(0,214,143,0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-green);
}
.specials-mention {
    background: var(--white);
    border: 2px dashed rgba(0,112,192,0.3);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
    font-size: 0.92rem;
    color: #4A5568;
}
.specials-mention strong {
    color: var(--blue);
}

/* --- Limited Time Notice --- */
.specials-limited {
    max-width: 680px;
    margin: 40px auto 0;
    text-align: center;
    padding: 18px 24px;
    background: rgba(255,140,66,0.08);
    border: 1px solid rgba(255,140,66,0.2);
    border-radius: 14px;
    font-size: 0.92rem;
    color: #92400E;
}
.specials-limited strong {
    color: #E74C3C;
}

/* --- Specials Responsive --- */
@media (max-width: 1024px) {
    .specials-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .specials-hero {
        padding: 80px 0 60px;
    }
    .specials-hero-title {
        font-size: 2rem;
    }
    .specials-category-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .specials-detail-body {
        padding: 28px 24px 32px;
    }
    .specials-price-new {
        font-size: 2rem;
    }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */

/* --- Contact Hero --- */
.contact-hero {
    position: relative;
    background: #F8FAFC;
    padding: 80px 0 60px;
    overflow: hidden;
    color: var(--dark);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-hero-bg {
    display: none;
}
.contact-hero .container {
    position: relative;
    z-index: 1;
}
.contact-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.contact-hero-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 520px;
    margin: 0 auto 28px;
}
.contact-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}
.contact-hero-phone svg {
    width: 22px;
    height: 22px;
    color: var(--accent-green);
}
.contact-hero-phone a {
    color: inherit;
    transition: color 0.25s;
}
.contact-hero-phone a:hover {
    color: var(--blue-bright);
}

/* --- Contact Main --- */
.contact-main {
    padding: 80px 0;
    background: var(--white);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.contact-form-subtitle {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 28px;
}
.contact-form-wrap .form-field {
    margin-bottom: 18px;
}
.contact-form-wrap .form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.contact-form-wrap .form-field input,
.contact-form-wrap .form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.contact-form-wrap .form-field input:focus,
.contact-form-wrap .form-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.contact-form-wrap .form-field input::placeholder,
.contact-form-wrap .form-field textarea::placeholder {
    color: #A0AEC0;
}
.contact-form-wrap .recaptcha-wrap {
    margin-bottom: 20px;
}
.contact-form-wrap .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--font-primary);
}
.contact-form-wrap .btn-submit:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
}
.contact-form-wrap .form-result {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Contact Sidebar --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-sidebar-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-sidebar-card h3 svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}
.contact-sidebar-card p {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.6;
}
.contact-sidebar-phone {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    margin-top: 8px;
}
.contact-sidebar-phone a {
    color: inherit;
    transition: color 0.25s;
}
.contact-sidebar-phone a:hover {
    color: var(--blue-bright);
}
.contact-sidebar-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #4A5568;
    line-height: 1.5;
}
.contact-sidebar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0,214,143,0.08);
    border: 1px solid rgba(0,214,143,0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-green);
    width: fit-content;
    margin-bottom: 8px;
}
.contact-sidebar-status svg {
    width: 14px;
    height: 14px;
}

/* --- Contact Map --- */
.contact-map-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    height: 300px;
}
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.contact-store-photo {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}
.contact-store-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Non-FixStop Entity --- */
.contact-entity {
    text-align: center;
    padding: 40px 0;
}
.contact-entity-logo {
    max-height: 120px;
    max-width: 180px;
    margin-bottom: 20px;
}
.contact-entity-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-entity-info p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}
.contact-entity-hours {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.8;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        order: -1;
    }
}
@media (max-width: 1024px) {
    .contact-map-row {
        grid-template-columns: 1fr;
        height: auto;
    }
    .contact-map {
        height: 280px;
    }
    .contact-store-photo {
        height: 240px;
    }
}
@media (max-width: 640px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-form-wrap {
        padding: 28px 22px;
    }
}

/* ============================================
   CUSTOM GAMING PC PAGE
   ============================================ */

/* --- Gaming PC Hero --- */
.gpc-hero {
    position: relative;
    background: #07060b;
    padding: 64px 0 80px;
    overflow: hidden;
}
.gpc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 500px at 70% 40%, rgba(124,58,237,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 20% 60%, rgba(0,240,255,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 300px 300px at 50% 80%, rgba(0,214,143,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.gpc-hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.gpc-hero .container {
    position: relative;
    z-index: 2;
}
.gpc-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.gpc-hero-text {
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}
.gpc-hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.accent-rgb {
    background: linear-gradient(135deg, #7C3AED, #00F0FF, #00D68F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gpc-hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}
.gpc-hero-perks {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.gpc-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.gpc-perk svg {
    width: 18px;
    height: 18px;
    color: #00D68F;
    flex-shrink: 0;
}
.gpc-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.gpc-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s var(--ease-out) 0.5s both;
}
.gpc-hero-photo {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(124,58,237,0.2),
        0 0 40px rgba(0,240,255,0.1),
        0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(124,58,237,0.2);
}
.gpc-hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Gaming Trust Bar --- */
.gpc-trust {
    background: #0d0b14;
    padding: 18px 0;
    border-top: 1px solid rgba(124,58,237,0.15);
    border-bottom: 1px solid rgba(124,58,237,0.15);
}
.gpc-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    flex-wrap: wrap;
}
.gpc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    white-space: nowrap;
}
.gpc-trust-item svg {
    color: #7C3AED;
    width: 1rem;
    height: 1rem;
}

/* --- Gaming Intro --- */
.gpc-intro {
    background: linear-gradient(180deg, #07060b 0%, #0A0E14 100%);
    padding: 80px 0;
}
.gpc-intro-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.gpc-intro-content .section-label {
    color: #7C3AED;
}
.gpc-intro-content .section-label::before {
    background: #7C3AED;
}
.gpc-intro-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.gpc-intro-content p strong {
    color: rgba(255,255,255,0.9);
}

/* --- Gaming Process --- */
.gpc-process {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.gpc-process-header {
    text-align: center;
    margin-bottom: 56px;
}
.gpc-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
/* Connecting line */
.gpc-process-grid::before {
    content: '';
    position: absolute;
    top: 72px;
    left: calc(16.67% + 14px);
    right: calc(16.67% + 14px);
    height: 2px;
    background: linear-gradient(90deg, #00F0FF, #7C3AED, #00D68F);
    opacity: 0.25;
    z-index: 0;
}
.gpc-step-card {
    text-align: center;
    padding: 40px 28px;
    background: #F8FAFC;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease);
}
.gpc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.15);
}
.gpc-step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #7C3AED;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.gpc-step-card:nth-child(2) .gpc-step-number {
    background: #00F0FF;
    color: #07060b;
}
.gpc-step-card:nth-child(3) .gpc-step-number {
    background: #00D68F;
    color: #07060b;
}
.gpc-step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 14px;
}
.gpc-step-icon svg {
    width: 28px;
    height: 28px;
}
.gpc-step-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.gpc-step-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
}

/* --- Gaming Builds / Pricing --- */
.gpc-builds {
    position: relative;
    padding: var(--section-pad) 0;
    background: #07060b;
    overflow: hidden;
}
.gpc-builds-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 50% 40%, rgba(124,58,237,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 400px 300px at 20% 80%, rgba(0,240,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.gpc-builds .container {
    position: relative;
    z-index: 1;
}
.gpc-builds-header {
    text-align: center;
    margin-bottom: 56px;
}
.gpc-builds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.gpc-build-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.gpc-build-card:hover {
    border-color: rgba(124,58,237,0.3);
    background: rgba(124,58,237,0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124,58,237,0.12);
}

/* Featured build card */
.gpc-build-featured {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.06);
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(124,58,237,0.1);
}
.gpc-build-featured:hover {
    transform: scale(1.03) translateY(-6px);
}
.gpc-featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: #7C3AED;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    white-space: nowrap;
}

.gpc-build-tier {
    margin-bottom: 16px;
}
.gpc-tier-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.gpc-tier-name {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.gpc-build-badge {
    display: inline-flex;
    padding: 5px 14px;
    border: 1px solid;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}
.gpc-build-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}
.gpc-build-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.gpc-build-specs li svg {
    width: 20px;
    height: 20px;
    color: rgba(124,58,237,0.5);
    flex-shrink: 0;
}
.gpc-build-featured .gpc-build-specs li svg {
    color: #A78BFA;
}
.gpc-build-price {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.gpc-price-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gpc-price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}
.gpc-build-featured .gpc-price-value {
    background: linear-gradient(135deg, #A78BFA, #00F0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Assembly Service --- */
.gpc-assembly {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.gpc-assembly-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.gpc-assembly-text p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}
.gpc-assembly-text p strong {
    color: var(--dark);
}
.gpc-assembly-photo {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}
.gpc-assembly-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Details Grid --- */
.gpc-details {
    padding: var(--section-pad) 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}
.gpc-details-header {
    text-align: center;
    margin-bottom: 48px;
}
.gpc-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.gpc-detail-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s var(--ease);
}
.gpc-detail-card:hover {
    border-color: rgba(124,58,237,0.2);
    box-shadow: 0 4px 20px rgba(124,58,237,0.06);
}
.gpc-detail-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gpc-detail-card h3 svg {
    width: 20px;
    height: 20px;
    color: #7C3AED;
    flex-shrink: 0;
}
.gpc-detail-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
}

/* --- Explore Builds Section --- */
.gpc-explore {
    position: relative;
    padding: var(--section-pad) 0;
    background: #07060b;
    overflow: hidden;
}
.gpc-explore::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 400px at 30% 50%, rgba(0,240,255,0.04), transparent),
        radial-gradient(ellipse 500px 400px at 70% 50%, rgba(124,58,237,0.04), transparent);
    pointer-events: none;
}
.gpc-explore .container {
    position: relative;
    z-index: 1;
}
.gpc-explore-header {
    text-align: center;
    margin-bottom: 48px;
}
.gpc-explore-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}
.gpc-explore-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.gpc-explore-link:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.3);
    color: var(--white);
    transform: translateX(4px);
    text-decoration: none;
}
.gpc-explore-link > svg:first-child {
    width: 22px;
    height: 22px;
    color: #7C3AED;
    flex-shrink: 0;
}
.gpc-explore-link span {
    flex-grow: 1;
}
.gpc-explore-arrow {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: all 0.3s;
}
.gpc-explore-link:hover .gpc-explore-arrow {
    color: #7C3AED;
    transform: translateX(4px);
}

/* --- Subpage view --- */
.gpc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    transition: color 0.25s;
    text-decoration: none;
}
.gpc-back-link:hover {
    color: var(--white);
    text-decoration: none;
}
.gpc-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.gpc-subpage-content {
    padding: 60px 0 80px;
    background: var(--white);
}
.gpc-subpage-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 32px 0 12px;
    letter-spacing: -0.02em;
}
.gpc-subpage-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
}
.gpc-subpage-content p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}
.gpc-subpage-content ul {
    margin: 12px 0 20px 0;
    padding-left: 0;
    list-style: none;
}
.gpc-subpage-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.65;
}
.gpc-subpage-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7C3AED;
}
.gpc-subpage-content strong {
    color: var(--dark);
}

/* --- Gaming PC Responsive --- */
@media (max-width: 1024px) {
    .gpc-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .gpc-hero-subtitle { margin: 0 auto 28px; }
    .gpc-hero-perks { justify-content: center; }
    .gpc-hero-actions { justify-content: center; }
    .gpc-hero-visual { max-width: 400px; margin: 0 auto; }
    .gpc-hero-photo { max-width: 300px; }
    .gpc-process-grid::before { display: none; }
    .gpc-process-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .gpc-builds-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .gpc-build-featured { transform: none; }
    .gpc-build-featured:hover { transform: translateY(-6px); }
    .gpc-assembly-content { grid-template-columns: 1fr; text-align: center; }
    .gpc-assembly-photo { max-width: 500px; margin: 0 auto; }
    .gpc-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .gpc-hero { padding: 48px 0 60px; }
    .gpc-hero-title { font-size: 2.2rem; }
    .gpc-hero-perks { flex-direction: column; align-items: center; gap: 10px; }
    .gpc-hero-actions { flex-direction: column; align-items: center; }
    .gpc-trust-inner { flex-direction: column; gap: 10px; }
    .gpc-hero-photo { max-width: 240px; }
}

/* --- Gaming PC Quote Modal --- */
.gpc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.gpc-modal {
    background: #111820;
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 0 80px rgba(124,58,237,0.15), 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInUp 0.3s var(--ease-out);
}
.gpc-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
}
.gpc-modal-close:hover {
    color: var(--white);
}
.gpc-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.gpc-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.gpc-modal-header p {
    font-size: 0.88rem;
    color: var(--slate);
}
.gpc-modal-field {
    margin-bottom: 16px;
}
.gpc-modal-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gpc-modal-field input,
.gpc-modal-field textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1.5px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    font-size: 0.92rem !important;
    font-family: var(--font-main);
    color: var(--white) !important;
    background: rgba(255,255,255,0.04) !important;
    transition: border-color 0.25s;
    box-sizing: border-box;
    -webkit-appearance: none;
    height: auto !important;
    margin: 0 !important;
    box-shadow: none !important;
}
.gpc-modal-field input:focus,
.gpc-modal-field textarea:focus {
    outline: none !important;
    border-color: #7C3AED !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15) !important;
    background: rgba(255,255,255,0.06) !important;
    color: var(--white) !important;
}
.gpc-modal-field input::placeholder,
.gpc-modal-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.gpc-modal-readonly {
    color: #A78BFA !important;
    background: rgba(124,58,237,0.08) !important;
    border-color: rgba(124,58,237,0.2) !important;
    cursor: default;
}
.gpc-modal-field textarea {
    resize: vertical;
    min-height: 80px;
}
.gpc-modal-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.gpc-modal-result {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}
.gpc-modal-success {
    text-align: center;
    padding: 20px 0;
}
.gpc-modal-success svg {
    width: 56px;
    height: 56px;
    color: #00D68F;
    margin-bottom: 16px;
}
.gpc-modal-success h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.gpc-modal-success p {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
}
@media (max-width: 640px) {
    .gpc-modal {
        padding: 28px 22px;
        max-width: 100%;
    }
}

/* ============================================
   K12 EDUCATION PAGE
   ============================================ */

/* --- K12 Hero --- */
.k12-hero {
    background: #F8FAFC;
    padding: 64px 0;
    text-align: center;
}
.k12-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 16px;
}
.k12-hero-title .accent { color: var(--blue); }
.k12-hero-subtitle {
    font-size: 1.15rem;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.k12-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.k12-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.k12-hero-btn-primary {
    background: var(--blue);
    color: var(--white);
}
.k12-hero-btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}
.k12-hero-btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1.5px solid #E2E8F0;
}
.k12-hero-btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* --- K12 Breadcrumb --- */
.k12-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid #E2E8F0;
    padding: 14px 0;
    font-size: 0.88rem;
}
.k12-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.k12-breadcrumb a:hover { text-decoration: underline; }
.k12-breadcrumb span { color: #64748B; }

/* --- K12 Stats --- */
.k12-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}
.k12-stat {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 28px 16px;
    border-radius: 12px;
    text-align: center;
}
.k12-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}
.k12-stat .label {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

/* --- K12 Content --- */
.k12-content {
    padding: 64px 0;
}
.k12-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 16px;
}
.k12-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
}
.k12-content p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.k12-content ul {
    margin: 16px 0 24px 20px;
    line-height: 2;
}
.k12-content li {
    color: #4A5568;
    font-size: 1.02rem;
}

/* --- K12 Landing Cards --- */
.k12-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.k12-landing-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.35s var(--ease);
}
.k12-landing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--blue);
}
.k12-landing-card .k12-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.k12-landing-card .k12-card-icon svg {
    width: 28px;
    height: 28px;
}
.k12-landing-card h3 {
    color: var(--dark);
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
}
.k12-landing-card p {
    color: #64748B;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

/* Landing card icon variants */
.k12-icon-location { background: rgba(0,112,192,0.1); color: var(--blue); }
.k12-icon-chromebook { background: rgba(0,214,143,0.1); color: var(--accent-green); }
.k12-icon-ipad { background: rgba(255,140,66,0.1); color: var(--accent-orange); }
.k12-icon-laptop { background: rgba(124,58,237,0.1); color: #7C3AED; }
.k12-icon-screen { background: rgba(255,71,87,0.1); color: var(--accent-red); }
.k12-icon-bulk { background: rgba(21,152,149,0.1); color: #159895; }
.k12-icon-district { background: rgba(79,70,229,0.1); color: #4F46E5; }
.k12-icon-summer { background: rgba(245,158,11,0.1); color: #F59E0B; }
.k12-icon-1to1 { background: rgba(6,182,212,0.1); color: #06B6D4; }

/* --- K12 Service Cards --- */
.k12-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.k12-service-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.k12-service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--blue);
}
.k12-service-card h4 {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.k12-service-card p {
    color: #64748B;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

/* --- K12 Grid (2 col) --- */
.k12-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

/* --- K12 Feature Box --- */
.k12-feature {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--blue);
}
.k12-feature h4 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.k12-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

/* --- K12 CTA --- */
.k12-cta {
    background: var(--blue);
    padding: 56px 0;
    text-align: center;
}
.k12-cta h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.k12-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin: 0 0 28px;
}
.k12-cta .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.k12-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.k12-btn-primary {
    background: var(--white);
    color: var(--dark);
}
.k12-btn-primary:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
}
.k12-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.k12-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* --- K12 Related Links --- */
.k12-related {
    padding: 56px 0;
    border-top: 1px solid #E2E8F0;
}
.k12-related h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 24px;
}
.k12-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.k12-related-links a {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}
.k12-related-links a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* --- K12 Responsive --- */
@media (max-width: 1024px) {
    .k12-landing-grid { grid-template-columns: repeat(2, 1fr); }
    .k12-services { grid-template-columns: repeat(2, 1fr); }
    .k12-stats { grid-template-columns: repeat(2, 1fr); }
    .k12-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .k12-hero { padding: 48px 0; }
    .k12-hero-title { font-size: 1.8rem; }
    .k12-landing-grid { grid-template-columns: 1fr; }
    .k12-services { grid-template-columns: 1fr; }
    .k12-stats { grid-template-columns: repeat(2, 1fr); }
    .k12-hero-actions { flex-direction: column; align-items: center; }
}

/* ============================================
   SERVICES PAGE (ServicesNew.aspx)
   ============================================ */

/* --- Svc Hero (Categories View) --- */
.svc-hero {
    background: #F8FAFC;
    padding: 64px 0;
    text-align: center;
}
.svc-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 16px;
}
.svc-hero-title .accent { color: var(--blue); }
.svc-hero-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Svc Category Grid --- */
.svc-categories { padding: 64px 0; }
.svc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.svc-category-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.svc-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--blue);
}
.svc-category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.svc-category-card-body {
    padding: 20px 24px 28px;
}
.svc-category-card-body a {
    text-decoration: none;
}
.svc-category-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
    transition: color 0.25s;
}
.svc-category-card-body a:hover h3 { color: var(--blue); }
.svc-category-card-body p {
    font-size: 0.92rem;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* --- Svc Detail Header (Views 1 & 2) --- */
.svc-detail-header {
    background: #F8FAFC;
    padding: 64px 0;
}
.svc-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.svc-detail-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 20px;
}
.svc-detail-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748B;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.svc-detail-phone a { color: var(--blue); text-decoration: none; font-weight: 700; }
.svc-detail-phone a:hover { text-decoration: underline; }
.svc-detail-phone svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

/* --- Svc Benefits --- */
.svc-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.svc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}
.svc-benefit svg {
    width: 22px;
    height: 22px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* --- Svc Detail Actions --- */
.svc-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.svc-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.svc-detail-btn-primary {
    background: var(--blue);
    color: var(--white);
}
.svc-detail-btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}
.svc-detail-btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1.5px solid #E2E8F0;
}
.svc-detail-btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* --- Svc Detail Image (store photo + floating service photo) --- */
.svc-detail-image { display: flex; justify-content: center; }
.svc-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.svc-photo-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.svc-photo-service {
    position: absolute;
    bottom: -28px;
    left: -28px;
    width: 48%;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    background: var(--white);
    padding: 6px;
    border: 3px solid var(--white);
    z-index: 3;
    aspect-ratio: 4/3;
}
.svc-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 45%;
    height: 45%;
    background: var(--blue);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.1;
}
.svc-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 35%;
    height: 35%;
    background: var(--accent-green);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.08;
}
.svc-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    z-index: 4;
    white-space: nowrap;
}
.svc-float-card .stars { color: #FFD700; font-size: 0.7rem; }
.svc-card-rating {
    bottom: 16px;
    right: -12px;
    animation: floatUp 3s ease-in-out infinite;
}

/* --- Svc Detail Content (database HTML) --- */
.svc-detail-content {
    padding: 56px 0;
}
/* Neutralize Foundation grid classes inside DB content */
.svc-detail-content .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.svc-detail-content .row { display: block; margin: 0; max-width: 100%; width: 100%; }
.svc-detail-content .columns,
.svc-detail-content [class*="large-"],
.svc-detail-content [class*="small-"] { float: none; width: 100%; padding: 0; }
.svc-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.svc-detail-content h2:first-child { margin-top: 0; }
.svc-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}
.svc-detail-content p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.svc-detail-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}
.svc-detail-content a:hover { text-decoration: underline; }
.svc-detail-content ul {
    margin: 20px 0 28px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.svc-detail-content li {
    color: #4A5568;
    font-size: 1.02rem;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}
.svc-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.svc-detail-content img {
    max-width: 100%;
    border-radius: 16px;
    height: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.svc-detail-content .imgclass {
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

/* --- Svc Estimate Button --- */
.svc-estimate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.svc-estimate-btn:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}

/* --- Svc Cities Section --- */
.svc-cities {
    padding: 56px 0;
    background: #F8FAFC;
}
.svc-cities h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 36px;
}
.svc-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.svc-city-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.svc-city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--blue);
}
.svc-city-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.svc-city-card-body {
    padding: 20px 24px 28px;
}
.svc-city-card-body a { text-decoration: none; }
.svc-city-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
    transition: color 0.25s;
}
.svc-city-card-body a:hover h3 { color: var(--blue); }
.svc-city-card-body p {
    font-size: 0.92rem;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* --- Svc Why Choose --- */
.svc-why { padding: 72px 0; }
.svc-why-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 48px;
}
.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.svc-why-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.svc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.svc-why-card img {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: block;
}
.svc-why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
}
.svc-why-card p {
    font-size: 0.92rem;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* --- Svc Reviews override (match surrounding heading sizes) --- */
.svc-why + .reviews .section-title { font-size: 1.8rem; }
.svc-why + .reviews .section-subtitle { font-size: 0.95rem; }
.svc-why + .reviews { padding: 0 0 72px; }

/* --- Svc CTA --- */
.svc-cta {
    background: var(--blue);
    padding: 56px 0;
    text-align: center;
}
.svc-cta h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.svc-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin: 0 0 28px;
    line-height: 1.7;
}
.svc-cta p a { color: var(--white); font-weight: 700; }
.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.svc-cta-btn:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
}

/* --- Svc Responsive --- */
@media (max-width: 1024px) {
    .svc-detail-layout { grid-template-columns: 1fr; text-align: center; }
    .svc-detail-image { max-width: 400px; margin: 0 auto; }
    .svc-photo-wrapper { max-width: 400px; margin: 0 auto; }
    .svc-benefits { display: inline-block; text-align: left; }
    .svc-detail-actions { justify-content: center; }
    .svc-detail-phone { justify-content: center; }
    .svc-category-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-city-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .svc-hero { padding: 48px 0; }
    .svc-detail-header { padding: 48px 0; }
    .svc-detail-title { font-size: 1.8rem; }
    .svc-category-grid { grid-template-columns: 1fr; }
    .svc-city-grid { grid-template-columns: 1fr; }
    .svc-why-grid { grid-template-columns: 1fr; }
    .svc-detail-actions { flex-direction: column; align-items: center; }
    .svc-photo-wrapper::before,
    .svc-photo-wrapper::after { display: none; }
    .svc-photo-service { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 12px; border: none; border-radius: 14px; padding: 0; }
    .svc-float-card { font-size: 0.75rem; padding: 8px 12px; }
    .svc-card-rating { right: -6px; bottom: 12px; }
}

/* ============================================
   DATA RECOVERY PAGE
   ============================================ */

/* -- Hero -- */
.dr-hero {
    position: relative;
    padding: 64px 0 80px;
    overflow: hidden;
    background: var(--dark);
}
.dr-hero.dr-hero-light {
    background: #fff;
}
.dr-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.dr-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 16px 0 20px;
}
.dr-hero-title .accent { color: var(--blue); }
.dr-hero-subtitle {
    font-size: 1.12rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.dr-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.dr-hero-actions .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
}
.dr-hero-actions .btn-outline {
    padding: 14px 32px;
    font-size: 0.95rem;
}
.dr-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dr-hero-illustration {
    max-width: 480px;
    width: 100%;
    height: auto;
}

/* -- Trust Bar -- */
.dr-trust {
    background: var(--light);
    padding: 32px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.dr-trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.dr-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.dr-trust-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--font-mono);
}
.dr-trust-label {
    font-size: 0.82rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dr-trust-divider {
    width: 1px;
    height: 36px;
    background: #CBD5E1;
}

/* -- Process / How It Works -- */
.dr-process {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.dr-process-header {
    text-align: center;
    margin-bottom: 60px;
}
.dr-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.dr-process-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.dr-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.dr-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(0,112,192,0.08);
    margin: 0 auto 20px;
}
.dr-step-icon .icon {
    width: 1.8em;
    height: 1.8em;
    color: var(--blue);
}
.dr-process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.dr-process-step p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.65;
}
.dr-process-connector {
    display: flex;
    align-items: center;
    padding-top: 90px;
    flex-shrink: 0;
}

/* -- Pricing -- */
.dr-pricing {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--dark);
    scroll-margin-top: 80px;
}
.dr-pricing-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,112,192,0.15) 0%, transparent 60%);
}
.dr-pricing-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}
.dr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
}
.dr-pricing-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dr-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.dr-pricing-featured {
    border-color: var(--blue);
    background: linear-gradient(160deg, var(--dark-surface) 0%, rgba(0,112,192,0.08) 100%);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(0,112,192,0.15);
}
.dr-pricing-featured:hover {
    transform: scale(1.04) translateY(-6px);
}
.dr-pricing-badge {
    display: inline-block;
    background: var(--dark-card);
    color: var(--slate);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.dr-badge-popular {
    background: var(--blue);
    color: #fff;
}
.dr-pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0,160,240,0.1);
    margin: 0 auto 16px;
}
.dr-pricing-icon .icon {
    width: 1.6em;
    height: 1.6em;
    color: var(--blue-bright);
}
.dr-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.dr-pricing-price {
    margin-bottom: 24px;
}
.dr-price-label {
    display: block;
    font-size: 0.82rem;
    color: var(--slate);
    margin-bottom: 2px;
}
.dr-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-bright);
    font-family: var(--font-mono);
}
.dr-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.dr-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid var(--dark-border);
}
.dr-pricing-features li:last-child { border-bottom: none; }
.dr-pricing-features .icon {
    width: 1em;
    height: 1em;
    color: var(--accent-green);
    flex-shrink: 0;
}
.dr-pricing-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 24px;
    font-family: var(--font-mono);
}
.dr-pricing-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* -- What We Recover -- */
.dr-recover {
    padding: var(--section-pad) 0;
    background: var(--light);
}
.dr-recover-header {
    text-align: center;
    margin-bottom: 56px;
}
.dr-recover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.dr-recover-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dr-recover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dr-recover-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0,112,192,0.08);
    margin-bottom: 16px;
}
.dr-recover-icon .icon {
    width: 1.4em;
    height: 1.4em;
    color: var(--blue);
}
.dr-recover-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.dr-recover-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
}

/* -- Details -- */
.dr-details {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--dark);
}
.dr-details-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(0,112,192,0.1) 0%, transparent 50%);
}
.dr-details-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}
.dr-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dr-detail-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s var(--ease);
}
.dr-detail-card:hover {
    border-color: var(--blue);
}
.dr-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,160,240,0.1);
    margin-bottom: 16px;
}
.dr-detail-icon .icon {
    width: 1.2em;
    height: 1.2em;
    color: var(--blue-bright);
}
.dr-detail-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.dr-detail-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* -- CTA -- */
.dr-cta {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    text-align: center;
}
.dr-cta-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.dr-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.dr-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.dr-cta .btn-cta {
    background: #fff;
    color: var(--blue-deep);
}
.dr-cta .btn-cta:hover {
    background: rgba(255,255,255,0.9);
}
.dr-cta .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.dr-cta-address {
    font-size: 0.88rem !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* -- Data Recovery Responsive -- */
@media (max-width: 1024px) {
    .dr-hero-split { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .dr-hero-subtitle { margin-left: auto; margin-right: auto; }
    .dr-hero-actions { justify-content: center; }
    .dr-hero-illustration { max-width: 360px; }
    .dr-pricing-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }
    .dr-pricing-featured { grid-column: 1 / -1; max-width: 350px; margin: 0 auto; }
    .dr-recover-grid { grid-template-columns: repeat(2, 1fr); }
    .dr-process-connector { display: none; }
    .dr-process-grid { flex-wrap: wrap; gap: 40px; }
    .dr-process-step { min-width: 240px; }
}
@media (max-width: 640px) {
    .dr-hero { padding: 48px 0 60px; }
    .dr-hero-title { font-size: 1.9rem; }
    .dr-hero-illustration { max-width: 280px; }
    .dr-trust-grid { gap: 24px; }
    .dr-trust-divider { display: none; }
    .dr-trust-item { flex-direction: row; gap: 10px; }
    .dr-pricing-grid { grid-template-columns: 1fr; }
    .dr-pricing-featured { max-width: 100%; transform: none; }
    .dr-pricing-featured:hover { transform: translateY(-6px); }
    .dr-recover-grid { grid-template-columns: 1fr; }
    .dr-details-grid { grid-template-columns: 1fr; }
    .dr-process-step { min-width: 100%; }
    .dr-hero-actions { flex-direction: column; align-items: center; }
    .dr-cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================
   BLOG & CASE STUDIES
   ============================================ */

/* --- Scoped Wrapper --- */
.blog-page { font-family: var(--font-main); color: #2D3748; }

/* --- Blog Hero (List / Archive Header) --- */
.blog-hero {
    background: #F8FAFC;
    padding: 48px 24px 40px;
    text-align: center;
    margin-bottom: 32px;
    margin-top: 0;
}
.blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 16px;
}
.blog-hero h1 span { color: var(--blue); }
.blog-hero p {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.blog-hero p a { color: var(--blue); font-weight: 700; }
.blog-hero p a:hover { text-decoration: underline; }
.blog-hero p strong { color: var(--dark); }

/* --- Blog Card (Horizontal List Item) --- */
.blog-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
}
.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
/* Kill Foundation grid on card children */
.blog-card > div {
    float: none !important;
    padding: 0 !important;
    width: auto !important;
}

.blog-card-img {
    flex: 0 0 200px;
    overflow: hidden;
    border-radius: 10px;
}
.blog-card-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.blog-card-body {
    flex: 1;
    min-width: 0;
}
.blog-card-body h1,
.blog-card-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.4;
}
.blog-card-body h1 a,
.blog-card-body h2 a { color: var(--dark); text-decoration: none; transition: color 0.25s; }
.blog-card-body h1 a:hover,
.blog-card-body h2 a:hover { color: var(--blue); }

.blog-card-meta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    line-height: 1.5;
}
.blog-card-excerpt {
    font-size: 0.92rem;
    color: #4A5568;
    line-height: 1.65;
    margin: 0;
}

/* --- Blog Article (Detail View) --- */
.blog-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 64px;
}
.blog-article > .row > h1:first-of-type {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 16px;
}

/* --- Author / Date Metadata Bar --- */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.8;
    font-style: normal;
}
.blog-meta a { color: var(--blue); }
.blog-meta a:hover { text-decoration: underline; }

/* --- Featured Image --- */
.blog-featured-img {
    text-align: center;
    margin-bottom: 32px;
}
.blog-featured-img img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-height: 500px;
    object-fit: contain;
}

/* --- Article Body Typography --- */
.blog-page .entry-content h1,
.blog-page .entry-content h2,
.blog-page .blog-article .large-12 h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin: 32px 0 14px;
}
.blog-page .entry-content h3,
.blog-page .blog-article .large-12 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}
.blog-page .entry-content p,
.blog-page .blog-article .large-12 p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.blog-page .entry-content ul,
.blog-page .blog-article .large-12 ul {
    margin: 16px 0 24px 20px;
    line-height: 2;
}
.blog-page .entry-content li,
.blog-page .blog-article .large-12 li {
    color: #4A5568;
    font-size: 1.02rem;
}
.blog-page .entry-content img,
.blog-page .blog-article .large-12 img {
    max-width: 100%;
    border-radius: 8px;
    height: auto;
}
.blog-page .entry-content a {
    color: var(--blue);
    font-weight: 600;
}
.blog-page .entry-content a:hover {
    text-decoration: underline;
}

/* Blogsteps (existing classes, modernized) */
.blog-page .blogsteps {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.02rem;
}
.blog-page .blogstepsimg {
    text-align: center;
    margin: 24px 0 48px;
}
.blog-page .blogstepsimg img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* --- Share Buttons --- */
.blog-share {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

/* --- Breadcrumb (Case Study Detail) --- */
.blog-breadcrumb {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 20px;
    padding: 0;
}
.blog-breadcrumb a { color: var(--blue); }
.blog-breadcrumb a:hover { text-decoration: underline; }

/* --- Blog Page Link Colors (replaces .rdma / .rdma2) --- */
.blog-page a { color: var(--blue); }
.blog-page a:hover { color: var(--blue-deep); }
.blog-page .blog-card-body a { color: var(--dark); }
.blog-page .blog-card-body a:hover { color: var(--blue); }

/* --- List Page Bottom CTA Text --- */
.blog-list-cta {
    text-align: center;
    margin: 32px 0 48px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blog-list-cta a { color: var(--blue); font-weight: 600; }
.blog-list-cta a:hover { text-decoration: underline; }

/* --- Blog Bottom CTA Sections --- */
.blog-bottom-cta {
    background: var(--blue);
    padding: 48px 24px;
    text-align: center;
}
.blog-bottom-cta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.4;
}
.blog-bottom-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
    line-height: 1.6;
}
.blog-bottom-cta a.blog-cta-phone {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.blog-bottom-cta a.blog-cta-phone:hover { text-decoration: underline; }
.blog-bottom-cta-alt {
    background: #F8FAFC;
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.blog-bottom-cta-alt h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.4;
}
.blog-bottom-cta-alt p {
    font-size: 1rem;
    color: #64748B;
    margin: 0 0 20px;
    line-height: 1.6;
}
.blog-bottom-cta-alt .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.blog-bottom-cta-alt .btn-cta:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}

/* --- Blog & Case Studies Responsive --- */
@media (max-width: 1024px) {
    .blog-card { gap: 18px; padding: 20px; }
    .blog-card-img { flex: 0 0 160px; }
    .blog-card-img img { height: 120px; }
}
@media (max-width: 640px) {
    .blog-hero { padding: 32px 16px 24px; }
    .blog-hero h1 { font-size: 1.5rem; }
    .blog-card {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .blog-card-img { flex: none; }
    .blog-card-img img { height: 180px; width: 100%; }
    .blog-article { padding: 28px 16px 48px; }
    .blog-meta { font-size: 0.8rem; }
    .blog-bottom-cta { padding: 36px 16px; }
    .blog-bottom-cta a.blog-cta-phone { font-size: 1.25rem; }
    .blog-bottom-cta-alt { padding: 36px 16px; }
}

/* ============================================
   WARRANTY PAGE
   ============================================ */
.war-hero {
    background: #F8FAFC;
    padding: 64px 0;
    text-align: center;
}
.war-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    margin: 0 0 18px;
}
.war-hero-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.war-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Warranty Tiers --- */
.war-tiers {
    padding: 80px 0;
}
.war-tiers-header {
    text-align: center;
    margin-bottom: 48px;
}
.war-tiers-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
}
.war-tiers-header p {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.war-tiers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}
.war-tier-card {
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.war-tier-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.war-tier-card.war-tier-featured {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0, 112, 192, 0.1);
}
.war-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.war-tier-badge-default {
    background: #F0F4F8;
    color: #64748B;
}
.war-tier-badge-lifetime {
    background: rgba(0, 112, 192, 0.08);
    color: var(--blue);
}
.war-tier-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
}
.war-tier-price {
    font-size: 0.95rem;
    color: #64748B;
    margin: 0 0 20px;
    font-weight: 600;
}
.war-tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.war-tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--dark);
    line-height: 1.5;
}
.war-tier-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.war-tier-list .check { color: var(--accent-green); }
.war-tier-list .x-mark { color: #CBD5E1; }
.war-tier-note {
    font-size: 0.82rem;
    color: #94A3B8;
    font-style: italic;
    margin: 0;
}

/* --- Warranty Details --- */
.war-details {
    padding: 72px 0;
    background: #F8FAFC;
}
.war-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}
.war-detail-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #E2E8F0;
}
.war-detail-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.war-detail-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex-shrink: 0;
}
.war-detail-card p {
    font-size: 0.92rem;
    color: #64748B;
    margin: 0;
    line-height: 1.7;
}

/* --- Warranty FAQ --- */
.war-faq {
    padding: 72px 0;
}
.war-faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.war-faq-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
}
.war-faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.war-faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
}
.war-faq-q {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}
.war-faq-a {
    font-size: 0.92rem;
    color: #64748B;
    margin: 0;
    line-height: 1.7;
}

/* --- Warranty CTA --- */
.war-cta {
    background: var(--blue);
    padding: 56px 0;
    text-align: center;
}
.war-cta h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.war-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin: 0 0 28px;
    line-height: 1.7;
}
.war-cta p a { color: var(--white); font-weight: 700; }
.war-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.war-cta-btn:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
}

/* --- Warranty Responsive --- */
@media (max-width: 768px) {
    .war-tiers-grid { grid-template-columns: 1fr; max-width: 420px; }
    .war-details-grid { grid-template-columns: 1fr; max-width: 420px; }
    .war-hero { padding: 48px 0; }
}

/* ============================================
   BUSINESS SERVICES PAGE
   ============================================ */
.biz-hero {
    background: #F8FAFC;
    padding: 64px 0;
    text-align: center;
}
.biz-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    margin: 0 0 18px;
}
.biz-hero-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.biz-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.biz-hero-actions .btn-cta,
.biz-hero-actions .btn-outline {
    padding: 14px 32px;
    font-size: 0.95rem;
}

/* --- Business Category Sections --- */
.biz-category {
    padding: 72px 0;
}
.biz-category:nth-child(even) {
    background: #F8FAFC;
}
.biz-category-header {
    text-align: center;
    margin-bottom: 48px;
}
.biz-category-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
}
.biz-category-header p {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.biz-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s var(--ease);
}
.biz-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.biz-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.biz-card-icon svg {
    width: 28px;
    height: 28px;
}
.biz-card-icon.biz-icon-blue { background: rgba(0, 112, 192, 0.08); color: var(--blue); }
.biz-card-icon.biz-icon-green { background: rgba(0, 214, 143, 0.08); color: var(--accent-green); }
.biz-card-icon.biz-icon-orange { background: rgba(255, 140, 66, 0.08); color: var(--accent-orange); }
.biz-card-icon.biz-icon-purple { background: rgba(124, 58, 237, 0.08); color: #7C3AED; }
.biz-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
}
.biz-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
}

/* --- Business CTA --- */
.biz-cta {
    background: var(--blue);
    padding: 56px 0;
    text-align: center;
}
.biz-cta h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.biz-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin: 0 0 28px;
    line-height: 1.7;
}
.biz-cta p a { color: var(--white); font-weight: 700; }
.biz-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.biz-cta-btn:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
}

/* --- Business Responsive --- */
@media (max-width: 1024px) {
    .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .biz-hero { padding: 48px 0; }
    .biz-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .biz-category { padding: 48px 0; }
}

/* ============================================
   APPOINTMENT PAGE
   ============================================ */

/* --- Loading Overlay --- */
.appt-loading {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.88); z-index: 2147483647;
    display: flex; align-items: center; justify-content: center;
}

/* --- Page Wrapper --- */
.appt-page {
    max-width: 1020px;
    margin: 0 auto;
    padding: 48px 32px 72px;
    font-family: var(--font-main);
}

/* --- Error Banner --- */
.appt-error {
    background: #FEF2F2; border: 1px solid #FECACA; border-radius: 12px;
    padding: 16px 20px; margin-bottom: 24px; color: #991B1B;
    font-size: 14px; line-height: 1.5;
}
.appt-error ul { list-style: none; margin: 0; padding: 0; }

/* --- Step Indicator --- */
.appt-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0;
}
.appt-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: #CBD5E1;
    white-space: nowrap;
    transition: color 0.3s;
}
.appt-step::before {
    content: attr(data-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    background: #fff;
    color: #CBD5E1;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s;
}
.appt-step--active {
    color: var(--blue);
    font-weight: 600;
}
.appt-step--active::before {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,112,192,0.25);
}
.appt-step--done {
    color: var(--accent-green);
    font-weight: 600;
}
.appt-step--done::before {
    content: "\2713";
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
    font-size: 15px;
}
.appt-step-divider {
    width: 28px;
    height: 2px;
    background: #E2E8F0;
    margin: 0 6px;
    border-radius: 1px;
    flex-shrink: 0;
    transition: background 0.3s;
}
.appt-step--done + .appt-step-divider {
    background: var(--accent-green);
}

/* --- Page Description --- */
.appt-desc {
    text-align: center;
    margin: 0 auto 36px;
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
}

/* --- Service Type Cards (View 0) --- */
.appt-svc-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 36px;
    line-height: 1.3;
}
.appt-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.appt-svc-card {
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 44px 28px 36px;
    text-align: center;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.appt-svc-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,112,192,0.12);
    transform: translateY(-4px);
}
.appt-svc-featured {
    border-color: var(--accent-green);
    box-shadow: 0 4px 20px rgba(0,214,143,0.10);
    position: relative;
}
.appt-svc-featured .appt-svc-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--accent-green); color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 14px; border-radius: 20px; letter-spacing: 0.03em;
    white-space: nowrap;
}
/* In-Store first in HTML (mobile), centered on desktop via order */
.appt-svc-grid > :nth-child(1) { order: 2; } /* In-Store -> center */
.appt-svc-grid > :nth-child(2) { order: 1; } /* At My Location -> left */
.appt-svc-grid > :nth-child(3) { order: 3; } /* Mail-In -> right */
.appt-svc-card img {
    width: 100px;
    height: auto;
    margin-bottom: 24px;
}
.appt-svc-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
    line-height: 1.3;
}
.appt-svc-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 24px;
    flex-grow: 1;
}
.appt-svc-card .appt-hours {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 13px;
}
.appt-svc-btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
    margin-top: auto;
}
.appt-svc-card:hover .appt-svc-btn {
    background: var(--blue-bright);
}

/* --- Location Cards (View 1) --- */
.appt-loc-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.appt-loc-card {
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px 28px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.appt-loc-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(0,112,192,0.08);
}
.appt-loc-card h3 {
    font-size: 18px; font-weight: 700; color: var(--dark);
    margin: 0 0 6px; line-height: 1.3;
}
.appt-loc-card .appt-loc-sub {
    font-size: 13px; color: #94A3B8; font-style: italic;
    margin-bottom: 6px;
}
.appt-loc-card .appt-loc-address {
    font-size: 14px; color: #64748B; margin-bottom: 10px;
}
.appt-loc-card .appt-loc-hours {
    font-size: 13px; font-weight: 600; color: var(--accent-green);
}
.appt-loc-select {
    display: inline-block; margin-top: 12px; padding: 9px 22px;
    border-radius: 8px; background: var(--blue); color: #fff;
    font-weight: 600; font-size: 13px; transition: background 0.2s;
}
.appt-loc-card:hover .appt-loc-select { background: var(--blue-bright); }

/* --- Category & Product Grid (View 2) --- */
.appt-cat-header {
    text-align: center;
    margin-bottom: 28px;
}
.appt-cat-header h3 {
    font-size: 24px; font-weight: 700; color: var(--dark); margin: 0;
}
.appt-cat-back {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    display: inline !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500;
    color: #94A3B8;
    padding: 0 !important;
    margin: 0 6px 0 0 !important;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    vertical-align: baseline;
    font-family: var(--font-main);
    line-height: inherit;
}
.appt-cat-back:hover { color: var(--blue); background: none !important; }
.appt-model-link {
    display: block; text-align: center; margin-top: 8px; margin-bottom: 20px;
    color: var(--blue); font-size: 13px; text-decoration: underline; cursor: pointer;
}
.appt-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 920px;
}
.appt-cat-card {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 32px 20px 24px;
    text-align: center;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.appt-cat-card:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(0,112,192,0.10);
    transform: translateY(-3px);
}
.appt-cat-card img {
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.appt-cat-card .appt-cat-name {
    font-size: 14px; font-weight: 600; color: var(--blue); line-height: 1.3;
}
.appt-cat-card .appt-product-name {
    font-size: 13px; color: #475569; line-height: 1.3;
}

/* --- Date & Time (View 3) --- */
.appt-datetime {
    max-width: 600px; margin: 0 auto;
}
.appt-datetime h3 {
    font-size: 22px; font-weight: 700; color: var(--dark);
    margin: 0 0 6px; text-align: center;
}
.appt-datetime .appt-datetime-sub {
    text-align: center; font-size: 14px; color: #64748B; margin-bottom: 24px;
}
.appt-datetime label {
    display: block; font-size: 14px; color: #475569;
    margin-bottom: 8px; font-weight: 500;
}
.appt-datetime .input-text,
.appt-datetime input[type="text"] {
    width: 100%; padding: 12px 16px; border: 2px solid #E2E8F0;
    border-radius: 10px; font-size: 15px; transition: border-color 0.2s;
    box-sizing: border-box;
}
.appt-datetime .input-text:focus,
.appt-datetime input[type="text"]:focus {
    border-color: var(--blue); outline: none;
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.appt-time-slots { margin-top: 24px; }
.appt-time-slots > label {
    font-weight: 500; margin-bottom: 16px; font-size: 15px;
    color: #334155; text-align: center; display: block;
}
.appt-time-slots .rblapt table {
    width: 100%; border-collapse: separate; border-spacing: 10px;
}
.appt-time-slots .rblapt td {
    background: #fff; border: 2px solid #E2E8F0; border-radius: 12px;
    padding: 14px 16px; text-align: center; font-size: 15px;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    color: #334155;
}
.appt-time-slots .rblapt td:hover {
    border-color: var(--blue); background: #EFF6FF; color: var(--blue);
}
.appt-time-slots .rblapt td:has(input:checked) {
    border-color: var(--blue); background: var(--blue); color: #fff;
}
.appt-time-slots .rblapt input[type="radio"] {
    display: none;
}
.appt-time-slots .rblapt td label {
    display: inline; margin: 0; font-weight: 600; cursor: pointer;
}
.appt-change-date {
    display: inline-block; margin-left: 8px; padding: 5px 14px;
    border-radius: 6px; background: #F1F5F9; color: var(--blue);
    font-size: 12px; font-weight: 600; border: none; cursor: pointer;
    transition: background 0.2s;
}
.appt-change-date:hover { background: #E2E8F0; }

/* --- Customer Info Form (View 4 / View61) --- */
.appt-form {
    max-width: 640px; margin: 0 auto;
}
.appt-form h2 {
    font-size: 22px; font-weight: 700; color: var(--blue);
    text-align: center; margin: 0 0 8px;
}
.appt-form h2 span { font-weight: 400; }
.appt-form-divider {
    width: 60px; height: 3px; background: var(--blue); border-radius: 2px;
    margin: 0 auto 28px;
}
.appt-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 16px;
}
.appt-form-row--wide { grid-template-columns: 1fr; }
.appt-form-row--triple { grid-template-columns: 1fr 1fr 1fr; }
.appt-form-group { display: flex; flex-direction: column; }
.appt-form-group label {
    font-size: 13px; font-weight: 600; color: #475569;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em;
}
.appt-form-group label .appt-label-hint {
    font-weight: 400; text-transform: none; font-size: 12px; color: #94A3B8;
}
.appt-form-group input,
.appt-form-group textarea,
.appt-form-group select {
    padding: 12px 16px; border: 2px solid #E2E8F0; border-radius: 10px;
    font-size: 15px; transition: border-color 0.2s; font-family: inherit;
    box-sizing: border-box;
}
.appt-form-group input:focus,
.appt-form-group textarea:focus,
.appt-form-group select:focus {
    border-color: var(--blue); outline: none;
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.appt-form-group textarea { resize: vertical; min-height: 80px; }
.appt-form-section {
    margin-top: 36px; margin-bottom: 28px;
}
.appt-form-section h2 { margin-bottom: 8px; }

/* --- Review / Confirm (View 5) --- */
.appt-review {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.appt-review > div {
    background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
    padding: 24px 28px;
}
.appt-review h3 {
    font-size: 12px; font-weight: 700; color: #94A3B8;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin: 0 0 12px; display: flex; align-items: center; gap: 8px;
    padding-top: 20px; border-top: 1px solid #F1F5F9;
}
.appt-review > div > h3:first-child,
.appt-review > div > span:first-child + h3 {
    border-top: none; padding-top: 0;
}
.appt-review > div > span > h3 { border-top: none; padding-top: 0; }
.appt-review-edit {
    font-size: 12px; font-weight: 500; color: var(--blue);
    text-decoration: underline; text-transform: none; letter-spacing: 0;
    cursor: pointer;
}
.appt-review-block {
    margin-bottom: 16px; line-height: 1.7; font-size: 14px; color: #475569;
}
.appt-review-block strong { color: var(--dark); }
.appt-cart-message {
    text-align: center; line-height: 1.6; font-size: 14px; color: #64748B;
    padding: 20px 16px; margin: 0;
}

/* --- Cart Table --- */
.appt-cart {
    border-radius: 10px; overflow: hidden; border: 1px solid #F1F5F9;
    background: #FAFBFC;
}
.appt-cart table { width: 100%; border-collapse: collapse; }
.appt-cart thead th {
    background: #F8FAFC; padding: 12px 14px; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    color: #64748B; text-align: left; border-bottom: 1px solid #E2E8F0;
}
.appt-cart tbody td {
    padding: 12px 14px; font-size: 14px; color: #334155;
    border-bottom: 1px solid #F1F5F9; vertical-align: middle;
}
.appt-cart tbody td img { max-height: 44px; max-width: 44px; border-radius: 6px; }
.appt-cart tfoot td, .appt-cart tfoot th {
    padding: 10px 14px; font-size: 14px; color: #334155;
    border-bottom: 1px solid #F1F5F9;
}
.appt-cart .cart-discount { color: var(--accent-green); font-weight: 600; }
.appt-cart .cart-total td, .appt-cart .cart-total th {
    font-size: 16px; font-weight: 700; color: var(--dark);
    border-bottom: none;
}
.appt-promo {
    display: flex; gap: 8px; align-items: center; margin-top: 8px;
}
.appt-promo input {
    flex: 1; padding: 8px 12px; border: 2px solid #E2E8F0;
    border-radius: 8px; font-size: 14px;
}
.appt-promo button, .appt-promo input[type="submit"] {
    padding: 8px 16px; border-radius: 8px; background: #64748B;
    color: #fff; font-size: 13px; font-weight: 600; border: none; cursor: pointer;
}

/* --- Price Quote (View 6) --- */
.appt-quote { text-align: center; padding: 24px 0; }
.appt-quote-change {
    font-size: 13px; font-weight: 500; color: #64748B;
    text-decoration: underline; text-transform: none; margin-bottom: 14px;
    display: block; text-align: left;
}
.appt-quote-heading {
    font-size: 44px; font-weight: 700; color: var(--dark); margin: 0 0 8px;
}
.appt-quote-service {
    font-size: 15px; color: #64748B; line-height: 1.5; margin-bottom: 16px;
}
.appt-quote-service b { color: var(--blue); }
.appt-quote-price-wrap {
    margin: 0 0 16px; padding: 12px 0;
}
.appt-quote-original {
    font-size: 28px; color: #94A3B8; text-decoration: line-through;
    vertical-align: middle; margin-right: 8px;
}
.appt-quote-amount {
    font-size: 72px; font-weight: 700; color: var(--blue); line-height: 1;
}
.appt-quote-ask {
    font-size: 16px; color: #475569; line-height: 1.6;
    display: block; max-width: 640px; margin: 8px auto 0;
}
.appt-quote-guarantee {
    display: flex; justify-content: center; margin-top: 14px;
}
.appt-quote-guarantee a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--accent-green); font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px;
    cursor: pointer; transition: opacity 0.2s;
}
.appt-quote-guarantee a:hover { opacity: 0.8; }
.appt-quote-guarantee svg { flex-shrink: 0; }

/* --- Not Repairing Bar --- */
.appt-not-repairing {
    margin-top: 48px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: #F4F6F8;
    border-top: 1px solid #E8ECF0;
    padding: 18px 24px;
}
.appt-nr-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.appt-nr-label {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
}
.appt-nr-link {
    font-size: 14px;
    color: #64748B;
    text-decoration: underline;
    transition: color 0.2s;
}
.appt-nr-link:hover { color: var(--blue); }
.appt-nr-sep {
    color: #D1D5DB;
    font-size: 14px;
}

/* --- Modal Panels --- */
.appt-modal {
    min-width: 300px; max-width: 480px;
    background: #fff !important; border-radius: 16px; padding: 36px 32px;
    border: none !important; box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    text-align: center; z-index: 100001 !important;
}
.appt-modal-close {
    position: absolute; top: 14px; right: 18px;
    color: #94A3B8; font-size: 22px; font-weight: bold;
    text-decoration: none; cursor: pointer; line-height: 1;
    transition: color 0.2s;
}
.appt-modal-close:hover { color: var(--dark); }
.appt-modal h1, .appt-modal h2 {
    font-size: 22px; font-weight: 700; color: var(--dark);
    margin: 0 0 12px; line-height: 1.3;
}
.appt-modal p, .appt-modal .appt-modal-desc {
    font-size: 14px; color: #64748B; line-height: 1.6; margin-bottom: 20px;
}
.appt-modal .appt-modal-price {
    font-size: 15px; font-weight: 600; color: var(--dark);
    margin: 16px 0; padding: 16px; background: #F8FAFC;
    border-radius: 10px; border: 1px solid #E2E8F0; text-align: center;
}
.appt-modal .appt-modal-price strong {
    font-size: 22px; color: var(--blue); font-weight: 700;
}
.appt-modal .appt-modal-price span {
    display: block; font-size: 13px; font-weight: 400; color: #64748B;
    margin-top: 4px;
}
.appt-modal-actions {
    display: flex; gap: 10px; justify-content: center;
    margin-top: 24px;
}
.appt-modal input[type="text"],
.appt-modal input[type="tel"] {
    width: 260px; max-width: 100%; padding: 12px 16px; border: 2px solid #E2E8F0;
    border-radius: 10px; font-size: 16px; text-align: center;
    margin: 0 auto 10px; display: block; box-sizing: border-box;
}
.appt-modal input:focus {
    border-color: var(--blue); outline: none;
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.appt-modal-icon { font-size: 36px; margin-bottom: 8px; }

/* --- Buttons --- */
.appt-btn {
    display: inline-block; padding: 14px 32px; border-radius: 10px;
    font-size: 16px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; border: none; text-decoration: none;
    text-align: center; font-family: var(--font-main);
    text-transform: none !important;
}
.appt-btn--primary { background: var(--blue); color: #fff !important; }
.appt-btn--primary:hover { background: var(--blue-bright); }
.appt-btn--secondary { background: #F1F5F9; color: #475569 !important; }
.appt-btn--secondary:hover { background: #E2E8F0; }
.appt-btn--large { padding: 16px 40px; font-size: 18px; }
.appt-btn--sm { padding: 10px 20px; font-size: 14px; }
.appt-btn--ghost {
    background: none; color: var(--blue) !important; border: 2px solid var(--blue);
}
.appt-btn--ghost:hover { background: var(--blue); color: #fff !important; }

.appt-center { text-align: center; }
.appt-mt { margin-top: 24px; }
.appt-mb { margin-bottom: 24px; }

/* --- Bottom CTA --- */
.appt-cta {
    background: var(--dark);
    padding: 64px 24px;
    text-align: center;
}
.appt-cta h2 {
    color: #fff; font-size: 28px; font-weight: 700;
    margin: 0 auto 12px; max-width: 640px;
}
.appt-cta p {
    color: #CBD5E1; font-size: 18px; font-weight: 400;
    margin: 0 auto; line-height: 1.6; max-width: 640px;
}
.appt-cta strong { color: #fff; font-weight: 700; }

/* --- Modal Background --- */
.appt-modal-bg {
    background: rgba(0,0,0,0.5);
    z-index: 100000;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .appt-review { gap: 24px; }
}
@media (max-width: 768px) {
    .appt-page { padding: 28px 16px 48px; }
    .appt-steps { gap: 0; }
    .appt-step { font-size: 12px; gap: 6px; }
    .appt-step::before { width: 28px; height: 28px; font-size: 12px; }
    .appt-step-divider { width: 24px; margin: 0 4px; }
    .appt-svc-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 16px; }
    .appt-svc-grid > * { order: 0 !important; } /* reset to source order on mobile */
    .appt-svc-card { padding: 28px 24px; }
    .appt-svc-card img { width: 64px; margin-bottom: 16px; }
    .appt-svc-card h2 { font-size: 18px; margin-bottom: 8px; }
    .appt-svc-card p { font-size: 13px; margin-bottom: 14px; }
    .appt-svc-btn { font-size: 13px; padding: 10px 24px; }
    .appt-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .appt-cat-card { padding: 20px 12px; }
    .appt-cat-card img { height: 64px; }
    .appt-review { grid-template-columns: 1fr; }
    .appt-quote-heading { font-size: 32px; }
    .appt-quote-amount { font-size: 56px; }
    .appt-quote-original { font-size: 22px; }
    .appt-quote-ask { font-size: 18px; }
    .appt-form-row { grid-template-columns: 1fr; }
    .appt-form-row--triple { grid-template-columns: 1fr; }
    .appt-cta h2 { font-size: 22px; }
    .appt-cta p { font-size: 16px; }
}
@media (max-width: 480px) {
    .appt-page { padding: 20px 14px 36px; }
    .appt-steps { margin-bottom: 32px; }
    .appt-step { font-size: 0; gap: 0; } /* circles only on small phones */
    .appt-step::before { width: 30px; height: 30px; font-size: 13px; }
    .appt-step-divider { width: 20px; }
    .appt-svc-title { font-size: 21px; margin-bottom: 24px; }
    .appt-cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .appt-cat-card { padding: 18px 10px; }
    .appt-cat-card img { height: 56px; }
    .appt-quote-amount { font-size: 44px; }
    .appt-btn--large { padding: 14px 28px; font-size: 16px; }
}

/* ============================================
   EMAIL CHECKOUT PAGE
   ============================================ */
/* Hide site header & footer on checkout */
body:has(.co-page) .site-header,
body:has(.co-page) .header-wrapper,
body:has(.co-page) .footer-wrapper,
body:has(.co-page) .site-footer {
    display: none !important;
}

.co-page {
    background: var(--light);
    padding: 40px 0 60px;
    min-height: 100vh;
    font-family: var(--font-main);
}
.co-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.co-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
.co-col-main { min-width: 0; }
.co-col-side { min-width: 0; }
.co-col-full { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
.co-card-sticky {
    position: sticky;
    top: 24px;
}

/* -- Header / Logo / Steps -- */
.co-header {
    text-align: center;
    margin-bottom: 32px;
}
.co-logo {
    margin-bottom: 24px;
}
.co-logo-img {
    display: inline-block;
    max-width: 160px;
    height: auto;
}
.co-business-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 8px;
}
.co-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    color: #94A3B8;
    font-weight: 600;
}
.co-step {
    display: flex;
    align-items: center;
    gap: 6px;
}
.co-step-done {
    color: var(--accent-green);
}
.co-step-icon {
    width: 16px;
    height: 16px;
}
.co-step-active {
    color: var(--blue);
    font-weight: 700;
}
.co-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
}
.co-step-divider {
    width: 24px;
    height: 1px;
    background: #CBD5E1;
}

/* -- Cards -- */
.co-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
}
.co-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
}
.co-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    flex: 1;
}
.co-card-icon {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex-shrink: 0;
}
.co-cc-icons {
    max-width: 140px;
    height: auto;
    flex-shrink: 0;
}

/* -- Order Table -- */
.co-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.co-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94A3B8;
    font-weight: 600;
    padding: 0 0 10px;
    border-bottom: 1px solid #E2E8F0;
    text-align: left;
}
.co-table thead th:last-child { text-align: right; }
.co-table tbody td {
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    color: #334155;
}
.co-qty {
    color: #94A3B8;
    font-size: 0.85rem;
    white-space: nowrap;
    width: 40px;
    text-align: center;
}
.co-price {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}
.co-table tfoot th,
.co-table tfoot td {
    padding: 10px 0;
    border: none;
    color: #64748B;
    font-size: 0.88rem;
    text-align: left;
}
.co-table tfoot td { text-align: right; font-weight: 600; }
.co-table tfoot th { font-weight: 500; }
.co-row-paid th, .co-row-paid td { color: var(--accent-green) !important; }
.co-row-total th, .co-row-total td {
    font-size: 1rem !important;
    color: #1a1a2e !important;
    font-weight: 700 !important;
    border-top: 2px solid #E2E8F0;
    padding-top: 14px !important;
}
.co-row-pay th, .co-row-pay td {
    color: var(--blue) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding-top: 14px !important;
}
.co-muted { font-weight: 400; color: #94A3B8; }
.co-pay-input { display: inline-flex; align-items: center; gap: 2px; }
.co-amount-input {
    width: 100px;
    padding: 8px 10px;
    border: 2px solid var(--blue);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    font-family: var(--font-mono);
    color: #1a1a2e;
    background: #F8FAFC;
    outline: none;
    transition: border-color 0.2s;
}
.co-amount-input:focus {
    border-color: var(--blue-bright);
    background: #fff;
}

/* -- Form Fields -- */
.co-field {
    margin-bottom: 16px;
}
.co-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}
.co-req { color: var(--accent-red); }
.co-input,
.co-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.co-input:focus,
.co-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,112,192,0.1);
}
.co-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.co-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.co-field-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.co-save-card {
    margin-top: 8px;
    font-size: 0.88rem;
    color: #64748B;
}
.co-save-card span {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}
.co-save-card input[type="checkbox"] {
    margin: 0 !important;
    accent-color: var(--blue);
    flex-shrink: 0;
}
.co-save-card label {
    display: inline !important;
    margin: 0 !important;
    font-size: 0.88rem;
    font-weight: 400;
    color: #64748B;
}

/* -- Error -- */
.co-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 14px 18px;
    color: #B91C1C;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* -- Submit -- */
.co-submit {
    text-align: center;
    margin-bottom: 40px;
}
.co-declined {
    display: block;
    color: #B91C1C;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.co-pay-btn {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    background: var(--blue);
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background 0.2s, transform 0.2s;
}
.co-pay-btn:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
}
.co-retry-btn {
    background: var(--accent-orange);
    margin-top: 10px;
}
.co-retry-btn:hover {
    background: #E07830;
}
.co-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: #94A3B8;
}

/* -- Checkout Responsive -- */
@media (max-width: 860px) {
    .co-layout {
        grid-template-columns: 1fr;
    }
    .co-col-side {
        order: -1;
    }
    .co-card-sticky {
        position: static;
    }
}
@media (max-width: 640px) {
    .co-page { padding: 30px 0 40px; }
    .co-card { padding: 20px 16px; }
    .co-field-row { grid-template-columns: 1fr; }
    .co-field-row-3 { grid-template-columns: 1fr 1fr; }
    .co-steps { font-size: 0.72rem; gap: 8px; }
    .co-cc-icons { max-width: 100px; }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.ty-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    font-family: var(--font-main);
}
.ty-container {
    max-width: 560px;
    text-align: center;
}
.ty-icon {
    margin-bottom: 24px;
}
.ty-icon svg {
    width: 80px;
    height: 80px;
}
.ty-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.ty-message {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 32px;
}
.ty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ty-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--blue);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    font-family: var(--font-main);
}
.ty-btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
}
.ty-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: #fff;
    color: var(--blue) !important;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--font-main);
}
.ty-btn-secondary:hover {
    border-color: var(--blue);
    background: #F8FAFC;
}
@media (max-width: 640px) {
    .ty-page { padding: 60px 16px 40px; }
    .ty-heading { font-size: 1.7rem; }
    .ty-message { font-size: 0.95rem; }
    .ty-actions { flex-direction: column; }
    .ty-btn-primary, .ty-btn-secondary { width: 100%; justify-content: center; }
}

/* ============================================
   FRANCHISE PAGE
   ============================================ */
.fr-page {
    padding: 0;
    min-height: 70vh;
    background: var(--white);
}
.fr-page .row,
.fr-page .columns,
.fr-page [class*="large-"] {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.fr-page .row::before,
.fr-page .row::after {
    display: none !important;
}

/* Hero */
.fr-hero {
    position: relative;
    overflow: hidden;
}
.fr-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fr-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.92) 0%, rgba(0, 74, 128, 0.85) 100%);
}
.fr-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}
.fr-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.fr-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.fr-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 28px;
    max-width: 480px;
}
.fr-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fr-hero-screenshot {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.fr-hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.fr-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.fr-hero-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.fr-hero-stat span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.fr-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.fr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.25s;
    border: 2px solid transparent;
}
.fr-btn-green {
    background: var(--accent-green);
    color: #fff !important;
}
.fr-btn-green:hover {
    background: #00c282;
    box-shadow: 0 4px 16px rgba(0, 214, 143, 0.3);
    transform: translateY(-2px);
}
.fr-btn-outline {
    background: transparent;
    color: var(--blue) !important;
    border-color: var(--blue);
}
.fr-btn-outline:hover {
    background: var(--blue);
    color: #fff !important;
}
.fr-btn-white {
    background: #fff;
    color: var(--blue-deep) !important;
}
.fr-btn-white:hover {
    background: #F0F4FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.fr-btn-outline-white {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.4);
}
.fr-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
/* Section labels & titles */
.fr-section-label {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 8px;
}
.fr-section-title {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 48px;
    letter-spacing: -0.02em;
}

/* Benefits grid */
.fr-benefits {
    padding: 80px 0;
}
.fr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.fr-benefit-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}
.fr-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--blue);
}
.fr-benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    border-radius: 14px;
    margin-bottom: 20px;
}
.fr-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
}
.fr-benefit-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

/* Process steps */
.fr-process {
    padding: 80px 0;
    background: #F8FAFC;
}
.fr-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}
.fr-process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}
.fr-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.fr-step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--blue);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 112, 192, 0.25);
}
.fr-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}
.fr-step p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748B;
    margin: 0;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Banner */
.fr-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
}
.fr-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.fr-cta-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.fr-cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.fr-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .fr-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 140px 20px 40px;
    }
    .fr-hero-visual { max-width: 400px; margin: 0 auto; }
    .fr-hero-screenshot { max-width: 360px; }
    .fr-hero-stats { gap: 24px; flex-wrap: wrap; }
    .fr-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .fr-process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
    .fr-process-steps::before { display: none; }
    .fr-cta-inner { flex-direction: column; text-align: center; }
    .fr-cta-actions { justify-content: center; }
}
@media (max-width: 480px) {
    .fr-hero-inner { padding: 48px 16px 32px; }
    .fr-hero-stats { gap: 16px; padding: 24px 16px 36px; }
    .fr-hero-stat strong { font-size: 1.4rem; }
    .fr-hero-stat span { font-size: 0.7rem; }
    .fr-hero-actions { flex-direction: column; }
    .fr-hero-actions .fr-btn { justify-content: center; }
    .fr-benefits-grid,
    .fr-process-steps { grid-template-columns: 1fr; }
    .fr-cta-actions { flex-direction: column; width: 100%; }
    .fr-cta-actions .fr-btn { justify-content: center; }
}

/* ============================================
   LOGIN PAGE (lg-)
   ============================================ */
.lg-page { font-family: var(--font-main); min-height: 60vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF5 100%); padding: 60px 20px; }
.lg-page *,
.lg-page *::before,
.lg-page *::after { box-sizing: border-box; }
.lg-wrapper { width: 100%; max-width: 420px; }
.lg-card { background: #fff; border-radius: 16px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.lg-card-header { text-align: center; margin-bottom: 32px; }
.lg-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-radius: 14px; color: #fff; margin-bottom: 20px; }
.lg-card-header h1 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin: 0 0 6px; line-height: 1.3; }
.lg-card-header p { font-size: 0.9rem; color: #718096; margin: 0; }
.lg-form-group { margin-bottom: 20px; }
.lg-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #2D3748; margin-bottom: 6px; }
.lg-input,
.lg-page input[type="text"],
.lg-page input[type="password"] { width: 100% !important; padding: 12px 16px !important; font-size: 1rem !important; border: 1px solid #CBD5E0 !important; border-radius: 8px !important; outline: none !important; transition: border-color 0.2s, box-shadow 0.2s; font-family: var(--font-main) !important; background: #fff !important; color: #2D3748 !important; margin: 0 !important; }
.lg-input:focus,
.lg-page input[type="text"]:focus,
.lg-page input[type="password"]:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(0,112,192,0.1) !important; }
.lg-error { display: block; color: #E53E3E; font-size: 0.9rem; margin-bottom: 16px; text-align: center; }
.lg-error:empty { display: none; }
.lg-btn,
.lg-page input[type="submit"] { display: block; width: 100%; padding: 14px !important; margin-top: 8px; font-size: 1rem !important; font-weight: 700 !important; color: #fff !important; background: var(--blue) !important; border: none !important; border-radius: 8px !important; cursor: pointer; font-family: var(--font-main) !important; transition: background 0.2s; text-align: center; }
.lg-btn:hover,
.lg-page input[type="submit"]:hover { background: #005A9E !important; }
.lg-help { text-align: center; font-size: 0.88rem; color: #718096; margin-top: 24px; }
.lg-help a { color: var(--blue); font-weight: 600; text-decoration: none; }
.lg-help a:hover { text-decoration: underline; }

/* Foundation overrides for login page */
.lg-page .row,
.lg-page .columns,
.lg-page .column { max-width: none; padding: 0; margin: 0; float: none; width: auto; }

@media (max-width: 480px) {
    .lg-page { padding: 40px 16px; }
    .lg-card { padding: 32px 24px; border-radius: 12px; }
    .lg-card-header h1 { font-size: 1.4rem; }
}

/* ============================================
   TRACK ORDER PAGE (to-)
   ============================================ */
.to-page { font-family: var(--font-main); max-width: 960px; margin: 0 auto; padding: 0 20px; }
.to-page *,
.to-page *::before,
.to-page *::after { box-sizing: border-box; }

/* Loading overlay */
.to-waiting { position: fixed; background-color: rgba(255,255,255,0.85); z-index: 2147483647 !important; overflow: hidden; text-align: center; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }

/* Search form */
.to-search { max-width: 440px; margin: 60px auto 80px; text-align: center; }
.to-search-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-radius: 14px; color: #fff; margin-bottom: 20px; }
.to-search h1 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.to-location-tag { font-weight: 400; font-size: 0.65em; color: #718096; }
.to-subtitle { font-size: 0.95rem; color: #718096; margin-bottom: 32px; }
.to-form-group { margin-bottom: 16px; text-align: left; }
.to-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #2D3748; margin-bottom: 6px; }
.to-input,
.to-search input[type="text"] { width: 100% !important; padding: 12px 16px !important; font-size: 1rem !important; border: 1px solid #CBD5E0 !important; border-radius: 8px !important; outline: none !important; transition: border-color 0.2s, box-shadow 0.2s; font-family: var(--font-main) !important; background: #fff !important; margin: 0 !important; }
.to-input:focus,
.to-search input[type="text"]:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(0,112,192,0.1) !important; }
.to-btn { display: inline-block; width: 100%; padding: 14px; margin-top: 24px; font-size: 1rem; font-weight: 700; color: #fff; background: var(--blue); border: none; border-radius: 8px; cursor: pointer; font-family: var(--font-main); transition: background 0.2s; }
.to-btn:hover { background: #005A9E; }
.to-error { display: block; color: #E53E3E; font-size: 0.9rem; margin-bottom: 12px; text-align: center; }
.to-error:empty { display: none; }

/* Results view */
.to-results { margin: 40px auto 60px; }
.to-results h1 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.to-results h1 span { font-weight: 400; color: #4A5568; }
.to-divider { border: none; border-top: 1px solid #E2E8F0; margin: 20px 0; }

/* Status breadcrumb */
.to-status-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin: 16px 0 24px; padding: 16px; background: #F7FAFC; border-radius: 10px; }
.to-status-step { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #A0AEC0; padding: 6px 12px; border-radius: 6px; }
.to-status-step.done { color: #718096; opacity: 0.5; }
.to-status-step.current { color: #fff; background: var(--blue); }
.to-status-divider { color: #CBD5E0; font-size: 0.8rem; display: flex; align-items: center; }

/* Notes */
.to-note { padding: 12px 16px; background: #F7FAFC; border-radius: 8px; color: #4A5568; font-size: 0.9rem; margin: 6px 0; line-height: 1.6; }
.to-note.customer-reply { background: #EBF8FF; text-align: right; }
.to-note-meta { font-size: 0.75rem; color: #A0AEC0; margin-top: 4px; }
.to-general-notes { text-align: center; margin-bottom: 24px; }
.to-general-notes strong { font-size: 1rem; color: #2D3748; }

/* Repair item card */
.to-repair-card { border: 1px solid #E2E8F0; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.to-repair-title { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.to-device-meta { font-size: 0.85rem; color: #718096; margin-bottom: 12px; }

/* Reply box */
.to-reply { display: flex; gap: 8px; margin-top: 16px; padding: 12px; background: #FFFDE7; border-radius: 8px; align-items: center; flex-wrap: wrap; }
.to-reply-input,
.to-reply input[type="text"] { flex: 1; min-width: 200px; padding: 10px 14px !important; font-size: 0.9rem !important; border: 1px solid #CBD5E0 !important; border-radius: 6px !important; outline: none; font-family: var(--font-main) !important; }
.to-reply-btn,
.to-reply input[type="submit"] { padding: 10px 20px !important; font-size: 0.85rem !important; font-weight: 700 !important; color: #fff !important; background: #4A5568 !important; border: none !important; border-radius: 6px !important; cursor: pointer; font-family: var(--font-main) !important; white-space: nowrap; }
.to-reply-btn:hover,
.to-reply input[type="submit"]:hover { background: #2D3748 !important; }

/* Footer desc */
.to-footer-desc { text-align: center; margin: 24px 0 40px; font-size: 0.95rem; color: #4A5568; line-height: 1.6; }

/* Foundation overrides */
.to-page .row,
.to-page .columns,
.to-page .column { max-width: none; padding: 0; margin: 0; float: none; width: auto; }

@media (max-width: 600px) {
    .to-status-bar { gap: 2px; padding: 10px; }
    .to-status-step { font-size: 0.7rem; padding: 4px 8px; }
    .to-reply { flex-direction: column; }
    .to-reply input[type="text"],
    .to-reply-input { width: 100%; min-width: 0; }
}

/* ============================================
   ACCOUNT DASHBOARD PAGE (ac-)
   ============================================ */
.ac-page { font-family: var(--font-main); max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.ac-page *,
.ac-page *::before,
.ac-page *::after { box-sizing: border-box; }

/* Loading overlay */
.ac-waiting { position: fixed; background-color: rgba(255,255,255,0.85); z-index: 2147483647 !important; overflow: hidden; text-align: center; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }

/* Header */
.ac-header { padding: 48px 0 32px; border-bottom: 1px solid #E2E8F0; margin-bottom: 32px; }
.ac-header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ac-header h1 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: var(--dark); margin: 0 0 4px; }
.ac-welcome { font-size: 0.95rem; color: #718096; margin: 0; }
.ac-logout { font-size: 0.85rem; font-weight: 600; color: #718096; text-decoration: none; padding: 8px 20px; border: 1px solid #CBD5E0; border-radius: 8px; transition: all 0.2s; }
.ac-logout:hover { color: #E53E3E; border-color: #E53E3E; }

/* Search bar */
.ac-search-bar { margin-bottom: 32px; }
.ac-search-form { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.ac-search-form label { font-size: 0.85rem; font-weight: 600; color: #2D3748; margin-bottom: 6px; display: block; }
.ac-search-input-wrap { display: flex; gap: 8px; flex: 1; min-width: 250px; }
.ac-search-input { flex: 1; padding: 10px 14px !important; font-size: 0.9rem !important; border: 1px solid #CBD5E0 !important; border-radius: 8px !important; outline: none !important; font-family: var(--font-main) !important; transition: border-color 0.2s; width: auto !important; }
.ac-search-input:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(0,112,192,0.1); }
.ac-search-btn { display: inline-flex; align-items: center; padding: 10px 20px; font-size: 0.85rem; font-weight: 700; color: #fff !important; background: #4A5568; border: none; border-radius: 8px; cursor: pointer; font-family: var(--font-main); text-decoration: none !important; transition: background 0.2s; }
.ac-search-btn:hover { background: #2D3748; }

/* Nav cards */
.ac-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.ac-nav-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 32px 16px; border-radius: 12px; text-decoration: none !important; color: #fff !important; font-weight: 700; font-size: 0.95rem; font-family: var(--font-main); transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; text-align: center; }
.ac-nav-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.ac-nav-card span { display: block; }
.ac-nav-purple { background: linear-gradient(135deg, #7528cd, #9B59B6); }
.ac-nav-blue { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }
.ac-nav-green { background: linear-gradient(135deg, #00B074, var(--accent-green)); }
.ac-nav-orange { background: linear-gradient(135deg, #E67E22, var(--accent-orange)); }

/* Content area */
.ac-content { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 32px; }
.ac-view-title { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin: 0 0 24px; }

/* Table grid layouts */
.ac-grid-active { display: grid; grid-template-columns: 1fr 1fr 2fr 1.5fr auto; gap: 12px; align-items: center; }
.ac-grid-completed { display: grid; grid-template-columns: 1fr 1fr 3fr auto; gap: 12px; align-items: center; }
.ac-grid-invoices { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: center; }

.ac-table-header { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #718096; padding: 12px 16px; background: #F7FAFC; border-radius: 8px; margin-bottom: 4px; }
.ac-table-row { padding: 14px 16px; border-bottom: 1px solid #F0F4F8; font-size: 0.9rem; color: #2D3748; transition: background 0.15s; }
.ac-table-row:hover { background: #F7FAFC; }
.ac-table-row:last-child { border-bottom: none; }
.ac-cell a { color: var(--blue); font-weight: 600; text-decoration: none; }
.ac-cell a:hover { text-decoration: underline; }
.ac-cell-status { font-weight: 700; }

.ac-view-btn { display: inline-block; padding: 8px 18px; font-size: 0.8rem; font-weight: 700; color: #fff !important; background: var(--blue); border-radius: 6px; text-decoration: none !important; transition: background 0.2s; text-align: center; }
.ac-view-btn:hover { background: #005A9E; }
.ac-pay-btn { display: inline-block; padding: 8px 18px; font-size: 0.8rem; font-weight: 700; color: #fff !important; background: var(--accent-green); border-radius: 6px; text-decoration: none !important; transition: background 0.2s; text-align: center; }
.ac-pay-btn:hover { background: #00B074; }

/* Foundation overrides */
.ac-page .row,
.ac-page .columns,
.ac-page .column { max-width: none; padding: 0; margin: 0; float: none; width: auto; }

@media (max-width: 900px) {
    .ac-nav { grid-template-columns: repeat(2, 1fr); }
    .ac-grid-active { grid-template-columns: 1fr 1fr 2fr auto; }
    .ac-grid-active .ac-cell:nth-child(4) { display: none; }
    .ac-content { padding: 24px 20px; }
}
@media (max-width: 600px) {
    .ac-nav { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ac-nav-card { padding: 24px 12px; font-size: 0.85rem; }
    .ac-header h1 { font-size: 1.4rem; }
    .ac-grid-active,
    .ac-grid-completed,
    .ac-grid-invoices { grid-template-columns: 1fr 1fr auto; }
    .ac-table-header div:nth-child(3),
    .ac-table-row .ac-cell:nth-child(3) { display: none; }
    .ac-grid-active .ac-cell:nth-child(4) { display: none; }
    .ac-table-header { font-size: 0.72rem; padding: 10px 12px; }
    .ac-table-row { padding: 12px; font-size: 0.85rem; }
    .ac-search-input-wrap { flex-direction: column; }
    .ac-search-input { width: 100% !important; }
    .ac-content { padding: 20px 16px; border-radius: 8px; }
}

/* ============================================
   MISC
   ============================================ */
