/* Move It — moveit.work shared styles */

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

:root {
    --accent: #FF6687;
    --bg: #d4d7e1;
    --dark: #1a1a2e;
    --mid: #555570;
    --white: #ffffff;
    --card-radius: 16px;
    --section-gap: 96px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 300;
    background: var(--bg);
    color: var(--dark);
    font-size: 18px;
    line-height: 1.5;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.1;
}

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

/* ── Layout ── */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-gap) 0;
}

/* ── Navigation ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid rgba(26,26,46,0.1);
    padding: 16px 0;
}

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

nav .logo {
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 1px;
}

nav .logo span {
    color: var(--accent);
}

nav .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

nav .nav-links a {
    font-size: 16px;
    letter-spacing: 0.5px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

nav .nav-links a:hover { opacity: 1; }

nav .nav-cta {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 1 !important;
    transition: background 0.2s;
}

nav .nav-cta:hover { background: #e84d70; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s;
    border: none;
    text-align: center;
}

.btn:hover { transform: translateY(-2px); }

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

.btn-primary:hover { background: #e84d70; }

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

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

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

.btn-white:hover { background: #f0f0f0; }

/* ── Cards ── */
.card {
    background: white;
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(26,26,46,0.07);
}

/* ── Section headers ── */
.section-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--mid);
    max-width: 560px;
}

/* ── Hero ── */
.hero {
    padding: 80px 0 64px;
    text-align: center;
}

.hero-title {
    font-size: clamp(72px, 10vw, 120px);
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-title span { color: var(--accent); }

.hero-sub {
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--mid);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-note {
    font-size: 14px;
    color: var(--mid);
    opacity: 0.7;
}

/* ── Social proof bar ── */
.proof-bar {
    background: white;
    border-radius: 14px;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(26,26,46,0.06);
    max-width: 680px;
    margin: 0 auto;
}

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

.proof-item .proof-num {
    font-size: 28px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.proof-item .proof-label {
    font-size: 13px;
    color: var(--mid);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ── How It Works ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    text-align: center;
    padding: 40px 24px;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.5;
}

/* ── Value props ── */
.props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.prop-card {
    padding: 36px 28px;
}

.prop-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.prop-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.prop-card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── Science callout ── */
.science-band {
    background: var(--accent);
    color: white;
    padding: 72px 0;
    text-align: center;
}

.science-band .quote {
    font-size: clamp(24px, 3.5vw, 36px);
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.3;
}

.science-band .stat {
    font-size: 15px;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* ── Reviews ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    padding: 28px;
}

.review-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 18px;
}

.review-author {
    font-size: 14px;
    color: var(--dark);
    font-weight: 400;
}

/* ── Final CTA ── */
.final-cta {
    text-align: center;
    padding: 96px 0;
}

.final-cta h2 {
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 16px;
    color: var(--dark);
}

.final-cta p {
    font-size: 18px;
    color: var(--mid);
    margin-bottom: 36px;
}

.final-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.teams-nudge {
    margin-top: 24px;
    font-size: 15px;
    color: var(--mid);
}

.teams-nudge a {
    color: var(--accent);
    border-bottom: 1px solid currentColor;
}

/* ── Footer ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 36px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid transparent;
    transition: color 0.2s;
}

footer a:hover { color: white; }

footer .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ── Corporate hero ── */
.corp-hero {
    padding: 80px 0 64px;
    text-align: center;
}

.corp-hero-title {
    font-size: clamp(52px, 7vw, 88px);
    color: var(--dark);
    margin-bottom: 16px;
}

.corp-hero-title span { color: var(--accent); }

.corp-hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--mid);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

/* ── Corporate steps ── */
.corp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
}

.corp-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.corp-step-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.corp-step h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.corp-step p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.5;
}

/* ── Feature grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── Interest form ── */
.form-section {
    background: var(--accent);
    padding: 80px 0;
    color: white;
}

.form-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 8px;
}

.form-section .section-sub {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin: 0 auto 40px;
}

.interest-form {
    background: white;
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: 'Londrina Solid', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--dark);
    background: white;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 20px;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--mid);
    margin-top: 12px;
}

/* ── FAQ ── */
.faq-list {
    margin-top: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 28px 32px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── Back link ── */
.back-link {
    font-size: 15px;
    color: var(--mid);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.back-link:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 768px) {
    :root { --section-gap: 64px; }

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

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

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

    .proof-bar {
        gap: 24px;
        padding: 20px 24px;
    }

    .interest-form {
        padding: 28px 24px;
    }

    nav .nav-links { display: none; }
}

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