/* --- Variables & Setup --- */
:root {
    /* Color Palette - Modern AI Aesthetic */
    --bg-dark: #0a0b10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);

    --primary-blue: #3b82f6;
    --primary-purple: #6A5BFF;
    --primary-cyan: #06b6d4;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --header-bg: rgba(10, 11, 16, 0.8);
    --header-scrolled-bg: rgba(10, 11, 16, 0.95);
    --header-scrolled-shadow: rgba(0, 0, 0, 0.3);
    --orb-gradient-end: rgba(10, 11, 16, 0);
    --code-bg: #0d1117;
    --input-bg: rgba(0, 0, 0, 0.2);
    --input-bg-focus: rgba(0, 0, 0, 0.4);
    --footer-bg: #050608;
    --social-bg: rgba(255, 255, 255, 0.05);
    --stat-row-border: rgba(255, 255, 255, 0.05);
    --logo-filter: brightness(0) invert(1);
}

[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: rgba(0, 0, 0, 0.03);
    --bg-card-hover: rgba(0, 0, 0, 0.06);
    --border-glass: rgba(0, 0, 0, 0.1);

    --primary-blue: #2563eb;
    --primary-purple: #5b4aee;
    --primary-cyan: #0891b2;

    --text-main: #0f172a;
    --text-muted: #475569;

    --header-bg: rgba(255, 255, 255, 0.8);
    --header-scrolled-bg: rgba(255, 255, 255, 0.95);
    --header-scrolled-shadow: rgba(0, 0, 0, 0.1);
    --orb-gradient-end: rgba(255, 255, 255, 0);
    --code-bg: #e2e8f0;
    --input-bg: rgba(0, 0, 0, 0.05);
    --input-bg-focus: rgba(0, 0, 0, 0.1);
    --footer-bg: #f1f5f9;
    --social-bg: rgba(0, 0, 0, 0.05);
    --stat-row-border: rgba(0, 0, 0, 0.05);
    --logo-filter: brightness(0);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    color: var(--primary-purple);
}

.text-green {
    color: #10b981;
}

.text-blue {
    color: var(--primary-blue);
}

.glass-panel,
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
    margin-inline: auto;
}

.text-center .section-desc {
    margin-inline: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 91, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(106, 91, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: 0 4px 30px var(--header-scrolled-shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
    filter: var(--logo-filter);
    transition: var(--transition);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--text-main);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: var(--bg-card-hover);
}

.theme-toggle-btn svg {
    transition: var(--transition);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    transition: height 0.4s ease;
    border-bottom: 1px solid var(--border-glass);
}

.mobile-nav.active {
    height: calc(100vh - 80px);
}

.mobile-nav a {
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav.active a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav.active a:nth-child(4) {
    transition-delay: 0.4s;
}


/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 12rem 0 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Glowing Orbs */
.glow-orb {
    display: none;
}

.orb-1 {
    top: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, var(--orb-gradient-end) 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, var(--orb-gradient-end) 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Visual mock */
.main-dashboard {
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.main-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.panel-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-glass);
}

.dots span:nth-child(1) {
    background: #ef4444;
}

.dots span:nth-child(2) {
    background: #f59e0b;
}

.dots span:nth-child(3) {
    background: #10b981;
}

.panel-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.panel-body {
    padding: 2rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--stat-row-border);
    font-weight: 500;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
}

.chart-mock {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    margin-top: 2rem;
}

.bar {
    flex: 1;
    background: var(--primary-purple);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: height 1s ease-out;
}

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

.service-card {
    padding: 2.5rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* --- Expertise Section --- */
.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
}

/* --- Process Section --- */
.process-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(106, 91, 255, 0.03), var(--bg-dark));
}

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

.process-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(106, 91, 255, 0.15);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: -1;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

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

/* Code block mock */
.code-content {
    background: var(--code-bg);
    border-radius: 0 0 16px 16px;
    overflow-x: auto;
}

pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.keyword {
    color: #ff7b72;
}

.string {
    color: #a5d6ff;
}

.comment {
    color: #8b949e;
}

.function {
    color: #d2a8ff;
}


