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

/* ===== CSS Variables & Global Styles ===== */
:root {
    --primary-purple: #A78BFA;
    --dark-purple: #8B5CF6;
    --light-purple: #C4B5FD;
    --gold: #FBBF24;
    --dark-gold: #F59E0B;
    --white: #FFFFFF;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --card-bg: #111111;
    --text-light: #E5E7EB;
    --text-lighter: #D1D5DB;
    --border: #1a1a1a;
    --glass-fill: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.02) 100%);
    --glass-edge: rgba(255, 255, 255, 0.22);
    --glass-blur: blur(28px) saturate(190%);
    --glass-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/tech_bg_pattern.png');
    background-size: 800px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 45% at 15% -8%, rgba(167, 139, 250, 0.22), transparent 52%),
        radial-gradient(ellipse 55% 35% at 92% 8%, rgba(251, 191, 36, 0.1), transparent 48%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--white);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-purple);
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-purple);
}

/* ===== Navigation ===== */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Glass lives on a pseudo so backdrop-filter never traps the fixed mobile menu */
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 10, 0.62));
    -webkit-backdrop-filter: blur(22px) saturate(190%);
    backdrop-filter: blur(22px) saturate(190%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-brand:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 20px; font-size: 0.9rem; color: var(--white); }
.nav-cta:hover { color: var(--white); }
@media (max-width: 1100px) {
    .nav-cta { display: none; }
}

.nav-logo {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--gold));
    transition: width 0.3s ease;
}

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

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

/* Products Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Invisible bridge so the menu stays open while moving the cursor down */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 250px;
    list-style: none;
    background: rgba(15, 15, 18, 0.98);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    width: 100%;
}

.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.nav-dropdown-menu a span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.65;
    margin-top: 3px;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(124, 58, 237, 0.18);
    color: var(--white);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-toggle:hover { background: rgba(255, 255, 255, 0.1); }

.nav-overlay {
    position: fixed; inset: 0; z-index: 1050;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta { display: none; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(86vw, 360px);
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.5rem;
        transform: translateX(110%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        z-index: 1002;
        padding: 5.5rem 1.4rem 2rem;
        pointer-events: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.4rem;
        display: block;
        padding: 1rem;
    }

    /* Products dropdown collapses inline on mobile */
    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: auto;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        box-shadow: none;
        margin: 0.25rem auto 0;
        padding: 0 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        transform: none;
        max-height: 240px;
        padding: 0.5rem;
    }

    .nav-dropdown-menu a {
        font-size: 1.1rem;
        text-align: center;
        align-items: center;
    }

    .nav-dropdown-menu a span {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(180deg, #c4b5fd 0%, var(--primary-purple) 42%, var(--dark-purple) 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(124, 58, 237, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    filter: brightness(1.06);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07));
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('assets/images/hero_main.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.hero-content {
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

.glass-card {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.purpose-statement {
    padding-top: 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .purpose-statement {
        margin-top: -40px;
    }
}

.purpose-tag {
    display: inline-block;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.22), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(196, 181, 253, 0.4);
    color: var(--primary-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-lighter);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Sections ===== */
section {
    padding: 100px 0;
    animation: fadeIn 1s ease-out;
    background-color: var(--dark-bg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

section:nth-child(even) {
    background-color: var(--darker-bg);
}

/* ===== Who We Are Section ===== */
.who-we-are .container > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    text-align: center;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.card {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-edge);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    height: 100%;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.16) 50%, transparent 65%);
    transform: translateX(-130%);
    transition: transform 0.85s ease;
    pointer-events: none;
}
.card:hover::after { transform: translateX(130%); }

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 28px 70px rgba(124, 58, 237, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

/* ===== Image Styling ===== */
.section-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.featured-image-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 28%);
    border-radius: inherit;
}

.featured-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
    pointer-events: none;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.featured-image-container:hover .featured-image {
    transform: scale(1.08);
}

@media (max-width: 968px) {
    .section-with-image {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .featured-image-container {
        order: -1;
    }
}


.card h3 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.card p {
    color: var(--text-lighter);
    line-height: 1.8;
}

/* ===== Industries Section ===== */
.industries {
    background-color: var(--darker-bg);
}

.industries .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-lighter);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-edge);
    border-top: 4px solid var(--primary-purple);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.industry-card:nth-child(2) {
    border-top-color: var(--gold);
}

.industry-card:nth-child(3) {
    border-top-color: #EC4899;
}

.industry-card:nth-child(4) {
    border-top-color: #10B981;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.2));
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
}

.industry-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Services Grid ===== */
.services-highlight {
    background-color: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.service-item h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.03);
}

.text-center {
    text-align: center;
}

/* ===== Benefits Section ===== */
.benefits {
    background-color: var(--darker-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    transform: translateX(10px);
}

.benefit-item h4 {
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
}

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

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 50%, #8B5CF6 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== Page Header ===== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-header .container {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--glass-shadow);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-lighter);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.breadcrumb {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-align: left;
    max-width: none;
    margin: 0 0 16px;
}
.breadcrumb a { color: var(--primary-purple); }
.breadcrumb a:hover { color: var(--gold); }

/* Glassmorphism for specific elements */
.legal-content .container {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 32px;
    border: 1px solid var(--glass-edge);
    padding: 4rem !important;
    margin-top: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--glass-shadow);
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--dark-bg);
}

