@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

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

body {
    background: #000000;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
    cursor: auto;
}

#lightCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    z-index: -1;
}

.name {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    margin-top: 15vh;
}

.name h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(63px, 8vw, 150px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
    animation: glowText 3s ease-in-out infinite alternate, slideUp 2s ease forwards;
    opacity: 0;
    margin-bottom: 1vh;
    cursor: default;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 60px rgba(255, 255, 255, 0.3);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.sub {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10vh;
}

.sub p1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(20px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4vh;
    cursor: default;
    animation: slideUp 2.5s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 12px 24px;
    margin: 20px auto;
    width: 90%;
    max-width: 900px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 10px;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 6vh auto;
    flex-wrap: wrap;
}

.btni {
    height: 52px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    min-width: 160px;
}

.btni.solid {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.btni.solid:hover {
    background-color: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btni.transparent {
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btni.transparent:hover {
    background-color: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.btni .i {
    font-size: 200px;
}

/* Electric Border CSS */
:root {
    --electric-border-color: rgba(255, 255, 255, 0.6);
    --eb-border-width: 2px;
}

.eb-svg {
    position: fixed;
    top: -1000%;
    left: -1000%;
    width: 1px;
    height: 1px;
    z-index: -9999;
    opacity: 0;
    pointer-events: none;
}

.eb-layers {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    overflow: hidden;
}

.eb-stroke {
    position: absolute;
    inset: calc(-1 * var(--eb-border-width));
    border: var(--eb-border-width) solid var(--electric-border-color);
    border-radius: inherit;
    background: transparent;
}

.eb-glow-1 {
    position: absolute;
    opacity: 0.6;
    animation: rotate 3s linear infinite;
}

.eb-glow-2 {
    position: absolute;
    border-radius: inherit;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite alternate;
}

.eb-background-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(0, 255, 224, 0.1), transparent);
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    from { opacity: 0.2; }
    to { opacity: 0.6; }
}

/* Animated Background */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7), #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
    font-family: 'Orbitron', sans-serif;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
}

/* Special grid for the final card to be broader */
.final-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 3rem;
    padding: 0 1rem;
}

/* Electric Card Styles */
.electric-card {
    position: relative;
    background: rgba(15, 25, 35, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.electric-card.electric-border {
    --electric-border-color: rgba(255, 255, 255, 0.6);
    --eb-border-width: 2px;
}

/* Enhanced final card */
.final-engine-card {
    min-height: 450px;
    padding: 3.5rem;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
}

.final-engine-card .card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #d0d0d0, #a0a0a0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-engine-card .card-description {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Electric Border Animation */
.electric-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent,
        rgba(255, 255, 255, 0.5)
    );
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -2;
    animation: electric-border 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes electric-border {
    0% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg);
    }
    100% {
        background-position: 100% 100%;
        filter: hue-rotate(30deg);
    }
}

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

/* Inner Glow */
.electric-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 50%
    );
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.electric-card:hover::after {
    opacity: 1;
}

/* Card Content */
.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.electric-card:hover .card-number {
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.85);
    transform: rotate(360deg);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-electric {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-electric::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.85),
        transparent
    );
    animation: rotate-glow 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.electric-card:hover .icon-electric::before {
    opacity: 0.5;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-electric svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255, 255, 255, 0.85);
    fill: none;
    stroke-width: 2;
    z-index: 1;
    position: relative;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Electric Pulse Effect */
.electric-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 15, 30, 0.95);
    animation: electric-pulse 0.5s ease;
}

@keyframes electric-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.15);
    }
}

/* Connector Arrow */
.connector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    opacity: 0.8;
}

.arrow-electric {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.85),
        transparent
    );
    position: relative;
    animation: flow 2s linear infinite;
}

@keyframes flow {
    0% { background-position: -100px 0; }
    100% { background-position: 100px 0; }
}

.arrow-electric::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid rgba(255, 255, 255, 0.85);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

/* Result Section */
.result-section {
    margin-top: 5rem;
    padding: 4rem;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-section::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.5),
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    background-size: 300% 300%;
    border-radius: 32px;
    z-index: -1;
    animation: electric-border 4s linear infinite;
    opacity: 0.5;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-40px) rotate(180deg); 
        opacity: 1; 
    }
}

.flow-container {
    max-width: 1600px;
    margin: 40vh auto 0;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

/* Journey Section */
.journey-section {
    margin-bottom: 6rem;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Step Card Styles */
.step-card {
    position: relative;
    background: rgba(15, 25, 35, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.15);
}


.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.5s ease;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.step-card:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
    transition: all 0.5s ease;
    z-index: 1;
    position: relative;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

/* Section Connector */
.section-connector {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.connector-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flow-arrow {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.85),
        transparent
    );
    position: relative;
    overflow: hidden;
}

.flow-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: flowEnergy 2s linear infinite;
}

