@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;800&display=swap');

:root {
    /* Design Tokens: Colors & Gradients */
    --accent: #56ccff;
    --accent-light: #6fdcff;
    --accent-bright: #3bcfff;
    --accent-glow: #52d8ff;
    --text-muted: #9aa9be;
    --text-body: #b8c7d8;
    --border: rgba(255, 255, 255, .08);
    --border-light: rgba(255, 255, 255, .03);
    --border-solid: rgba(255, 255, 255, .05);
    
    --bg-dark: #080d26;
    --bg-navbar: rgba(0, 0, 0, .4);
    --bg-navbar-scrolled: rgba(4, 8, 22, 0.7);
    --bg-card: rgba(13, 17, 29, 0.7);
    --bg-card-hover: rgba(20, 26, 43, 0.8);
    --bg-footer: rgba(4, 8, 22, 0.7);
    
    --primary-grad: linear-gradient(90deg, #2F80ED, #00C6FF, #2F80ED);
    --accent-grad: linear-gradient(135deg, #ffffff 20%, #56ccff 60%, #00ffd0 100%);
    --spotlight-grad: radial-gradient(320px circle at var(--x, 0px) var(--y, 0px), rgba(86, 204, 255, 0.15) 0%, rgba(0, 255, 208, 0.06) 50%, transparent 80%);
    --card-glow-grad: linear-gradient(135deg, rgba(86, 204, 255, 0.5), rgba(0, 255, 208, 0.2));
    
    /* Design Tokens: Fonts */
    --font-body: "Inter", sans-serif;
    --font-heading: "Outfit", sans-serif;
    
    /* Design Tokens: Transitions */
    --transition-base: 0.3s;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Inline SVG Icons */
    --icon-ai: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2356ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4c0 1.5-.8 2.8-2 3.5V12h4a2 2 0 0 1 2 2v2a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4v-2a2 2 0 0 1 2-2h4V9.5A4 4 0 0 1 12 2z'/%3E%3Ccircle cx='9' cy='18' r='1'/%3E%3Ccircle cx='15' cy='18' r='1'/%3E%3C/svg%3E");
    --icon-cloud: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2356ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z'/%3E%3C/svg%3E");
    --icon-data: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2356ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='12' width='4' height='9' rx='1'/%3E%3Crect x='10' y='7' width='4' height='14' rx='1'/%3E%3Crect x='17' y='3' width='4' height='18' rx='1'/%3E%3C/svg%3E");
    --icon-sec: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2356ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-dark);
    color: white;
    font-family: var(--font-body);
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Accessibility skip links */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent);
    color: #040816;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 8px;
}

/* Background spotlights and grid overlays */
body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.15), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.12), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.10), transparent 50%),
        radial-gradient(circle at 80% 85%, rgba(20, 184, 166, 0.08), transparent 40%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* Background floating glow circles */
.circle {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(56, 189, 248, 0.12) 50%, transparent 100%);
    filter: blur(60px);
    animation: morph 12s infinite alternate, float 20s infinite alternate;
    pointer-events: none;
    z-index: -1;
    will-change: transform, border-radius;
    opacity: 0.85;
}

.c1 {
    top: -150px;
    left: -150px;
}

.c2 {
    right: -150px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, rgba(99, 102, 241, 0.10) 50%, transparent 100%);
    animation-delay: -5s;
}

/* Navigation bar */
nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-navbar);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

nav.nav-scrolled {
    top: 16px;
    width: 84%;
    max-width: 1200px;
    padding: 12px 32px;
    border-radius: 50px;
    background: var(--bg-navbar-scrolled);
    border: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav.nav-scrolled .logo {
    font-size: 24px;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-light);
    transition: font-size var(--transition-smooth);
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

nav a.active,
nav a:hover {
    color: var(--accent);
}

nav a.active::after,
nav a:hover::after {
    width: 100%;
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.hero h1 {
    font-size: 90px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: var(--accent-grad);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(86, 204, 255, 0.15));
}

.hero h2 {
    font-size: 32px;
    margin-top: 24px;
    font-weight: 600;
    color: #dbeafe;
    letter-spacing: -0.01em;
}

.hero p {
    margin: 35px auto;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: #b6c2d6;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition-base), transform var(--transition-base);
    z-index: 10;
    text-decoration: none;
}

.scroll-indicator:hover {
    color: var(--accent);
    transform: translateX(-50%) translateY(4px);
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0.6;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollMouseWheel 1.6s ease-in-out infinite;
}

/* Global buttons layout */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-base), background-position .5s, background-color var(--transition-base), border-color var(--transition-base);
    text-decoration: none;
}

.primary {
    background: var(--primary-grad);
    background-size: 200% auto;
    color: white;
}

.secondary {
    border: 1px solid rgba(77, 199, 255, 0.3);
    background: rgba(77, 199, 255, 0.03);
    color: #4dc7ff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 150, 255, .35);
}

.primary:hover {
    background-position: right center;
}

.secondary:hover {
    border-color: #4dc7ff;
    background: rgba(77, 199, 255, 0.1);
}

.btn:active {
    transform: scale(.95) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 255, .25);
}

.menu-toggle:active {
    transform: scale(.85);
}

/* Common Section elements */
section {
    padding: 110px 8%;
    scroll-margin-top: 80px;
}

