/* ==========================================================================
   Lumiverse Solutions - Premium Purple Dark Theme
   ========================================================================== */

:root {
    /* Color Palette - Light Mode Refinement */
    --bg-dark: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f1f5f9;

    --primary-purple: #702af7; /* Slightly darker for better light-mode contrast */
    --primary-glow: rgba(112, 42, 247, 0.15);

    --secondary-purple: #8b5cf6;
    --accent: #6d28d9;

    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-dark: #1e293b;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(112, 42, 247, 0.1);

    /* Shadow tokens for depth on light background */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacings */
    --nav-height: 60px;
    --section-spacing: 90px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary-purple);
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-heading {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.microcopy-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-purple);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #7c3aed;
    box-shadow: 0 6px 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 42, 247, 0.1);
    color: var(--text-main);
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #000000; 
    border-color: rgba(112, 42, 247, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-ghost i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-ghost:hover i {
    transform: translateX(6px);
}

.lg-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Header / Logo Only
   ========================================================================== */
.top-logo-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.15rem 0 1.2rem 0; /* Reduced top padding to move logo up */
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Allows interactions with hero underneath if needed, but 'a' will override */
}

.top-logo-header .logo {
    pointer-events: auto;
}

.logo-img-top {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Hero Section — Split (Left text + Right 3D visual)
   ========================================================================== */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-split-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2.5rem 0; /* Reduced from 4rem */
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 520px;
}

/* ---- 3D Security Orb ---- */
.security-orb {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Shield */
.shield-core {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: shieldFloat 4s ease-in-out infinite;
}

.shield-icon {
    font-size: 6rem;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 60%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.7));
}

.shield-status {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-14px) scale(1.04);
    }
}

/* Orbiting Rings */
.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.25);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation: orbitSpin 6s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation: orbitSpin 10s linear infinite reverse;
    border-color: rgba(99, 102, 241, 0.2);
}

.orbit-3 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation: orbitSpin 16s linear infinite;
    border-color: rgba(139, 92, 246, 0.12);
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    margin-left: -6px;
}

.dot-blue {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.dot-purple {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.dot-green {
    background: #34d399;
    box-shadow: 0 0 12px #34d399;
}

/* Floating Service Pills */
.sec-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(112, 42, 247, 0.15);
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--card-shadow);
    animation: pillFloat 5s ease-in-out infinite;
}

.sec-pill i {
    color: var(--primary-purple);
}

.pill-1 {
    top: 20px;
    left: -10px;
    animation-delay: 0s;
}

.pill-2 {
    top: 20px;
    right: -10px;
    animation-delay: 1.2s;
}

.pill-3 {
    bottom: 20px;
    left: -10px;
    animation-delay: 2.4s;
}

.pill-4 {
    bottom: 20px;
    right: -10px;
    animation-delay: 3.6s;
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Stat Badges */
.stat-badge {
    position: absolute;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 42, 247, 0.15);
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    animation: pillFloat 6s ease-in-out infinite;
}

.stat-badge span {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.2;
}

.stat-1 {
    top: 45%;
    left: -40px;
    animation-delay: 0.5s;
}

.stat-2 {
    top: 45%;
    right: -40px;
    animation-delay: 2s;
}

/* Hero actions alignment for split */
.hero-left .hero-actions {
    justify-content: flex-start;
}

.hero-left .hero-ui-badges {
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left .hero-actions {
        justify-content: center;
    }

    .hero-left .hero-ui-badges {
        justify-content: center;
    }

    .hero-right {
        min-height: 360px;
    }

    .security-orb {
        width: 320px;
        height: 320px;
    }

    .orbit-3 {
        width: 300px;
        height: 300px;
        margin: -150px 0 0 -150px;
    }

    .stat-1,
    .stat-2 {
        display: none;
    }
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    /* Light Mode Grid: soft purple/slate lines */
    background-image: 
        linear-gradient(to right, rgba(112, 42, 247, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(112, 42, 247, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}


.hero-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 42, 247, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}



.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-purple);
    box-shadow: 0 0 10px var(--primary-purple);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--primary-purple);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 18px var(--primary-purple);
    }
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.highlight-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ghost button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: #fff;
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    gap: 14px;
}

.hero-ui-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: fit-content;
}

.ui-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 42, 247, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.ui-badge i {
    color: var(--primary-purple);
}


@media (max-width: 768px) {
    .hero-ui-badges {
        display: none;
    }
}

/* ==========================================================================
   Brand Logos / Marquee
   ========================================================================== */
.brand-blue {
    color: #3b82f6 !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
}

.brand-tata {
    color: #60a5fa !important;
    font-weight: 900 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem !important;
}

.brand-lic {
    color: #facc15 !important;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem !important;
}

.brand-jmn {
    color: #ef4444 !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
}

.light-blue {
    color: #60a5fa !important;
    font-weight: 400 !important;
}

.brand-idbi {
    color: #10b981 !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
}

.brand-acc {
    color: #ef4444 !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
}

