/* FASTORY.AI - CLEAN BLACK DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@500;600&family=Raleway:wght@700;800;900&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --green: #16a34a;
    --green-dark: #15803d;
    --green-light: #22c55e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --ink: #0b1021;
    --panel-border: rgba(0, 0, 0, 0.1);
    --panel-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: "Space Grotesk", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== HEADER ==================== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 84px;
    transition: transform 0.3s ease-in-out;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.header-visible {
    transform: translateY(0);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.35rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-login-btn {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    transition: all 0.2s ease;
    border-radius: 4px;
    border: 1px solid transparent;
}

.header-login-btn:hover {
    color: var(--black);
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.header-signup-btn {
    text-decoration: none;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-signup-btn:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    background: var(--white);
    padding: 140px 0 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

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

.eyebrow-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.pill-live {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pill-soft {
    background: rgba(0, 0, 0, 0.08);
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.12);
}

.pill-outline {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
}

.hero-title {
    font-family: 'Rafale', sans-serif;
    font-size: 2.35rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.7;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    text-decoration: none;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    text-decoration: none;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
    background: var(--white);
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--gray-700);
    font-size: 0.98rem;
}

.meta-dot {
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.3);
}

.meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.meta-badge {
    padding: 0.55rem 0.85rem;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-right {
    position: relative;
}

.hero-panel {
    position: relative;
    background: var(--white);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--panel-shadow);
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: -40% 20% auto -20%;
    height: 80%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03), transparent 45%);
    filter: blur(60px);
    opacity: 0.9;
    z-index: 0;
}

.hero-panel > * {
    position: relative;
    z-index: 1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.panel-kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin: 0 0 0.2rem;
}

.panel-title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--black);
}

.panel-progress {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.progress-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--black);
}

.progress-value {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.progress-fill-secondary {
    background: linear-gradient(90deg, var(--black), var(--gray-800));
}

.progress-fill-tertiary {
    background: linear-gradient(90deg, var(--black), var(--gray-600));
}

.panel-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.check-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--black);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.06), 0 0 8px rgba(0, 0, 0, 0.2);
}

.check-title {
    margin: 0;
    font-weight: 700;
    color: var(--black);
    font-size: 0.97rem;
}

.check-sub {
    margin: 0.15rem 0 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.hero-note {
    font-size: 0.975rem;
    color: var(--gray-600);
    margin-top: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.hero-aurora {
    display: none;
}

/* ==================== SECTIONS (HIDDEN FOR NOW) ==================== */
.problem-section {
    display: none;
}

.site-footer {
    display: block;
}

/* Allow new home sections to display */
.home-stats-section,
.home-journey-section,
.home-why-section,
.home-cta-section {
    display: block;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .header-container,
    .hero-container,
    .footer-content,
    .footer-bottom {
        padding: 0 2rem;
    }

    .hero-grid {
        gap: 2.25rem;
    }

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

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

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

    .hero-panel {
        margin-top: 0.5rem;
    }
}

