/* ============================================================
   marketing.css  �  sportie marketing site styles
   ============================================================ */

:root {
    --brand:       #2563eb;
    --brand-dark:  #1d4ed8;
    --brand-light: #eff6ff;
    --accent:      #10b981;
    --text:        #0f172a;
    --text-muted:  #64748b;
    --border:      #e2e8f0;
    --bg:          #ffffff;
    --bg-alt:      #f8fafc;
    --radius:      10px;
    --shadow:      0 2px 16px rgba(0,0,0,.08);
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* -- Buttons ------------------------------------------------- */
.mkt-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1.4rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .15s, color .15s, border-color .15s, transform .1s;
    text-decoration: none;
    line-height: 1;
}
.mkt-btn:hover { text-decoration: none; transform: translateY(-1px); }
.mkt-btn:active { transform: translateY(0); }

.mkt-btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.mkt-btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

.mkt-btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.mkt-btn--outline:hover { background: var(--brand-light); color: var(--brand); }

.mkt-btn--white { background: #fff; color: var(--brand); border-color: #fff; }
.mkt-btn--white:hover { background: #f0f9ff; color: var(--brand-dark); }

.mkt-btn--sm  { padding: .4rem 1rem;  font-size: .82rem; }
.mkt-btn--lg  { padding: .85rem 2rem; font-size: 1rem; border-radius: 10px; }

/* -- Nav ------------------------------------------------------ */
.mkt-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.mkt-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .85rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mkt-nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.mkt-nav__logo { height: 32px; width: auto; }

.mkt-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.mkt-nav__link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}
.mkt-nav__link:hover,
.mkt-nav__link.active { color: var(--brand); text-decoration: none; }

.mkt-nav__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }

.mkt-nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
    margin-left: auto;
    padding: .25rem;
}

.mkt-nav__mobile { display: none; flex-direction: column; gap: .5rem; padding: 1rem 2rem; border-top: 1px solid var(--border); }
.mkt-nav__mobile--open { display: flex; }
.mkt-nav__mobile-link { font-size: .95rem; font-weight: 600; color: var(--text); padding: .4rem 0; text-decoration: none; }
.mkt-nav__mobile-link:hover { color: var(--brand); }

/* -- Page hero (inner pages) ---------------------------------- */
.page-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}
.page-hero__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.page-hero__inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    margin-bottom: .75rem;
}
.page-hero__inner p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* -- Features page -------------------------------------------- */
.features-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.features-section-label {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: .75rem;
    margin-top: 2.5rem;
}
.features-section-label:first-child { margin-top: 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    box-shadow: var(--shadow);
}

.feature-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-card h4 { font-size: .95rem; font-weight: 700; color: #1e293b; }
.feature-card p  { font-size: .875rem; color: #475569; line-height: 1.6; }

/* -- Home: Hero ----------------------------------------------- */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    padding: 5rem 0 4rem;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
    align-items: center;
}

.hero__headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.hero__badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
}
.hero__badge i { font-size: 1.3rem; color: var(--brand); }

/* -- Home: Highlights ----------------------------------------- */
.highlights { padding: 5rem 0; background: var(--bg-alt); }

.highlights__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlights__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: .75rem;
}