@keyframes flowEnergy {
    to {
        left: 100%;
    }
}

.flow-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1rem;
}

/* Dashboard Grid Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 250px;
    gap: 20px;
    height: 470px;
    max-width: 800px;
    width: 100%;
    margin: 4rem auto 0;
}

/* Security Card - Top Left - Full Width */
.security-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.security-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.lock-icon {
    width: 32px;
    height: 32px;
    background: #38b2ac;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lock-icon .shield-svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.security-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.security-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 16px;
    flex-grow: 1;
}

.security-badge {
    background: rgba(56, 178, 172, 0.1);
    color: #38b2ac;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    align-self: flex-start;
}

/* AI Business Card - Bottom Left with Radar */
.ai-card {
    background: linear-gradient(135deg, #2d5a5a 0%, #1f4444 100%);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.ai-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    flex-grow: 1;
}

.ai-bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.apply-button {
    background: #38b2ac;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-2px);
    background: #319795;
}

/* Radar Section in AI Card */
.radar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.radar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.loader::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.loader span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 100%;
    background: transparent;
    transform-origin: top left;
    animation: radar 2s linear infinite;
    border-top: 2px solid #38b2ac;
}

.loader span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #38b2ac;
    transform-origin: top left;
    transform: rotate(-60deg);
    filter: blur(10px);
    opacity: 0.4;
}

@keyframes radar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Growth Card - Bottom Right */
.growth-card {
    background: black;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #000000;
}

.growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.growth-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-icon {
    width: 24px;
    height: 24px;
    background: #38b2ac;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.growth-icon::after {
    content: "📈";
}

.growth-stats {
    margin-bottom: 16px;
}

.growth-number {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
}

.growth-percentage {
    font-size: 12px;
    color: #38b2ac;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.growth-percentage::before {
    content: "↗";
    font-size: 14px;
}

.chart-container {
    height: 50px;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

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

.growth-path {
    fill: none;
    stroke: #38b2ac;
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px #38b2ac);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease-out forwards;
}

.growth-area {
    fill: url(#gradient);
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1s forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .steps-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .engine-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .final-engine-card {
        padding: 2.5rem 2rem;
        min-height: 400px;
    }

    .final-engine-card .card-title {
        font-size: 1.6rem;
    }

    /* Hide horizontal connecting lines on mobile - single column layout */
    .step-card::after,
    .step-card::before {
        display: none;
    }

    /* Add vertical connecting lines for mobile */
    .step-card:not(:last-child) {
        position: relative;
    }

    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 2rem;
        background: linear-gradient(180deg, #00ffe0, rgba(0, 255, 224, 0.3));
        box-shadow: 0 0 10px #00ffe0, 0 0 20px rgba(0, 255, 224, 0.5);
        z-index: 10;
        opacity: 0;
        animation: lineGlow 3s ease-in-out infinite alternate, fadeInLine 1s ease forwards 0.5s;
        display: block;
    }

    .step-card:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -1.8rem;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 8px solid #00ffe0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        z-index: 11;
        opacity: 0;
        filter: drop-shadow(0 0 8px #00ffe0);
        animation: fadeInArrow 1s ease forwards 0.8s;
        display: block;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 16px;
        height: auto;
    }

    .security-card {
        grid-column: 1;
        min-height: 180px;
        padding: 20px;
    }

    .ai-card,
    .growth-card {
        min-height: 220px;
        padding: 20px;
    }

    .ai-bottom-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .radar-section {
        align-self: center;
    }

    .growth-number {
        font-size: 24px;
    }

    .loader {
        width: 50px;
        height: 50px;
    }

    .chart-container {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .flow-container {
        padding: 16px 12px;
    }

    .dashboard-grid {
        gap: 12px;
    }

    .security-card,
    .ai-card,
    .growth-card {
        min-height: 180px;
        padding: 16px;
        border-radius: 16px;
    }

    .security-content h2,
    .ai-card h2 {
        font-size: 16px;
    }

    .security-card p,
    .ai-card p {
        font-size: 12px;
    }

    .growth-number {
        font-size: 20px;
    }

    .loader {
        width: 45px;
        height: 45px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 900px;
    }

    .dashboard-grid {
        height: 550px;
        gap: 24px;
        grid-template-rows: 220px 280px;
    }

    .security-card,
    .ai-card,
    .growth-card {
        padding: 28px;
    }

    .loader {
        width: 70px;
        height: 70px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .security-card,
    .apply-button {
        transition: none;
    }

    .security-card:hover {
        transform: none;
    }

    .growth-path,
    .growth-area {
        animation: none;
        stroke-dashoffset: 0;
        opacity: 1;
    }

    .loader span {
        animation: none;
    }
}












 footer {
           align-items: center;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
          
        
        
          }


        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f1f1f1;
            letter-spacing: 1px;
            cursor: default;
        }

        .footer-section p,
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: all 0.3s ease;

        }

        .footer-section a:hover {
            color: #efefef;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
        }


        footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 250px;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
   max-width: 100%;
      margin: 0 auto;
      padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f1f1f1;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Icons in Footer */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00ffe0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 224, 0.3);
}

