/* ========================================
   Peak Content Group - Website Styles
   Brand Colors:
   - Navy Peak Blue: #1E3A8A
   - Summit Teal: #0D9488
   - Content Coral: #F97316
   - Slate: #334155
   - Cloud: #F8FAFC
======================================== */

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

:root {
    /* Brand Colors */
    --navy: #1E3A8A;
    --teal: #0D9488;
    --coral: #F97316;
    --slate: #334155;
    --cloud: #F8FAFC;
    --white: #FFFFFF;
    --black: #000000;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Container */
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-sm);
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #0a6f67;
    border-color: #0a6f67;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

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

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-highlight {
    color: var(--teal);
    font-weight: 600;
    position: relative;
}

.nav-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--teal);
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cloud) 0%, var(--white) 100%);
    padding: var(--spacing-xl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: var(--spacing-md);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-text {
    color: var(--slate);
    font-weight: 500;
}

.hero-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-card {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--cloud);
}

.stat-card:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background-color: var(--cloud);
}

.section-dark {
    background-color: var(--navy);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.problem-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.problem-card h3 {
    color: var(--navy);
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: var(--slate);
    margin-bottom: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.column {
    display: flex;
    flex-direction: column;
}

/* Solution Features */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature {
    display: flex;
    gap: var(--spacing-sm);
    align-items: start;
}

.feature-check {
    color: var(--teal);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.feature p {
    margin-bottom: 0;
    color: var(--slate);
}

/* Value Box */
.value-box {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4f9e 100%);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.value-box h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
}

.value-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.value-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list strong {
    color: var(--teal);
}

.value-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
}

.value-highlight strong {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.value-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--teal);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--coral);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--slate);
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--cloud);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
}

.period {
    font-size: 1.125rem;
    color: var(--slate);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--slate);
}

.pricing-note {
    text-align: center;
    color: var(--slate);
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
}

.pricing-note strong {
    color: var(--navy);
}

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

.step-card {
    background-color: var(--cloud);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a6f67 100%);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    margin-bottom: 0;
    color: var(--slate);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--teal) 0%, #0a6f67 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.industry-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.industry-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.industry-card p {
    margin-bottom: 0;
    color: var(--slate);
}

/* Free Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tool-card {
    background-color: var(--white);
    border: 2px solid var(--cloud);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: var(--teal);
}

.tool-card p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Featured Tool Card (in tools grid) */
.tool-card-featured {
    display: block;
    background: linear-gradient(135deg, var(--teal) 0%, #0a6f67 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.tool-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-card-featured-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.featured-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.tool-icon-large {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.tool-card-featured h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.tool-card-featured p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.tool-card-featured .btn {
    background-color: var(--white);
    color: var(--teal);
}

.tool-card-featured .btn:hover {
    background-color: var(--cloud);
}

/* Featured Tool Banner Section */
.featured-tool-section {
    background: linear-gradient(135deg, var(--cloud) 0%, #e2e8f0 100%);
    padding: var(--spacing-lg) 0;
}

.featured-tool-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.featured-tool-content {
    padding-right: var(--spacing-md);
}

.featured-tool-badge {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.featured-tool-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.featured-tool-content p {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.featured-tool-preview {
    display: flex;
    justify-content: center;
}

.preview-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    background: #e2e8f0;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dot:first-child {
    background: #f87171;
}

.mockup-dot:nth-child(2) {
    background: #fbbf24;
}

.mockup-dot:nth-child(3) {
    background: #34d399;
}

.mockup-content {
    padding: var(--spacing-md);
}

.mockup-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--cloud);
}

.mockup-item {
    padding: 0.75rem;
    background: var(--cloud);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate);
    border-left: 3px solid var(--teal);
}

.mockup-item-fade {
    padding: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .featured-tool-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-tool-content {
        padding-right: 0;
    }

    .featured-tool-content h2 {
        font-size: 2rem;
    }

    .preview-mockup {
        max-width: 100%;
    }
}

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

.faq-item {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--cloud);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    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 var(--spacing-md) var(--spacing-md);
    color: var(--slate);
    line-height: 1.7;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-benefits {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.contact-benefits li {
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 1.125rem;
}

.contact-note {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.contact-form {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--teal);
    font-style: italic;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }

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

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

    .hero-cta {
        flex-direction: column;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-sm);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .problems-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }

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

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

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

    .trust-badges {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}