@media (max-width: 820px) {
    .header-container,
    .hero-container,
    .footer-content,
    .footer-bottom {
        padding: 0 1.5rem;
    }

    .header-content {
        gap: 1rem;
    }

    .hero-section {
        padding: 120px 0 90px;
    }

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

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

    .eyebrow-row {
        gap: 0.35rem;
    }

    .pill {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.nav-item-mobile {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 968px) {
    .header-login-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }

    .header-content {
        height: 70px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 30px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10001;
    }

    .header-signup-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 1.15rem;
    }

    .header-cta {
        display: none !important;
    }

    /* Mobile Navigation */
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 9999;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block !important;
    }

    .nav-list {
        display: block !important;
        padding: 1rem 1.5rem !important;
        margin: 0;
        list-style: none;
    }

    .nav-item {
        display: block !important;
        border-bottom: 1px solid #e5e7eb;
        margin: 0;
    }

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

    .nav-link {
        display: block !important;
        padding: 0.875rem 0 !important;
        font-size: 0.9375rem !important;
        font-weight: 500 !important;
        color: #111827 !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-item-mobile {
        display: block !important;
        margin-top: 0.75rem;
        border: none !important;
    }

    .nav-item-mobile .nav-link {
        background: #000000 !important;
        color: #ffffff !important;
        padding: 0.75rem !important;
        border-radius: 4px !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 540px) {
    .site-header {
        height: 65px;
    }

    .header-content {
        height: 65px;
    }

    .header-container {
        padding: 0 1.25rem;
    }

    .logo-img {
        height: 26px;
    }

    .main-nav {
        top: 65px;
    }

    .hero-section {
        padding: 100px 0 70px;
        min-height: auto;
    }

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

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

    .eyebrow-row {
        gap: 0.3rem;
        flex-wrap: nowrap;
    }

    .pill {
        font-size: 0.5625rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }

    .meta-row {
        font-size: 0.9rem;
    }

    .meta-badge {
        font-size: 0.8125rem;
        padding: 0.45rem 0.7rem;
    }

    .hero-note {
        font-size: 0.875rem;
        margin-top: 2rem;
    }

    .hero-panel {
        padding: 1.25rem;
    }

    .panel-title {
        font-size: 1.125rem;
    }

    .panel-kicker {
        font-size: 0.6875rem;
    }

    .check-title {
        font-size: 0.875rem;
    }

    .check-sub {
        font-size: 0.8125rem;
    }
}

/* ==================== ABOUT PAGE ==================== */

/* About Hero - Minimal */
.about-hero {
    min-height: 50vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2.5rem 60px;
    border-bottom: 1px solid var(--gray-200);
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    font-weight: 400;
    margin: 0;
}

/* About Sections */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

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

.about-section-cta {
    padding: 80px 0;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Story Section */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.about-heading-center {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.about-large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0 0 1.5rem;
}

.about-large-text:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
    margin-top: 3rem;
}

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

.about-feature {
    position: relative;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.about-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Mission Section */
.about-mission {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-text {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 2rem 0 4rem;
    font-weight: 400;
}

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

.about-stat {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
}

.about-stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* CTA Section */
.about-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.about-cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 120px 1.5rem 60px;
    }

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

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

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

    .about-section-cta {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 1.5rem;
    }

    .about-heading,
    .about-heading-center {
        font-size: 2rem;
    }

    .about-large-text {
        font-size: 1.125rem;
    }

    .about-mission-text {
        font-size: 1.375rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stat {
        padding: 1.5rem 1rem;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.125rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-feature-title {
        font-size: 1.25rem;
    }
}

/* ==================== LEGAL PAGES ==================== */

/* Legal Hero */
.legal-hero {
    min-height: 40vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2.5rem 60px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.legal-hero-date {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
}

/* Legal Content Section */
.legal-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.legal-content {
    color: var(--gray-700);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 3rem 0 1rem;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    font-weight: 600;
    color: var(--black);
}

.legal-content a {
    color: var(--black);
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-hero {
        min-height: 35vh;
        padding: 120px 1.5rem 50px;
    }

    .legal-hero-title {
        font-size: 2.25rem;
    }

    .legal-hero-date {
        font-size: 0.875rem;
    }

    .legal-section {
        padding: 40px 0 60px;
    }

    .legal-container {
        padding: 0 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem;
    }

    .legal-content h3 {
        font-size: 1.125rem;
    }

    .legal-content p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .legal-hero-title {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.375rem;
    }
}

/* ==================== RESEARCH OS PAGE ==================== */

/* Hero Section */
.ros-hero {
    min-height: 60vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2.5rem 80px;
}

.ros-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ros-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}

.ros-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 400;
    margin: 0 0 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ros-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature Sections */
.ros-feature-section {
    padding: 80px 0;
    background: var(--white);
}

.ros-feature-alt {
    background: var(--gray-50);
}

.ros-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.ros-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ros-content-right .ros-feature-visual {
    order: -1;
}

.ros-feature-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ros-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.ros-feature-badge svg {
    flex-shrink: 0;
}

.ros-feature-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ros-feature-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.ros-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ros-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.ros-check {
    flex-shrink: 0;
    color: var(--black);
    margin-top: 0.125rem;
}

.ros-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.2s ease;
    margin-top: 0.5rem;
    width: fit-content;
}

.ros-feature-link:hover {
    gap: 0.75rem;
}

.ros-feature-link svg {
    flex-shrink: 0;
}

/* Feature Visual / Placeholder */
.ros-feature-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.ros-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 400px;
}