.social-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 255, 224, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 224, 0.3);
    border-color: #00ffe0;
}

.social-icon:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

/* Footer Media Queries */
@media screen and (max-width: 1024px) {
    footer {
        padding: 50px 0 25px;
        margin-top: 150px;
      
       
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        margin-top: 100px;
    }
    
    footer .container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .social-icons {
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 80px;
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .social-icons {
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

@media screen and (max-width: 320px) {
    footer {
        padding: 25px 0 12px;
        margin-top: 60px;
    }
    
    footer .container {
        padding: 0 10px;
    }
    
    .footer-content {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .social-icons {
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}

/* Container Media Queries */
@media screen and (max-width: 1200px) {
    footer .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media screen and (min-width: 1201px) {
    footer .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    footer .container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    footer .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 320px) {
    footer .container {
        padding: 0 10px;
    }
}





/* prohome css*/


.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 8px rgba(255,255,255,0.4), 0 0 15px rgba(255,255,255,0.2);
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    background: #00ffe0;
    border-radius: 50%;
    box-shadow: 0 0 3px #00ffe0;
}

/* Random floating animations */
@keyframes floatRandom1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translate(-100px, -200px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatRandom2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    85% {
        opacity: 0.6;
    }
    100% {
        transform: translate(150px, -180px) rotate(-200deg);
        opacity: 0;
    }
}

@keyframes floatRandom3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.8;
    }
    88% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-80px, -250px) rotate(270deg);
        opacity: 0;
    }
}

@keyframes floatRandom4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.5;
    }
    92% {
        opacity: 0.5;
    }
    100% {
        transform: translate(120px, -160px) rotate(-150deg);
        opacity: 0;
    }
}

@keyframes floatRandom5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-200px, -300px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatDiagonal1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        transform: translate(-150px, -150px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatDiagonal2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate(180px, -120px) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes floatCurved1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(-30px, -150px) rotate(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-100px, -200px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatCurved2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    30% {
        transform: translate(-60px, -40px) rotate(-90deg);
        opacity: 0.7;
    }
    70% {
        transform: translate(40px, -120px) rotate(-270deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(120px, -180px) rotate(-360deg);
        opacity: 0;
    }
}

/* Particle size variations */
.particle.small {
    width: 2px;
    height: 2px;
}

.particle.medium {
    width: 4px;
    height: 4px;
}

.particle.large {
    width: 6px;
    height: 6px;
}

.particle.extra-small {
    width: 1px;
    height: 1px;
}

/* Glow variations */
.particle.glow {
    box-shadow: 0 0 12px #00ffe0, 0 0 20px #00ffe0, 0 0 30px #00ffe0;
}

.particle.soft-glow {
    box-shadow: 0 0 6px #00ffe0, 0 0 12px #00ffe0;
}

.particle.intense-glow {
    box-shadow: 0 0 15px #00ffe0, 0 0 25px #00ffe0, 0 0 35px #00ffe0, 0 0 45px #00ffe0;
}


/* ===== MINIMAL ANIMATED SECTIONS ===== */

/* Stats Section - Minimal */
.stats-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Case Studies - Minimal */
.case-studies-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.case-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.case-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.case-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.04);
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.case-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-stats {
    margin-bottom: 25px;
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-big {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}

.stat-small {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.case-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.case-link:hover {
    color: #fff;
    transform: translateX(4px);
    display: inline-block;
}

/* Testimonials - Minimal */
.testimonials-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    padding: 35px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.testimonial-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.testimonial-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
}

.stars {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author strong {
    color: #fff;
    font-size: 15px;
}

.author span {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Trusted By - Minimal Strip */
.trusted-section {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trusted-label {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    padding: 12px 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trusted-logos span {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    padding: 8px 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.trusted-logos span:nth-child(1) { animation-delay: 0.1s; }
.trusted-logos span:nth-child(2) { animation-delay: 0.2s; }
.trusted-logos span:nth-child(3) { animation-delay: 0.3s; }
.trusted-logos span:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.trusted-logos span:hover {
    color: #fff;
    transform: scale(1.08) translateY(-3px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .case-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        gap: 30px;
    }
}
