/* ===== 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;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: '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;
}

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;
}

.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 {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.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-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);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        z-index: 1000;
        padding: 2rem;
        pointer-events: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
        pointer-events: auto;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.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: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    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;
}

.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: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

/* ===== 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);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--primary-purple);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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 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;
}

/* Glassmorphism for specific elements */
.legal-content .container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem !important;
    margin-top: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===== 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(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
    border-top: 4px solid var(--primary-purple);
    transition: all 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: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
    color: var(--text-light);
}

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: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.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;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
}

.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: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dark-gold) 0%, #f59e0b 100%);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.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(135deg, #111111 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

.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-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== 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;
    }
}

@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;
}

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