.ros-placeholder svg {
    color: var(--gray-400);
    flex-shrink: 0;
}

.ros-placeholder p {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 600;
    margin: 0;
}

/* Placeholder Section */
.ros-placeholder-section {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.ros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.ros-placeholder-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
}

/* Final CTA */
.ros-final-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.ros-final-cta a {
    flex: 0 0 auto;
}

/* Research OS Responsive */
@media (max-width: 1024px) {
    .ros-feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ros-content-right .ros-feature-visual {
        order: 0;
    }
}

@media (max-width: 768px) {
    .ros-hero {
        min-height: 50vh;
        padding: 120px 1.5rem 60px;
    }

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

    .ros-hero-subtitle {
        font-size: 1.125rem;
    }

    .ros-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .ros-hero-cta a {
        width: 100%;
        text-align: center;
    }

    .ros-feature-section {
        padding: 60px 0;
    }

    .ros-feature-container {
        padding: 0 1.5rem;
    }

    .ros-feature-title {
        font-size: 2rem;
    }

    .ros-feature-description {
        font-size: 1rem;
    }

    .ros-placeholder {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .ros-hero-title {
        font-size: 2rem;
    }

    .ros-hero-subtitle {
        font-size: 1rem;
    }

    .ros-feature-title {
        font-size: 1.75rem;
    }

    .ros-feature-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ==================== PRICING PAGE - COMPACT ==================== */

/* Compact Header */
.pricing-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 100px 1rem 1rem;
}

.pricing-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.pricing-header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.pricing-header-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0 0 0.75rem;
}

/* Billing Toggle - Compact */
.pricing-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    background: var(--gray-100);
    border-radius: 9999px;
    padding: 0.125rem;
}

.pricing-toggle-btn {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: transparent;
    color: var(--gray-700);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.pricing-toggle-active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-save-badge {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--green);
}

/* Pricing Cards Section - Compact */
.pricing-cards-section {
    background: var(--white);
    padding: 1rem;
}

.pricing-cards-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Pricing Tier Cards - Compact */
.pricing-tier-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-tier-card:hover {
    border-color: var(--gray-400);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-tier-popular {
    border-color: #16a34a;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.15);
}

.tier-popular-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: var(--white);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tier-header {
    margin-bottom: 0.5rem;
}

.tier-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.125rem;
}

