* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1f3b;
    --navy-light: #1a3a52;
    --navy-dark: #050f1e;
    --orange: #ff6b35;
    --orange-dark: #e55a24;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --gray-lighter: #fafafa;
    --white: #ffffff;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    background-color: var(--white);
    line-height: 1.6;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--navy);
    border-bottom: 1px solid var(--navy-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-signin {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-signin:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(5, 15, 30, 0.9) 0%, rgba(10, 31, 59, 0.68) 38%, rgba(10, 31, 59, 0.12) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-support,
.benefit-support {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: center;
    max-width: 980px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.benefit-support {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    margin-top: 3rem;
}

.support-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.support-copy {
    max-width: 560px;
}

.support-kicker {
    color: var(--orange-dark) !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.support-copy h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.support-copy p:last-child {
    color: var(--gray);
    line-height: 1.7;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* Product Demonstration */
.product-demo {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 80px 0;
}

.product-demo .section-title {
    color: var(--white);
}

.demo-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-mockups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .demo-mockups {
        grid-template-columns: 1fr 1fr;
    }
}

.mockup-email {
    display: flex;
    justify-content: center;
}

.mockup-phone {
    perspective: 1000px;
}

.email-preview {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.email-preview:hover {
    transform: scale(1.02);
}

.mockup-laptop {
    display: flex;
    justify-content: center;
}

.laptop-frame {
    background-color: #f3f4f6;
    border: 20px solid #1f2937;
    border-top-width: 30px;
    border-bottom-width: 50px;
    border-radius: 12px 12px 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    overflow: hidden;
}

.laptop-frame::before {
    content: '';
    display: block;
    height: 30px;
    background: linear-gradient(to right, transparent 30%, #333 30%, #333 70%, transparent 70%);
    margin-top: -30px;
    border-radius: 0 0 40px 40px;
}

.laptop-frame .email-preview {
    display: block;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .product-demo {
        padding: 60px 0;
    }
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

/* Shared layout for the lightweight information pages. */
.legal-page {
    min-height: calc(100vh - 218px);
    padding: 80px 0;
    background-color: var(--gray-lighter);
}

.legal-content {
    max-width: 780px;
}

.legal-content h1 {
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: var(--navy);
    font-size: 1.35rem;
    margin: 2.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--gray);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.legal-content li {
    padding-left: 0.35rem;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--orange-dark);
    font-weight: 600;
}

.eyebrow {
    color: var(--orange-dark) !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.legal-content .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 640px;
}

.contact-button {
    margin-top: 2rem;
}

.contact-signin {
    margin-top: 1.5rem;
}

/* How It Works */
.how-it-works {
    background-color: var(--gray-lighter);
    padding: 60px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(10, 31, 59, 0.1);
}

.step::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--orange), transparent);
    display: none;
}

.step:last-child::after {
    display: none;
}

@media (min-width: 769px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .step::after {
        display: block;
    }
    
    .step:last-child::after {
        display: none;
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--gray);
    line-height: 1.7;
}

/* Modes */
.modes {
    background-color: var(--white);
    padding: 60px 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mode-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--navy-light);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 59, 0.2);
}

.mode-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mode-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.mode-features {
    list-style: none;
    position: relative;
    z-index: 2;
}

.mode-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    position: relative;
    padding-left: 1.75rem;
}

.mode-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* Benefits */
.benefits {
    background-color: var(--white);
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--gray-lighter);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(10, 31, 59, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    background-color: var(--gray-lighter);
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(10, 31, 59, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--navy-light);
}

.pricing-card.featured .price {
    color: var(--orange);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background-color: var(--white);
    padding: 60px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-lighter);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--gray-lighter);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    transition: background-color 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    background-color: var(--white);
}

