@import url('/brand/tokens/tokens.css');
@import url('tokens.css');

:root {
    /* Legacy aliases not in tokens */
    --glass: var(--glass-bg);
    --transition: all var(--motion-standard) var(--ease-standard);
    --nav-height: 72px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

ul {
    list-style: none;
}

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

/* F3: prevent iOS zoom + ensure mobile-readable form fields */
input,
select,
textarea {
    font-size: 1rem;
    font-family: inherit;
}

/* ============================================
 * Utilities
 * ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 40px 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer !important;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-darker);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

/* ============================================
 * Navigation — Mobile-first
 * ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

body.nav-hidden nav {
    transform: translateY(-100%);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.logo span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Mobile Menu Toggle — visible by default */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer !important;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Nav CTA — hidden by default on mobile */
.nav-cta {
    display: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* Nav links — mobile drawer by default */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 12px) 2rem 2rem;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-white, #fff) !important;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary) !important;
}

/* Mobile-only nav links (hidden on desktop, shown when drawer open) */
.nav-links .mobile-only {
    display: block !important;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Nav right-side group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-right .nav-cart {
    margin-right: 0.5rem;
}

/* Nav Cart Icon + Badge */
.nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.2s ease;
    margin-right: 1rem;
}

.nav-cart:hover {
    color: var(--primary);
}

.nav-cart svg {
    display: block;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--bg-darker);
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Tablet nav fix (600–969px) — reduce gap, prevent CTA overflow */
@media (min-width: 600px) and (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-right {
        flex-shrink: 0;
    }
}

/* Desktop nav — min-width: 969px */
@media (min-width: 969px) {
    .mobile-menu-toggle {
        display: none;
    }

    .logo span {
        font-size: 1.4rem;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        padding: 0;
        margin: 0 2rem;
        gap: 2rem;
        box-shadow: none;
        right: auto;
    }

    .nav-links a {
        width: auto;
        display: inline-flex;
        align-items: center;
        min-height: 2.75rem;
        font-size: 1rem;
        padding: 0 0.5rem;
        border-bottom: none;
        color: var(--text-muted) !important;
        text-align: center;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary) !important;
    }

    /* Hide mobile-only links on desktop */
    .nav-links .mobile-only {
        display: none !important;
    }

    /* Show CTA button on desktop — no more duplicate Contact link */
    .nav-cta {
        display: inline-flex;
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1101px) {
    .nav-links {
        gap: 3.5rem;
        margin: 0 4rem;
    }

    .nav-cta {
        padding: 0.6rem 1.5rem;
    }
}

/* ============================================
 * Floating Animation for Hero Logo
 * ============================================ */
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.float-logo {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.2));
}

.logo-frame {
    position: relative;
    padding: 15px;
}

.logo-frame::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* ============================================
 * Glass Card — mobile defaults
 * ============================================ */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* ============================================
 * Animations
 * ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revealed {
    animation: fadeInUp 0.8s ease forwards;
}

/* Stat Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-counter {
    animation: countUp 0.6s ease forwards;
}

/* URL Input Validation Indicator */
#validation-indicator {
    opacity: 0;
    animation: fadeInValidation 0.3s ease forwards;
}

@keyframes fadeInValidation {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Input Focus State with Validation */
#scan-url {
    transition: all 0.3s ease;
}

#scan-url:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Accessibility: focus-visible outlines */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
 * Footer — mobile-first
 * ============================================ */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 2rem;
    margin-bottom: 40px;
}

.footer-logo span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
 * Hero — mobile-first defaults
 * ============================================ */
.hero {
    min-height: auto;
}

.hero-content {
    text-align: center;
    order: 2;
}

.hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.hero-visual {
    order: 1;
    margin-bottom: 1rem;
}

.hero-visual img {
    max-width: 220px;
    margin: 0 auto;
}

/* Hero scan form: stack vertically on mobile */
#hero-scan-form {
    max-width: 100%;
}

#hero-scan-form [style*="display: flex"] {
    flex-direction: column;
}

#hero-scan-form input,
#hero-scan-form button {
    width: 100%;
    min-width: 0;
}

/* ============================================
 * Responsive Utility Grid Classes — mobile-first
 * ============================================ */
