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

html {
    background-color: #fff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

header {
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav > div {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.nav-brand h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-brand h1 a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    padding-top: 0.1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

nav h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #000;
    text-decoration: underline;
}

.nav-tabs {
    display: flex;
    background: #e8e8e8;
    border-radius: 8px;
    padding: 3px;
    gap: 0;
    align-items: center;
}

.nav-tab {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, font-weight 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.nav-tab.active {
    background: #fff;
    color: #000;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-tabs a.nav-tab:hover,
.nav-tabs span.nav-tab:hover {
    color: #000;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
}

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

section {
    margin-bottom: 4rem;
}

.hero {
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 4rem;
    background-color: #fafafa;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.2rem;
    color: #333;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-two-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-side {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #000;
}

.hero-side-left {
    border-top-color: #000;
}

.hero-side-right {
    border-top-color: #333;
}

.hero-side-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.hero-side-who {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-style: italic;
}

.hero-side-benefit {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.hero-side-purpose {
    font-size: 0.85rem;
    color: #666;
    margin: 1rem 0;
    line-height: 1.5;
    font-style: italic;
}

.hero-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-subscribe-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #fafafa;
    color: #000;
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.hero-subscribe-form input:focus {
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.hero-subscribe-form input::placeholder {
    color: #666;
}

.hero-subscribe-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.hero-subscribe-form button:hover {
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subscribe-form button:active {
    background-color: #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-inclusive {
    font-size: 1rem;
    color: #000;
    margin: 2rem auto 0 auto;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem {
    padding: 2rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.audience-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
}

.problem-column ul {
    list-style: none;
    padding-left: 0;
}

.problem-column li {
    padding: 0.75rem 0;
}

.how-it-works {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.workflow-section h3 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.workflow-audience {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
}

.workflow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-step {
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.workflow-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #000;
}

.workflow-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.workflow-step p {
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.expectations {
    padding: 3rem 1rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expectations-column h3 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.expectations-list {
    list-style: none;
    padding-left: 0;
}

.expectations-list li {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expectations-list li:last-child {
    margin-bottom: 0;
}

.expectations-list li strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.expectations-list li p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.outcomes {
    padding: 3rem 1rem;
    margin-bottom: 4rem;
}

.outcomes-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.outcomes-column h3 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.outcomes-list {
    list-style: none;
    padding-left: 0;
}

.outcomes-list li {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #fafafa;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.outcomes-list li:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.outcomes-list li:last-child {
    margin-bottom: 0;
}

.outcomes-list li strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.outcomes-list li p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.outcomes-disclaimer {
    max-width: 1000px;
    margin: 2.5rem auto 0 auto;
    padding: 1.25rem 1.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.outcomes-disclaimer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.outcomes-disclaimer strong {
    font-weight: 600;
    color: #000;
}

.principles {
    padding: 2rem 0;
}

.principles-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
}

.principles-list li {
    padding: 0.75rem 1rem;
    text-align: left;
    background-color: #fafafa;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.principles-list li:last-child {
    margin-bottom: 0;
}

.faq {
    padding: 3rem 1rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #333;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    font-weight: 600;
    color: #000;
}

.cta {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #fafafa;
    border-radius: 8px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cta-audience {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

.cta-size {
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 0.75rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.cta-benefit {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #fafafa;
    color: #000;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.cta-form input::placeholder {
    color: #666;
}

.cta-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #fafafa;
    color: #000;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

.cta-form textarea:focus {
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.cta-form textarea::placeholder {
    color: #666;
}

.cta-form button,
.submit-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.cta-form button:hover,
.submit-button:hover {
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-form button:active,
.submit-button:active {
    background-color: #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border: none;
    display: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: #f5f5f5;
}

.form-message.error {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

footer {
    padding: 2rem;
    text-align: center;
    color: #333;
    margin-top: 4rem;
    background-color: #f5f5f5;
}

footer a {
    color: #333;
    text-decoration: underline;
}

footer a:hover {
    color: #000;
}

/* Single-column layouts for educators page */
.hero-educator-focused {
    max-width: 600px;
    margin: 3rem auto 0 auto;
}

.problem-single-column {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.problem-single-column ul {
    list-style: none;
    padding-left: 0;
}

.problem-single-column li {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.7;
}

.workflow-single-column {
    max-width: 800px;
    margin: 0 auto;
}

.workflow-single-column h3 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.expectations-single-column {
    max-width: 800px;
    margin: 0 auto;
}

.outcomes-single-column {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    main {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-two-sides {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-side {
        padding: 1.5rem;
    }

    .hero-side-title {
        font-size: 1.2rem;
    }

    .hero-side-who {
        font-size: 0.85rem;
    }

    .hero-side-benefit {
        font-size: 0.95rem;
    }

    .hero-inclusive {
        font-size: 0.95rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

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

    .workflow-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .workflow {
        gap: 1.5rem;
    }

    .workflow-step {
        padding: 1rem;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    header {
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav > div {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-brand {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }
    
    .nav-links {
        align-items: center;
        width: 100%;
    }
    
    .nav-tabs {
        width: 100%;
        justify-content: center;
    }

    nav h1 {
        font-size: 1.2rem;
    }

    .faq {
        padding: 2rem 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .hero-educator-focused {
        margin-top: 2rem;
    }

    .cta-container-single {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Styles from index.html - focused hero section */
.focused-hero {
    text-align: center;
    padding: 3rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-example-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 2rem;
}

.focused-hero h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #000;
}

.focused-hero .hero-subheading {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #666;
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 600px;
    margin: 2.5rem auto 0;
    justify-content: center;
}

.hero-cta-primary {
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.hero-cta-primary:hover {
    background-color: #333;
}

.hero-cta-secondary-btn {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #000;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, border-color 0.2s;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.hero-cta-secondary-btn:hover {
    background-color: #fafafa;
    border-color: #000;
}

.hero-example {
    max-width: 500px;
    margin: 2rem auto 0;
}

.hero-example-request {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    margin-bottom: 0.5rem;
}

.hero-example-header {
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-example-from {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hero-example-envelope {
    width: 18px;
    height: 18px;
    color: #EA4335;
    flex-shrink: 0;
}

.hero-example-envelope svg {
    width: 100%;
    height: 100%;
}

.hero-example-sender {
    font-size: 0.9rem;
    color: #202124;
    font-weight: 500;
}

.hero-example-subject {
    font-size: 0.9rem;
    color: #202124;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    margin-left: 0.25rem;
}

.hero-example-body {
    padding: 1rem;
}

.hero-example-body-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero-example-youtube-icon {
    width: 18px;
    height: 18px;
    color: #ff0000;
    flex-shrink: 0;
}

.hero-example-youtube-icon svg {
    width: 100%;
    height: 100%;
}

.hero-example-channel {
    font-size: 0.85rem;
    color: #000;
    font-weight: 600;
}

.hero-example-requests {
    font-size: 0.85rem;
    color: #666;
}

.hero-example-message {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.hero-steps-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem;
    padding: 0 1rem;
}

.hero-step-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.hero-step-nav-item:hover {
    opacity: 0.7;
}

.hero-step-nav-item.active {
    opacity: 1;
}

.hero-step-nav-item.inactive {
    opacity: 0.4;
}

.hero-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.hero-step-nav-item.active .hero-step-number {
    background-color: #000;
}

.hero-step-nav-item.inactive .hero-step-number {
    background-color: #999;
}

.hero-step-title {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
    white-space: nowrap;
}

.hero-step-nav-item.inactive .hero-step-title {
    color: #666;
}

.hero-carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
    width: 100%;
}

.hero-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding-bottom: 1rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero-sequence-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.5rem;
    padding-left: 0.25rem;
}

.hero-sequence-label {
    font-size: 0.8rem;
    color: #666;
    margin: 0.25rem 0 0.5rem;
    font-weight: 400;
    text-align: center;
    display: block;
    line-height: 1.4;
    font-style: italic;
}

.hero-sequence-label.hidden {
    display: none;
}

.hero-sequence-label.show {
    display: block;
}

.hero-response {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 0.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: none;
}

.hero-response.animate {
    animation: slideInFromBottom 0.5s ease-out forwards;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-response:last-child {
    margin-bottom: 0;
}

.hero-response-header {
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-response-from {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hero-response-envelope {
    width: 16px;
    height: 16px;
    color: #EA4335;
    flex-shrink: 0;
}

.hero-response-envelope svg {
    width: 100%;
    height: 100%;
}

.hero-response-sender {
    font-size: 0.85rem;
    color: #202124;
    font-weight: 500;
}

.hero-response-body {
    padding: 0.75rem 0.875rem;
}

.hero-response-message {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-response.thank-you {
    border-color: #d0d0d0;
    background-color: #fafafa;
}

.hero-response-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
}

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

.subscribe-section {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}

.subscribe-intro {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.75rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    margin-bottom: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #000;
    font-family: inherit;
    font-size: 0.8rem;
    border-radius: 4px;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #ccc;
}

.subscribe-form input::placeholder {
    color: #999;
}

.subscribe-form button {
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    border-radius: 4px;
    white-space: nowrap;
}

.subscribe-form button:hover {
    background-color: #fafafa;
    border-color: #ccc;
}

.subscribe-help {
    font-size: 0.7rem;
    color: #999;
    font-style: italic;
}

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

.value-pillar {
    text-align: center;
    padding: 1.5rem 1rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.value-pillar h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.value-pillar p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.flow-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 2;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.flow-step h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #000;
}

.flow-step p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.detailed-form-section {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
}

.detailed-form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #000;
}

.detailed-form-section p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.detailed-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #000;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    cursor: pointer;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.form-group-checkbox label {
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
}

.form-group-checkbox label strong {
    font-weight: 600;
    color: #000;
}

.form-group-checkbox .checkbox-help {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    font-style: italic;
}

.detailed-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.detailed-form button:hover {
    background-color: #333;
}

.comparison-visual {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    padding: 1.5rem 0.75rem;
}

.comparison-card.old-way {
    background-color: transparent;
}

.comparison-card.new-way {
    background-color: transparent;
    text-align: right;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-card.old-way .comparison-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #999;
}

.comparison-card.new-way .comparison-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

.comparison-card.new-way .comparison-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #000;
    font-weight: 700;
}

.faq {
    max-width: 900px;
    margin: 3rem auto 4rem;
    padding: 0 2rem 4rem !important;
}

.faq h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #000;
    background-color: transparent !important;
    padding: 0;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s;
}

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

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: left;
    color: #000;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    font-weight: 600;
    color: #000;
}

@media (max-width: 768px) {
    .focused-hero {
        padding: 4rem 1rem 3rem;
    }

    .focused-hero h1 {
        font-size: 1.8rem;
    }

    .focused-hero .hero-subheading {
        font-size: 1.1rem;
    }

    .value-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .flow-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }

    .flow-step::after {
        content: '↓';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: #e0e0e0;
    }

    .flow-step:last-child::after {
        display: none;
    }

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

    .hero-ctas {
        max-width: 100%;
        flex-direction: column;
    }

    .hero-example {
        margin: 1.5rem auto 0;
    }

    .hero-example-header {
        padding: 0.875rem 0.875rem 0.625rem;
    }

    .hero-example-body {
        padding: 0.875rem;
    }

    .hero-example-subject {
        font-size: 0.8rem;
    }

    .hero-example-channel,
    .hero-example-requests,
    .hero-example-message {
        font-size: 0.8rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-section {
        margin: 1.5rem auto;
        padding: 1rem;
    }

    .hero-example-title {
        font-size: 0.85rem;
        margin-top: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .hero-step-title {
        font-size: 0.85rem;
    }

    .hero-steps-nav {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0 1rem;
        align-items: center;
        padding: 0 1rem;
    }

    .hero-step-nav-item {
        padding: 0.5rem;
        width: auto;
        justify-content: center;
    }

    .hero-step-title {
        white-space: normal;
    }

    .hero-sequence-label {
        text-align: center;
        font-size: 0.75rem;
    }

    .hero-response-header {
        padding: 0.625rem 0.875rem;
    }

    .hero-response-body {
        padding: 0.75rem 0.875rem;
    }

    .hero-response-sender,
    .hero-response-message {
        font-size: 0.8rem;
    }

    .detailed-form-section {
        margin: 3rem auto;
        padding: 2.5rem 1.5rem;
    }

    .detailed-form-section h2 {
        font-size: 1.5rem;
    }

    .form-group-checkbox {
        padding: 0.875rem;
    }

    .form-group-checkbox label {
        font-size: 0.9rem;
    }

    .form-group-checkbox .checkbox-help {
        font-size: 0.8rem;
    }

    .faq {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .faq h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}
