
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --bg-dark: #0A0A1A;
    --emerald: #10B981;
    --cyan: #06B6D4;
    --purple: #8B5CF6;
    --orange: #F59E0B;
    --red: #EF4444;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 800px at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 700px at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 60px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 217, 255, 0.2);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu { 
    display: flex; 
    gap: 2.5rem; 
    align-items: center;
    position: relative;
}

.nav-services-wrapper {
    position: relative;
}

.nav-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-services-toggle:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-services-wrapper:hover .dropdown-arrow,
.nav-services-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
    z-index: 1001;
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(20px);
    display: none;
}

.services-dropdown.active {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.services-dropdown-item:hover {
    color: #FFFFFF;
    background: rgba(0, 217, 255, 0.1);
    border-left-color: #00D9FF;
    padding-left: 1.75rem;
}

.nav-menu a { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-menu a:hover { 
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(90deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu {
    display: none;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.mobile-menu-links a:hover {
    color: #FFFFFF;
}

.mobile-menu-links .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.mobile-services-wrapper {
    position: relative;
}

.mobile-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.mobile-services-toggle:hover {
    color: #FFFFFF;
}

.mobile-services-dropdown {
    margin-top: 0.75rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    animation: mobileDropdownFadeIn 0.3s ease;
}

@keyframes mobileDropdownFadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-services-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-services-item:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content { max-width: 900px; margin: 0 auto; }

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -2px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .accent {
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stat {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    transition: all 0.4s;
}

.hero-stat:hover {
    transform: translateY(-10px);
    border-color: #10B981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
}

/* CASE PREVIEW CARDS */
.cases-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.cases-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

@media (min-width: 1600px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }
}

/* PREVIEW CARD */
.case-preview {
    background: rgba(16, 185, 129, 0.03);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.case-preview:hover {
    transform: translateY(-10px);
    border-color: #10B981;
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.3);
}

.preview-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    padding: 2rem 1.75rem;
}

.preview-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: #10B981;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.preview-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.preview-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.preview-body {
    padding: 1.75rem;
}

.preview-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.preview-metric {
    text-align: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
}

.preview-metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.preview-metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.view-case-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.view-case-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* DETAILED MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active { display: block; }

.modal-content {
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(10, 10, 26, 0.98);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10B981;
    color: #10B981;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #10B981;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    padding: 2.5rem 2.5rem 2rem;
}

.modal-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.25);
    border: 2px solid #10B981;
    color: #10B981;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.modal-body {
    padding: 2.5rem 2.5rem 3rem;
    max-width: 100%;
}

.modal-body p, .modal-body li {
    max-width: 75ch;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.challenge-box, .solution-box {
    padding: 2rem;
    border-radius: 12px;
}

.challenge-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.solution-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.box-label {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.challenge-box .box-label { color: #EF4444; }
.solution-box .box-label { color: #10B981; }

.box-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0;
}

.solution-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 900;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.metric-card {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    border-color: #10B981;
    transform: scale(1.05);
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-results-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.timeline-section {
    background: rgba(16, 185, 129, 0.03);
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 16px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-left: 3px solid rgba(16, 185, 129, 0.3);
    padding-left: 1.25rem;
}

.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }

.timeline-month {
    font-weight: 900;
    color: #10B981;
    min-width: 90px;
    font-size: 0.85rem;
}

.timeline-content {
    flex: 1;
}

.timeline-milestone {
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.timeline-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.results-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.results-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    border: 3px solid #10B981;
    border-radius: 16px;
    padding: 2rem 2rem;
    text-align: center;
}

.results-label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #10B981;
    margin-bottom: 1.25rem;
}

.results-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.results-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.testimonial-box {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 1.75rem;
    border-radius: 12px;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(16, 185, 129, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: #10B981;
}

.testimonial-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* CTA */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content { max-width: 700px; margin: 0 auto; }

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    transition: all 0.4s;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .two-column, .timeline-results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-menu { 
        display: none; 
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero { 
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .hero-stat {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .cases-section {
        padding: 3rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .cases-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .case-preview {
        border-radius: 16px;
    }
    
    .preview-header {
        padding: 1.5rem 1.25rem;
    }
    
    .preview-category {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
    }
    
    .preview-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .preview-tagline {
        font-size: 0.9rem;
    }
    
    .preview-body {
        padding: 1.5rem 1.25rem;
    }
    
    .preview-metrics { 
        grid-template-columns: 1fr; 
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .preview-metric {
        padding: 1rem;
    }
    
    .preview-metric-value {
        font-size: 1.5rem;
    }
    
    .preview-metric-label {
        font-size: 0.75rem;
    }
    
    .view-case-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .modal { 
        padding: 0.5rem;
        overflow-y: auto;
    }
    
    .modal-content { 
        margin: 0.5rem auto;
        border-radius: 16px;
        max-width: calc(100% - 1rem);
    }
    
    .modal-close { 
        top: 0.75rem; 
        right: 0.75rem; 
        width: 36px; 
        height: 36px; 
        font-size: 1.1rem;
    }
    
    .modal-header { 
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .modal-category {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .modal-title { 
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
    }
    
    .modal-tagline {
        font-size: 1rem;
    }
    
    .modal-body { 
        padding: 1.5rem 1.25rem 2rem;
    }
    
    .modal-body p, .modal-body li {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .challenge-box, .solution-box { 
        padding: 1.5rem 1.25rem;
    }
    
    .box-label {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .box-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .solution-item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }
    
    .metrics-row { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .metric-card {
        padding: 1.25rem 1rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .timeline-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .timeline-section { 
        padding: 1.5rem 1.25rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .timeline-item {
        gap: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        padding-left: 1rem;
    }
    
    .timeline-month {
        min-width: 75px;
        font-size: 0.8rem;
    }
    
    .timeline-milestone {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }
    
    .timeline-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .results-box { 
        padding: 2rem 1.5rem;
    }
    
    .results-label {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .results-amount { 
        font-size: 2.5rem;
    }
    
    .results-text {
        font-size: 0.95rem;
    }
    
    .testimonial-box {
        padding: 1.5rem 1.25rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
    }
    
    .testimonial-title {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .btn-primary {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-stats {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
        margin-top: 2rem !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero { 
        padding: 6rem 1rem 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-stat {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cases-section {
        padding: 2.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .cases-grid {
        gap: 1.25rem;
    }
    
    .preview-header {
        padding: 1.25rem 1rem;
    }
    
    .preview-title {
        font-size: 1.1rem;
    }
    
    .preview-tagline {
        font-size: 0.85rem;
    }
    
    .preview-body {
        padding: 1.25rem 1rem;
    }
    
    .preview-metric-value {
        font-size: 1.35rem;
    }
    
    .view-case-btn {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
    
    .modal {
        padding: 0.25rem;
    }
    
    .modal-content {
        margin: 0.25rem auto;
        border-radius: 12px;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 2rem 1.25rem 1.25rem;
    }
    
    .modal-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }
    
    .modal-tagline {
        font-size: 0.95rem;
    }
    
    .modal-body {
        padding: 1.25rem 1rem 1.75rem;
    }
    
    .challenge-box, .solution-box {
        padding: 1.25rem 1rem;
    }
    
    .box-text {
        font-size: 0.85rem;
    }
    
    .solution-item {
        font-size: 0.85rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metric-card {
        padding: 1rem 0.75rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .timeline-section {
        padding: 1.25rem 1rem;
    }
    
    .timeline-item {
        gap: 0.75rem;
        padding-left: 0.75rem;
    }
    
    .timeline-month {
        min-width: 65px;
        font-size: 0.75rem;
    }
    
    .timeline-milestone {
        font-size: 0.9rem;
    }
    
    .timeline-desc {
        font-size: 0.8rem;
    }
    
    .results-box {
        padding: 1.75rem 1.25rem;
    }
    
    .results-amount {
        font-size: 2rem;
    }
    
    .testimonial-box {
        padding: 1.25rem 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .cta-stats {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
        margin-top: 1.5rem !important;
    }
}

.footer {
    background: rgba(10, 10, 26, 0.65);
    color: white;
    padding: 2rem;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 3rem;

}
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;

}
.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Example highlight color */
}
.footer-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #B8B8D1;
}
.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-links a {
    z-index: 10;
    color: #14039E;
    text-decoration: none;
    font-size: 1.5rem; /* Adjust for icon size */
    transition: color 0.1s ease-in-out;
    
}
.social-links a:hover {
    color: #0E1B4D; /* Example hover color; customize per icon */
}
.instagram-link:hover {
    color: rgb(244, 62, 96); /* Instagram hover */
}
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
/* Social icon SVGs can be styled similarly */
.social-icon {
    width: 35px;
    height: 35px;
    fill: currentColor; /* Inherits color from parent */
}
/* Hover scale effect */
.footer-social-icons {
    transition: transform 0.3s ease;
}
.footer-social-icons:hover {
    transform: scale(1.1);
    cursor: pointer;
}