.title-container {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 18px;
    text-align: center;
}

.title-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 80px;
    background: radial-gradient(circle, rgba(86, 204, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

.title {
    font-size: 42px;
    margin-bottom: 0;
    text-align: center;
}

.glow-divider {
    position: relative;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 204, 255, 0.2) 20%, rgba(86, 204, 255, 0.45) 50%, rgba(86, 204, 255, 0.2) 80%, transparent);
    border: none;
    margin: 0;
}

.glow-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(86, 204, 255, 0.04);
    border: 1px solid rgba(86, 204, 255, 0.15);
    font-size: 11px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(86, 204, 255, 0.05);
}

.section-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulseBadgeDot 2s infinite;
}

/* Card components and follow spotlight effects */
.card, .about-item, .stat-item, .contact-card {
    position: relative;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), box-shadow var(--transition-base), background var(--transition-base);
    overflow: hidden;
}

.card::before, .about-item::before, .stat-item::before, .contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--spotlight-grad);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.card:hover::before, .about-item:hover::before, .stat-item:hover::before, .contact-card:hover::before {
    opacity: 1;
}

.card:hover, .about-item:hover, .stat-item:hover, .contact-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(var(--bg-card-hover), var(--bg-card-hover)) padding-box,
                var(--card-glow-grad) border-box;
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(86, 204, 255, 0.15);
}

/* About Section */
#about {
    text-align: center;
}

#about .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#about .about-item {
    padding: 28px;
    border-radius: 14px;
}

#about .about-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent);
}

#about .about-item p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 15px;
}

/* Capabilities (Service) Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 30px;
}

.card {
    padding: 35px;
    border-radius: 18px;
}

.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.card-icon.ai { background-image: var(--icon-ai); }
.card-icon.cloud { background-image: var(--icon-cloud); }
.card-icon.data { background-image: var(--icon-data); }
.card-icon.sec { background-image: var(--icon-sec); }

.card h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.card p {
    color: var(--text-body);
    line-height: 1.7;
}

/* Product Cards */
#product .card h3 {
    color: #e0f2ff;
}

#product .card-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F80ED, #00C6FF);
    box-shadow: 0 0 12px rgba(0, 150, 255, .5);
    margin-bottom: 20px;
}

/* Metrics (Stats) Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 14px;
}

.number {
    font-size: 58px;
    font-weight: 800;
    color: var(--accent-glow);
}

.label {
    margin-top: 10px;
    color: #c5d4e5;
}

/* Trust Ticker styling */
.ticker-section {
    padding: 50px 8%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ticker-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 600;
}

.ticker-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.ticker-item:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.ticker-item svg {
    height: 28px;
    fill: #b8c7d8;
}

/* Contact Card section */
.contact {
    text-align: center;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    text-align: center;
}

.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(86, 204, 255, 0.4), transparent);
}

.contact-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--text-body);
    margin-bottom: 18px;
    word-break: break-all;
    overflow-wrap: break-word;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
}

/* Footer layout */
.enterprise-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-solid);
    padding: 30px 8%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-content > span {
    font-size: 13px;
    color: var(--text-muted);
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-meta a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 13px;
}

.footer-meta a:hover {
    color: var(--accent);
}

.footer-meta .sep {
    color: rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* Animations */
.fade {
    opacity: 1;
    transform: none;
    transition: none;
}

.js .fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade.show {
    opacity: 1;
    transform: none;
}

.js .fade-in-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: inherit;
}

.fade.show .fade-in-item {
    opacity: 1;
    transform: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
}

@keyframes pulseBadgeDot {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes scrollMouseWheel {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes morph {
    0% { border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%; }
    50% { border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%; }
    100% { border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%; }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg) }
    100% { transform: translateY(60px) translateX(60px) rotate(180deg) }
}

@keyframes scrollTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Accessibility */
@media(prefers-reduced-motion: reduce) {
    .js .fade,
    .js .fade-in-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile responsive settings (max-width: 768px) */
@media(max-width: 768px) {
    nav {
        padding: 16px 5%;
    }

    nav.nav-scrolled {
        top: 10px;
        width: 92%;
        padding: 10px 20px;
    }

    nav.nav-scrolled .logo {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(4, 8, 22, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    }

    nav.nav-scrolled ul {
        top: calc(100% + 8px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        width: 100%;
        left: 0;
    }

    nav ul.open {
        max-height: 400px;
        opacity: 1;
        pointer-events: auto;
        padding: 12px 0;
    }

    nav ul li {
        padding: 12px 8%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 15px;
    }

    .buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
        margin: 25px auto 0;
        gap: 12px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 70px 6%;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

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

    .number {
        font-size: 32px;
    }

    .contact h2 {
        font-size: 24px;
    }

    .circle {
        width: 220px;
        height: 220px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
        gap: 20px;
    }

    .card {
        padding: 24px;
    }

    .contact-card {
        padding: 35px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    #about .about-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px 14px;
    }

    .ticker-item {
        padding: 0 25px;
    }

    .ticker-item svg {
        height: 22px;
    }

    .enterprise-footer {
        padding: 25px 6%;
    }
}

/* Mouse hover spotlight disables for non-hover touch screens */
@media(hover: none) {
    .card:hover,
    .about-item:hover,
    .stat-item:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
}
