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

:root {
    --color-primary: #000000;
    --color-accent: #2589BF;
    --color-text: #1a1a1a;
    --color-text-light: #6B7280;
    --color-bg: #FFFFFF;
    --color-bg-light: #F3F4F6;
    --color-border: #E5E7EB;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.2s;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    margin-left: 64px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* Top Banner */
.top-banner {
    background: #F3F4F6;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    text-align: center;
}

.top-banner p {
    margin: 0;
    font-size: 18px;
    color: var(--color-text-light);
    font-weight: 500;
}

.top-banner a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    margin-left: 8px;
    font-size: 18px;
}

.top-banner a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-bg-light);
}

.btn-small {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    background: var(--color-accent);
    color: white;
}

.btn-small:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text);
}

/* Feature Grid */
.features {
    background: var(--color-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Workflow Section */
.workflow {
    background: var(--color-bg-light);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.workflow-card {
    background: var(--color-bg);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.2s;
}

.workflow-card:hover {
    transform: translateY(-4px);
}

.workflow-icon {
    color: var(--color-accent);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.workflow-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.workflow-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.workflow-link:hover {
    text-decoration: underline;
}

/* Rotation Systems */
.rotations {
    background: var(--color-bg);
}

.rotations-intro {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.rotations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.rotation-card {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.rotation-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.rotation-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.rotations-cta {
    text-align: center;
    margin-top: 40px;
}

.text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.text-link:hover {
    text-decoration: underline;
}

/* Trust Section */
.trust {
    background: #1E3A5F;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.trust h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.trust-stat {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-strip h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-text);
}

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

/* Footer */
.footer {
    background: #2F5F8F;
    color: white;
    padding: 60px 0 32px;
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Page-Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .lead {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--color-bg-light);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.content-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.content-section p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    margin-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
}

.section-intro {
    text-align: left;
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* System Blocks */
.system-block {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    margin-bottom: 32px;
}

.system-block h3 {
    color: var(--color-accent);
    margin-bottom: 16px;
}

/* Diagram Placeholder */
.diagram-placeholder {
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    padding: 60px 20px;
    text-align: center;
    margin: 32px 0;
    border-radius: 8px;
}

.diagram-placeholder p {
    color: var(--color-text-light);
    font-style: italic;
}

/* Diagram Container */
.diagram-container {
    text-align: center;
    margin: 40px 0;
}

.rotation-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.diagram-caption {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 12px;
}

/* CTA Inline */
.cta-inline {
    margin-top: 24px;
}

/* Positions Grid */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.position-card {
    background: var(--color-bg-light);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.position-card h4 {
    color: var(--color-accent);
    margin-bottom: 5px;
}

/* Teaching Tips */
.teaching-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tip-card {
    background: var(--color-bg);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.coaching-cta {
    text-align: center;
    margin-top: 32px;
    font-size: 16px;
}

.coaching-cta a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.coaching-cta a:hover {
    text-decoration: underline;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.step-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-benefits {
    list-style: none;
    margin-left: 0;
    margin-top: 16px;
}

.step-benefits li {
    padding-left: 24px;
    position: relative;
    color: var(--color-text-light);
}

.step-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.learn-more-text {
    text-align: center;
    margin-top: 32px;
}

.learn-more-text a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.learn-more-text a:hover {
    text-decoration: underline;
}

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 48px auto;
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--color-bg-light);
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-top: 1px solid var(--color-border);
}

.comparison-cell {
    padding: 16px;
    text-align: left;
}

.comparison-cell.highlight {
    background: rgba(37, 137, 191, 0.05);
    color: var(--color-accent);
    font-weight: 600;
    text-align: center;
}

.comparison-header .comparison-cell {
    text-align: center;
}

.comparison-header .comparison-cell:first-child {
    text-align: left;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.benefit-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.benefit-icon {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.benefit-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.benefit-card a:hover {
    text-decoration: underline;
}

/* Demo Container */
.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-placeholder {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.demo-placeholder h3 {
    color: var(--color-text);
    margin-bottom: 16px;
}

.demo-image-wrapper {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.demo-interface-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.demo-caption {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    margin-top: 16px;
    font-style: italic;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
}

.demo-feature svg {
    color: var(--color-accent);
}

/* Features List */
.features-list {
    max-width: 800px;
    margin: 48px auto;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    background: var(--color-bg);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.feature-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    margin-bottom: 4px;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Builder CTA Section */
.builder-cta {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 0;
    text-align: center;
}

.builder-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.builder-cta-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.builder-placeholder {
    max-width: 900px;
    margin: 0 auto 48px;
}

.builder-demo {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 60px 40px;
}

.builder-demo h3 {
    color: var(--color-text);
    margin-bottom: 16px;
}

.builder-note {
    margin-top: 24px;
    font-size: 15px;
    color: var(--color-text-light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Testimonial Section */
.testimonial-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-intro {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-text-light);
}

/* Learn More Section */
.learn-more-section {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.learn-more-section h2 {
    margin-bottom: 16px;
}

.learn-more-section p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* Pricing Section */
.trust-badge {
    background: linear-gradient(135deg, rgba(37, 137, 191, 0.1) 0%, rgba(37, 137, 191, 0.05) 100%);
    border-left: 4px solid var(--color-accent);
    padding: 24px 32px;
    margin: 48px auto;
    max-width: 800px;
    border-radius: 8px;
}

.trust-badge p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 0;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 32px;
    margin: 48px 0;
}

.pricing-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
}

.pricing-featured {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 137, 191, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 8px;
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

.pricing-features {
    margin: 24px 0;
}

.feature-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.feature-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-group h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.feature-group ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.feature-group li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.feature-group li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.pricing-cta {
    text-align: center;
    margin-top: 32px;
}

.pricing-cta .btn {
    width: 100%;
    max-width: 280px;
}

/* Tablet/Medium Screen Responsiveness */
@media (max-width: 960px) {
    .nav-links {
        gap: 24px;
        margin-left: 32px;
    }

    .nav-links a {
        font-size: 15px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        border-bottom: 1px solid var(--color-border);
    }

    .nav {
        padding: 16px 0;
        gap: 16px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .nav-links {
        display: none;
    }

    .top-banner {
        padding: 16px 0;
    }

    .top-banner p {
        font-size: 16px;
    }

    .top-banner a {
        font-size: 16px;
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero {
        padding: 80px 0;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-grid,
    .rotations-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .cta-strip h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


@media (max-width: 480px) {

        .top-banner {
        padding: 14px 0;
    }

    .top-banner p {
        font-size: 15px;
    }

    .top-banner a {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .rotation-card {
        padding: 24px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .featured-badge {
        font-size: 13px;
        padding: 5px 16px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero .lead {
        font-size: 18px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .steps-grid,
    .positions-grid,
    .teaching-tips,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 12px 8px;
        font-size: 14px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .builder-cta h2 {
        font-size: 28px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

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

    .trust-badge {
        padding: 20px 24px;
    }
}

