/* ==========================================================================
   Carrier Benchmark Website - CSS Styles
   Design Philosophy: Stripe meets Linear - Modern SaaS with financial credibility
   ========================================================================== */

/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */

:root {
    /* Colors */
    --primary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --success-green: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
    --white: #ffffff;

    /* Spacing (8px base system) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

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

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

    /* 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 8px 24px rgba(59, 130, 246, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
}

/* Mobile Typography */
@media (max-width: 767px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: var(--gray-50);
    transform: translateY(-2px);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Navigation Header
   ========================================================================== */

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 0;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .nav-logo .logo {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    margin-left: var(--space-sm);
}

.nav-login {
    font-weight: 600;
    color: var(--primary-blue);
    margin-left: var(--space-md);
    padding: 10px 16px;
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-login:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-cta,
    .nav-login {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: var(--space-3xl) 0 var(--space-xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-features {
    margin-bottom: var(--space-lg);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.hero-features .checkmark {
    color: var(--success-green);
    flex-shrink: 0;
}

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

.hero-trust {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Mobile Hero */
@media (max-width: 1023px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .hero-cta .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
    background-color: var(--gray-50);
    padding: var(--space-lg) 0;
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    gap: var(--space-md);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    section {
        padding: var(--space-2xl) 0;
    }

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

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    /* Hover effect removed for cleaner UX */
}

.card-icon {
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
}

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

.card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.problem-section {
    background-color: var(--white);
}

/* ==========================================================================
   Solution Section
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.service-icon {
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
    background-color: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 400px));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    justify-content: center;
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.pricing-single .pricing-card {
    max-width: 500px;
    width: 100%;
}

.pricing-card-featured {
    border: 2px solid var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.pricing-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.pricing-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.pricing-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card-popular {
    transform: scale(1.05);
    border: 2px solid var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

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

.pricing-tier {
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.pricing-price {
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    font-size: 20px;
    color: var(--text-secondary);
}

.pricing-savings {
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.pricing-best-for {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: var(--space-md) 0;
}

.pricing-tiers {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.pricing-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.pricing-tier-row:nth-child(odd) {
    background: var(--white);
}

.tier-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.tier-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-features {
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    align-items: flex-start;
}

.pricing-features .checkmark {
    color: var(--success-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.pricing-custom {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.pricing-custom h3 {
    margin-bottom: var(--space-sm);
}

.pricing-custom p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.setup-callout {
    background-color: rgba(59, 130, 246, 0.05);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: var(--space-2xl);
}

.setup-callout h3 {
    margin-bottom: var(--space-md);
}

.setup-callout p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.setup-callout ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.setup-callout ul li {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

@media (max-width: 1023px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-popular {
        transform: scale(1);
    }
}

/* ==========================================================================
   Add-Ons Section
   ========================================================================== */

.addons-section {
    margin-top: var(--space-2xl);
}

.addons-title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.addons-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.addon-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.addon-card h4 {
    margin-bottom: var(--space-sm);
}

.addon-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.addon-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.addon-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.addon-bundle {
    text-align: center;
    font-weight: 600;
    color: var(--success-green);
}

@media (max-width: 767px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step-icon {
    color: var(--accent-blue);
    margin: 0 auto var(--space-md);
}

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

.step-card p {
    color: var(--text-secondary);
}

.timeline-note {
    text-align: center;
    margin-top: var(--space-xl);
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Why Section
   ========================================================================== */

.why-section {
    background-color: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.why-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.why-icon {
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
}

.why-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.why-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.quote-mark {
    font-size: 64px;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 1023px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background-color: var(--gray-50);
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--white);
    transition: background-color var(--transition-fast);
}

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

.faq-icon {
    flex-shrink: 0;
    color: var(--accent-blue);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-secondary);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.final-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.final-cta p {
    font-size: 20px;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.cta-trust {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: var(--space-md);
}

.footer-column p {
    color: var(--gray-300);
    font-size: 14px;
}

.footer-address {
    margin-top: var(--space-sm);
}

.footer-column ul li {
    margin-bottom: var(--space-xs);
}

.footer-column ul li a {
    color: var(--gray-300);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-500);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-sm);
    font-size: 14px;
}

.footer-links a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

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

@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-hero {
    padding: var(--space-2xl) 0;
    background-color: var(--gray-50);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: var(--space-sm);
}

.about-hero p {
    font-size: 20px;
    color: var(--text-secondary);
}

.story-section,
.mission-section,
.approach-section {
    padding: var(--space-2xl) 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.mission-box h2 {
    margin-bottom: var(--space-md);
}

.mission-statement {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 767px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-hero {
    padding: var(--space-2xl) 0;
    background-color: var(--gray-50);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: var(--space-sm);
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-secondary);
}

.contact-section {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
}

.contact-form h3 {
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
}

.privacy-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: var(--space-md);
}

.contact-info {
    background-color: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    height: fit-content;
}

.info-section {
    margin-bottom: var(--space-xl);
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    margin-bottom: var(--space-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.info-item svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

.info-item a {
    color: var(--accent-blue);
}

.business-hours {
    color: var(--text-secondary);
}

.calendar-placeholder {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--space-md);
}

@media (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ==========================================================================
   Animations
   ========================================================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Legal Pages (Privacy Policy & Terms of Service)
   ========================================================================== */

.story-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
    font-size: 28px;
    color: var(--primary-blue);
}

.story-content h2:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.story-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 20px;
    color: var(--text-primary);
}

.story-content ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.story-content ul li {
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
    line-height: 1.7;
}

.story-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================================================
   SaaS-Specific Styles
   ========================================================================== */

/* Logo text style */
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-badge {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}

/* Centered hero for SaaS */
.hero-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-centered .hero-cta {
    justify-content: center;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.price-tag {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-note {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Features grid for SaaS */
.features-section {
    background-color: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.feature-icon {
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .price-tag {
        font-size: 36px;
    }
}

/* Upgrade callout */
.upgrade-callout {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
}

.upgrade-callout h3 {
    margin-bottom: var(--space-sm);
}

.upgrade-callout p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.upgrade-callout a {
    color: var(--accent-blue);
    text-decoration: underline;
}
