  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
             background:#f9f9f6;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            width: 200px;
        }

        .main-logo {
            width: 80%;
            height: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

         .nav-links a:hover {
            color: #d45a3a;
        }
        

        .cta-btn {
            background: linear-gradient(135deg, #d45a3a 0%, #d45a3a 100%);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn-sec {
            color: #d45a3a;
            padding: 0.8rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: #f99a34 1px solid;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(244, 117, 32, 0.3);
        }

/* Hero Section */
.hero {
    margin-top: 64px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:#f9f9f6;
    
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.care-flower-hero {
    width: 200px;
    position: absolute;
    top: 30px;
    right: -50px;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
    
}
.care-flower-hero-1 {
    width: 50px;
    position: absolute;
    top: 250px;
    right: -50px;
    animation: rotate 15s linear infinite;
    opacity: 0.4;
    z-index: 0;
    
}
.care-hero{
    width: 100%;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: rgb(67, 67, 67);
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
    overflow-wrap: break-word;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(80, 80, 80, 0.9);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
    overflow-wrap: break-word;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.stats {
    text-align: center;
    color: rgba(189, 119, 39, 0.636);
}

.stats-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    display: block;
}

.stats-label {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

/* .dashboard-mockup {
    width: 100%;
    height: 400px;
    background: rgba(255, 226, 216, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(214, 104, 104, 0.2);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bars {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #d4593ab3, #edb6a877);
    border-radius: 4px 4px 0 0;
    animation: growUp 2s ease-out infinite;
}

.chart-bar:nth-child(1) {
    height: 100%;
    animation-delay: 0s;
    background: linear-gradient(to top, #e9724d, #e9724d); 
}

.chart-bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.2s;
    background: linear-gradient(to top, #d6d727, #d6d727); 
}

.chart-bar:nth-child(3) {
    height: 40%;
    animation-delay: 0.4s;
    background: linear-gradient(to top, #92cad1, #92cad1);
   
}

.chart-bar:nth-child(4) {
    height: 90%;
    animation-delay: 0.6s;
     background: linear-gradient(to top, #79ccb3, #79ccb3);
}   

.chart-bar:nth-child(5) {
    height: 70%;
    animation-delay: 0.8s;
     background: linear-gradient(to top, #868686, #868686); 
    
}

.chart-bar:nth-child(6) {
    height: 60%;
    animation-delay: 1s;
    background: linear-gradient(to top, #15803d, #4ade80); 
}

.chart-bar:nth-child(7) {
    height: 85%;
    animation-delay: 1.2s;
    background: linear-gradient(to top, #7c3aed, #a78bfa); 
}



@keyframes growUp {
    0%, 80% { transform: scaleY(1); }
    90% { transform: scaleY(1.1); }
    100% { transform: scaleY(1); }
} */

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

        /* Modules */
.modules {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: 1rem;
            color: rgb(67, 67, 67);
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #64748b;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            overflow-wrap: break-word;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .module-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #d45a3a 0%, #d45a3a 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .module-card:hover::before {
            opacity: 1;
        }

        .module-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .module-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #159506;
            transition: transform 0.3s ease;
        }
           .module-icon01 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #cb5b1a;
            transition: transform 0.3s ease;
        }
        .module-icon02 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #cbcb1a;
            transition: transform 0.3s ease;
        }
         .module-icon03 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #ad1acb;
            transition: transform 0.3s ease;
        }
        .module-card:hover .module-icon,
