:root {
    --bg-dark: #050b14;
    --bg-card: #0a1120;
    --primary: #3b82f6;
    /* Electric Blue */
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #6366f1;
    /* Indigo */
    --accent: #06b6d4;
    /* Cyan */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.1);

    --font-main: 'Outfit', sans-serif;

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

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

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

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    margin-left: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.85);
    /* Glassmorphism */
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-links .sm-btn {
    margin-left: 2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.mobile-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 1rem;
}

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

.mobile-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    /* Account for fixed header */
    padding-bottom: 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

/* AI Automation Network Animation */
/* Sci-Fi AI Network Animation */
.ai-network-anim {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sci-fi Reactor Ring */
.ai-network-anim::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
    z-index: 0;
}

.ai-network-anim::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.05);
    z-index: 0;
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.network-node {
    position: absolute;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(6, 182, 212, 0.5);
    /* Cyan border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 10px rgba(6, 182, 212, 0.1);
    z-index: 2;
}

.center-node {
    width: 90px;
    height: 90px;
    border-color: var(--primary);
    z-index: 5;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), #000);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.node-icon {
    font-size: 2rem;
    z-index: 2;
    filter: drop-shadow(0 0 5px var(--accent));
}

.center-node .node-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 15px var(--primary));
}

/* Radar Sweep Effect */
.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(59, 130, 246, 0.3) 360deg);
    opacity: 0;
    animation: radar-sweep 4s linear infinite;
}

@keyframes radar-sweep {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

.satellite {
    width: 55px;
    height: 55px;
}

.satellite .node-icon {
    font-size: 1.8rem;
}

/* Positions */
.node-chat {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* 
 * Equilateral Placement Calculation (Radius ~140px from center):
 * Center: (50%, 50%) -> (170px, 170px)
 * Top (Chat): (50%, 5px) -> Center ~32px -> Dist ~138px.
 * Bottom Left (DB): 60 deg from vertical -> x=50, y=240.
 * Bottom Right (Cloud): -60 deg from vertical -> x=290, y=240.
 */

.node-db {
    bottom: 70px;
    left: 20px;
}

.node-cloud {
    bottom: 75px;
    right: 15px;
}

/* Animate Icons */
.satellite .node-icon {
    display: inline-block;
    animation: float-icon 3s ease-in-out infinite;
}

.node-db .node-icon {
    animation-delay: 1s;
}

.node-cloud .node-icon {
    animation-delay: 2s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 5px var(--accent));
    }

    50% {
        transform: translateY(-4px);
        filter: drop-shadow(0 0 15px var(--accent));
    }
}

/* Connecting Beams */
.network-line {
    position: absolute;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    width: 1px;
    transform-origin: top center;
    z-index: 1;
    opacity: 0.6;
    box-shadow: 0 0 8px var(--primary);
}

/* Line Geometry */
/* Radius length standardized: 130px */
.l-1 {
    height: 130px;
    top: 50%;
    left: 50%;
    /* Connect to Top (Chat) which is at (50%, 5px) from container perspective.
       Line should start at CENTER (50%, 50%) and go UP.
       Transform origin is "top center".
       If we rotate 180deg, it points UP? 
       Standard CSS: 0 deg = down.
       180 deg = up.
       So rotate(180deg).
    */
    transform: rotate(180deg);
    transform-origin: top center;
}

/* Brain to Cloud (Bottom Right) */
/* Target is at ~4 o'clock (-60deg or 300deg in standard math, or 60 deg from bottom)
   If 0deg is Down.
   We want to point to Bottom Right.
   Angle is -60deg (to the left/counter-clockwise from Down) -> No, that's Bottom Left.
   Angle is 60deg (to the right/clockwise from Down) -> This is Bottom Right.
   Wait, let's verify visual circle.
   0 = 6 o'clock.
   -60 = 8 o'clock (Bottom Left).
   60 = 4 o'clock (Bottom Right).
   So l-2 (Cloud, Bottom Right) should be rotate(-60deg) -> Incorrect based on this logic.
   
   Let's re-evaluate based on previous step success/failure.
   Previous step: l-2 was -60deg, l-3 was 60deg.
   Visually: l-2 is Cloud (Right), l-3 is Storage (Left).
   If 0 is DOWN:
     -60 deg -> Points LEFT (8 o'clock). -> Should be l-3.
     60 deg -> Points RIGHT (4 o'clock). -> Should be l-2.
   
   Let's swap them to be sure.
*/
.l-2 {
    height: 130px;
    top: 50%;
    left: 50%;
    transform: rotate(-60deg);
    /* This points Left (8 o'clock) if 0 is Down? Or Right? 
                                   Test: rotate(90) leans left (3 oclock? No 90 is left? No usually clockwise.)
                                   CSS rotate: positive is clockwise.
                                   0 = Down (if element is height-based line).
                                   90 = Left (9 o'clock).
                                   -90 = Right (3 o'clock).
                                   
                                   So we want Bottom Right (4-5 o'clock).
                                   This is -30 or -60 degrees.
                                   So rotate(-60deg) for Right side.
                                */
    transform-origin: top center;
}