.faq-answer p strong {
    color: var(--navy);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        background-position: 68% center !important;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero {
        padding: 80px 0 100px;
        min-height: auto;
    }

    .section-support,
    .benefit-support {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .benefit-support .support-image {
        order: -1;
    }

    .support-image {
        height: 165px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
    
    .demo-mockups {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-image {
        height: 35px;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-signin {
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
    }

    .nav-link:not(.nav-signin) {
        display: none;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .price {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .laptop-frame {
        max-width: 100%;
    }
}

/* Homepage visual pass: compact aviation landing-page proportions. */
body {
    font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
}

.logo {
    text-decoration: none;
}

.hero {
    min-height: 535px;
    padding: 88px 0 72px;
}

.hero-title {
    font-weight: 800;
    letter-spacing: 0;
}

.hero-title span {
    color: var(--orange);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-mark {
    color: var(--orange);
    font-size: 1.35rem;
    line-height: 1;
}

section {
    padding: 64px 0;
}

.section-title {
    margin-bottom: 2.25rem;
    letter-spacing: 0;
}

.how-it-works,
.modes,
.benefits,
.pricing,
.faq {
    padding: 54px 0;
}

.steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.step,
.mode-card,
.benefit-card,
.pricing-card,
.faq-item {
    border-radius: 4px;
}

.step {
    padding: 1.5rem 1.25rem;
}

.step::after {
    top: 50%;
    right: -1rem;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--orange);
}

.product-demo {
    padding: 64px 0;
}

.demo-mockups {
    gap: 2rem;
}

.email-preview {
    border-radius: 4px;
}

.pricing {
    background: var(--navy);
}

.pricing .section-title {
    color: var(--white);
}

.pricing-card {
    padding: 2rem;
}

.pricing-card.featured {
    background: var(--white);
}

.pricing-card.featured .period,
.pricing-card.featured .pricing-desc {
    color: var(--gray);
}

.pricing-note {
    color: rgba(255, 255, 255, 0.75);
}

.cta-section {
    padding: 54px 0;
}

.footer {
    padding: 42px 0 20px;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 76px 0 64px;
    }

    .hero-features {
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .nav-signin {
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* The supplied PNG includes transparent canvas padding; frame it without altering the asset. */
.logo {
    width: 270px;
    height: 45px;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.logo-image {
    width: 290px;
    max-width: none;
    height: auto;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 480px) {
    .logo {
        width: 250px;
        height: 35px;
    }

    .logo-image {
        width: 270px;
        left: -3px;
    }
}

/* See it in action refinement. */
.product-demo {
    padding: 46px 0 50px;
}

.product-demo .section-title {
    margin-bottom: 1rem;
}

.demo-subtitle {
    margin-bottom: 1.75rem;
}

.demo-mockups {
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
    gap: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.mockup-email {
    justify-content: flex-start;
}

.mockup-email .email-preview {
    width: min(100%, 390px);
    max-height: 450px;
    object-fit: cover;
    object-position: top;
}

.demo-panel {
    align-self: center;
    padding: 1.25rem 0;
}

.demo-panel h3 {
    color: var(--white);
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.demo-panel ul {
    list-style: none;
}

.demo-panel li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.demo-panel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

@media (max-width: 768px) {
    .product-demo {
        padding: 42px 0 46px;
    }

    .demo-mockups {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .mockup-email {
        justify-content: center;
    }

    .mockup-email .email-preview {
        width: min(100%, 340px);
        max-height: 410px;
    }

    .demo-panel {
        padding: 0;
    }

    .demo-panel h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 769px) {
    .navbar .logo {
        transform: none;
    }

    .navbar .logo-image {
        left: -10px;
    }
}

@media (max-width: 480px) {
    .navbar .logo-image {
        left: -9px;
    }
}

/* Homepage refinement pass. */
.hero {
    min-height: 510px;
    padding: 72px 0 58px;
    background-position: 58% center;
}

.hero-content {
    max-width: 760px;
    margin-left: max(20px, calc((100% - 1200px) / 2 + 40px));
    margin-right: auto;
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 4.8vw, 3.15rem);
}

.hero-buttons,
.hero-features {
    justify-content: flex-start;
}

.how-it-works {
    padding: 42px 0;
}

.step {
    padding: 1.25rem 1rem;
}

.step-number {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
}

.step p {
    line-height: 1.55;
}

.mockup-laptop {
    opacity: 0.48;
    transform: scale(0.82);
    transform-origin: center;
}

.product-demo .demo-mockups {
    align-items: center;
}

.benefits-grid {
    gap: 1.25rem;
}

.benefit-card {
    padding: 1.5rem 1.25rem;
}

.benefit-icon {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.section-support,
.benefit-support {
    margin-top: 2rem;
    padding-top: 1.25rem;
    gap: 1.5rem;
}

.support-image {
    height: 160px;
}

.benefit-support {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 64px 0 54px;
        background-position: 68% center;
    }

    .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .mockup-laptop {
        transform: scale(0.9);
    }
}
