@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Roboto+Condensed:wght@400;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
    --ink: #141414;
    --ink-2: #0f172a;
    --brand: #006efe;
    --accent: #006efe;
    --gold: #f2c14e;
    --teal: #1d8a6b;
    --paper: #f5f6f8;
    --card: #ffffff;
    --muted: #667085;
    --line: rgba(15, 23, 42, 0.12);
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Larsseit", "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 45%, #f4f6fb 100%);
}

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

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.top-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.top-nav-right {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
}

.top-nav-account-inline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 20px;
}

.top-nav-account-label,
.top-nav-account-logout {
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
}

.top-nav-account-label {
    max-width: 360px;
    overflow-wrap: anywhere;
    text-align: right;
}

.top-nav-account-logout {
    color: var(--brand);
    font-weight: 700;
    white-space: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand img {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--brand);
    color: #fff;
}

.nav-login-link,
.nav-admin-link,
.nav-traditree-link {
    border: 0;
}

.hero {
    padding: 70px 0 40px;
}

.trust-bar {
    padding: 10px 0 50px;
}

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

.trust-item {
    display: grid;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.trust-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    padding: 8px;
    overflow: hidden;
}

.trust-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.trust-item h3 {
    margin: 0 0 8px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    color: var(--ink-2);
}

.trust-item p {
    margin: 0;
    color: var(--muted);
}


.hero-tight {
    padding-top: 48px;
    padding-bottom: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: center;
}

.kicker {
    font-family: "Quicksand", "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--accent);
    margin: 0 0 14px;
}

.hero h1,
.section-title {
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 3.4vw, 3.1rem);
    margin: 0 0 16px;
    color: var(--ink-2);
}

.hero p {
    margin: 0 0 18px;
    font-size: 1.05rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 110, 254, 0.2);
    background: rgba(0, 110, 254, 0.07);
    color: var(--ink-2);
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid var(--brand);
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 600;
    background: var(--brand);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 20px rgba(0, 110, 254, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    background: #0056c6;
}

.button.ghost {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
    box-shadow: none;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.quote-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}

.quote-hero {
    padding-bottom: 24px;
}

.quote-request-section {
    padding-top: 0;
}

.quote-hero h1 {
    margin-bottom: 12px;
}

.quote-hero .hero-lead {
    margin-bottom: 16px;
}

.quote-hero .hero-helper {
    margin-bottom: 32px;
}

.popular-requests {
    background: #fafbfd;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    align-self: end;
}

.popular-requests ul {
    font-size: 0.98rem;
}

.hero-card h3 {
    font-family: "Quicksand", "Segoe UI", sans-serif;
    margin: 0 0 12px;
}

