/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* JIRA-inspired color palette */
    --primary-blue: #0052CC;
    --primary-blue-hover: #0065FF;
    --primary-blue-light: #DEEBFF;
    --text-primary: #172B4D;
    --text-secondary: #42526E;
    --text-tertiary: #6B778C;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F5F7;
    --bg-tertiary: #EBECF0;
    --border-color: #DFE1E6;
    --border-hover: #B3BAC5;
    --success: #00875A;
    --warning: #FFAB00;
    --error: #DE350B;
    --shadow-sm: 0 1px 1px rgba(9, 30, 66, 0.13);
    --shadow-md: 0 2px 4px rgba(9, 30, 66, 0.13);
    --shadow-lg: 0 4px 8px rgba(9, 30, 66, 0.13);
    --shadow-xl: 0 8px 16px rgba(9, 30, 66, 0.13);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    background: linear-gradient(180deg, #F4F5F7 0%, #FFFFFF 50%, #F4F5F7 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation - Glassmorphism */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(223, 225, 230, 0.5);
    box-shadow: 0 2px 8px rgba(9, 30, 66, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Products Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    display: inline-block;
}

.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding-top: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(223, 225, 230, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.15);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary-blue);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-primary);
}

/* Buttons - Glassmorphism */
.btn-primary {
    background: var(--primary-blue) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    padding: 8px 16px;
    border-radius: 12px;
    border: none !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px 0 rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
    background: var(--primary-blue-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 82, 204, 0.35);
}

.btn-large {
    padding: 12px 24px !important;
    font-size: 16px !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.15);
}

/* WhatsApp Button - Real WhatsApp Green */
.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 24px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

/* Hero Section - Glassmorphism */
.hero {
    padding: 120px 0 140px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(223, 225, 230, 0.5);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 8px 32px 0 rgba(9, 30, 66, 0.15);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: center;
}

.hero-trust {
    margin-top: 48px;
}

.trust-text {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Dashboard Mockup */

.dashboard-mockup {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mockup-header {
    background: var(--bg-secondary);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.control-dot:nth-child(1) {
    background: #FF5F57;
}

.control-dot:nth-child(2) {
    background: #FFBD2E;
}

.control-dot:nth-child(3) {
    background: #28CA42;
}

.mockup-title {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border-color);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.sidebar-item.active {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue);
}

.mockup-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
}

.mockup-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
}

.card-header {
    height: 20px;
    width: 60%;
    background: var(--bg-tertiary);
    border-radius: 3px;
    margin-bottom: 12px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-line {
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    width: 100%;
}

.card-line.short {
    width: 40%;
}

/* Solutions Section - Glassmorphism */
.solutions {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-blue);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 24px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-brand .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 12px;
}

/* Milo Showcase Section */
.milo-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #DEEBFF 0%, #F4F5F7 100%);
}

.milo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.milo-text {
    padding-right: 40px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.milo-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.milo-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.milo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    color: var(--text-primary);
}

.milo-cta {
    display: flex;
    gap: 16px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(9, 30, 66, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(9, 30, 66, 0.2);
}

.preview-header {
    background: #F4F5F7;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #DFE1E6;
}

.preview-controls {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.preview-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.preview-content {
    padding: 24px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-box {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 6px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.preview-charts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.chart-preview {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.chart-donut {
    width: 120px;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    height: 100px;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue) 0%, #0065FF 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar:hover {
    background: linear-gradient(180deg, #0065FF 0%, var(--primary-blue) 100%);
}

.chart-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .milo-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .milo-text {
        padding-right: 0;
        text-align: center;
    }

    .milo-text h2 {
        font-size: 36px;
    }

    .milo-cta {
        justify-content: center;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100%;
        box-sizing: border-box;
    }

    .navbar .container {
        padding: 12px 24px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        gap: 8px;
        font-size: 13px;
    }

    .nav-links a:not(.btn-primary) {
        display: none;
    }

    .nav-dropdown {
        display: none;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        padding: 32px 24px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .hero-description {
        font-size: 16px !important;
        line-height: 1.6;
        margin-bottom: 28px;
        text-align: center;
        max-width: 100%;
        padding: 0 8px;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
        align-items: center;
        padding: 0 8px;
    }

    .hero-cta a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        padding: 14px 20px !important;
        white-space: nowrap;
    }

    .btn-large {
        padding: 14px 20px !important;
        font-size: 15px !important;
    }

    .btn-whatsapp.btn-large {
        padding: 14px 24px !important;
        font-size: 15px !important;
        border-radius: 24px !important;
    }

    .milo-showcase {
        padding: 50px 0 !important;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .milo-showcase .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }

    .milo-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        text-align: center !important;
    }

    .milo-text {
        order: 1 !important;
        padding: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        box-sizing: border-box;
    }

    .milo-visual {
        order: 2 !important;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .section-badge {
        margin: 0 auto 18px !important;
        text-align: center !important;
        font-size: 12px !important;
        display: inline-block;
        width: auto;
    }

    .milo-text h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 0 auto 18px !important;
        padding: 0 12px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .milo-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin: 0 auto 22px !important;
        padding: 0 12px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .milo-features {
        gap: 12px !important;
        text-align: left !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 22px !important;
        padding: 0 12px !important;
        box-sizing: border-box;
    }

    .feature-item {
        font-size: 14px !important;
        line-height: 1.5 !important;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 0 !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .feature-item span {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .milo-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 12px !important;
        align-items: center;
        padding: 0 12px !important;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .milo-cta a {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex;
        align-items: center;
        padding: 14px 20px !important;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }

    .milo-visual {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .dashboard-preview {
        max-width: 100% !important;
        width: 100%;
        padding: 0 !important;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .dashboard-preview img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .solutions {
        padding: 60px 0;
        overflow: hidden;
    }

    .solutions .container {
        padding: 0 24px !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .section-header h2 {
        font-size: 28px !important;
        text-align: center;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 15px !important;
        line-height: 1.6;
        text-align: center;
    }

    .solution-card {
        padding: 24px;
        text-align: center;
    }

    .solution-icon {
        margin: 0 auto 16px;
    }

    .cta {
        padding: 60px 0;
        text-align: center;
        overflow: hidden;
    }

    .cta .container {
        padding: 0 24px !important;
    }

    .cta-content h2 {
        font-size: 28px !important;
        text-align: center;
        padding: 0 8px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 15px !important;
        line-height: 1.6;
        text-align: center;
        padding: 0 8px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
        align-items: center;
        padding: 0 8px;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-column ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .solutions {
        padding: 64px 0;
    }

    .cta-section {
        padding: 64px 0;
    }
}