.highlights__sub {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.highlight-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.highlights__cta { text-align: center; }

/* -- Home: Stats strip ---------------------------------------- */
.stats-strip { background: var(--brand); padding: 2.5rem 0; }

.stats-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-strip__num  { display: block; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: .25rem; }
.stats-strip__label { display: block; font-size: .85rem; color: rgba(255,255,255,.75); }

/* -- CTA banner ----------------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--brand) 0%, #1e40af 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-banner__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-banner__inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.cta-banner__inner p  { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; }

/* -- Pricing page --------------------------------------------- */
.pricing-section { padding: 4rem 0 3rem; }

.pricing-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-section__inner--wide {
    max-width: 1060px;
}

/* ── Feature comparison ─────────────────────────────────────── */
.feat-compare {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.feat-compare__hd {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 2px solid var(--border);
}

.feat-compare__hd-corner {
    padding: .9rem 1.25rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    background: #f8fafc;
}

.feat-compare__hd-plan {
    padding: 1.1rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    border-left: 1px solid var(--border);
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
}

.feat-compare__hd-plan--prem {
    background: linear-gradient(135deg, #0f2d5e 0%, #1d4ed8 60%, #7c3aed 100%);
    border-left-color: var(--brand);
}

.feat-compare__hd-plan-name {
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: -.01em;
}

.feat-compare__hd-plan-sub {
    font-size: .7rem;
    opacity: .78;
}

.feat-compare__hd-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .1rem .6rem;
    margin-bottom: .1rem;
}

.feat-compare__group-label {
    padding: .5rem 1.25rem;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.feat-compare__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.feat-compare__row--last {
    border-bottom: none;
}

.feat-compare__feat {
    padding: .6rem 1.25rem;
    font-size: .875rem;
    color: var(--text);
    display: flex;
    align-items: center;
    background: #fff;
}

.feat-compare__val {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    border-left: 1px solid var(--border);
    background: #fff;
}

.feat-compare__val:last-child {
    background: #f9faff;
    border-left-color: var(--brand);
}

.feat-compare__val.feat--yes { color: #16a34a; }
.feat-compare__val.feat--no  { color: #cbd5e1; }

/* Pricing rows within compare table */
.feat-compare__tier {
    font-weight: 700;
    color: var(--text);
    background: #f8fafc;
}

.feat-compare__price-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem .75rem;
    background: #fff;
    border-left: 1px solid var(--border);
    text-align: center;
}

.feat-compare__price-cell--prem {
    background: #f9faff;
    border-left-color: var(--brand);
}

.feat-compare__amount {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.feat-compare__amount span {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.feat-compare__buy {
    font-size: .78rem;
    padding: .35rem .85rem;
    white-space: nowrap;
}

.pricing-note {
    font-size: .85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

    border-color: var(--brand);
    box-shadow: 0 6px 36px rgba(37,99,235,.14);
}

.plan-card__badge {
    position: absolute;
    top: -1px;
    right: 1.25rem;
    background: var(--brand);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: .25rem .85rem;
    border-radius: 0 0 8px 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Coloured header band */
.plan-card__hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
    padding: 1.75rem 1.75rem 1.5rem;
}

.plan-card__hero--prem {
    background: linear-gradient(135deg, #0f2d5e 0%, #1d4ed8 60%, #7c3aed 100%);
}

.plan-card__name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.01em;
    margin-bottom: .2rem;
}

.plan-card__tagline {
    font-size: .825rem;
    opacity: .8;
    margin-bottom: 1.1rem;
}

.plan-card__price {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .3rem;
}

.plan-card__price span {
    font-size: .95rem;
    font-weight: 500;
    opacity: .75;
}

.plan-card__teams {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .8rem;
    letter-spacing: .02em;
}

/* White body */
.plan-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Feature groups */
.plan-feat-group {
    margin-bottom: 1.1rem;
}

.plan-feat-group__label {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.plan-feat {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    font-size: .875rem;
    line-height: 1.4;
}

.plan-feat i { flex-shrink: 0; font-size: .9rem; }

.plan-feat--yes { color: var(--text); }
.plan-feat--yes i { color: #16a34a; }

.plan-feat--no { color: var(--text-muted); }
.plan-feat--no i { color: #cbd5e1; }

.plan-feat__limit {
    font-size: .78rem;
    font-style: italic;
    color: var(--text-muted);
}

.plan-card__cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.pricing-note {
    font-size: .85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- FAQ ------------------------------------------------------ */
.faq-section { background: var(--bg-alt); padding: 4rem 0; }

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

.faq-section__inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.faq-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.faq-item p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* -- Contact page --------------------------------------------- */
.contact-section { padding: 3.5rem 0 5rem; }

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Sign-up page two-column layout */
.signup-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.signup-summary .pricing-card { margin-top: 0; }

.contact-info h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.contact-info > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.contact-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.contact-info__list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.contact-info__list i { color: var(--brand); font-size: 1rem; }

.contact-info__features { display: flex; flex-direction: column; gap: 1rem; }

.contact-info__feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.contact-info__feature i {
    font-size: 1.2rem;
    color: var(--brand);
    margin-top: .1rem;
    flex-shrink: 0;
}

.contact-info__feature div { display: flex; flex-direction: column; gap: .15rem; }
.contact-info__feature strong { font-size: .9rem; font-weight: 700; }
.contact-info__feature span  { font-size: .82rem; color: var(--text-muted); }

/* -- Form ----------------------------------------------------- */
.mkt-form { display: flex; flex-direction: column; gap: .25rem; }

.mkt-form__alert {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .875rem;
    margin-bottom: .75rem;
}

.mkt-form__alert--error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.mkt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mkt-form__group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .75rem; }

.mkt-form__group label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
}

.mkt-form__required { color: var(--brand); margin-left: 2px; }
.mkt-form__optional { color: var(--text-muted); font-weight: 400; font-size: .8rem; }

.mkt-form__group input,
.mkt-form__group textarea,
.mkt-form__group select {
    padding: .65rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .95rem;
    background: #fff;
    color: var(--text);
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.mkt-form__group input:focus,
.mkt-form__group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.mkt-form__group--error input,
.mkt-form__group--error textarea {
    border-color: #dc2626;
}

.mkt-form__group textarea { resize: vertical; min-height: 130px; }

.mkt-form__error { font-size: .8rem; color: #dc2626; }
.mkt-form__hint  { font-size: .78rem; color: var(--text-muted); }

/* Subdomain picker */
.subdomain-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.subdomain-input-wrap input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    min-width: 0;
    outline: none;
    box-shadow: none !important;
}
.subdomain-suffix {
    padding: 0 .6rem;
    font-size: .85rem;
    color: var(--text-muted);
    white-space: nowrap;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    line-height: 2.6rem;
}
.subdomain-status {
    padding: 0 .6rem;
    font-size: .78rem;
    white-space: nowrap;
    line-height: 2.6rem;
}
.subdomain-status--ok      { color: #16a34a; }
.subdomain-status--ok::before { content: '✓ '; }
.subdomain-status--taken   { color: #dc2626; }
.subdomain-status--taken::before { content: '✗ '; }
.subdomain-status--invalid { color: #dc2626; font-style: italic; }
.subdomain-status--checking { color: var(--text-muted); font-style: italic; }

.mkt-form__group--error .subdomain-input-wrap { border-color: #dc2626; }

.mkt-form__submit { align-self: flex-start; }

/* -- Success page --------------------------------------------- */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.success-card {
    max-width: 520px;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.success-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-card h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: .6rem; }
.success-card p  { font-size: .95rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

/* -- Footer --------------------------------------------------- */
.mkt-footer { background: #0f172a; padding: 4rem 0 0; }

.mkt-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.mkt-footer__brand { flex: 1; min-width: 200px; }

.mkt-footer__logo { height: 30px; width: auto; margin-bottom: .75rem; filter: brightness(0) invert(1); }

.mkt-footer__brand p {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 280px;
}

.mkt-footer__links { display: flex; gap: 3rem; }

.mkt-footer__col { display: flex; flex-direction: column; gap: .6rem; }

.mkt-footer__col h5 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    margin-bottom: .25rem;
}

.mkt-footer__col a {
    font-size: .875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color .15s;
}
.mkt-footer__col a:hover { color: #fff; text-decoration: none; }

.mkt-footer__bottom {
    border-top: 1px solid #1e293b;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: .8rem;
    color: #475569;
}

/* -- Screen mockup -------------------------------------------- */
.screen-mockup {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.06);
    overflow: hidden;
    border: 1px solid var(--border);
}

.screen-mockup__bar {
    background: #f1f5f9;
    padding: .55rem .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    border-bottom: 1px solid var(--border);
}

.screen-mockup__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.screen-mockup__url {
    margin-left: .6rem;
    font-size: .73rem;
    color: var(--text-muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: .18rem .75rem;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.screen-mockup__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero mockup — subtle perspective tilt */
.hero__mockup {
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform .35s ease;
}
.hero__mockup:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

/* -- Feature showcase ----------------------------------------- */
.showcase {
    background: var(--bg-alt);
    padding: 5rem 0;
}

.showcase__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.showcase-row--flip .showcase-row__text  { order: 2; }
.showcase-row--flip .showcase-row__visual { order: 1; }

.showcase-row__label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--brand);
    margin-bottom: .75rem;
}

.showcase-row__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: .9rem;
}

.showcase-row__text p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* -- Responsive ----------------------------------------------- */
@media (max-width: 900px) {
    .hero__inner       { grid-template-columns: 1fr; text-align: center; }
    .hero__ctas        { justify-content: center; }
    .hero__mockup      { transform: none; }
    .contact-grid      { grid-template-columns: 1fr; gap: 2rem; }
    .signup-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .price-table       { grid-template-columns: 90px 1fr 1fr; }
    .feat-compare__hd,
    .feat-compare__row { grid-template-columns: 2fr 1fr 1fr; }
    .faq-grid          { grid-template-columns: 1fr; }
    .showcase-row,
    .showcase-row--flip { grid-template-columns: 1fr; gap: 2rem; }
    .showcase-row--flip .showcase-row__text  { order: 1; }
    .showcase-row--flip .showcase-row__visual { order: 2; }
}

@media (max-width: 680px) {
    .mkt-nav__links    { display: none; }
    .mkt-nav__actions  { display: none; }
    .mkt-nav__hamburger { display: flex; }
    .mkt-form__row     { grid-template-columns: 1fr; }
    .mkt-footer__inner { flex-direction: column; gap: 2rem; }
    .mkt-footer__links { flex-direction: column; gap: 1.5rem; }
    .pricing-grid      { grid-template-columns: 1fr; }
}
