/* ===================================
   DigiLakshya - Modern Website Styles
   Featuring: Glass Morphism, Gradients,
   Shadows, Animations, and Rich Visuals
   =================================== */

/* CSS Variables */
:root {
    --primary-navy: #1B3A57;
    --accent-coral: #FF6B6B;
    --success-mint: #4ECDC4;
    --white: #FFFFFF;
    --light-gray: #F7F9FC;
    --soft-blue: #E6F0F5;
    --text-dark: #2D3748;
    --text-light: #718096;
    --border-color: #E2E8F0;

    /* Colors */
    --primary: #1B3A57;
    --primary-light: #2E5A7D;
    --primary-dark: #0F2438;
    --accent: #FF6B6B;
    --accent-hover: #FF5252;
    --secondary: #4ECDC4;
    --secondary-hover: #3DBFB5;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-bg: #F7F9FC;
    --light-gray: #E8ECF1;
    --gray: #8892A0;
    --dark: #2D3748;
    --black: #1A202C;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1B3A57 0%, #2E5A7D 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A3A0 100%);
    --gradient-hero: linear-gradient(135deg, rgba(27, 58, 87, 0.95) 0%, rgba(46, 90, 125, 0.85) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(27, 58, 87, 0.9) 0%, rgba(27, 58, 87, 0.7) 100%);
     --gradient-her-2: linear-gradient(180deg, #FFFFFF 0%, #F0F4F8 50%, #E6F0F5 100%);
     --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-mint: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    
     /* Spacing */
    --section-padding: 80px;
    --container-padding: 60px;

     /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 58, 87, 0.08);
    --shadow-md: 0 8px 24px rgba(27, 58, 87, 0.12);
    --shadow-lg: 0 16px 48px rgba(27, 58, 87, 0.16);
    --shadow-xl: 0 24px 64px rgba(27, 58, 87, 0.24);
    --shadow-glow: 0 0 40px rgba(78, 205, 196, 0.3);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(27, 58, 87, 0.1);

}

   

/* Typography */
h1, h2, h3, h4, h5, h6 { 
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 72px; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

 

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
      
/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
  

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

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


.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.floating-card .card-content h4 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.floating-card .card-content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    margin: 0;
}

.card-1 {
    top: 50px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 250px;
    right: 80px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: 4s;
}


@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
    background: var(--white);
    padding: 60px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item i {
    font-size: 48px;
    color: var(--accent);
}

.stat-content h3 {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    margin: 0;
}

/* ========================
   SECTION STYLES
   ======================== */
   /* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--container-padding);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.7;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

/* ========================
   PROBLEM SECTION
   ======================== */
.problem-section {
    background: var(--light-bg);
}

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

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 17px;
    margin-bottom: 20px;
}

.problem-cost {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-bg);
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
}

/* ========================
   SOLUTION SECTION
   ======================== */
.solution-section {
    position: relative;
    background: var(--primary);
    overflow: hidden;
}

.solution-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        var(--gradient-primary);
    opacity: 1;
}
.solution-section .container{
    z-index: 5;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.benefit-card.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 15px;
}

.benefit-highlight i {
    font-size: 18px;
}

.solution-cta {
    text-align: center;
}

/* ========================
   SERVICES PREVIEW
   ======================== */
   .services-section {
    background: var(--light-gray);
}
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
        padding: 2.5rem;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-coral);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}


.service-title {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    clear: both;
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.platform-badge {
    padding: 0.375rem 0.875rem;
    background: var(--primary-navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-mint);
    font-weight: 600;
}


.service-image {
    position: relative;
    height: 240px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 40%, rgba(27, 58, 87, 0.8) 100%);
}

.service-image i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-image i {
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-platforms span {
    padding: 6px 14px;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
}

/* ========================
   CASE STUDY PREVIEW
   ======================== */
.case-study-preview {
    background: var(--light-bg);
}
.case-study-preview .section-title{
    text-align: left;
}
.case-study-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.case-study-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.case-stat h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stat-big {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
}

.case-arrow {
    font-size: 32px;
    color: var(--secondary);
}

blockquote {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.author-info strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 15px;
    color: var(--gray);
}

.case-visual-card {
    padding: 40px;
    border-radius: 24px;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.visual-list {
    list-style: none;
    padding: 0;
}

.visual-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.visual-list i {
    color: var(--secondary);
    font-size: 20px;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
    position: relative;
    background: var(--primary);
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    background-image: radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 0;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.2em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.cta-trust i {
    color: var(--secondary);
    font-size: 20px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ========================
   BACK TO TOP
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================
   ANIMATIONS
   ======================== */
[data-aos] {
    opacity: 0;
    transition: var(--transition-slow);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 { font-size: 64px; }
    h2 { font-size: 42px; }
    
    .hero-title {
        font-size: 68px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 30px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--primary) !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .problem-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-study-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .floating-card {
        padding: 16px;
        gap: 12px;
    }
    
    .floating-card .card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .floating-card .card-content h4 {
        font-size: 28px;
    }
}