.module-card:hover .module-icon01,
.module-card:hover .module-icon02,
.module-card:hover .module-icon03,
.module-card:hover .module-icon04,
.module-card:hover .module-icon05
         {
            transform: scale(1.1);
        }

        .module-icon04 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #6acb1a;
            transition: transform 0.3s ease;
        }

         .module-icon05 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: #1a81cb;
            transition: transform 0.3s ease;
        }


        .module-title {
            font-size: clamp(1.5rem, 3vw, 1.75rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: rgb(67, 67, 67);
        }

        .module-description {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            overflow-wrap: break-word;
        }

        .module-features {
            list-style: none;
        }

        .module-features li {
            padding: 0.75rem 0;
            color: #475569;
            position: relative;
            padding-left: 1.75rem;
            font-size: clamp(0.85rem, 1.7vw, 0.95rem);
        }

        .module-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Features */
        .features {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 5px;
            right: 0;
            width: 20%;
            height: 20%;
            background: url('/assets/flower-care.svg')no-repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .features .container {
            position: relative;
            z-index: 2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            
            gap: 3rem;
        }

        .feature {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d45a3a 0%, #f99b33 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.3rem);
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .feature p {
            color: #64748b;
            line-height: 1.6;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            overflow-wrap: break-word;
        }

        /* Subscription */
        .carelitics-subscription-container {
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 60px 60px;
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            overflow: hidden;
            
        }
    .care-flower {
    width: 150px;
    position: absolute;
    top: 10px;
    left: 10px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

    .carelitics-subscription-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .carelitics-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
            background: #e6e6fa;
            border-radius: 16px;
            padding: 20px;
        }

        .carelitics-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #fa4d09, #fa4d099c);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: clamp(0.8rem, 1.5vw, 0.875rem);
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }

        

        .carelitics-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #64748b;
            font-weight: 400;
            border-radius: 8px;
            padding: 8px 16px;
            display: inline-block;
            overflow-wrap: break-word;
        }

        .carelitics-features-table {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
            position: relative;
            z-index: 1;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            padding: 20px;
        }

        .carelitics-features-table th,
        .carelitics-features-table td {
            padding: 16px;
            text-align: left;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            color: #1e293b;
            border-bottom: 1px solid rgba(237, 146, 27, 0.2);
        }

        .carelitics-features-table th {
            font-weight: 700;
            background: #f99a32;
            color: white;
            border-radius: 8px 8px 0 0;
        }

        .carelitics-features-table td {
            color: #3c3c3c;
            font-weight: 700;
        }

        .carelitics-features-table td:last-child {
            text-align: center;
        }

        .carelitics-features-table tr:last-child td {
            border-bottom: none;
        }

        .carelitics-features-table i.fas.fa-check {
            color: #10b981;
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        .carelitics-cta-section {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .carelitics-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #d45a3a 0%, #d45a3a 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
            cursor: pointer;
            border: none;
        }

        .carelitics-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(234, 190, 102, 0.4);
        }

       

        /* Use Cases */
        .use-cases-container {
            border-radius: 24px;
            padding: 60px 40px;
            max-width: 1200px;
            width: 100%;
            background-color: #f5d5c223;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .use-cases-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            animation: rotate 25s linear infinite;
            pointer-events: none;
        }

        .header {
            text-align: center;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: clamp(0.8rem, 1.5vw, 0.875rem);
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
        }

        .title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.2;
           
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #64748b;
            font-weight: 400;
            overflow-wrap: break-word;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
            position: relative;
            z-index: 1;
        }

        .use-case-card {
            background: white;
            border-radius: 20px;
            padding: 36px 28px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .use-case-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
        }

        .use-case-card:hover::before {
            transform: scaleX(1);
        }

        .use-case-card:nth-child(1) {
            --card-color: #dc2626;
            --card-color-light: #ef4444;
        }

        .use-case-card:nth-child(2) {
            --card-color: #059669;
            --card-color-light: #10b981;
        }

        .use-case-card:nth-child(3) {
            --card-color: #7c3aed;
            --card-color-light: #8b5cf6;
        }

        .use-case-card:nth-child(4) {
            --card-color: #ea580c;
            --card-color-light: #f97316;
        }

        .use-case-card:nth-child(5) {
            --card-color: #0891b2;
            --card-color-light: #06b6d4;
        }
         .use-case-card:nth-child(6) {
            --card-color: #2c3e50;
            --card-color-light: #2c3e50;
        }

        .use-case-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, var(--card-color)15, var(--card-color)08);
            color: var(--card-color);
        }

        .use-case-card:hover .use-case-icon {
            transform: scale(1.15) rotate(8deg);
            background: linear-gradient(135deg, var(--card-color)25, var(--card-color)15);
        }

        .use-case-role {
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
            font-weight: 600;
            color: var(--card-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .use-case-title {
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .use-case-description {
            color: #64748b;
            line-height: 1.7;
            font-size: clamp(0.85rem, 1.7vw, 0.95rem);
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        .use-case-action {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--card-color);
            font-weight: 600;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .use-case-action:hover {
            opacity: 1;
            transform: translateX(4px);
        }

        .cta-section-use {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            overflow-wrap: break-word;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d45a3a 0%, #f99b33 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 12px;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
       .footer {
            background: #1a202c;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #d45a3a;
            font-size: clamp(1.2rem, 2.5vw, 1.3rem);
        }

        .footer-section p, .footer-section a {
            color: #cbd5e0;
            text-decoration: none;
            line-height: 1.8;
            font-size: clamp(0.85rem, 1.7vw, 0.95rem);
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: clamp(0.8rem, 1.5vw, 0.875rem);
        }

        .footer-care {
            width: 120px;
            transition: all 0.3s ease;
            position: relative;
        }

        .image-container {
            display: flex;
            align-items: center;
        }

        .footer-care:hover {
            filter: brightness(1.2);

            transform: scale(1.1);
        }

        .footer-care:hover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

       
         .social-icons {
            display: flex;
            gap: 1rem;
            margin: 0.5rem 0;
        }

        .social-icons a {
            color: #cbd5e0;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: white;
        }


        /* Responsive Design */
    @media (max-width: 1024px) {
    .care-flower {
        width: 120px;
        top: 8px;
        left: 8px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a, .cta-btn, .cta-btn-sec {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .features-grid {
        gap: 2rem;
    }

    .use-cases-grid {
        gap: 24px;
    }

    .stats-bar {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .care-flower {
        width: 100px;
        top: 5px;
        left: 5px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-top: 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .cta-btn, .cta-btn-sec {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carelitics-subscription-container {
        padding: 40px 20px;
    }

    .carelitics-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .carelitics-features-table {
        margin: 0 10px;
    }

    .carelitics-features-table th,
    .carelitics-features-table td {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
        padding: 12px;
    }

    .use-cases-container {
        padding: 40px 20px;
    }

    .title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-bar {
        gap: 20px;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .care-flower {
        width: 80px;
        top: 3px;
        left: 3px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .hero-content .subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .module-title {
        font-size: clamp(1.3rem, 3.5vw, 1.5rem);
    }

    .module-description, .module-features li {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .feature h3 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .feature p {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .carelitics-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .carelitics-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .carelitics-cta-button {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 12px 24px;
    }

    .use-case-title {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .use-case-description {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .cta-button {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 14px 28px;
    }

    .cta-section h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .cta-section p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .footer-section h3 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .footer-section p, .footer-section a {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
}