.sm-txt {
    font-size: 0.8rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
}

.brand-ongc {
    color: #ef4444 !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
}

.brand-winjit {
    color: #3b82f6 !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
}

.brand-doshaheen {
    color: #0ea5e9 !important;
    font-family: cursive;
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-zydus {
    color: #3b82f6 !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
}

.pink {
    color: #ec4899 !important;
}

.brand-tech {
    color: #cbd5e1 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}


/* ==========================================================================
   Client Feedback Section
   ========================================================================== */
.feedback {
    background-color: var(--bg-dark);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(20, 13, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.author-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.author-company {
    background: var(--bg-surface-elevated);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-green {
    color: #10b981 !important;
}

.brand-bank {
    color: #6366f1 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Google Rating Card */
.google-rating-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 13, 37, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.rating-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: #4285F4;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.rating-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.google-g {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-family: sans-serif;
}




/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mini Cards Grid - changed to container for absolute children */
.mini-cards-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mini-card {
    position: absolute;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(112, 42, 247, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    animation: miniCardFloat 4s ease-in-out infinite;
    width: 160px;
    z-index: 2;
}

/* Specific Positions for Scattered Cards - Overlapping for Depth */
.card-pos-1 { top: 10%; left: 15%; z-index: 3; animation-delay: 0s; }
.card-pos-2 { top: 15%; right: 10%; z-index: 2; animation-delay: 0.8s; }
.card-pos-3 { bottom: 12%; left: 0%; z-index: 4; animation-delay: 1.6s; }
.card-pos-4 { bottom: 10%; right: 15%; z-index: 2; animation-delay: 2.4s; }

@keyframes miniCardFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.mini-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.mini-card-icon {
    font-size: 1.6rem;
    color: var(--primary-purple);
    margin-bottom: 0.2rem;
}

.mini-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(112, 42, 247, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.main-glass {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 440px; /* Increased from 320px */
    margin: 0 auto;
}

.glass-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.floating-glass {
    position: absolute;
    width: 250px;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    bottom: 10%;
    right: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(20, 13, 37, 0.8) 100%);
    border-left: 2px solid var(--primary-purple);
}

.float-1 h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    background: #f1f5f9;
    border: 1px solid rgba(112, 42, 247, 0.05);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-purple);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background-color: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid rgba(112, 42, 247, 0.05);
    padding: 2rem 1.7rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(112, 42, 247, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 2; /* Increased line-height as requested */
    position: relative;
}

/* ==========================================================================
   How It Works (Process) Section - Compact Horizontal Redesign
   ========================================================================== */
.how-it-works {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.process-container {
    position: relative;
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

/* Base Step Style (Mobile/Vertical default) */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
}

.step-indicator {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-purple);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: var(--primary-purple);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(112, 42, 247, 0.4);
}

.step-content {
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 42, 247, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-content {
    background: #ffffff;
    border-color: var(--primary-purple);
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.step-content h3 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-content h3 i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Desktop Horizontal View */
@media (min-width: 1024px) {
    .process-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        margin-top: 6rem;
    }

    .process-step {
        max-width: none;
    }

    /* Horizontal Connecting Line */
    .process-container::before {
        content: '';
        position: absolute;
        top: 30px; /* Aligns with center of 60px step-number */
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, 
            transparent, 
            var(--primary-purple) 20%, 
            var(--primary-purple) 80%, 
            transparent);
        opacity: 0.15;
        z-index: 0;
    }

    .step-content {
        padding: 1.25rem;
        min-height: 180px; /* Uniform height */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .process-container {
        gap: 2.5rem;
    }
    
    .process-step {
        max-width: 280px;
    }
}


/* ==========================================================================
   Clients & Marquee
   ========================================================================== */
.clients {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.clients-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.clients-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.clients-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.supporting-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.supporting-text p {
    color: var(--secondary-purple);
    font-size: 1rem;
    margin: 0;
}

.clients-slider-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

/* ==========================================================================
   Clients & Marquee
   ========================================================================== */
.marquee-flex-container {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1400px !important;
}

.marquee-info {
    flex: 0 0 380px;
    text-align: left;
}

.marquee-info .micro-badge {
    color: #7c3aed;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.75rem;
}

.marquee-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin: 0;
}

.marquee-divider {
    width: 2px;
    height: 90px;
    background: #e2e8f0;
    flex: 0 0 2px;
    align-self: center;
}

.marquee-scroll-area {
    flex: 1;
    overflow: hidden;
    position: relative;
    /* Soft fade edges for the marquee */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    width: max-content; /* Dynamically sizes to content */
    animation: scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem; /* Consistent spacing between logos */
    padding-right: 4rem; /* Spacing between the end of the list and the start of the clone */
}

.logo-box {
    background: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0; /* Prevents logos from being squeezed */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-box img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.large-logo {
    height: 120px !important;
}

.large-logo img {
    height: 120px !important;
}

.logo-box:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.microcopy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ==========================================================================
   Client Feedback / Reviews
   ========================================================================== */
.feedback {
    background-color: #f8fafc;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    border-color: #7c3aed33;
}

.stars {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.author-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #0f172a;
}

.author-info span {
    font-size: 0.7rem;
    color: #64748b;
    display: block;
}

.author-company {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Google Rating Card */
.google-rating-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.rating-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0f172a;
}

.rating-sub {
    font-size: 0.7rem;
    color: #64748b;
}

.google-g {
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 0;
}

/* ==========================================================================
   Expertise Section
   ========================================================================== */
.expertise-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.expertise-header {
    text-align: left;
    margin-bottom: 4rem;
}

.expertise-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0;
    line-height: 1.8;
}

/* Two-panel layout */
.expertise-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.expertise-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(112, 42, 247, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.expertise-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-panel:hover {
    border-color: rgba(112, 42, 247, 0.2);
    box-shadow: var(--card-shadow-hover);
}

.expertise-panel:hover::before {
    opacity: 1;
}

/* Panel Header */
.panel-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.expertise-main-svg {
    width: 100%;
    max-width: 1000px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.expertise-main-svg:hover {
    transform: translateY(-5px);
}

/* Category Groups */
.expertise-category {
    margin-bottom: 1.75rem;
}

.expertise-category:last-child {
    margin-bottom: 0;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.expertise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Badge base */
.exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: default;
    white-space: nowrap;
}

.exp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* === Framework badge colour variants === */
.badge-pci {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}

.badge-pci:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: #8b5cf6;
}

.badge-gdpr {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

.badge-gdpr:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.badge-hipaa {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #059669;
}

.badge-hipaa:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.badge-iso {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.badge-iso:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
}

.badge-soc {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.2);
    color: #db2777;
}

.badge-soc:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: #ec4899;
}

.badge-sox {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fde68a;
}

.badge-nist {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    color: #a5b4fc;
}

.badge-nist:hover {
    background: rgba(99, 102, 241, 0.22);
    border-color: #6366f1;
}

.badge-cobit {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
    color: #5eead4;
}

.badge-regional {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

/* === Certification badge colour variants === */
.cert-aws {
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.35);
    color: #fdba74;
}

.cert-aws:hover {
    background: rgba(255, 153, 0, 0.2);
    border-color: #ff9900;
}

.cert-azure {
    background: rgba(0, 120, 212, 0.12);
    border-color: rgba(0, 120, 212, 0.35);
    color: #93c5fd;
}

.cert-azure:hover {
    background: rgba(0, 120, 212, 0.22);
    border-color: #0078d4;
}

.cert-cloud {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
    color: #6ee7b7;
}

.cert-pentest {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.cert-pentest:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.cert-sec {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}

.cert-sec:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: #8b5cf6;
}

.cert-iso {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.cert-iso:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

/* Stats Bar */
.expertise-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    flex-wrap: wrap;
}

.exp-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0.5rem 1.5rem;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exp-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .expertise-panels {
        grid-template-columns: 1fr;
    }

    .exp-stat-divider {
        display: none;
    }

    .expertise-stats {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Certifications
   ========================================================================== */
.certifications {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cert-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s;
}

.cert-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.supporting-line {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-purple), #4c1d95);
    padding: 4rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(112, 42, 247, 0.3);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--primary-purple);
}

.cta-box .btn-primary:hover {
    background: #f3f4f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #ffffff;
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-short {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem 0;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-surface-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.links ul li,
.contact-info ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.links ul li a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info ul li i {
    color: var(--primary-purple);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: var(--bg-dark);
    padding: 80px 0; /* Reduced from 120px */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem; /* Reduced gap */
    align-items: flex-start;
    max-width: 1100px; /* Constrain overall width */
    margin: 0 auto;
}

.contact-info-panel .section-heading {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem; /* Slightly smaller */
}

.contact-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-socials {
    margin-top: 2rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem; /* Reduced padding */
    background: var(--bg-surface);
    border-radius: 10px;
    border: 1px solid rgba(112, 42, 247, 0.05);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateX(5px);
    border-color: rgba(112, 42, 247, 0.2);
}

.method-icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.method-details h4 {
    font-size: 1rem;
    margin-bottom: 0px;
    color: var(--text-main);
}

.method-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-glass-container {
    background: #ffffff;
    padding: 1.5rem; /* Reduced from 2.5rem */
    border-radius: 16px;
    border: 2px solid rgba(112, 42, 247, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    position: relative;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-visual {
        order: 1;
        height: 350px;
    }

    .hero-points {
        display: inline-block;
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .microcopy-subtext {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-surface-elevated);
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-heading {
        font-size: 2rem;
    }

    .about-visual {
        display: none;
        /* Hide complex glass elements on small mobile if cluttered */
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-copyright {
    background: var(--bg-surface);
    border-top: 1px solid rgba(112, 42, 247, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 1rem 0; /* Reduced from 2rem */
}

.text-center {
    text-align: center;
}