:root {
    --primary-color: #2BA88A;
    --primary-dark: #219a7a;
    --secondary-color: #4285f4;
    --accent-color: #2BA88A;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #b0b0b0;
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-primary: #232628;
    --bg-secondary: #2a2d30;
    --bg-dark: #1a1c1e;
    --border-color: rgba(43, 168, 138, 0.2);
    --gradient-1: linear-gradient(135deg, #2BA88A 0%, #4285f4 100%);
    --gradient-2: linear-gradient(135deg, #2BA88A 0%, #219a7a 100%);
    --gradient-3: linear-gradient(135deg, #4285f4 0%, #2BA88A 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
    /*background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%) !important;*/
    background: #232628 !important;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #5c6bc0 0%, #7986cb 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.nav-pd {
    padding: 0px !important;
}

.navbar {
    background: #1F2425;
    width: 100%;
    padding-right: 50px !important;
    padding-left: 70px !important;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 100%;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(43, 168, 138, 0.2);
    color: #2BA88A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.gradient-text {
    background: linear-gradient(135deg, #2BA88A 0%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-description {
    font-size: 16px !important;
    color: #e0e0e0;
    margin-bottom: 28px;
    line-height: 1.7 !important;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #5c6bc0;
    color: white;
}

.btn-primary:hover {
    background: #7986cb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #2BA88A;
    color: #0a0a0a;
    border: 2px solid #2BA88A;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #219a7a;
    border-color: #219a7a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Manrope' !important;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #2BA88A 0%, #4db6ac 50%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Manrope' !important;
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 350px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    overflow: visible;
    background: transparent;
}

/* IDP Process Flow with AI Neural Network Aesthetic */
.process-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.process-connection {
    fill: none;
    stroke-width: 2;
    opacity: 0.5;
    filter: drop-shadow(0 0 2px rgba(121, 134, 203, 0.4));
    transition: opacity 0.3s ease;
}

.process-connection:hover {
    opacity: 0.8;
}

.conn-1-alt,
.conn-2-alt,
.conn-3-alt {
    opacity: 0.2;
}

.data-particle {
    filter: drop-shadow(0 0 4px currentColor);
    animation: particlePulse 2s ease-in-out infinite;
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.7;
        r: 4;
    }
    50% {
        opacity: 1;
        r: 5;
    }
}

/* Process Nodes with AI Neural Network Feel */
.process-node {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.node-upload {
    left: 10%;
}

.node-ai {
    left: 35%;
}

.node-validate {
    left: 60%;
}

.node-validate .node-ai-core {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(43, 168, 138, 0.4),
                inset 0 0 20px rgba(43, 168, 138, 0.15);
}

.node-validate .node-ai-core:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(43, 168, 138, 0.6),
                inset 0 0 30px rgba(43, 168, 138, 0.25);
}

.node-validate .node-icon {
    color: var(--accent-color);
}

.node-validate .neural-dot {
    background: var(--accent-color);
    opacity: 0.6;
    box-shadow: 0 0 6px rgba(43, 168, 138, 0.6);
}

.node-validate .node-pulse-ring {
    border-color: rgba(43, 168, 138, 0.4);
}

.node-output {
    left: 85%;
}

.node-ai-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid #7986cb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(121, 134, 203, 0.3),
                inset 0 0 20px rgba(100, 181, 246, 0.1);
    transition: all 0.4s ease;
}

.node-ai-core:hover {
    border-color: #4db6ac;
    box-shadow: 0 0 30px rgba(77, 182, 172, 0.5),
                inset 0 0 30px rgba(77, 182, 172, 0.2);
    transform: scale(1.05);
}

.node-ai-core.ai-active {
    border-color: #4db6ac;
    box-shadow: 0 0 25px rgba(77, 182, 172, 0.6),
                inset 0 0 25px rgba(77, 182, 172, 0.2);
    animation: aiProcessing 2s ease-in-out infinite;
}

@keyframes aiProcessing {
    0%, 100% {
        box-shadow: 0 0 25px rgba(100, 181, 246, 0.6),
                    inset 0 0 25px rgba(100, 181, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(100, 181, 246, 0.8),
                    inset 0 0 35px rgba(100, 181, 246, 0.3);
    }
}

/* Neural Pattern Dots */
.neural-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    z-index: 1;
}

.neural-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7986cb;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.neural-dot.active {
    background: #64b5f6;
    opacity: 1;
    animation: neuralDotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(100, 181, 246, 0.8);
}

@keyframes neuralDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.node-ai-core.ai-active .neural-dot.active {
    animation-delay: calc(var(--dot-index) * 0.2s);
}

.node-icon {
    position: relative;
    z-index: 2;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-icon svg {
    width: 32px;
    height: 32px;
}

.node-ai-core.ai-active .node-icon {
    color: #4db6ac;
}

.node-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(100, 181, 246, 0.3);
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
    z-index: 0;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.node-label {
    font-family: 'Manrope' !important;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(43, 168, 138, 0.8) 0%, transparent 100%);
    animation: streamFlow 2s ease-in-out infinite;
    z-index: 1;
}

.stream-1 {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.stream-2 {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
    background: linear-gradient(180deg, rgba(100, 181, 246, 0.8) 0%, transparent 100%);
}

.stream-3 {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

@keyframes streamFlow {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(43, 168, 138, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.node-2 {
    top: 10%;
    left: 35%;
    transform: translateX(0);
    animation-delay: 1s;
    background: linear-gradient(135deg, #2BA88A 0%, #4db6ac 100%);
    border-color: #2BA88A;
}

.node-2 .node-icon {
    color: white;
}

.node-2 .node-icon svg {
    color: white;
}

.node-3 {
    top: 10%;
    right: 5%;
    animation-delay: 2s;
}

.node-4 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
    background: linear-gradient(135deg, #2BA88A 0%, #219a7a 100%);
    border-color: #2BA88A;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes nodeFloat2 {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        transform: translateX(0) translateY(-15px) scale(1.05);
    }
}

.node-2 {
    animation: nodeFloat2 4s ease-in-out infinite;
}

@keyframes nodeFloat4 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) scale(1.05);
    }
}

.node-4 {
    animation: nodeFloat4 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.connection-line {
    fill: none;
    stroke-width: 3;
    stroke-dasharray: 8, 4;
    opacity: 0.8;
    animation: dashMove 2s linear infinite;
    filter: drop-shadow(0 0 4px rgba(121, 134, 203, 0.6));
}

.line-1 {
    stroke: url(#gradient1);
    stroke-width: 3;
    animation-delay: 0s;
}

.line-2 {
    stroke: url(#gradient2);
    stroke-width: 3;
    animation-delay: 1s;
}

.line-3 {
    stroke: url(#gradient3);
    stroke-width: 3;
    animation-delay: 2s;
}

.motion-path {
    fill: none;
    stroke: none;
}

.data-packet {
    filter: drop-shadow(0 0 4px currentColor);
    animation: packetGlow 1.5s ease-in-out infinite;
}

@keyframes packetGlow {
    0%, 100% {
        opacity: 0.8;
        r: 4;
    }
    50% {
        opacity: 1;
        r: 5;
    }
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 20;
    }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #2BA88A;
    border-radius: 50%;
    opacity: 0.8;
    animation: particleMove 5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(43, 168, 138, 0.8);
}

.particle:nth-child(2n) {
    background: #64b5f6;
    box-shadow: 0 0 8px rgba(100, 181, 246, 0.8);
}

.particle:nth-child(3n) {
    background: #7986cb;
    box-shadow: 0 0 8px rgba(121, 134, 203, 0.8);
}

.particle-1 {
    top: 12%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 12%;
    left: 50%;
    animation-delay: 0.6s;
}

.particle-3 {
    top: 12%;
    right: 20%;
    animation-delay: 1.2s;
}

.particle-4 {
    bottom: 12%;
    left: 40%;
    animation-delay: 1.8s;
}

.particle-5 {
    bottom: 12%;
    left: 50%;
    animation-delay: 2.4s;
}

.particle-6 {
    top: 50%;
    left: 15%;
    animation-delay: 3s;
}

.particle-7 {
    top: 50%;
    right: 15%;
    animation-delay: 3.6s;
}

@keyframes particleMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -20px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 10px) scale(1.1);
        opacity: 0.9;
    }
}

/* Flow Rings */
.flow-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.3;
    z-index: 1;
}

.ring-1 {
    width: 120px;
    height: 120px;
    border-color: rgba(92, 107, 192, 0.5);
    top: 5%;
    left: 20%;
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    border-color: rgba(100, 181, 246, 0.5);
    top: 5%;
    right: 20%;
    animation-delay: 1s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(43, 168, 138, 0.5);
    bottom: 5%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@keyframes ringExpand2 {
    0% {
        transform: translate(50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@keyframes ringExpand3 {
    0% {
        transform: translate(-50%, 50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, 50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, 50%) scale(1.6);
        opacity: 0;
    }
}

.ring-1 {
    animation: ringExpand 3s ease-out infinite;
}

.ring-2 {
    animation: ringExpand2 3s ease-out infinite;
}

.ring-3 {
    animation: ringExpand3 3s ease-out infinite;
}

/* Section Styles */
section {
    padding: 60px 0;
}

/* Credibility Section */
.credibility-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.credibility-content {
    text-align: center;
}

.credibility-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.logo-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.logo-placeholder:hover {
    opacity: 1;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.testimonial-preview {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid rgba(43, 168, 138, 0.2);
    border-radius: 12px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    background: rgba(43, 168, 138, 0.2);
    color: #2BA88A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3 !important;
    margin-bottom: 16px;
    letter-spacing: 0px !important;
}

/* Problem Section */
.problem-section {
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 0;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2BA88A 50%, transparent 100%);
    margin: 0 auto;
    max-width: 1200px;
    opacity: 1;
}

.problem-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2BA88A 50%, transparent 100%);
    margin-bottom: 60px;
    opacity: 0.8;
}

.section-intro {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 12px;
    font-style: italic;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.problem-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2BA88A;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(43, 168, 138, 0.02) 0%, transparent 70%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.problem-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
    border-color: #4db6ac;
}

.problem-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.problem-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA88A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.problem-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover .problem-icon {
    color: #4db6ac;
    transform: scale(1.1);
}

.problem-card:hover .problem-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(77, 182, 172, 0.6));
}

.problem-card h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing:0px !important;
}

.problem-card:hover h3 {
    background: linear-gradient(135deg, #ffffff 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-card p {
    color: #b0b0b0;
    line-height: 1.6 !important;
    font-size: 15px !important;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.problem-card:hover p {
    color: #d0d0d0;
}

/* Features Section */
.features-section {
    position: relative;
    background: #2a2d30;
    z-index: 1;
}

.features-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-background {
    display: none;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-tag-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 168, 138, 0.2);
    color: #2BA88A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 16px;
}

.tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA88A;
}

.tag-icon svg {
    width: 16px;
    height: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #2BA88A;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(43, 168, 138, 0.02) 0%, transparent 70%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
    border-color: #4db6ac;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2BA88A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    color: #4db6ac;
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(77, 182, 172, 0.6));
}

