:root {
    --bg-dark: #030005;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #A855F7;
    /* Brighter purple from original site */
    --primary-glow: rgba(168, 85, 247, 0.4);
    --secondary: #6366f1;
    --secondary-glow: rgba(99, 102, 241, 0.3);
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-inter: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 100px 150px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 300px 200px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 450px 400px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 600px 100px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 800px 500px, #fff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 1000px 1000px;
    opacity: 0.15;
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    transition: var(--transition);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background-image: linear-gradient(0deg, rgb(140, 93, 240) 0%, rgba(140, 93, 240, 0.4) 79.2793%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    display: inline-block;
    /* Required for transform effects if any */
}

.logo-glow {
    /* Specifically for footer if needed, but usually just white or primary */
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle fill */
    color: rgba(255, 255, 255, 0.8);
    /* Muted white text */
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: none;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Navbar Enhancements */
.navbar {
    border-bottom: none;
    background: transparent;
    padding: 2rem 0;
}

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

.nav-links-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    display: flex;
    gap: 2rem;
    gap: 2rem;
    /* No backdrop blur for nav in original site usually, keeping it simple or glass */
    backdrop-filter: blur(10px);
}

.nav-links-pill a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links-pill a:hover {
    color: var(--text-white);
}

.nav-spacer {
    width: 100px;
    /* To balance logo */
}

/* Hero Enhancements */
.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
    /* Original site highlight is subtle purple */
}

/* Hero Section Layout */
.hero {
    position: relative;
    padding: 12rem 0 10rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-orb-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--orb-mouse-x, 0px)), calc(-50% + var(--orb-parallax, 0px) + var(--orb-mouse-y, 0px)));
    z-index: 1;
    pointer-events: none;
    transition: transform 0.15s ease-out;
    /* Slightly snappier for mouse movement */
}

.hero-orb {
    width: 600px;
    height: 600px;
    object-fit: contain;
    animation: float 10s ease-in-out infinite;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle grid, barely visible to match original deep void look */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-btns {
    margin-top: 2.5rem;
}

.hero-bottom-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-bottom: none;
}

/* Common Section Components */
.section-badge {
    color: #A78BFA;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.bg-text-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

/* Services V2 */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
}

.service-glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(140, 93, 240, 0.3);
    transform: translateY(-5px);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(140, 93, 240, 0.1);
    border: 1px solid rgba(140, 93, 240, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #A78BFA;
}

.service-glass-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-glass-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Discover Section */
.discover {
    padding: 10rem 0;
    position: relative;
}

.discover-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.discover h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.discover .description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.discover-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.point h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.point p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.discover-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.orb-visual {
    width: 100%;
    max-width: 380px;
    display: block;
    z-index: 2;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle, black 20%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle, black 20%, transparent 60%);
    opacity: 0.95;
    position: relative;
}

.orb-glow-new {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(140, 93, 240, 0.35) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Collaboration Section */
.collaboration {
    padding: 10rem 0;
}

.section-title-large {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
}

.partnership-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    min-height: 400px;
    align-items: center;
}

.card-watermark {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.mini-badge {
    background: rgba(140, 93, 240, 0.1);
    border: 1px solid rgba(140, 93, 240, 0.2);
    color: #A78BFA;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.partnership-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.partnership-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partnership-card strong {
    color: var(--text-white);
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .discover-layout {
        grid-template-columns: 1fr;
    }

    .partnership-card {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .card-watermark {
        display: none;
    }
}

.btn-outline-small {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-small:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

/* Footer New */
.footer-new {
    padding: 8rem 0 4rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container-new {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-glow {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--text-white);
}

.footer-spacer {
    width: 150px;
}

.footer-bottom-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-info .address {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom-info .copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .discover-layout {
        grid-template-columns: 1fr;
    }

    .partnership-card {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .card-watermark {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-spacer {
        display: none;
    }
}

/* ============================================
   NEW PAGE STYLES
   ============================================ */

/* Page Hero (for sub-pages) */
.page-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Active Nav Link */
.nav-links-pill a.active {
    color: var(--text-white);
}

/* Services Page - Large Grid Cards */
.services-detail {
    padding: 4rem 0 8rem;
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.service-card-large:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(140, 93, 240, 0.3);
    transform: translateX(10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(140, 93, 240, 0.1);
    border: 1px solid rgba(140, 93, 240, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A78BFA;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card-body h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.service-card-large:hover .card-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 8rem 0;
    background: rgba(140, 93, 240, 0.02);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.tech-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.tech-item-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(140, 93, 240, 0.2);
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(140, 93, 240, 0.1), rgba(0, 85, 255, 0.05));
    border: 1px solid rgba(140, 93, 240, 0.2);
    border-radius: 32px;
    padding: 5rem;
    text-align: center;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* About Page Styles */
.about-mission {
    padding: 4rem 0 8rem;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--text-white);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: rgba(140, 93, 240, 0.02);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(140, 93, 240, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(140, 93, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A78BFA;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Section */
.why-section {
    padding: 4rem 0 8rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.why-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-card strong {
    color: var(--text-white);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--text-white);
    font-family: var(--font-inter);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(140, 93, 240, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-full {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(140, 93, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A78BFA;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card .btn-outline-small {
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: rgba(140, 93, 240, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive for New Pages */
@media (max-width: 1024px) {
    .service-card-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto;
    }

    .card-arrow {
        display: none;
    }

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

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

    .about-stats {
        flex-direction: row;
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .about-stats {
        flex-direction: column;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

/* ============================================
   SERVICE CARD LINK STYLES
   ============================================ */

/* Ensure service cards wrapped in anchors inherit correct colors */
a.service-glass-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.service-glass-card h3,
a.service-glass-card p {
    color: inherit;
}

a.service-glass-card h3 {
    color: var(--text-white);
}

a.service-glass-card p {
    color: var(--text-muted);
}

/* Partnership card links */
a.partnership-card {
    text-decoration: none;
    color: inherit;
    display: grid;
}

a.partnership-card h3 {
    color: var(--text-white);
}

a.partnership-card p {
    color: var(--text-muted);
}