.tier-description {
    font-size: 0.625rem;
    color: var(--gray-600);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.tier-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.125rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.tier-price-period {
    font-size: 0.625rem;
    color: var(--gray-600);
    font-weight: 500;
}

.tier-period {
    font-size: 0.5625rem;
    color: var(--gray-500);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.tier-savings {
    color: #16a34a;
    font-weight: 600;
}

/* Tier Buttons - Compact */
.tier-btn {
    width: 100%;
    height: 2rem;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    cursor: pointer;
}

.tier-btn-primary {
    background: #22c55e;
    color: var(--gray-900);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tier-btn-primary:hover {
    background: #16a34a;
}

.tier-btn-outline {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-300);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tier-btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.tier-btn-arrow {
    width: 0.75rem;
    height: 0.75rem;
}

/* Tier Features - Compact */
.tier-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tier-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 0.625rem;
    line-height: 1.4;
}

.tier-feature-included {
    color: var(--gray-900);
    font-weight: 500;
}

.tier-feature-excluded {
    color: var(--gray-400);
}

.tier-check {
    flex-shrink: 0;
    width: 0.75rem;
    height: 0.75rem;
    color: #16a34a;
    stroke-width: 3;
    margin-top: 0.0625rem;
}

.tier-check-placeholder {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}

/* Footer Note - Compact */
.pricing-footer-note {
    text-align: center;
    margin-top: 1rem;
}

.pricing-trust-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.pricing-contact-text {
    font-size: 0.625rem;
    color: var(--gray-600);
    margin: 0;
}

.pricing-contact-link {
    color: #16a34a;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.pricing-contact-link:hover {
    opacity: 0.8;
}

/* FAQ Section - Collapsible */
.pricing-faq-section {
    padding: 2rem 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.pricing-faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-faq-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.faq-accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-accordion-button span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    flex: 1;
}

.faq-accordion-button:hover span {
    color: var(--black);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-500);
    transition: transform 0.2s ease;
}

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

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-active .faq-accordion-content {
    max-height: 500px;
}

.faq-accordion-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0 0 1rem;
    padding-right: 2rem;
}

.faq-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.faq-footer p {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.faq-footer a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
}

.faq-footer a:hover {
    opacity: 0.7;
}

/* Pricing Page Responsive */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-header {
        padding: 90px 1rem 1rem;
    }

    .pricing-header-title {
        font-size: 1.25rem;
    }

    .pricing-header-subtitle {
        font-size: 0.6875rem;
    }

    .pricing-toggle-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }

    .pricing-save-badge {
        font-size: 0.5625rem;
    }

    .tier-name {
        font-size: 0.9375rem;
    }

    .tier-price {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .pricing-header-title {
        font-size: 1.125rem;
    }

    .pricing-billing-toggle {
        width: 100%;
        max-width: 24rem;
    }

    .pricing-toggle-btn {
        flex: 1;
    }
}

/* ==================== INNOVATIVE FOOTER ==================== */

/* Journey Navigator */
.footer-journey {
    background: transparent;
    border-bottom: none;
    padding: 2rem 0 2.5rem;
}

.footer-journey-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-journey-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-700);
    margin: 0 0 1.25rem;
    font-weight: 600;
}

.footer-journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 1px dotted rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-style: dotted;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.journey-step-icon {
    flex-shrink: 0;
    color: var(--white);
    width: 20px;
    height: 20px;
}