.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-grid .hero-content {
    order: 2;
}

.hero-grid .hero-visual {
    order: 1;
    margin-bottom: 1rem;
}

.hero-grid .hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.hero-grid .hero-content > div {
    justify-content: center;
}

.abcs-grid {
    display: grid;
    gap: 1.5rem;
}

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

.steps-grid {
    display: grid;
    gap: 2rem;
}

.service-grid {
    display: grid;
    gap: 2rem;
}

.service-items {
    display: grid;
    gap: 2rem;
}

.about-grid {
    display: grid;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cta-grid {
    display: grid;
    gap: 2rem;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ============================================
 * Sticky CTA — mobile-first
 * ============================================ */
.sticky-desktop {
    display: none;
}

.sticky-mobile {
    display: flex;
}

#sticky-cta .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

#sticky-cta form {
    flex-direction: column;
    max-width: 100%;
}

#sticky-cta input,
#sticky-cta button[type="submit"] {
    width: 100%;
    min-width: 0;
}

#sticky-cta span[style*="white-space"] {
    text-align: center;
}

/* ============================================
 * Floating call button — visible on mobile
 * ============================================ */
.mobile-call-fab {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-darker);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-call-fab:hover,
.mobile-call-fab:active {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}

.mobile-call-fab svg {
    width: 24px;
    height: 24px;
}

body.sticky-visible .mobile-call-fab {
    bottom: 5rem;
}

/* ============================================
 * Mobile overrides — inline style overrides
 * (these stay as mobile defaults, no breakpoint needed)
 * ============================================ */

/* Force inline-styled grids to stack on mobile */
[style*="grid-template-columns: 1fr 1fr"],
[style*="grid-template-columns: 1.2fr 1fr"],
[style*="grid-template-columns: 1fr 1.5fr"],
[style*="grid-template-columns: 1fr 1.1fr"],
[style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
}

/* Gap reductions for inline-styled gaps */
[style*="gap: 4rem"] { gap: 1.5rem !important; }
[style*="gap: 3rem"] { gap: 1.5rem !important; }
[style*="gap: 3.5rem"] { gap: 1.5rem !important; }
[style*="gap: 2.5rem"] { gap: 1.25rem !important; }

/* Disable float animation on mobile (saves GPU/battery) */
.float-logo {
    animation: none !important;
}

/* Inline padding overrides */
[style*="padding: 4rem"] {
    padding: 1.5rem !important;
}

/* Inline font size overrides */
[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
}

[style*="font-size: 2.8rem"] {
    font-size: 1.75rem !important;
}

[style*="font-size: 2rem"]:not(h3):not(h4) {
    font-size: 1.5rem !important;
}

/* Section padding tighter on mobile */
[style*="padding-top: 180px"] {
    padding-top: 100px !important;
}

[style*="margin-bottom: 4rem"] {
    margin-bottom: 2rem !important;
}

[style*="margin-bottom: 5rem"] {
    margin-bottom: 2.5rem !important;
}

/* Hero content buttons centering */
.hero-content div[style*="display: flex"][style*="flex-wrap"] {
    justify-content: center !important;
}

/* ============================================
 * Breakpoint: 481px+ (large phones)
 * ============================================ */