/* .feature-number {
    font-size: 18px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #5c6bc0 0%, #64b5f6 100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(92, 107, 192, 0.4);
    position: absolute;
    top: 20px;
    right: 20px;
} */

.feature-card h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0px !important;
}

.feature-card:hover h3 {
    background: linear-gradient(135deg, #ffffff 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.feature-bullets li {
    font-family: 'Manrope' !important;
    color: #b0b0b0;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-bullets li {
    color: #d0d0d0;
}

.feature-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2BA88A;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-bullets li::before {
    color: #4db6ac;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.feature-list span {
    background: linear-gradient(135deg, #2BA88A 0%, #219a7a 100%);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(43, 168, 138, 0.3);
    transition: all 0.3s;
}

.feature-card:hover .feature-list span {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 168, 138, 0.3);
}

/* Process Section */
.process-section {
    background: #2a2d30;
    position: relative;
    z-index: 1;
}

.process-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(66, 133, 244, 0.6) 50%, transparent 100%);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    font-weight: 700 !important;
    flex-shrink: 0;
    box-shadow: none;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    height: 100%;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.step-content {
    flex: 1;
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #2BA88A;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
}

.step-content h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.step-content p {
    color: #b0b0b0;
    line-height: 1.6 !important;
    font-size: 15px !important;
}