.about-section p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--text-light);
}

.about-values {
    background-color: var(--darker-bg);
}

.value-card {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-edge);
    border-top: 4px solid var(--primary-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:nth-child(2) {
    border-top-color: var(--gold);
}

.value-card:nth-child(3) {
    border-top-color: #8B5CF6;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.value-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1.2rem;
}

.value-card p,
.value-card ul {
    color: var(--text-light);
    line-height: 1.8;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ===== Expertise Section ===== */
.expertise-section {
    background-color: var(--dark-bg);
}

.expertise-section .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
    transition: all 0.3s ease;
}

.expertise-item:nth-child(even) {
    border-left-color: var(--gold);
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.expertise-item h4 {
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
}

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

/* ===== Why Us Section ===== */
.why-us-section {
    background-color: var(--light-bg);
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.reason-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.reason-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.reason-item h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Services Page ===== */
.service-category {
    margin-bottom: 4rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.service-detail:nth-child(even) {
    border-top-color: var(--gold);
}

.service-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.service-detail h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== Contact Form ===== */
.contact-container {
    max-width: 800px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-purple);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--glass-edge);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    color: var(--text-light);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color-scheme: dark;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.contact-info {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--glass-edge);
    box-shadow: var(--glass-shadow);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Support Tiers Section ===== */
.support-tiers {
    background-color: var(--darker-bg);
    padding: 80px 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    overflow: visible;
}

.tier-card {
    background: var(--glass-fill);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    border-color: var(--gold);
}

.tier-card.basic-tier {
    border-color: #0891b2;
}

.tier-card.basic-tier:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(8, 145, 178, 0.15) 100%);
}

.tier-card.intermediate-tier {
    border-color: #06b6d4;
}

.tier-card.intermediate-tier:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.tier-card.pro-tier {
    border-color: #a78bfa;
    transform: scale(1.05);
}

.tier-card.pro-tier:hover {
    border-color: var(--gold);
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 15px 50px rgba(167, 139, 250, 0.4);
}

.tier-card.pro-tier::before {
    content: '★ MOST POPULAR ★';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dark-gold) 0%, #f59e0b 100%);
    color: var(--dark-bg);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.tier-card.enterprise-tier {
    border-color: #fb7185;
}

.tier-card.enterprise-tier:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(251, 113, 133, 0.15) 100%);
}

.tier-icon {
    margin-bottom: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.2));
    transition: all 0.3s ease;
}

.tier-card:hover .tier-icon img {
    filter: drop-shadow(0 6px 12px rgba(251, 191, 36, 0.3));
}

.tier-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
    font-weight: 600;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}

.tier-features li {
    color: var(--text-light);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li::before {
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tier-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.72));
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--gold);
}

