:root {
    /* Modern Professional Palette */
    --primary-blue: #0066cc;
    --primary-blue-dark: #004c99;
    --primary-blue-light: #4d94ff;
    --featured-green: #2e7d32;
    --accent-green: #4caf50;
    --accent-warm: #ff6b35;
    
    /* Neutrals */
    --dark: #2d3748;
    --light: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Semantic Colors */
    --primary-color: var(--primary-blue);
    --primary-dark: var(--primary-blue-dark);
    --accent-color: var(--featured-green);
    --bg-primary: var(--white);
    --bg-secondary: var(--light);
    --bg-dark: var(--dark);
    --text-primary: var(--dark);
    --text-secondary: #525252;
    --text-light: #6f6f6f;
    --text-on-dark: var(--white);
    
    /* Shadows - Clean, Sharp */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    
    /* Spacing - 2px increments */
    --spacing-01: 2px;
    --spacing-02: 4px;
    --spacing-03: 8px;
    --spacing-04: 12px;
    --spacing-05: 16px;
    --spacing-06: 24px;
    --spacing-07: 32px;
    --spacing-08: 40px;
    --spacing-09: 48px;
    
    /* Border Radius - Minimal */
    --radius-sm: 2px;
    --radius-md: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
}

code, pre {
    font-family: 'IBM Plex Mono', monospace;
}

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

/* Navigation - IBM Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-20);
    z-index: 1000;
    padding: var(--spacing-05) 0;
    transition: all 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-04);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-brand:hover {
    opacity: 0.7;
}

.logo-icon {
    flex-shrink: 0;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.15s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
}

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

.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 500;
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: var(--spacing-04) var(--spacing-06);
    border-radius: 0;
    transition: background 0.15s ease;
    border: none !important;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* Hero Section - IBM Style */
.hero {
    padding: 10rem 0 8rem;
    background: var(--bg-secondary);
    margin-top: 65px;
    position: relative;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-03) var(--spacing-05);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-07);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-06);
    letter-spacing: -0.02em;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-08);
    line-height: 1.5;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-04);
    line-height: 1.5;
}

.hero-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Buttons - IBM Style */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-05) var(--spacing-08);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: background 0.15s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: var(--spacing-06) var(--spacing-09);
    font-size: 1.125rem;
}

/* Section Styles - IBM Clean */
section {
    padding: var(--spacing-09) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-09);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-05);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-05);
    letter-spacing: 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-05);
    letter-spacing: 0;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Section - Modern Cards */
.problem-section {
    background: var(--bg-secondary);
}

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

.problem-card {
    background: white;
    padding: var(--spacing-07);
    border: 1px solid var(--gray-20);
    border-left: 4px solid var(--primary-color);
    transition: border-left-color 0.15s ease, box-shadow 0.15s ease;
}

.problem-card:hover {
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-04);
    letter-spacing: 0;
    line-height: 1.4;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.solution-statement {
    text-align: center;
    max-width: 860px;
    margin: var(--spacing-09) auto 0;
    padding: var(--spacing-08);
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
}

.solution-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-04);
    font-weight: 400;
}

.solution-emphasis {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: 0;
}

/* Process Section - Modern Timeline */
.process-timeline {
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-07);
    margin-bottom: var(--spacing-07);
    padding: var(--spacing-07);
    background: white;
    border: 1px solid var(--gray-20);
    transition: border-color 0.15s ease;
}

.process-step:hover {
    border-color: var(--primary-color);
}

.step-number-badge {
    flex-shrink: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    line-height: 1;
    transition: background 0.15s ease;
}

.process-step:hover .step-number {
    background: var(--featured-green);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.step-duration {
    color: var(--color-teal);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'IBM Plex Mono', monospace;
}

.step-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.step-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.step-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.step-deliverable {
    background: linear-gradient(135deg, rgba(232, 245, 217, 0.4), rgba(180, 225, 151, 0.15));
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-light);
}

.step-deliverable strong {
    display: block;
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.step-deliverable p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.step-deliverable p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--color-teal) !important;
    font-weight: 600 !important;
}

/* Pricing Section - Phased Model */
.pricing-section {
    background: var(--bg-secondary);
}

