:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --accent-color: #ff6a00;
    /* Neon Orange */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.6s;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.accent {
    color: var(--accent-color);
}

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

.section-padding {
    padding: 8rem 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.network-animation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-node {
    width: 80px;
    height: 80px;
    background: rgba(255, 106, 0, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
    position: relative;
    z-index: 2;
}

.central-node i {
    width: 40px;
    height: 40px;
    animation: pulse-icon 2s infinite ease-in-out;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite ease-out;
}

.satellite-nodes .node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    z-index: 1;
    transition: all 0.3s ease;
}

.satellite-nodes .node i {
    width: 20px;
    height: 20px;
}

.satellite-nodes .node.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

/* Satellite Positions (Orbit) */
.sat-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -150%);
}

.sat-2 {
    top: 50%;
    right: 0;
    transform: translate(150%, -50%);
}

.sat-3 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 150%);
}

.sat-4 {
    top: 50%;
    left: 0;
    transform: translate(-150%, -50%);
}

/* Connection Lines */
.satellite-nodes .node::before {
    content: '';
    position: absolute;
    z-index: -1;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.sat-1::before,
.sat-3::before {
    width: 2px;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.sat-1::before {
    top: 100%;
}

.sat-3::before {
    bottom: 100%;
}

.sat-2::before,
.sat-4::before {
    height: 2px;
    width: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.sat-2::before {
    right: 100%;
}

.sat-4::before {
    left: 100%;
}

.satellite-nodes .node.active::before {
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.loading-status {
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    margin-top: 2rem;
    /* Added spacing to prevent overlap with nodes */
}

.status-text {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.progress-percentage {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
        border-width: 2px;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
        border-width: 0;
    }
}

/* Nav */
#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 2rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-btn {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-btn[data-theme="default"] {
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
}

.theme-btn[data-theme="ai"] {
    background: linear-gradient(135deg, #00e5ff, #0095ff);
}

.theme-btn.active {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    border-color: #ffffff;
}

.theme-btn:hover {
    transform: scale(1.12);
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2000;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-cta {
    background: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: inset(0 0 10% 0 round 0 0 50px 50px);
}

.parallax-bg {
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.6;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.85) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8rem 5% 0;
    gap: 4rem;
    z-index: 10;
}

/* Intro Block */
.intro-block {
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

.intro-tag {
    margin-bottom: 0.5rem;
}

.greeting {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

#typewriter-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    display: inline-block;
    color: var(--accent-color);
    animation: blink 0.7s infinite;
    margin-left: 2px;
    font-weight: 400;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Social Icons */
.social-icons {
    position: absolute;
    bottom: 6rem;
    left: 5%;
    display: flex;
    gap: 1.5rem;
    z-index: 20;
}

.social-icons a {
    color: var(--text-primary);
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons i {
    width: 22px;
    height: 22px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: inset(0 0 10% 0 round 0 0 50px 50px);
}

.parallax-bg {
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.6;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.85) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8rem 5% 0;
    gap: 4rem;
    z-index: 10;
}

/* Intro Block */
.intro-block {
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

.intro-tag {
    margin-bottom: 0.5rem;
}

.greeting {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

#typewriter-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    display: inline-block;
    color: var(--accent-color);
    animation: blink 0.7s infinite;
    margin-left: 2px;
    font-weight: 400;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.intro-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

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

    .hero-actions .btn {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.95rem;
    }

    .hero-actions .btn-primary {
        background: var(--accent-color);
        color: var(--text-primary);
    }

    .hero-actions .btn-primary:hover {
        box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
        transform: translateY(-2px);
    }

    .hero-actions .btn-secondary {
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text-primary);
        background: transparent;
    }

    .hero-actions .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

/* Social Icons */
.social-icons {
    position: absolute;
    bottom: 8rem;
    left: 5%;
    display: flex;
    gap: 1.5rem;
    z-index: 20;
}

.social-icons a {
    color: var(--text-primary);
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons i {
    width: 22px;
    height: 22px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 2%;
    /* Moved to extreme right */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    writing-mode: vertical-rl;
    color: var(--text-secondary);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Sub Sections */
.tag {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    display: block;
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Enlarged from 3.5rem */
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.about-image {
    width: 100%;
}

.image-frame {
    aspect-ratio: 1/1;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.abstract-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg-color), var(--accent-color));
    opacity: 0.3;
    border-radius: 20px;
    filter: blur(40px);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid var(--accent-color);
    opacity: 0.2;
    transform: scale(1.05);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio {
    font-size: 1.4rem;
    /* Enlarged from base */
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 800px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.features-list li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--accent-color);
}

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

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.icon-box {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

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

/* Credentials Section */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.credential-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.credential-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.1);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin: 0 auto 1.5rem;
}

.credential-icon i {
    width: 28px;
    height: 28px;
}

.credential-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.credential-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.credential-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.credential-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-img {
    height: 300px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.img-placeholder {
    font-family: var(--font-heading);
    font-weight: 800;
    opacity: 0.2;
    font-size: 2rem;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-answer {
    padding-top: 1.5rem;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* CTA & Footer */
.cta-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 4rem;
}

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

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--accent-color);
}

.btn-secondary {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

footer {
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-links a,
.footer-socials a {
    color: var(--text-secondary);
    margin-left: 2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Mobile Responsive */
/* Tablet & Mobile Styles */
@media (max-width: 992px) {
    #top-nav {
        padding: 1rem 5%;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-agent {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        padding: 2rem;
        border-left: 1px solid var(--border-color);
        z-index: 1500;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn-cta) {
        margin: 1.5rem 0;
        font-size: 1.2rem;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .theme-toggle {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        gap: 2.5rem;
    }

    .intro-block {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-name {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-tagline {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .expertise-block {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        align-items: center;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .social-icons {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 2rem;
        gap: 2rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }

    .bio {
        font-size: 1.1rem;
        text-align: center;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .rarity-grid {
        grid-template-columns: 1fr;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .cs-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-table-header, .cs-table-row {
        grid-template-columns: 1fr 1fr;
    }

    .cs-table-header span:nth-child(3),
    .cs-table-header span:nth-child(4),
    .cs-table-row span:nth-child(3),
    .cs-table-row span:nth-child(4) {
        display: none;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 3rem;
    }

    .hands-on-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hands-on-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .cta-headline {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links a,
    .footer-socials a {
        margin: 0 1rem;
    }

    .tools-intro-block {
        padding: 1.5rem;
    }

    .logo-item img {
        width: 80px;
        height: 80px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 6rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 18vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icons i {
        width: 20px;
        height: 20px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .tag {
        font-size: 0.7rem;
    }

    h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .cs-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .cs-metric {
        padding: 1.25rem 1rem;
    }

    .cs-metric-number {
        font-size: 1.5rem;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .serve-card {
        padding: 1.5rem;
    }

    .hands-on-stats {
        flex-direction: column;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .tools-intro-block {
        padding: 1rem;
    }

    .logo-item img {
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    .logo-item span {
        font-size: 0.7rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    #ready-to-work {
        padding: 6rem 0;
    }

    #ready-to-work h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .ready-text {
        font-size: 1rem;
    }
}

/* AI Agent Workflow Animation */
.ai-agent-container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 15;
    pointer-events: none;
    /* Let clicks pass through */
    opacity: 0;
    /* Hidden initially, revealed by JS */
}

.workflow-node {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.node-icon {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.data-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transform: translateX(-100%);
}

.node-process {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
    position: relative;
}

.typing-indicator {
    display: flex;
    gap: 3px;
    margin-left: 0.5rem;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Mobile Adjustment for AI Agent */
@media (max-width: 992px) {
    .ai-agent-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 2rem auto;
        justify-content: center;
        flex-wrap: wrap;
    }

    .connector {
        width: 30px;
    }
}

/* AI Agent Workflow Animation - Navbar Version */
.nav-agent.ai-agent-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    /* Centered and Scaled */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    opacity: 1;
    z-index: 10;
    margin-left: 0;
}

.workflow-node {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Tighter radius */
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.node-icon {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure icons in nav are visible but small */
.node-icon i {
    width: 16px;
    height: 16px;
}

.node-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.connector {
    width: 30px;
    /* Shorter connectors */
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.data-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    /* Smaller pulse */
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
    transform: translateX(-100%);
}

.node-process {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
    position: relative;
}

.typing-indicator {
    display: flex;
    gap: 2px;
    margin-left: 0.3rem;
}

.typing-indicator span {
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* =============================================
   WHO I SERVE SECTION
   ============================================= */
#who-i-serve {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(15, 10, 5, 1) 100%);
}

.serve-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    line-height: 1.8;
}

.serve-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.8;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    text-align: left;
}

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

.serve-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.serve-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.1);
}

.serve-card:hover::before {
    opacity: 1;
}

.serve-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.serve-icon i {
    width: 28px;
    height: 28px;
}

.serve-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.serve-tagline {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.serve-detail {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.serve-detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.serve-result {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-primary) !important;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 10px;
    padding: 0.8rem !important;
}

.serve-result i {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================
   TOOLS & PLATFORMS SECTION
   ============================================= */
#tools-platforms {
    background: var(--bg-color);
}

.tools-intro-block {
    max-width: 850px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.tools-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.tools-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
}

.platform-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: end;
}

.platform-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.platform-logo-box {
    width: 80px;
    height: 80px;
    background: #EA4B71;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-logo-box:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.platform-svg {
    width: 100%;
    height: 100%;
}

.platform-logo-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    text-align: center;
}

.platform-logo-item:hover span {
    color: var(--text-primary);
}

/* =============================================
   HOW I WORK SECTION
   ============================================= */
#how-i-work {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(10, 5, 2, 1) 100%);
}

.how-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.how-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.package-card.featured {
    border-color: var(--accent-color);
    background: rgba(255, 106, 0, 0.05);
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.15);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05rem;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin: 0 auto 1.5rem;
}

.package-icon i {
    width: 28px;
    height: 28px;
}

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

.package-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Hands-On Block */
.hands-on-block {
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(255, 106, 0, 0.08);
}

.hands-on-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
}

.hands-on-badge i {
    width: 14px;
    height: 14px;
}

.hands-on-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hands-on-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.hands-on-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 106, 0, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .platform-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 4rem;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

    .hands-on-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hands-on-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .serve-sub {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-logo-box {
        width: 64px;
        height: 64px;
    }

    .hands-on-stats {
        flex-direction: column;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   LOGO MARQUEE
   ============================================= */
.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    margin-top: 1rem;
}


.logo-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

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

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

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    cursor: default;
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: translateY(-4px);
}

.logo-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    filter: grayscale(20%);
    transition: filter 0.3s, box-shadow 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0%);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

.logo-item span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.logo-item:hover span {
    color: var(--text-primary);
}

/* Remove old static grid from platforms section */
.platform-logos {
    display: none !important;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
#testimonials {
    background: linear-gradient(180deg, rgba(10, 5, 2, 1) 0%, var(--bg-color) 100%);
}

.testimonials-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3.5rem;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.08);
}

.featured-testimonial {
    border-color: var(--accent-color);
    background: rgba(255, 106, 0, 0.04);
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.12);
    transform: scale(1.03);
}

.featured-testimonial:hover {
    transform: scale(1.03) translateY(-6px);
}

.testimonial-quote {
    color: var(--accent-color);
    opacity: 0.5;
}

.testimonial-quote i {
    width: 32px;
    height: 32px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ff9a56);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-info strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-testimonial {
        transform: none;
    }

    .featured-testimonial:hover {
        transform: translateY(-6px);
    }
}


/* =============================================
   READY TO WORK SECTION
   ============================================= */
#ready-to-work {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background: #050505;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ready-to-work .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.ready-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
}

/* Abstract wave pattern using CSS */
.ready-waves::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 40px, rgba(147, 51, 234, 0.1) 41px, rgba(147, 51, 234, 0.1) 42px),
        repeating-radial-gradient(circle at 50% 60%, transparent 0, transparent 60px, rgba(79, 70, 229, 0.1) 61px, rgba(79, 70, 229, 0.1) 62px);
    opacity: 0.5;
}

#ready-to-work h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
}

.ready-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    background: var(--accent-color);
    color: white;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.5);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    #ready-to-work {
        padding: 6rem 0;
    }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-result {
    font-size: 0.9rem;
    color: var(--accent-color);
    padding: 0.75rem 1rem;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 3rem auto 0;
    }
}

/* =============================================
   CASE STUDY CTA
   ============================================= */
.cs-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-cta .btn {
    padding: 1rem 2.5rem;
}

/* =============================================
   STICKY WHATSAPP BUTTON
   ============================================= */
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.sticky-whatsapp i {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sticky-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 480px) {
    .sticky-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* =============================================
   MOBILE HERO FIXES
   ============================================= */
@media (max-width: 992px) {
    .hero-content {
        padding: 7rem 5% 3rem;
    }
    
    .intro-block {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-tagline {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 6rem 5% 2rem;
    }
    
    .hero-name {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}