/* HonestStitch — shared site styles. Clean, minimal, no gradients. */

:root {
    --navy: #002060;
    --orange: #d1552a;        /* slightly deepened for text contrast */
    --orange-bright: #FF6B35; /* brand accent for solid fills */
    --ink: #1a1f2b;
    --muted: #5c6472;
    --line: #e4e7ee;
    --bg: #ffffff;
    --bg-soft: #f7f8fb;
    --radius: 12px;
    --maxw: 1080px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.brand:hover {
    text-decoration: none;
}

.brand img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
}

.hero-logo {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 21px;
    margin: 0 auto 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-brand img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    vertical-align: -6px;
    margin-right: 9px;
}

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

.nav-links a {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.96rem;
}

.nav-links a:hover {
    color: var(--orange);
    text-decoration: none;
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }
}

/* ---------- Buttons / badges ---------- */

.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: opacity 0.15s ease;
}

.btn-primary {
    background: var(--orange-bright);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
    text-decoration: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 0.94rem;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
}

/* ---------- Hero ---------- */

.hero {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 92px 0 96px;
}

.hero h1 {
    font-size: clamp(2.3rem, 5.5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.hero .subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    font-weight: 500;
    color: #c9d2e4;
    margin-top: 16px;
}

.hero p.lead {
    max-width: 600px;
    margin: 22px auto 34px;
    font-size: 1.1rem;
    color: #e3e8f2;
}

.hero-note {
    margin-top: 18px;
    font-size: 0.88rem;
    color: #9aa6bf;
}

/* ---------- Sections ---------- */

section {
    padding: 82px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-head {
    max-width: 660px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-head p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.06rem;
}

/* ---------- Feature grid ---------- */

.grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
}

.card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--navy);
    margin-bottom: 18px;
}

.card .icon svg {
    width: 22px;
    height: 22px;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: 0.99rem;
}

/* ---------- Steps ---------- */

.steps {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.step h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.step p {
    color: var(--muted);
    font-size: 0.99rem;
}

/* ---------- Split / business ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

.split h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.split p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 1.04rem;
}

.check-list {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 13px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-size: 1.01rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--orange-bright);
}

.panel {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px;
}

.panel h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.panel p {
    color: #d3daea;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.stat .big {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.stat .lbl {
    font-size: 0.9rem;
    color: #9aa6bf;
    margin-top: 2px;
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

details.qa {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2px 22px;
}

details.qa summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

details.qa summary::-webkit-details-marker {
    display: none;
}

details.qa summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--orange);
    font-weight: 400;
    line-height: 1;
}

details.qa[open] summary::after {
    content: "–";
}

details.qa .answer {
    padding: 0 0 20px;
    color: var(--muted);
}

/* ---------- Final CTA ---------- */

.cta-band {
    background: var(--navy);
    color: #fff;
    text-align: center;
    border-radius: var(--radius);
    padding: 60px 32px;
}

.cta-band h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.3rem);
    letter-spacing: -0.02em;
}

.cta-band p {
    max-width: 500px;
    margin: 14px auto 28px;
    color: #d3daea;
    font-size: 1.04rem;
}

/* ---------- Footer ---------- */

.site-footer {
    background: #0c1730;
    color: #aeb7cc;
    padding: 54px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

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

.site-footer h4 {
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: #aeb7cc;
}

.site-footer a:hover {
    color: #fff;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-tag {
    color: #8b95ad;
    max-width: 320px;
    font-size: 0.96rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.86rem;
    color: #7a839b;
}

/* ---------- Legal / doc pages ---------- */

.doc {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 76px;
}

.doc h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.doc .updated {
    color: var(--muted);
    margin: 10px 0 34px;
    font-size: 0.94rem;
}

.doc h2 {
    color: var(--navy);
    font-size: 1.35rem;
    margin: 36px 0 12px;
}

.doc h3 {
    color: var(--navy);
    font-size: 1.08rem;
    margin: 24px 0 8px;
}

.doc p,
.doc li {
    color: var(--ink);
    margin-bottom: 12px;
}

.doc ul {
    padding-left: 22px;
    margin-bottom: 12px;
}

.doc li {
    margin-bottom: 8px;
}

.callout {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--orange-bright);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 24px 0;
}