/* Two-column pricing grid */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Smaller pricing cards for phased model */
.pricing-card-small {
    background: white;
    padding: var(--spacing-08);
    border: 1px solid var(--gray-20);
    transition: border-color 0.15s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-small:hover {
    border-color: var(--primary-color);
}

.pricing-card-small.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    border-left: 4px solid var(--primary-color);
}

.pricing-phase {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--spacing-02) var(--spacing-04);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: var(--spacing-05);
    align-self: flex-start;
    font-family: 'IBM Plex Mono', monospace;
}

.pricing-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.pricing-note {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: auto;
    padding-top: 1.5rem;
    font-style: italic;
    border-top: 1px solid var(--bg-accent);
}

.pricing-card-small .price {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card-small .price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -0.03em;
}

/* ROI Badge for Implementation Phase */
.roi-badge {
    text-align: center;
    margin: var(--spacing-05) 0;
}

.roi-text {
    display: inline-block;
    background: var(--featured-green);
    color: white;
    padding: var(--spacing-04) var(--spacing-06);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* ROI Examples */
.roi-examples {
    background: var(--bg-secondary);
    padding: var(--spacing-06);
    margin-top: var(--spacing-06);
    margin-bottom: var(--spacing-05);
    border-left: 4px solid var(--featured-green);
}

.roi-examples strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.875rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.roi-item {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    padding-left: 0.5rem;
}

.roi-item::before {
    content: none;
}

.pricing-card-small .pricing-list {
    list-style: none;
    margin-bottom: 0;
}

.pricing-card-small .pricing-list li {
    padding: 0.875rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-secondary);
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.pricing-card-small .pricing-list li:last-child {
    border-bottom: none;
}

.pricing-card-small .pricing-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    width: 22px;
    height: 22px;
    background: rgba(108, 201, 137, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    top: 0.875rem;
}

.pricing-section .btn-primary {
    display: block;
    margin: 0 auto;
    max-width: 500px;
}

/* Features Section - Categorized Use Cases */
.use-case-category {
    margin-bottom: 4rem;
}

.use-case-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-07);
    padding-bottom: var(--spacing-04);
    border-bottom: 2px solid var(--primary-color);
    letter-spacing: 0;
    display: inline-block;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: var(--spacing-07);
    border: 1px solid var(--gray-20);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.use-case-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.use-case-card h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* About Section - Modern Layout */
.about-section {
    background: var(--bg-secondary);
}

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

.about-content > p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.about-rule {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-xl);
    margin-top: 4rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-light);
}

.rule-text {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.rule-emphasis {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* CTA Section - IBM Clean */
.cta-section {
    background: var(--primary-color);
    color: white;
}

.cta-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section .section-tag {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-05);
    letter-spacing: 0;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-points {
    margin: 3rem 0;
    text-align: left;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-point {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1.1875rem;
    font-weight: 500;
}

.cta-icon {
    font-size: 1.5rem;
    color: var(--color-lime);
    font-weight: 700;
}

.cta-note {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.6;
}

.cta-availability {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'IBM Plex Mono', monospace;
}

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

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

/* Footer - Modern Style */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-footer {
    flex-shrink: 0;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-left: 2.5rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-link:hover {
    color: var(--accent-green);
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem;
    }

    .step-number-badge {
        align-self: flex-start;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--spacing-04) 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        gap: var(--spacing-05);
    }
    
    .nav-brand {
        flex: 0 0 auto;
    }

    .nav-links {
        flex: 1 1 100%;
        justify-content: center;
        gap: var(--spacing-06);
        flex-wrap: wrap;
        order: 2;
    }
    
    .nav-links a {
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1875rem;
    }

    .hero-features {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.375rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .problem-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.375rem;
    }

    section {
        padding: 4rem 0;
    }

    .pricing-card-small {
        padding: 2.5rem;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
    }

    .solution-statement,
    .about-rule {
        padding: 2.5rem;
    }

    .process-step {
        padding: 2rem;
        gap: 1.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

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

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        gap: var(--spacing-05);
    }
    
    .nav-links a {
        font-size: 0.8125rem;
    }
    
    .brand-text {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.125rem 2.25rem;
        font-size: 1.125rem;
    }

    .pricing-card-small {
        padding: 2rem;
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

    .pricing-card-small .price-amount {
        font-size: 3rem;
    }

    .roi-text {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }

    .roi-examples {
        padding: 1.25rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .step-number {
        font-size: 2.25rem;
    }
}

/* Modern Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