.hero-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.note-block {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.note-block h4 {
    margin: 0 0 8px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    color: var(--ink-2);
}

.note-block p {
    margin: 0 0 8px;
    color: var(--muted);
}

.section {
    padding: 40px 0;
}

.section-title {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    margin: 0 0 18px;
}

.section-subtitle {
    margin: 0 0 18px;
    color: var(--muted);
}

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


.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.card h3 {
    margin: 0 0 10px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.project-card {
    display: grid;
    gap: 12px;
}

.project-mini-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.project-mini-row .project-card {
    max-width: 320px;
}

.project-card.compact {
    gap: 8px;
    border-left: 4px solid transparent;
    padding: 14px;
}

.project-card.compact .project-link {
    font-size: 1.05rem;
}

.project-card.compact p {
    margin: 0;
    font-size: 0.98rem;
}

.project-card.compact.office-fit-life {
    border-left-color: #111111;
}

.project-card.compact.fwapfwap {
    border-left-color: #c62828;
}

.project-card.compact.filmshrink {
    border-left-color: var(--brand);
}

.project-card.compact.tasks-app {
    border-left-color: #256f67;
}

.project-card.compact.letters-app {
    border-left-color: #7a3cff;
}

.service-card {
    border-left: 4px solid var(--brand);
}

.project-link {
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.project-link:hover {
    text-decoration: underline;
}

.project-link.hunt-pass {
    color: #1f5b3b;
}

.project-link.aerial-advantages {
    color: #2f8fff;
}

.project-link.office-fit-life {
    color: #111111;
}

.project-link.fwapfwap {
    color: #c62828;
}

.project-card.hunt-pass-card {
    border-left: 4px solid #1f5b3b;
}

.project-card.aerial-advantages-card {
    border-left: 4px solid #2f8fff;
}

.project-title.aerial-advantages {
    color: #2f8fff;
}

.project-link.filmshrink {
    color: var(--brand);
}

.project-link.tasks-app {
    color: #256f67;
}

.project-link.letters-app {
    color: #7a3cff;
}

.project-logo {
    width: 170px;
    height: auto;
}

.project-logo-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.project-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.project-split h4 {
    margin: 0 0 8px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    color: var(--ink-2);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: start;
}

.highlight {
    background: linear-gradient(135deg, #fff7e6 0%, #fff 60%);
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(210, 74, 45, 0.2);
}

.list {
    padding-left: 18px;
    margin: 0;
    color: var(--muted);
}

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

.media-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.gallery-grid img {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.cta {
    background: var(--ink-2);
    color: #fff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.offer-card {
    display: grid;
    gap: 14px;
}

.launch-offer-card {
    margin-bottom: 24px;
    display: grid;
    gap: 16px;
    border-left: 4px solid var(--brand);
}

.launch-offer-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.launch-price {
    margin: 0;
    color: var(--ink-2);
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 700;
}

.launch-rules {
    gap: 18px;
}

.section-title-tight {
    margin-top: 8px;
}

.launch-bounds-card {
    margin-bottom: 24px;
}

.offer-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.offer-price {
    color: var(--ink-2) !important;
    font-weight: 700;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 110, 254, 0.1);
    color: var(--brand);
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.offer-badge-green {
    background: rgba(29, 138, 107, 0.12);
    color: var(--teal);
}

.offer-badge-gold {
    background: rgba(242, 193, 78, 0.2);
    color: #855900;
}

.steps-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.steps-list li {
    margin-bottom: 10px;
}

.code-block {
    margin: 14px 0 0;
    padding: 16px;
    border-radius: 14px;
    background: #0f172a;
    color: #e5eefc;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.45;
}

.code-block code {
    font-family: Consolas, "SFMono-Regular", Menlo, monospace;
}

.letters-header-note {
    max-width: 460px;
    margin: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 40px;
    background: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    font-size: 0.95rem;
    color: var(--muted);
}

.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fb-link svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: currentColor;
}

.footer-badge {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-badge img {
    height: 44px;
    width: auto;
}

.footer-grid strong {
    color: var(--ink-2);
    font-family: "Quicksand", "Segoe UI", sans-serif;
}

.modal-open {
    overflow: hidden;
}

.policy-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 60;
}

.policy-modal.is-open {
    display: flex;
}

.policy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.policy-panel {
    position: relative;
    width: min(920px, 92vw);
    max-height: 85vh;
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: auto;
    z-index: 1;
}

.policy-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.policy-kicker {
    margin: 0 0 8px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--accent);
}

.policy-close {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-2);
    border-radius: 999px;
    padding: 6px 12px;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.policy-close:hover {
    background: var(--paper);
}

.policy-body .card-grid {
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .top-nav .container {
        flex-direction: column;
        align-items: stretch;
    }

    .top-nav-right {
        width: 100%;
        align-items: center;
    }

    .top-nav-account-inline {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-nav-account-label {
        max-width: none;
        text-align: center;
    }

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

    .nav-links {
        justify-content: center;
        width: 100%;
    }

    .offer-top {
        flex-direction: column;
    }

    .launch-offer-top {
        flex-direction: column;
    }
}
