


.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-badge i {
    background: white;
    color: #1e3a8a;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.metric-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
}

.metric-info .metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
}

.metric-info .metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}


.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}


.hero-dashboard {
    position: relative;
}

.dashboard-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
}

.dashboard-title i {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.dashboard-actions {
    display: flex;
    gap: 0.5rem;
}

.dashboard-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.dashboard-content {
    display: grid;
    gap: 1.5rem;
}

.dashboard-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
}

.dashboard-card h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.card-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.card-trend.up {
    color: #059669;
}

.dashboard-chart {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.chart-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.chart-bar {
    background: linear-gradient(180deg, #3b82f6, #1e3a8a);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20%;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
}


.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.management-tools {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header p, .management-tools p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.features-main {
    display: grid;
    gap: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-left: 5px solid #3b82f6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
}

.feature-content ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.feature-content ul li::before {
    content: '→';
    color: #3b82f6;
    font-weight: 700;
}

.features-sidebar {
    display: grid;
    gap: 2rem;
}

.feature-highlight {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.highlight-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-highlight h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-highlight p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.highlight-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.feature-stats {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.tools {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.tool-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tool-header i {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.tool-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tool-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}


.integration {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.integration-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.integration-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.integration-features {
    display: grid;
    gap: 2rem;
}

.integration-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.integration-item i {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.integration-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.integration-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.integration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-diagram {
    position: relative;
    width: 350px;
    height: 350px;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgb(59 118 191);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: all 0.3s ease;
}

.node:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(59 118 191);
    border-color: #60a5fa;
    z-index: 2;
}

.node.section {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.node.regional {
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
}

.node.national {
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.node i {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.3rem;
}

.node span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.connection {
    position: absolute;
    background: rgba(96, 165, 250, 0.5);
    height: 2px;
}

.connection.c1 {
    top: 35%;
    left: 50%;
    width: 80px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.connection.c2 {
    top: 50%;
    left: 60%;
    width: 80px;
    transform: translate(-50%, -50%);
}

.connection.c3 {
    top: 65%;
    left: 50%;
    width: 80px;
    transform: translate(-50%, -50%) rotate(45deg);
}


.success-stories {
    padding: 8rem 0;
    background: #f8fafc;
}

.management-tools h2, .success-stories h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-logo {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.story-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.3rem;
}

.story-title p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.story-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.story-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 700;
}

.story-author strong {
    color: #1e3a8a;
    font-weight: 700;
}

.story-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.story-results {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
}

.result-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: float-cta 20s ease-in-out infinite;
}

@keyframes float-cta {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.cta-feature i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero .container {
        gap: 4rem;

    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .integration-diagram {
        width: 300px;
        height: 300px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding-top: 30px;
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 25vh;
    }
    .hero-image-overlay img {
        width: 100vw;
        left: 50vw;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .dashboard-row {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-results {
        justify-content: center;
    }
    
    .integration-text h2,
    .success-stories h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .integration-diagram {
        width: 250px;
        height: 250px;
    }
    
    .node {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .features {
        padding: 5rem 0;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .integration-text h2,
    .success-stories h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta {
        padding: 5rem 0;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .hero .container {
        width: 100%;
        display: block;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: .7rem;
        border-radius: 7px;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-dashboard {
        transform: scale(.7);
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .platform-badge {
        padding: 0.5rem 0.5rem;
        font-size: 0.6rem;
    }
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .management-grid {
        grid-template-columns: 1fr;
    }
    .management-card {
        padding: 2rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
    .cta .btn-primary, .cta .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .tools-header h2,
    .management-header h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
