:root {
    --bg-dark: #050510;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --primary-glow: rgba(0, 255, 255, 0.6);
    --secondary-glow: rgba(138, 43, 226, 0.6);
    --accent-cyan: #00f3ff;
    --accent-purple: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-main);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse-glow 10s infinite alternate;
}

.globe-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -100px;
    right: -100px;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-glow);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.globe-3 {
    width: 300px;
    height: 300px;
    background: #0044ff;
    top: 40%;
    left: 30%;
    opacity: 0.2;
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Navbar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    transition: all 0.3s ease;
}

/* Metaverse Grid Animation */
.metaverse-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    perspective: 1000px;
}

.grid-plane {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg);
    animation: grid-move 20s linear infinite;
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 80%, transparent 100%);
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 1000px;
        /* Adjust based on calculation */
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 1rem 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-cyan);
    padding-left: 1.2rem;
}

.cta-button-small {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: var(--glass-bg);
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cta-button-small:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        height: 100dvh;
        width: 100%;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 900;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .cta-button-small {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 100dvh;
    align-items: center;
    padding: 8rem 5% 4rem;
    /* Adjusted top padding for fixed nav */
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

/* Text Content */
.badge-container {
    margin-bottom: 1.5rem;
}

.glass-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.headline {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.subtext {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

.primary-btn {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--accent-cyan), #00aaff);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.secondary-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: background 0.3s;
}

.secondary-btn:hover {
    background: var(--glass-bg);
}

/* Visual Content / Floating Cards */
.visual-content {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.glass-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-20px) rotateX(2deg) rotateY(2deg);
    }

    100% {
        transform: translateY(0px) rotateX(0) rotateY(0);
    }
}

/* Specific Cards */
.card-main {
    width: 320px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-left: -160px;
    /* center */
    margin-top: -100px;
    /* center */
    padding: 1.5rem;
    z-index: 2;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.code-line {
    font-family: monospace;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.keyword {
    color: #ff79c6;
}

.variable {
    color: #8be9fd;
}

.function {
    color: #50fa7b;
}

.string {
    color: #f1fa8c;
}

.object {
    color: #ffb86c;
}

.method {
    color: #bd93f9;
}

.progress-bar-container {
    margin-top: 1.5rem;
}

.label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 3px;
    animation: fill-progress 2s ease-out forwards;
}

@keyframes fill-progress {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

/* Floating Satellite Cards */
.card-stat {
    top: 20%;
    right: 15%;
    width: 120px;
    padding: 1rem;
    text-align: center;
    z-index: 1;
    animation-delay: 1s;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-agent {
    bottom: 25%;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    width: 180px;
    z-index: 3;
    animation-delay: 2s;
    border-left: 3px solid var(--accent-cyan);
}

.agent-avatar {
    width: 30px;
    height: 30px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.agent-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.agent-status {
    font-size: 0.7rem;
    color: var(--accent-cyan);
}


@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .headline {
        font-size: 3rem;
    }

    .cta-group {
        justify-content: center;
    }

    .visual-content {
        height: 450px;
        /* Increased height to give more room */
        margin-top: 2rem;
        /* Scale down the entire visual container for mobile */
        transform: scale(0.9);
        transform-origin: center top;
    }

    /* Adjust positions to prevent overlap on small screens */
    .card-stat {
        right: auto;
        left: 50%;
        top: 0;
        transform: translateX(50%);
        /* Top Right quadrant relative to center */
        margin-left: 20px;
        /* Push it right from center */
    }

    .card-agent {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        /* Bottom Left quadrant relative to center */
        margin-left: -120px;
        /* Push it left from center */
    }
}

@media (max-width: 480px) {
    .visual-content {
        transform: scale(0.75);
        height: 400px;
        margin-left: 0;
        width: 100%;
    }

    .card-stat {
        /* On very small screens, force it to top right corner but safe from center */
        display: block;
        right: 0;
        left: auto;
        top: -10px;
        transform: none;
        margin: 0;
        z-index: 10;
    }

    .card-agent {
        display: block;
        left: 0;
        bottom: 0;
        transform: none;
        margin: 0;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    margin-top: 4rem;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 243, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* AI Consultant Section */
.consultant-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.consultant-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.section-title-left {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Chat Interface */
.chat-interface-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.chat-interface {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: float 8s ease-in-out infinite reverse;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.agent-avatar-small {
    width: 30px;
    height: 30px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.chat-title {
    font-weight: 600;
    font-size: 0.9rem;
    flex-grow: 1;
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 5px #27c93f;
}

.chat-body {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 80%;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    animation: fade-in-up 0.5s forwards;
}

.bot-message {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-message {
    background: linear-gradient(135deg, var(--accent-cyan), #00aaff);
    color: #000;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
    font-weight: 500;
    animation-delay: 1.5s;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

.bot-message:last-child {
    animation-delay: 3s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-dots span {
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
    font-size: 1.5rem;
    margin: 0 2px;
    line-height: 10px;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fake-input {
    flex-grow: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.send-btn {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Tablet Optimization for Consultant Section */
@media (max-width: 1024px) {
    .consultant-container {
        gap: 2rem;
    }

    .section-title-left {
        font-size: 2.5rem;
        /* Reduce size on tablet */
        word-wrap: break-word;
        /* Ensure wrapping */
    }
}

@media (max-width: 900px) {
    .consultant-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title-left {
        text-align: center;
        font-size: 2.5rem;
        /* Consistent with tablet adjustment */
    }

    .chat-interface {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        /* Center the chat interface */
    }
}

/* Process Section */
.process-section {
    padding: 6rem 5%;
    position: relative;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    z-index: -1;
    opacity: 0.3;
}

.process-step {
    position: relative;
    transition: transform 0.3s;
}

.step-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

.process-step:hover .step-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: monospace;
}

.process-step:hover .step-number {
    color: rgba(0, 243, 255, 0.1);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
    position: relative;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

/* Animation Delays */
.delay-1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.delay-2 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.delay-3 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.delay-4 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 4.5s;
}

@media (max-width: 900px) {
    .process-line {
        display: none;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 4rem;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0f0f1f 0%, #000 100%);
    z-index: -1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float-slow 10s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: 10%;
    left: 20%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.shape-square {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 30%;
    animation: rotate-float 15s linear infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.03);
    border: none;
    bottom: 30%;
    left: 25%;
    animation: rotate-float 20s linear infinite reverse;
}

.shape-triangle::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -45px;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 90px solid rgba(255, 255, 255, 0.02);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn-minimal {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn-minimal:hover {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(-20px);
    }

    100% {
        transform: rotate(360deg) translateY(0);
    }
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }
}

/* Trusted By Section */
.trusted-section {
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.company-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    filter: grayscale(100%);
    transition: all 0.3s;
    cursor: default;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Why Us Section */
.why-us-section {
    padding: 4rem 5%;
    background: rgba(255, 255, 255, 0.01);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.why-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.main-footer {
    background: #020205;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 5% 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

/* Scroll Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for better effect */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}