/* Brain to Storage (Bottom Left) */
/* We want Bottom Left (7-8 o'clock).
   This is +30 or +60 degrees.
*/
.l-3 {
    height: 130px;
    top: 50%;
    left: 50%;
    transform: rotate(60deg);
    transform-origin: top center;
}

/* Data Laser Packets */
.data-packet {
    position: absolute;
    width: 4px;
    height: 12px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--accent);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p-1 {
    animation: packet-travel 1.5s linear infinite;
}

.p-2 {
    animation: packet-travel 2s linear infinite 0.5s;
}

.p-3 {
    animation: packet-travel 1.8s linear infinite 0.8s;
}

@keyframes packet-travel {
    0% {
        top: 0;
        opacity: 0;
        transform: translateX(-50%) scaleY(0.5);
    }

    20% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }

    80% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }

    100% {
        top: 100%;
        opacity: 0;
        transform: translateX(-50%) scaleY(0.5);
    }
}

/* Agitation Section */
.centered {
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.warning-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.warning-card h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

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

/* Services (Premium Glass Grid) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(10, 17, 32, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    background: rgba(10, 17, 32, 0.7);
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1) rotate(5deg);
}

.service-info h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Us / Benefits */
.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.benefits-text {
    flex: 1;
}

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

.check-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.check-list li span {
    color: var(--accent);
    margin-right: 0.5rem;
    font-weight: bold;
}

.check-list li strong {
    color: var(--white);
}

.benefits-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(10, 17, 32, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* Tech Stack */
.tech-stack {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 11, 20, 0.5);
}

.tech-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.tech-item {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.tech-item:hover {
    color: var(--white);
    opacity: 1;
}

/* CTA */
.cta-container {
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    padding: 4rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    appearance: none;
    /* Remove default arrow for custom styling if desired, simpler to keep for now */
}

/* Add custom arrow for select or keep default - keeping simple for reliability */
.form-select {
    cursor: pointer;
}

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

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.pulse-btn {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

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

/* Footer (Modern Grid) */
footer {
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    background: linear-gradient(to top, #000, var(--bg-dark));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        text-align: center;
        align-items: center;
    }
}

/* Process Section (Connected Visuals) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
    padding: 0 1rem;
}

/* Connecting Dashed Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Align with step number center */
    left: 5%;
    width: 90%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(59, 130, 246, 0.3) 0,
            rgba(59, 130, 246, 0.3) 10px,
            transparent 10px,
            transparent 20px);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-steps::before {
        display: block;
    }
}

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.step-card:hover .step-number {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.1);
}

.step-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Process */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-steps::after {
        /* Vertical Line for Mobile */
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-50%);
        z-index: 0;
    }

    .step-number {
        background: var(--bg-dark);
        /* Cover the line */
    }
}

/* Testimonials (Premium Trust Cards) */
.testimonials {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 17, 32, 0.8) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05), transparent 70%);
    z-index: 0;
}

.testimonial-card {
    background: rgba(5, 11, 20, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.2);
    /* Gold hint */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #FFD700;
    /* Gold */
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.client-info strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        margin-top: 2rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: inline-block;
    }

    .nav-links {
        display: none;
    }

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

    .mobile-cta {
        display: inline-block;
        margin-right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .contact-form {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form select {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Strategy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--bg-card);
    margin: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--white);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 4px;
    background: var(--primary);
    width: 14%;
    /* Start at step 1/7 */
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.progress-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
}

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Radio Cards */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Style for selected radio card - handled by :checked state */
.radio-card:has(input:checked) {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.radio-card input {
    margin-right: 1rem;
    accent-color: var(--primary);
    transform: scale(1.2);
}

.radio-card span {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.form-navigation .btn-secondary {
    margin-left: 0;
}

/* Persona Toggle */
.persona-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 1rem;
}

.persona-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.3rem;
    display: inline-flex;
    position: relative;
    backdrop-filter: blur(10px);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn:hover {
    color: var(--text-primary);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Micro-copy */
.micro-copy {
    margin-top: 1rem;
    opacity: 0.7;
}

/* Responsive Toggle */
@media (max-width: 768px) {
    .persona-toggle {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-radius: 12px;
    }

    .persona-toggle-container {
        padding: 0 1rem;
    }

    .toggle-btn {
        width: 100%;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 2px;
    }
}

/* Hero Layout Refinement */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    /* Ensure text is left aligned */
}

/* Left Align Keyframe override if needed or new class */
.persona-toggle-container.left-align {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    padding-top: 0;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .persona-toggle-container.left-align {
        justify-content: center;
    }

    .hero-text {
        text-align: center;
    }
}

/* Hero Layout Refinement */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.persona-toggle-container.left-align {
    justify-content: flex-start;
    margin-bottom: 1rem;
    padding-top: 0;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .persona-toggle-container.left-align {
        justify-content: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        /* Ensure toggle is at top is natural order in column */
    }
}

/* Problem/Impact Section Refinements */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.feature-card .icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Add a subtle glow/gradient overlay on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

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