/* Solutions Section */
.solutions-section {
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
    padding: 40px 0 80px;
}

.solutions-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Stack Section */
.tech-stack-section {
    background: #212529;
    position: relative;
    z-index: 1;
}

.tech-stack-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tech-category {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(42, 45, 48, 0.8) 0%, rgba(35, 38, 40, 0.9) 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(43, 168, 138, 0.1);
}

.tech-category:hover {
    border-color: rgba(43, 168, 138, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 168, 138, 0.15);
}

.tech-category-title {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--accent-color);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing:0px !important;
}

.tech-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(43, 168, 138, 0.3) 0%, transparent 100%);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-item {
    background: rgba(43, 168, 138, 0.05);
    padding: 10px 16px 10px 4px;
    border-radius: 10px;
    border: 1px solid rgba(43, 168, 138, 0.15);
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    background: rgba(43, 168, 138, 0.1);
    border-color: rgba(43, 168, 138, 0.4);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(43, 168, 138, 0.2);
}

.tech-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.15) rotate(5deg);
}

.tech-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.tech-icon svg {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(140deg) opacity(1);
    transform: scale(1.1);
}

.tech-item:hover .tech-icon svg {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(140deg) opacity(1);
    transform: scale(1.1);
}

.tech-name {
    font-family: 'Manrope' !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

/* .tech-item:hover .tech-name {
    color: var(--accent-color);
    font-weight: 700;
} */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.solution-card:nth-child(1),
.solution-card:nth-child(2),
.solution-card:nth-child(3) {
    grid-column: span 2;
}

.solution-card:nth-child(4) {
    grid-column: 2 / 4;
}

.solution-card:nth-child(5) {
    grid-column: 4 / 6;
}

.solution-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #2BA88A;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(43, 168, 138, 0.02) 0%, transparent 70%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
    border-color: #4db6ac;
}

