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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #64748b;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    color: #475569;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.1'%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-visual-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-visual:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-visual:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}



.benefit-visual span {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
}

.benefit-visual.no-padding {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.benefit-visual.no-padding .btn {
    margin-top: 0;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Graph Visualization */
.hero-graph {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.graph-header h3 {
    text-align: center;
    margin-bottom: 0;
    color: #1e293b;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.graph-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
    justify-content: space-evenly;
}

.graph-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem 0;
    position: relative;
}

.graph-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
}

.graph-label {
    min-width: 180px;
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.graph-bar {
    flex: 1;
    height: 24px;
    background: linear-gradient(90deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(226, 232, 240, 0.6);
}

.graph-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.revenue-fill { background: linear-gradient(90deg, #10b981, #059669); }
.time-fill { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.renewal-fill { background: linear-gradient(90deg, #f59e0b, #d97706); }
.churn-fill { background: linear-gradient(90deg, #ef4444, #dc2626); }

.graph-value {
    position: absolute;
    right: -90px;
    top: -6px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    font-variant-numeric: tabular-nums;
    z-index: 10;
    white-space: nowrap;
}

/* Remove decorative circles - they're not needed */
.hero-graph::before,
.hero-graph::after {
    display: none;
}

/* Additional graph stats to fill space */
.graph-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Integrations Section */
.integrations {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23cbd5e1' fill-opacity='0.2'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.integrations h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    position: relative;
    z-index: 2;
}

.integrations p {
    text-align: center;
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.integrations-hub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    min-height: 400px;
    width: 100%;
    gap: 0.5rem;
    overflow: visible;
}

/* Big Box Container */
.integrations-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #475569;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Center LeanWorks positioning */
.leanworks-center {
    z-index: 10;
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Integration Tools in simple horizontal layout */
.integration-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 5;
    width: 120px;
    margin: 1rem;
}

/* Tool rows for clean layout */
.tools-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.top-row {
    margin-bottom: 0.25rem;
}

.bottom-row {
    margin-top: 0.25rem;
}

.center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.center-logo i {
    font-size: 5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.3));
}

.center-logo span {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.data-hub-indicator {
    display: flex;
    gap: 1rem;
}

.data-pulse {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

.data-pulse:nth-child(2) { animation-delay: 0.3s; }
.data-pulse:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

/* Integration Tools */
.integration-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.integration-tool:hover {
    transform: translateY(-8px);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.tool-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.integration-tool:hover .tool-icon::before {
    opacity: 1;
}

.integration-tool:hover .tool-icon {
    transform: scale(1.15);
    box-shadow: 
        0 12px 35px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.tool-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f8fafc;
    max-width: 120px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
}

.connection-point {
    display: none;
}



/* Connection lines from LeanWorks to each tool */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: #60a5fa;
    height: 3px;
    opacity: 0.8;
    transform-origin: center;
    border-radius: 2px;
}

/* Connection lines positioned to reach each tool */
.line-1 {
    width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.line-2 {
    width: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.line-3 {
    width: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.line-4 {
    width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.line-5 {
    width: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.line-6 {
    width: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* Clean Integration Tools - No Boxes */
.integration-tool {
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem;
}

.integration-tool:hover {
    transform: scale(1.05);
}

/* Center hub with pulsing effect to show connectivity */
.leanworks-center {
    position: relative;
}

.leanworks-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

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

/* Modern Form Button Styles */
.modal .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    width: 100%;
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.modal .btn-primary:active {
    transform: translateY(0);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e293b;
}

.modal h2 {
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.trial-subtitle,
.demo-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual-benefits {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
        height: auto;
    }
    
    .tool-1 { grid-column: 1; grid-row: 1; }
    .tool-2 { grid-column: 2; grid-row: 1; }
    .tool-3 { grid-column: 3; grid-row: 1; }
    .tool-4 { grid-column: 1; grid-row: 2; }
    .leanworks-center { grid-column: 2; grid-row: 2; }
    .tool-5 { grid-column: 3; grid-row: 2; }
    .tool-6 { grid-column: 1; grid-row: 3; }
    .tool-7 { grid-column: 2; grid-row: 3; }
    .tool-8 { grid-column: 3; grid-row: 3; }
    
    .connection-lines {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual-benefits {
        gap: 1rem;
    }
    
    .benefit-visual {
        padding: 0.5rem;
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    
    .tool-1 { grid-column: 1; grid-row: 1; }
    .tool-2 { grid-column: 2; grid-row: 1; }
    .tool-3 { grid-column: 1; grid-row: 2; }
    .tool-4 { grid-column: 2; grid-row: 2; }
    .leanworks-center { grid-column: 1; grid-row: 3; grid-column: span 2; }
    .tool-5 { grid-column: 1; grid-row: 4; }
    .tool-6 { grid-column: 2; grid-row: 4; }
    .tool-7 { grid-column: 1; grid-row: 5; }
    .tool-8 { grid-column: 2; grid-row: 5; }
} 