/* ERP Solution Page Styles */

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #8b5cf6;
    --accent-dark: #7c3aed;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
    
    --container-width: 1200px;
    --header-height: 80px;
    --top-bar-height: 40px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-white); line-height: 1.6; overflow-x: hidden; width: 100%; margin: 0; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

.btn-primary { background: var(--primary); color: white; padding: 12px 28px; border-radius: 10px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3); border: none; cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4); }
.btn-secondary { background: white; color: var(--text-main); padding: 12px 28px; border-radius: 10px; font-weight: 600; border: 1px solid var(--border-color); cursor: pointer; transition: var(--transition); }
.btn-secondary:hover { background: var(--bg-light); transform: translateY(-2px); }

/* Header */
.main-header { height: var(--header-height); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; font-family: 'Outfit', sans-serif; }
.logo-icon { width: 32px; height: 32px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 24px; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* Global Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero-erp {
    padding: 80px 0 100px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent 40%);
    background-color: var(--bg-light);
}

.hero-erp-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-erp-content {
    flex: 1;
}

.hero-erp-visual {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-erp h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-erp h1 .gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-erp p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1rem;
}

.hero-features li .check {
    width: 24px;
    height: 24px;
    background: #e0f2fe;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-features li .check svg {
    width: 14px;
    height: 14px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.dashboard-mockup {
    width: 100%;
    background: white;
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.dashboard-mockup img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* The Real Cost Section */
.real-cost {
    background: white;
}

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

.cost-card {
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

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

.cost-card.red { background: #fff1f2; }
.cost-card.orange { background: #fff7ed; }
.cost-card.yellow { background: #fefce8; }

.cost-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cost-card.red .cost-icon { background: #ffe4e6; color: #e11d48; }
.cost-card.orange .cost-icon { background: #ffedd5; color: #ea580c; }
.cost-card.yellow .cost-icon { background: #fef9c3; color: #ca8a04; }

.cost-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.cost-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* A System That Works */
.system-works {
    background: var(--bg-light);
}

.system-container {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.system-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.system-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.system-step:nth-child(1) .system-step-icon { background: #eff6ff; color: #3b82f6; }
.system-step:nth-child(3) .system-step-icon { background: #f5f3ff; color: #8b5cf6; }
.system-step:nth-child(5) .system-step-icon { background: #ecfdf5; color: #10b981; }
.system-step:nth-child(7) .system-step-icon { background: #eef2ff; color: #6366f1; }

.system-step h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.system-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.system-arrow {
    color: #cbd5e1;
}

/* What We Build */
.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.build-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.build-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.build-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.build-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.build-card:nth-child(1) .build-icon { background: #eff6ff; color: #3b82f6; }
.build-card:nth-child(2) .build-icon { background: #eff6ff; color: #3b82f6; }
.build-card:nth-child(3) .build-icon { background: #f5f3ff; color: #8b5cf6; }
.build-card:nth-child(4) .build-icon { background: #ecfdf5; color: #10b981; }
.build-card:nth-child(5) .build-icon { background: #fff7ed; color: #ea580c; }
.build-card:nth-child(6) .build-icon { background: #eef2ff; color: #6366f1; }

.build-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.build-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.build-features {
    list-style: none;
    padding: 0;
}

.build-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.build-features li .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.build-card:nth-child(1) .dot { background: #3b82f6; }
.build-card:nth-child(2) .dot { background: #3b82f6; }
.build-card:nth-child(3) .dot { background: #8b5cf6; }
.build-card:nth-child(4) .dot { background: #10b981; }
.build-card:nth-child(5) .dot { background: #ea580c; }
.build-card:nth-child(6) .dot { background: #6366f1; }


/* Industries */
.industries {
    background: var(--bg-light);
}

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

.industry-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.industry-icon {
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Snapshots */
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.snapshot-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
}

.snapshot-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.snapshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.snapshot-tag {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.snapshot-tag.blue { background: #eff6ff; color: #3b82f6; }
.snapshot-tag.green { background: #ecfdf5; color: #10b981; }
.snapshot-tag.purple { background: #f5f3ff; color: #8b5cf6; }
.snapshot-tag.orange { background: #fff7ed; color: #ea580c; }

.snapshot-duration {
    font-size: 12px;
    color: var(--text-muted);
}

.snapshot-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.snapshot-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.snapshot-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.snapshot-image img {
    width: 100%;
    display: block;
}

/* Process */
.process {
    background: var(--bg-light);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 32px;
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.process-card:nth-child(1) .process-number { background: #3b82f6; }
.process-card:nth-child(2) .process-number { background: #8b5cf6; }
.process-card:nth-child(3) .process-number { background: #10b981; }
.process-card:nth-child(4) .process-number { background: #ea580c; }
.process-card:nth-child(5) .process-number { background: #6366f1; }
.process-card:nth-child(6) .process-number { background: #0d9488; }

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.process-features {
    display: flex;
    gap: 40px;
}

.process-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-features span svg {
    color: var(--primary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card.dark {
    background: #0f172a;
    color: white;
    border: none;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card.dark .popular-badge {
    background: var(--primary);
    top: -14px;
    right: 50%;
    transform: translateX(50%);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card p.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.pricing-card.dark p.subtitle {
    color: #94a3b8;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card.dark .price span {
    color: #94a3b8;
}

.timeline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.dark .timeline {
    border-color: rgba(255,255,255,0.1);
    color: #94a3b8;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.pricing-card.dark .pricing-features li {
    color: #e2e8f0;
}

.pricing-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question svg {
    transition: var(--transition);
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* ROI Section */
.roi-section {
    background: #0f172a;
    color: white;
}

.roi-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.roi-content {
    flex: 1;
}

.roi-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.roi-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.roi-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roi-feature-item {
    display: flex;
    gap: 20px;
}

.roi-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.roi-feature-item:nth-child(1) .roi-feature-icon { color: #3b82f6; }
.roi-feature-item:nth-child(2) .roi-feature-icon { color: #8b5cf6; }
.roi-feature-item:nth-child(3) .roi-feature-icon { color: #10b981; }
.roi-feature-item:nth-child(4) .roi-feature-icon { color: #f59e0b; }

.roi-feature-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.roi-feature-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

.roi-visual {
    flex: 1;
}

.roi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.roi-card h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.roi-row {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.roi-label {
    text-align: left;
}

.roi-label span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

.roi-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.roi-total-label {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.roi-total-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.roi-custom-row {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.roi-savings {
    text-align: center;
}

.roi-savings h4 {
    color: #10b981;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.roi-savings p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Final CTA Section */
.ready-section {
    background: #0f172a;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.ready-section h2 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.ready-section p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 48px;
}

.ready-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.ready-trust {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.trust-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Detailed Footer */
.footer-main {
    background: #0f172a;
    color: white;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 32px;
    color: white;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.social-bar {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}


/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-erp h1 { font-size: 3.5rem; }
    .hero-erp-flex { flex-direction: column; }
    .cost-grid { grid-template-columns: repeat(2, 1fr); }
    .build-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .snapshot-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .system-container { flex-direction: column; gap: 40px; }
    .system-arrow { transform: rotate(90deg); }
    .roi-flex { flex-direction: column; gap: 60px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ready-section h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-erp h1 { font-size: 2.2rem !important; }
    .cost-grid { grid-template-columns: 1fr; }
    .build-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-card { flex-direction: column; gap: 20px; }
    .process-features { flex-direction: column; gap: 12px; }
    .hero-btns { flex-direction: column; }
    .section-header h2 { font-size: 2.2rem; }
    .ready-btns { flex-direction: column; align-items: center; }
    .ready-trust { flex-direction: column; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .footer-legal { justify-content: center; }
    section { overflow: hidden; }
}