.journey-step-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.journey-arrow {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-brand-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand-tagline {
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.footer-brand-mission {
    color: var(--white-400);
    font-size: 0.8125rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0.5rem 0 0;
}

.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.footer-cta-text {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin: 0;
}

.footer-cta-btn {
    text-decoration: none;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
}

.footer-tagline {
    margin: 0;
    color: var(--white);
    font-size: 0.8125rem;
    font-style: italic;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 968px) {
    .footer-journey {
        padding: 1.75rem 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer-journey {
        padding: 1.5rem 0;
    }

    .footer-journey-container {
        padding: 0 1.5rem;
    }

    .footer-journey-label {
        font-size: 0.6875rem;
        margin-bottom: 1rem;
    }

    .footer-journey-flow {
        gap: 0.65rem;
        justify-content: center;
    }

    .journey-step {
        padding: 0.7rem 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .journey-step-icon {
        width: 18px;
        height: 18px;
    }

    .journey-step-name {
        font-size: 0.8125rem;
    }

    .journey-arrow {
        font-size: 0.75rem;
        color: var(--gray-500);
    }

    .footer-content {
        padding: 2.5rem 0 1.5rem;
    }

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

    .footer-brand-logo {
        height: 36px;
    }

    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .footer-links {
        font-size: 0.8125rem;
    }

    .footer-links a {
        padding: 0.5rem 0;
        display: block;
    }

    .footer-cta {
        padding: 1.25rem;
    }

    .footer-cta h4 {
        font-size: 0.9375rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-copyright,
    .footer-tagline {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .footer-journey {
        padding: 1.25rem 0;
    }

    .footer-journey-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .journey-arrow {
        display: none;
    }

    .journey-step {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 0.65rem;
        min-height: 48px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }

    .journey-step:active {
        background: rgba(255, 255, 255, 0.15);
    }

    .journey-step-icon {
        width: 18px;
        height: 18px;
    }

    .journey-step-name {
        font-size: 0.8125rem;
    }

    .footer-content {
        padding: 2rem 0 1.25rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-brand-logo {
        height: 32px;
    }

    .footer-brand-tagline,
    .footer-brand-mission {
        font-size: 0.875rem;
    }
}

/* ==================== HOME PAGE SECTIONS ==================== */

/* Stats Section */
.home-stats-section {
    background: var(--gray-50);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.home-stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.home-stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.home-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Journey Section */
.home-journey-section {
    background: var(--white);
    padding: 80px 0;
}

.home-journey-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.home-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.home-section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.home-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.home-journey-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.home-journey-card:hover {
    border-color: var(--black);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.home-journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: var(--black);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.home-journey-badge svg {
    flex-shrink: 0;
}

.home-journey-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.home-journey-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.home-journey-cta {
    text-align: center;
}

.home-journey-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.2s ease;
}

.home-journey-link:hover {
    gap: 0.75rem;
}

.home-journey-link svg {
    flex-shrink: 0;
}

/* Why Fastory Section */
.home-why-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.home-why-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.home-why-card {
    text-align: center;
}

.home-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--black);
}

.home-why-icon svg {
    width: 100%;
    height: 100%;
}

.home-why-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.home-why-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

/* CTA Section */
.home-cta-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-200);
}

.home-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.home-cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.home-cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
}

.home-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.home-cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .home-stats-grid {
        gap: 2rem;
    }

    .home-journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-stats-section {
        padding: 2.5rem 0;
    }

    .home-stats-container {
        padding: 0 1.5rem;
    }

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

    .home-stat-number {
        font-size: 2.25rem;
    }

    .home-stat-label {
        font-size: 0.8125rem;
    }

    .home-journey-section,
    .home-why-section,
    .home-cta-section {
        padding: 50px 0;
    }

    .home-journey-container,
    .home-why-container,
    .home-cta-container {
        padding: 0 1.5rem;
    }

    .home-section-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .home-section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .home-journey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .home-journey-card {
        padding: 1.5rem;
    }

    .home-why-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .home-cta-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .home-stats-section {
        padding: 2rem 0;
    }

    .home-stats-grid {
        gap: 1.5rem;
    }

    .home-stat-number {
        font-size: 2rem;
    }

    .home-journey-section,
    .home-why-section,
    .home-cta-section {
        padding: 40px 0;
    }

    .home-section-title {
        font-size: 1.75rem;
    }

    .home-section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .home-journey-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .home-journey-title {
        font-size: 1.125rem;
    }

    .home-journey-text {
        font-size: 0.875rem;
    }

    .home-why-icon {
        width: 48px;
        height: 48px;
    }

    .home-why-title {
        font-size: 1.25rem;
    }

    .home-why-text {
        font-size: 0.9375rem;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }

    .home-cta-subtitle {
        font-size: 1rem;
    }
}

/* ==================== CONTACT PAGE ==================== */

/* Contact Hero */
.contact-hero {
    min-height: 35vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2.5rem 60px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-hero-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
}

.contact-form-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.form-submit-btn {
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
}

.contact-info-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.75rem;
}

.contact-info-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.contact-info-text a {
    color: var(--black);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.contact-info-text a:hover {
    opacity: 0.7;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 25vh;
        padding: 100px 1.25rem 40px;
    }

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

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 30px 0 50px;
    }

    .contact-container {
        padding: 0 1.25rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 90px 1rem 30px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-submit-btn {
        width: 100%;
        padding: 1rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-info-title {
        font-size: 1rem;
    }

    .contact-info-text {
        font-size: 0.875rem;
    }
}
