* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #0EA5E9;
    --cyan-bright: #00BFFF;
    --dark-bg: #0B0F1A;
    --card-bg: rgba(21, 27, 43, 0.6);
    --border: #1E293B;
    --text-gray: #B0B8C4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo {
    height: 50px;
    margin-bottom: 48px;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.5));
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    display: inline-block;
    border-right: 3px solid var(--cyan);
    animation: typing 2.5s steps(22) 0.5s forwards, blink 0.75s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(148, 163, 184, 0.9);
    max-width: 680px;
    margin: 0 auto 56px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.btn-card {
    width: 100%;
    padding: 12px 24px;
    margin-top: auto;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: #fff;
}

.btn-card:hover {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.btn-cta {
    padding: 20px 48px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: #fff;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(148, 163, 184, 0.8);
    text-align: center;
    margin-bottom: 72px;
    font-weight: 400;
}

.bg-dark {
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background: linear-gradient(135deg, rgba(21, 27, 43, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 24px 48px rgba(14, 165, 233, 0.15), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(0, 191, 255, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cyan);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(0, 191, 255, 0.15) 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

.card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card > p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    border-radius: 50%;
}

/* Custom Development Section */
.custom-dev-content {
    max-width: 1100px;
    margin: 0 auto;
}

.dev-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.dev-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

.dev-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.dev-feature {
    padding: 32px;
    background: linear-gradient(135deg, rgba(21, 27, 43, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dev-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.dev-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 14px;
    color: var(--cyan);
    margin-bottom: 20px;
}

.dev-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.dev-feature p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.dev-process {
    text-align: center;
}

.dev-process h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    padding: 32px 24px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    position: relative;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    opacity: 0.6;
}

.step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .dev-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dev-features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Tech Section */
.tech-section {
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background: rgba(11, 15, 26, 0.4);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    background: rgba(14, 165, 233, 0.08);
}

.tech-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.1);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-logo-img {
    filter: brightness(1.4) saturate(1.3) drop-shadow(0 8px 16px rgba(14, 165, 233, 0.4));
    transform: scale(1.1);
}

.tech-logo-svg {
    width: 80px;
    height: 80px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
    transition: all 0.3s ease;
}

.tech-item:hover .tech-logo-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(14, 165, 233, 0.6));
}

.tech-item span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, rgba(21, 27, 43, 0.5) 0%, rgba(15, 23, 42, 0.3) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.solution-item:hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.12);
    transform: translateY(-6px);
}

.solution-item:hover::before {
    width: 200%;
    height: 200%;
}

.solution-item svg {
    color: var(--cyan);
    margin-bottom: 16px;
}

.solution-item span {
    font-size: 18px;
    font-weight: 600;
}

/* Transformation Section */
.transformation {
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
}

.pill {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(0, 191, 255, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    color: var(--cyan);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.15), transparent);
    transition: left 0.6s ease;
}

.pill:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(0, 191, 255, 0.1) 100%);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
    transform: translateY(-3px);
}

.pill:hover::before {
    left: 100%;
}

/* CTA Section */
.cta {
    text-align: center;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 100%);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.8) 0%, rgba(21, 27, 43, 0.6) 100%);
    overflow: visible;
    padding-top: 120px;
    padding-bottom: 120px;
}

.clients-slider {
    margin: 80px 0 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.clients-slider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    z-index: 2;
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
    pointer-events: none;
}

.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 200px;
    z-index: 2;
    background: linear-gradient(to left, var(--dark-bg) 0%, transparent 100%);
    pointer-events: none;
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: scroll 60s linear infinite;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.clients-track:hover {
    animation-play-state: paused;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(21, 27, 43, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.08);
    transition: all 0.3s ease;
    position: relative;
}


.client-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.8);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(1.1) saturate(1);
}


@media (max-width: 768px) {
    .clients-track {
        gap: 40px;
    }
    
    .client-logo {
        width: 120px;
        height: 70px;
    }
    
    .clients-slider::before {
        width: 80px;
    }
    
    .clients-slider::after {
        width: 150px;
    }
    
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
}

.ceo-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(21, 27, 43, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(14, 165, 233, 0.1);
}

.ceo-image {
    flex-shrink: 0;
}

.ceo-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid var(--cyan);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
}

.ceo-content {
    flex: 1;
}

.ceo-role {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan);
    margin-bottom: 8px;
}

.ceo-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    position: relative;
    padding-left: 24px;
}

.ceo-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: var(--cyan);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .ceo-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
    }
    
    .ceo-image img {
        width: 140px;
        height: 140px;
    }
    
    .ceo-name {
        font-size: 26px;
    }
    
    .ceo-quote {
        font-size: 17px;
        padding-left: 0;
    }
    
    .ceo-quote::before {
        display: none;
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    height: 50px;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.copyright {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.tagline {
    color: #6B7280;
    font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .logo {
        height: 44px;
        margin-bottom: 36px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 32px 24px;
    }
    
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tech-item {
        padding: 24px 16px;
    }
    
    .tech-logo {
        width: 48px;
        height: 48px;
    }
    
    .tech-item span {
        font-size: 13px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .solution-item {
        padding: 28px 20px;
    }
    
    .pills {
        gap: 10px;
    }
    
    .pill {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