@media (min-width: 481px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-visual img {
        max-width: 280px;
    }

    .logo-frame {
        padding: 30px;
    }

    /* Restore inline font sizes */
    [style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }

    [style*="font-size: 2.8rem"] {
        font-size: 2rem !important;
    }

    [style*="padding-top: 180px"] {
        padding-top: 120px !important;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* ============================================
 * Breakpoint: 641px+ (tablets)
 * ============================================ */
@media (min-width: 641px) {
    .container {
        padding: 0 2rem;
    }

    .glass-card {
        padding: 2rem;
        border-radius: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Restore inline grid layouts for 2-column at tablet */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Force auto-fit/auto-fill grids to work at tablet */
    [style*="grid-template-columns: repeat(auto-fit"],
    [style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .hero-visual img {
        max-width: 280px;
    }

    #sticky-cta {
        padding: 0.5rem 0.75rem;
    }
}

/* ============================================
 * Breakpoint: 769px+ (landscape tablets / small desktops)
 * ============================================ */
@media (min-width: 769px) {
    .section-padding {
        padding: 100px 0;
    }

    .glass-card {
        padding: 2.5rem;
        border-radius: 20px;
    }

    /* Inline padding overrides restored */
    [style*="padding: 4rem"] {
        padding: 4rem !important;
    }

    /* Hero grid — desktop layout */
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        text-align: left;
    }

    .hero-grid .hero-content {
        order: 1;
    }

    .hero-grid .hero-visual {
        order: 2;
        margin-bottom: 0;
    }

    .hero-grid .hero-content p {
        margin-left: 0;
    }

    .hero-grid .hero-content > div {
        justify-content: flex-start;
    }

    /* Responsive utility grids — desktop */
    .abcs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

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

    .service-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }

    .service-items {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    /* Sticky CTA — desktop */
    .sticky-desktop {
        display: flex;
    }

    .sticky-mobile {
        display: none;
    }

    #sticky-cta .container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    #sticky-cta form {
        flex-direction: row;
        max-width: none;
    }

    #sticky-cta input,
    #sticky-cta button[type="submit"] {
        width: auto;
    }

    /* Restore hero scan form horizontal on desktop */
    #hero-scan-form [style*="display: flex"] {
        flex-direction: row;
    }

    #hero-scan-form input,
    #hero-scan-form button {
        width: auto;
    }

    /* Restore inline font sizes */
    [style*="font-size: 2.5rem"] {
        font-size: 2.5rem !important;
    }

    [style*="font-size: 2.8rem"] {
        font-size: 2.8rem !important;
    }

    [style*="font-size: 2rem"]:not(h3):not(h4) {
        font-size: 2rem !important;
    }

    /* Restore inline gap sizes */
    [style*="gap: 4rem"] { gap: 4rem !important; }
    [style*="gap: 3rem"] { gap: 3rem !important; }
    [style*="gap: 3.5rem"] { gap: 3.5rem !important; }
    [style*="gap: 2.5rem"] { gap: 2.5rem !important; }

    [style*="margin-bottom: 4rem"] {
        margin-bottom: 4rem !important;
    }

    [style*="margin-bottom: 5rem"] {
        margin-bottom: 5rem !important;
    }

    [style*="padding-top: 180px"] {
        padding-top: 180px !important;
    }

    /* Hero content text alignment restored */
    .hero-content {
        text-align: left;
    }

    .hero-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content div[style*="display: flex"][style*="flex-wrap"] {
        justify-content: flex-start !important;
    }

    /* Float animation restored on desktop */
    .float-logo {
        animation: float 6s ease-in-out infinite !important;
    }

    /* Hide mobile call FAB on desktop */
    .mobile-call-fab {
        display: none;
    }

    /* Social proof grids */
    section[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================
 * Breakpoint: 969px+ (desktop)
 * ============================================ */
@media (min-width: 969px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 60px;
    }

    /* Restore multi-column inline grids on desktop */
    [style*="grid-template-columns: 1.2fr 1fr"] {
        grid-template-columns: 1.2fr 1fr !important;
    }

    [style*="grid-template-columns: 1fr 1.5fr"] {
        grid-template-columns: 1fr 1.5fr !important;
    }

    [style*="grid-template-columns: 1fr 1.1fr"] {
        grid-template-columns: 1fr 1.1fr !important;
    }

    [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
    }
}

/* ============================================
 * Trust bar — mobile-first 2-col grid, flex on larger screens
 * (trust-bar defined as flex-wrap above; override to grid on mobile)
 * ============================================ */
.trust-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    justify-items: start;
}

@media (min-width: 481px) {
    .trust-bar {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        justify-items: unset;
    }
}

/* ============================================
 * Responsive grid classes (mobile-first)
 * ============================================ */
.hero-grid,
.about-grid,
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.abcs-grid,
.steps-grid,
.service-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 769px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-grid,
    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1.5fr;
    }

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

    .service-items {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ============================================
 * Reduced motion preference
 * ============================================ */
@media (prefers-reduced-motion: reduce) {
    .float-logo {
        animation: none !important;
    }

    .glass-card {
        transition: none !important;
    }

    .revealed {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