.solution-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA88A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-icon {
    color: #4db6ac;
    transform: scale(1.1);
}

.solution-card:hover .solution-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(77, 182, 172, 0.6));
}

.solution-card h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0px !important;
}

.solution-card:hover h3 {
    background: linear-gradient(135deg, #ffffff 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card p {
    color: #b0b0b0;
    line-height: 1.6 !important;
    font-size: 15px !important;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.solution-card:hover p {
    color: #d0d0d0;
}

/* Success Stories Section */
.success-stories-section {
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
    padding: 60px 0;
    min-height: 400px;
    display: block;
    visibility: visible;
}

.success-stories-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.success-story-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #2BA88A;
    box-shadow: none;
    transition: opacity 0.6s ease, transform 0.6s ease, all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(43, 168, 138, 0.02) 0%, transparent 70%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(43, 168, 138, 0.3), 0 0 20px rgba(43, 168, 138, 0.25);
    border-color: #4db6ac;
}

.success-story-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.story-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA88A;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.story-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover .story-icon {
    color: #4db6ac;
    transform: scale(1.1);
}

.success-story-card:hover .story-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(77, 182, 172, 0.6));
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.story-quote {
    color: #b0b0b0 !important;
    line-height: 1.7 !important;
    font-size: 16px !important;
    margin-bottom: 20px;
    font-style: italic !important;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover .story-quote {
    color: #d0d0d0;
}

.story-client {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(43, 168, 138, 0.2);
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover .story-client {
    border-color: rgba(77, 182, 172, 0.4);
}

.client-industry {
    font-family: 'Manrope' !important;
    color: #2BA88A;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover .client-industry {
    color: #4db6ac;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 42px !important;
    font-weight: 800 !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.cta-content p {
    font-size: 20px !important;
    color: rgba(255, 255, 255, 0.9) !importanrt;
    margin-bottom: 32px;
    line-height: 1.6 !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: white;
    color: #2BA88A;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: #2BA88A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 168, 138, 0.3);
}

.cta-section .btn-primary a {
    color: #2BA88A !important;
    transition: color 0.3s ease;
    display: block;
}

.cta-section .btn-primary:hover a {
    color: white !important;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #0a0a0a;
}

/* Responsive Design */

/* Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }
}

/* Desktops (1280px - 1919px) - Default styles apply */

/* Small Laptops (1024px - 1279px) */
@media (max-width: 1279px) {
    .container {
        max-width: 1100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .solutions-grid {
        gap: 28px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .hero {
        padding-top: 100px;
    }

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

    .hero-visual {
        display: none;
    }

    .nav-menu {
        display: none;
    }

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

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tech-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .solution-card:nth-child(1),
    .solution-card:nth-child(2),
    .solution-card:nth-child(3) {
        grid-column: span 1;
    }

    .solution-card:nth-child(4),
    .solution-card:nth-child(5) {
        grid-column: span 1;
    }

    .problem-card {
        padding: 24px 20px;
    }

    .problem-icon {
        width: 56px;
        height: 56px;
    }

    .problem-card h3 {
        font-size: 20px;
    }

    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .copyright-section {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .text-align-left,
    .text-align-right {
        text-align: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
    }
}

/* Phones (480px - 767px) */
@media (max-width: 767px) {
    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .stat-number {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .success-story-card {
        padding: 24px 20px;
    }

    .tech-item {
        padding: 16px 12px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-heading.text-end,
    .text-end {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
    }

    .tech-icon img {
        width: 28px;
        height: 28px;
    }

    .tech-icon svg {
        width: 28px;
        height: 28px;
    }

    .tech-name {
        font-size: 12px;
    }

    .problem-card {
        padding: 20px 16px;
    }

    .problem-icon {
        width: 48px;
        height: 48px;
    }

    .problem-icon svg {
        width: 40px;
        height: 40px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    .section-intro {
        font-size: 14px;
    }

    .problem-divider {
        margin-bottom: 40px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Small Phones (320px - 479px) */
@media (max-width: 479px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-item {
        flex: 1 1 100%;
        text-align: center;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card,
    .feature-card,
    .solution-card,
    .success-story-card {
        padding: 20px 16px;
    }

    .problem-icon,
    .feature-icon,
    .solution-icon,
    .story-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .problem-icon svg,
    .feature-icon svg,
    .solution-icon svg,
    .story-icon svg {
        width: 36px;
        height: 36px;
    }

    .problem-card h3,
    .feature-card h3,
    .solution-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .problem-card p,
    .feature-card p,
    .solution-card p,
    .story-quote {
        font-size: 14px !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px !important;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px !important;
    }

    .container {
        padding: 0 12px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .navbar {
        padding: 12px 0;
    }

    .acufore-logo {
        height: 32px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 20px;
    }
}