/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(106, 91, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: var(--primary-purple);
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

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

.contact-form-wrapper {
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--input-bg);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--input-bg-focus);
}

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

.budget-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.budget-option {
    cursor: pointer;
    display: block;
}

.budget-option input {
    display: none;
}

.budget-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--input-bg);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.budget-option:hover span {
    background: var(--input-bg-focus);
    border-color: rgba(255, 255, 255, 0.2);
}

.budget-option input:checked+span {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    color: #10b981;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 4rem;
    background: var(--footer-bg);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo {
    height: 32px;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-group h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--social-bg);
}

.social-links a:hover {
    color: white;
    background: var(--primary-purple);
    transform: translateY(-2px);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--bg-dark);
}

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

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid var(--primary-purple);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(106, 91, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-purple);
}

.author-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --- Industries Section --- */
.industries-section {
    background: linear-gradient(to top, var(--bg-dark), rgba(106, 91, 255, 0.02), var(--bg-dark));
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.industry-pill {
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.industry-pill:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container,
    .expertise-layout,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .expertise-visual {
        min-width: 0;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 10rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .budget-option span {
        padding: 0.75rem;
    }
}

/* --- Added Animations --- */
@keyframes float-element {

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

    50% {
        transform: translateY(-8px);
    }
}

.service-card:hover .service-icon {
    animation: float-element 2s ease-in-out infinite;
}

@keyframes float-dashboard {

    0%,
    100% {
        transform: translateY(0) perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-15px) perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }
}

.main-dashboard {
    animation: float-dashboard 6s ease-in-out infinite;
}

.main-dashboard:hover {
    animation: none;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* --- Marquee Section --- */
.scrolling-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(10, 11, 16, 0.5);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

[data-theme="light"] .scrolling-marquee {
    background: rgba(255, 255, 255, 0.5);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    padding: 0 2rem;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
}

.marquee-content span:hover {
    color: var(--primary-purple);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Custom Cursor --- */
@media (pointer: fine) {

    body,
    a,
    button,
    input,
    textarea,
    select,
    .btn,
    .service-card,
    .process-card,
    .industry-pill,
    .marquee-content span {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        display: block;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        margin-top: -4px;
        margin-left: -4px;
        background-color: var(--primary-purple);
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        margin-left: -20px;
        border: 1px solid rgba(106, 91, 255, 0.5);
        transition: width 0.2s ease-out, height 0.2s ease-out, background-color 0.2s ease-out, margin 0.2s ease-out, border-color 0.2s ease-out;
    }

    .cursor-outline.cursor-hover {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
        background-color: rgba(106, 91, 255, 0.1);
        border-color: rgba(106, 91, 255, 0.8);
    }
}

@media (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid-bg {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    height: 400px;
    position: relative;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .about-grid-bg {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

.logo-a-shape {
    width: 200px;
    height: 200px;
}

.floating-badge {
    position: absolute;
    padding: 1rem 1.5rem;
}

.badge-top-right {
    top: 2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
}

.badge-bottom-left {
    bottom: 2rem;
    left: -2rem;
    display: flex;
    flex-direction: column;
}

.floating-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.floating-badge p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge-dot {
    position: absolute;
    bottom: -4px;
    right: -10px;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-purple);
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.list-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.list-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

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

.cta-massive-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.cta-btn {
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .badge-top-right {
        right: 1rem;
    }

    .badge-bottom-left {
        left: 1rem;
    }

    .cta-massive-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-massive-title {
        font-size: 2.5rem;
    }

    .about-grid-bg {
        height: 300px;
    }

    .logo-a-shape {
        width: 120px;
        height: 120px;
    }

    .floating-badge {
        padding: 0.75rem 1rem;
    }

    .floating-badge h4 {
        font-size: 1.25rem;
    }

    .floating-badge p {
        font-size: 0.65rem;
    }

    .badge-top-right {
        top: 1rem;
        right: 0.5rem;
    }

    .badge-bottom-left {
        bottom: 1rem;
        left: 0.5rem;
    }
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 400px;
    width: 90%;
    padding: 3rem 2rem;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}