/* ===== Social Links Styling ===== */
.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-links a i {
    width: 20px;
    text-align: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links a:hover i {
    transform: scale(1.2);
}

.footer-brand .nav-brand { margin-bottom: 1rem; font-size: 1.15rem; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Flashy Powered by Joorgi Spectra */
.powered-by {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 9px 18px; border-radius: 999px; position: relative; overflow: hidden;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(244, 213, 138, 0.12));
    border: 1px solid rgba(190, 150, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    color: inherit;
}
.powered-by:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(244, 213, 138, 0.6);
    box-shadow: 0 12px 30px rgba(150, 90, 255, 0.45);
    color: inherit;
}
.powered-by::before {
    content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: skewX(-20deg); animation: pbSweep 3.6s ease-in-out infinite;
}
.powered-by img {
    height: 28px; width: auto; display: block; position: relative; z-index: 1;
    filter: drop-shadow(0 0 5px rgba(180, 130, 255, 0.55)); animation: pbGlow 2.8s ease-in-out infinite;
}
.powered-by__label {
    position: relative; z-index: 1; font-size: 0.68rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}
.powered-by__name {
    position: relative; z-index: 1; font-weight: 800; font-size: 0.98rem; letter-spacing: 0.2px;
    background: linear-gradient(90deg, #b689ff, #f4d58a, #ffffff, #b689ff, #f4d58a);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: pbShine 4.5s linear infinite;
}
@keyframes pbShine { to { background-position: 300% 0; } }
@keyframes pbSweep { 0% { left: -70%; } 55%, 100% { left: 130%; } }
@keyframes pbGlow { 0%, 100% { filter: drop-shadow(0 0 4px rgba(180, 130, 255, 0.5)); } 50% { filter: drop-shadow(0 0 11px rgba(244, 213, 138, 0.75)); } }

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .section-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        z-index: 1;
    }

    section {
        padding: 50px 0;
    }

    .three-column,
    .industry-grid,
    .services-grid,
    .expertise-grid,
    .benefits-grid,
    .two-column,
    .tiers-grid,
    .service-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tiers-grid {
        max-width: 100%;
    }

    .tier-card {
        transform: scale(1) !important;
        padding: 2rem;
    }

    .tier-card:hover {
        transform: translateY(-8px) !important;
    }

    .tier-card.pro-tier {
        transform: scale(1) !important;
    }

    .tier-card.pro-tier:hover {
        transform: translateY(-8px) !important;
    }

    .tier-card.pro-tier::before {
        top: -12px;
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .tier-icon {
        height: 100px;
    }

    .tier-card h3 {
        font-size: 1.5rem;
    }

    .tier-price {
        font-size: 1.2rem;
    }

    .tier-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .hero,
    .page-header {
        background-attachment: scroll !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .industry-icon {
        font-size: 2.5rem;
    }

    section {
        padding: 30px 0;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .tier-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .tier-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .tier-icon {
        height: 120px;
        margin-bottom: 1rem;
    }

    .tier-price {
        font-size: 1rem;
        padding: 0.8rem 0;
        margin-bottom: 1rem;
    }

    .tier-features {
        margin-bottom: 1rem;
    }

    .tier-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .tier-card .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tier-card.pro-tier::before {
        top: -10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }

    .tiers-grid {
        gap: 1rem;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 2000;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--dark-purple);
    color: #fff;
}
.skip-link:focus { top: 12px; }

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease;
}
#scrollToTop.is-visible { display: block; }
#scrollToTop:hover { transform: scale(1.1); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 12px;
    border-top: 4px solid var(--primary-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:nth-child(even) { border-top-color: var(--gold); }
.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.faq-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
    transition: box-shadow 0.3s ease;
}
.faq-item:nth-child(even) { border-left-color: var(--gold); }
.faq-item:hover { box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15); }

select, option { color-scheme: dark; }
select option { background: #111; color: #E5E7EB; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .powered-by::before,
    .powered-by img,
    .powered-by__name { animation: none; }
    .hero-content { animation: none; }
    .card::after { display: none; }
}

/* Apple-style gloss on remaining surfaces */
.nav-dropdown-menu {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(12, 12, 16, 0.88)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}
.nav-logo {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cta-section {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%);
    pointer-events: none;
}
.cta-section .container { z-index: 1; }
.faq-item, .step {
    background: var(--glass-fill) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--glass-shadow);
}
.mobile-menu-toggle {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.page-header {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* ===== Smooth Scrolling ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
