﻿:root {
    --bg-main: #041126;
    --bg-deep: #031021;
    --bg-card: rgba(7, 22, 52, .72);
    --bg-card-strong: rgba(8, 26, 62, .84);
    --border: rgba(120, 190, 255, .18);
    --border-strong: rgba(120, 220, 255, .42);
    --primary: #2563ff;
    --cyan: #18c7ff;
    --text-main: #ffffff;
    --text-soft: #b7c8e8;
    --text-muted: #7f95ba;
    --shadow-blue: 0 24px 90px rgba(17, 184, 255, .18);
    --shadow-card: 0 24px 70px rgba(0, 0, 0, .28);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    font-family: Inter, Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 10% 20%, rgba(28, 99, 255, .20), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(17, 184, 255, .16), transparent 30%),
        linear-gradient(135deg, #041126 0%, #061b3d 55%, #031021 100%);
    overflow-x: hidden;
}

body,
button,
input {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.landing-bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(120, 190, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 190, 255, .05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 82%, transparent 100%);
}

.landing-orb {
    position: fixed;
    z-index: -2;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
}

.landing-orb-left {
    width: 26rem;
    height: 26rem;
    left: -14rem;
    top: 7rem;
    background: rgba(37, 99, 255, .18);
}

.landing-orb-right {
    width: 30rem;
    height: 30rem;
    right: -12rem;
    bottom: 4rem;
    background: rgba(17, 184, 255, .13);
}

.landing-container {
    width: min(92vw, 1440px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 96px;
    border-bottom: 1px solid rgba(90, 170, 255, .14);
    background: rgba(3, 10, 27, .92);
    backdrop-filter: blur(16px);
}

.landing-nav {
    min-height: 96px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand links actions";
    align-items: center;
    gap: 24px;
}

.brand {
    grid-area: brand;
    justify-self: start;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(24, 199, 255, .28));
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 24px;
    line-height: .98;
    font-weight: 950;
    letter-spacing: .045em;
}

.brand em {
    color: var(--cyan);
    font-style: normal;
}

.brand small {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 14px;
}

.nav-links {
    grid-area: links;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: #c7d7f2;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 750;
    transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #64d8ff;
    background: rgba(100, 216, 255, .08);
}

.nav-actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 18px;
    padding: 14px 26px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

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

.btn-lg {
    min-height: 56px;
    padding-inline: 30px;
    border-radius: 16px;
    font-size: 17px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #245bff, #11b8ff);
    box-shadow: 0 18px 45px rgba(17, 184, 255, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.btn-primary:hover {
    box-shadow: 0 24px 64px rgba(17, 184, 255, .30), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(120, 180, 255, .25);
    background: rgba(7, 22, 52, .38);
}

.btn-ghost:hover {
    border-color: rgba(100, 216, 255, .46);
    background: rgba(24, 199, 255, .08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    color: #8de4ff;
    border: 1px solid rgba(120, 220, 255, .22);
    border-radius: 999px;
    background: rgba(17, 184, 255, .09);
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .105em;
    text-transform: uppercase;
}

.home-hero {
    min-height: calc(100vh - 96px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
    padding: 56px 0 48px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 18px 0 0;
    max-width: 780px;
    font-size: clamp(58px, 5.15vw, 90px);
    line-height: .94;
    letter-spacing: -.05em;
    font-weight: 950;
}

.hero-copy h1 {
    margin-top: 0;
}

.hero-lead,
.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #d8e6ff;
    font-size: clamp(22px, 1.68vw, 29px);
    line-height: 1.35;
}

.hero-support {
    margin: 16px 0 0;
    color: #9fb5d8;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.mini-badges span {
    color: #d8ecff;
    border: 1px solid rgba(120, 190, 255, .16);
    border-radius: 999px;
    background: rgba(7, 22, 52, .52);
    padding: 10px 13px;
    font-size: 14px;
    font-weight: 750;
}

.product-mockup {
    width: 100%;
    max-width: 560px;
    min-height: 420px;
    justify-self: end;
    border: 1px solid var(--border-strong);
    border-radius: 32px;
    background:
        radial-gradient(circle at 24% 0%, rgba(17, 184, 255, .20), transparent 32%),
        linear-gradient(145deg, rgba(10, 31, 76, .88), rgba(4, 16, 38, .86));
    box-shadow: var(--shadow-blue), var(--shadow-card);
    padding: 28px;
    overflow: hidden;
    position: relative;
}

.product-mockup::after {
    content: "";
    position: absolute;
    inset: auto -20% -42% 18%;
    height: 62%;
    background: radial-gradient(circle, rgba(17, 184, 255, .20), transparent 62%);
    pointer-events: none;
}

.mockup-header,
.mockup-brand,
.mockup-list div {
    display: flex;
    align-items: center;
}

.mockup-header {
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(120, 190, 255, .14);
}

.mockup-brand {
    gap: 14px;
}

.mockup-brand img {
    width: 58px;
    height: 58px;
}

.mockup-brand strong,
.mockup-brand small {
    display: block;
}

.mockup-brand strong {
    font-size: 20px;
    font-weight: 950;
}

.mockup-brand small {
    color: var(--text-soft);
}

.mockup-status {
    color: #8de4ff;
    border: 1px solid rgba(24, 199, 255, .24);
    border-radius: 999px;
    background: rgba(24, 199, 255, .08);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}

.mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.mockup-metrics article {
    border: 1px solid rgba(120, 190, 255, .15);
    border-radius: 22px;
    background: rgba(4, 16, 38, .58);
    padding: 18px;
}

.mockup-metrics span,
.mockup-metrics strong,
.mockup-metrics small {
    display: block;
}

.mockup-metrics span,
.mockup-metrics small {
    color: var(--text-muted);
    font-size: 13px;
}

.mockup-metrics strong {
    margin: 8px 0 4px;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.04em;
}

.mockup-list {
    display: grid;
    gap: 12px;
}

.mockup-list div {
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(120, 190, 255, .14);
    border-radius: 18px;
    background: rgba(3, 10, 27, .44);
    padding: 15px;
}

.mockup-list i {
    color: var(--cyan);
    font-size: 19px;
}

.mockup-list span {
    flex: 1;
    color: #dcecff;
    font-weight: 780;
}

.mockup-list strong {
    color: #8de4ff;
    font-size: 12px;
}

.compact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -20px;
    padding-bottom: 42px;
}

.compact-strip article,
.feature-card,
.paid-plan-card,
.faq-item,
.page-cta {
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.compact-strip article {
    min-height: 116px;
    border-radius: 26px;
    padding: 22px;
}

.compact-strip i,
.feature-card i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #88e7ff;
    border: 1px solid rgba(24, 199, 255, .24);
    border-radius: 18px;
    background: rgba(24, 199, 255, .10);
}

.compact-strip h2 {
    margin: 16px 0 6px;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.compact-strip p {
    margin: 0;
    color: var(--text-soft);
}

.page-main {
    min-height: calc(100vh - 96px - 96px);
    padding: 70px 0 56px;
}

.narrow-page {
    max-width: 900px;
}

.page-hero {
    max-width: 980px;
    margin-bottom: 34px;
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(44px, 4.1vw, 72px);
}

.page-hero p {
    max-width: 780px;
    font-size: clamp(19px, 1.4vw, 24px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 260px;
    border-radius: 28px;
    padding: 32px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.feature-card:hover,
.paid-plan-card:hover,
.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(120, 220, 255, .36);
    background: rgba(9, 30, 72, .82);
}

.feature-card h2 {
    margin: 24px 0 10px;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -.025em;
}

.feature-card p,
.page-cta p,
.faq-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.55;
}

.page-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    margin-top: 28px;
    border-radius: 30px;
    padding: 30px;
}

.page-cta h2 {
    margin: 14px 0 8px;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.035em;
}

.baby-plan {
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr .84fr;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(120, 220, 255, .42);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 16%, rgba(17, 184, 255, .24), transparent 42%),
        linear-gradient(135deg, rgba(21, 93, 255, .34), rgba(17, 184, 255, .18));
    box-shadow: var(--shadow-blue), var(--shadow-card);
    padding: 36px;
}

.plan-ribbon,
.plan-badge {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    color: #031021;
    border-radius: 999px;
    background: linear-gradient(135deg, #b9f2ff, #5ad8ff);
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.baby-copy h2 {
    margin: 22px 0 0;
    font-size: clamp(48px, 5vw, 84px);
    line-height: .9;
    font-weight: 950;
    letter-spacing: -.055em;
}

.baby-price {
    margin-top: 8px;
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1;
    font-weight: 950;
}

.baby-copy p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.45;
}

.baby-details {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(3, 10, 27, .32);
    padding: 26px;
}

.baby-details strong {
    display: block;
    margin-bottom: 16px;
    font-size: 22px;
}

.baby-details ul,
.paid-plan-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.baby-details li,
.paid-plan-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #e5f3ff;
}

.baby-details i,
.paid-plan-card i {
    color: #84ecff;
}

.baby-details .btn {
    width: 100%;
}

.paid-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 18px;
    margin-top: 22px;
}

.paid-plan-card {
    min-height: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    padding: 30px;
    position: relative;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.paid-plan-card.is-featured {
    border-color: rgba(120, 220, 255, .36);
}

.paid-plan-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.paid-plan-card > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.045em;
}

.paid-plan-card > span {
    color: #9be9ff;
    font-weight: 850;
}

.paid-plan-card ul {
    margin-top: 24px;
    flex: 1;
}

.paid-plan-card .btn {
    width: 100%;
    margin-top: auto;
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    padding: 24px 26px;
    font-size: 20px;
    font-weight: 950;
}

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

.faq-item summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #92eaff;
    border: 1px solid rgba(120, 220, 255, .25);
    border-radius: 12px;
    background: rgba(24, 199, 255, .08);
}

.faq-item[open] summary::after {
    content: "â€“";
}

.faq-item p {
    padding: 0 26px 24px;
}

.site-footer {
    min-height: 96px;
    border-top: 1px solid rgba(120, 180, 255, .12);
}

.footer-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--text-muted);
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer-inner a {
    color: #c7d7f2;
    font-weight: 780;
}

.footer-inner a:hover {
    color: #64d8ff;
}

@media (max-width: 767px) {
    .landing-container {
        width: min(100% - 24px, 560px);
    }

    .site-header,
    .landing-nav {
        min-height: auto;
    }

    .landing-nav {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "links"
            "actions";
        gap: 12px;
        padding: 14px 0;
    }

    .brand {
        justify-content: center;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand small {
        font-size: 12px;
    }

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

    .nav-links a {
        padding: 9px 10px;
        font-size: 14px;
    }

    .nav-actions {
        justify-self: stretch;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .btn,
    .btn-lg {
        min-height: 50px;
        padding: 13px 16px;
        font-size: 15px;
    }

    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 0 28px;
    }

    .eyebrow {
        font-size: 10px;
        white-space: normal;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: .96;
    }

    .hero-lead,
    .page-hero p {
        font-size: 18px;
    }

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

    .mini-badges {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mini-badges span {
        text-align: center;
    }

    .product-mockup {
        min-height: auto;
        justify-self: stretch;
        padding: 20px;
        border-radius: 26px;
    }

    .mockup-header {
        align-items: flex-start;
    }

    .mockup-brand img {
        width: 48px;
        height: 48px;
    }

    .mockup-status {
        display: none;
    }

    .mockup-metrics {
        grid-template-columns: 1fr;
    }

    .mockup-list div {
        align-items: flex-start;
    }

    .mockup-list strong {
        display: none;
    }

    .compact-strip,
    .feature-grid,
    .paid-plans {
        grid-template-columns: 1fr;
    }

    .compact-strip {
        margin-top: 0;
        padding-bottom: 28px;
    }

    .page-main {
        min-height: auto;
        padding: 34px 0 38px;
    }

    .feature-card,
    .paid-plan-card {
        min-height: auto;
        padding: 24px;
    }

    .page-cta {
        display: grid;
        padding: 24px;
    }

    .page-cta .btn {
        width: 100%;
    }

    .baby-plan {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 28px;
    }

    .baby-details {
        padding: 20px;
    }

    .plan-badge {
        position: static;
        margin-bottom: 14px;
    }

    .faq-item summary {
        align-items: flex-start;
        padding: 20px;
        font-size: 18px;
    }

    .faq-item p {
        padding: 0 20px 20px;
        font-size: 16px;
    }

    .footer-inner {
        display: grid;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

    .footer-inner nav {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .landing-container {
        width: min(92vw, 900px);
    }

    .landing-nav {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "brand links actions";
        gap: 18px;
        padding: 16px 0;
    }

    .brand {
        justify-self: start;
    }

    .nav-links {
        justify-self: center;
        justify-content: center;
        gap: 8px;
    }

    .nav-links a {
        padding: 9px 11px;
        font-size: 15px;
    }

    .nav-actions {
        justify-self: end;
        justify-content: flex-end;
        gap: 8px;
    }

    .nav-actions .btn {
        min-height: 42px;
        padding: 11px 18px;
        border-radius: 15px;
        font-size: 14px;
    }

    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 50px 0 38px;
    }

    .hero-copy h1 {
        max-width: 860px;
        font-size: clamp(56px, 7vw, 70px);
    }

    .product-mockup {
        justify-self: stretch;
        max-width: none;
    }

    .compact-strip,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compact-strip article:last-child {
        grid-column: 1 / -1;
    }

    .baby-plan {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
        gap: 24px;
    }

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

@media (min-width: 1024px) and (max-width: 1399px) {
    .landing-container {
        width: min(92vw, 1180px);
    }

    .site-header,
    .landing-nav {
        min-height: 84px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand strong {
        font-size: 22px;
    }

    .brand small {
        font-size: 12px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-actions .btn {
        min-height: 44px;
        padding: 12px 20px;
        border-radius: 16px;
    }

    .home-hero {
        min-height: calc(100vh - 84px);
        grid-template-columns: 1.04fr .96fr;
        gap: 48px;
        padding: 38px 0 30px;
    }

    .hero-copy h1 {
        max-width: 720px;
        font-size: clamp(50px, 4.8vw, 68px);
    }

    .hero-lead {
        font-size: clamp(20px, 1.55vw, 24px);
    }

    .product-mockup {
        max-width: 460px;
        min-height: 370px;
        padding: 22px;
    }

    .mockup-metrics {
        gap: 10px;
    }

    .mockup-metrics article {
        padding: 14px;
    }

    .mockup-metrics strong {
        font-size: 26px;
    }

    .compact-strip {
        margin-top: -12px;
        padding-bottom: 28px;
    }

    .page-main {
        padding-top: 52px;
    }

    .page-hero h1 {
        font-size: clamp(42px, 4.1vw, 62px);
    }

    .feature-card {
        min-height: 240px;
        padding: 26px;
    }

    .paid-plan-card {
        padding: 24px;
        min-height: 340px;
    }

    .paid-plan-card > strong {
        font-size: 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .landing-container {
        width: min(92vw, 1320px);
    }

    .home-hero {
        gap: 64px;
    }

    .hero-copy h1 {
        font-size: clamp(56px, 4.8vw, 76px);
    }

    .product-mockup {
        max-width: 540px;
    }
}

@media (min-width: 1800px) {
    .landing-container {
        width: min(92vw, 1480px);
    }

    .home-hero {
        gap: 86px;
    }

    .hero-copy h1 {
        font-size: clamp(62px, 4.8vw, 88px);
    }

    .product-mockup {
        max-width: 620px;
        min-height: 470px;
    }

    .page-hero h1 {
        font-size: clamp(58px, 4vw, 82px);
    }
}

/* =========================================================
   FRA HUB - PUBLIC MOBILE FIT
   Escala mobile real: legÃ­vel, compacta e sem aparÃªncia miniaturizada.
   ========================================================= */
@media (max-width: 767px) {
    .landing-container {
        width: min(100% - 28px, 480px);
    }

    .site-header {
        min-height: auto;
    }

    .landing-nav {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand actions"
            "links links";
        align-items: center;
        gap: 9px 10px;
        min-height: auto;
        padding: 10px 0 11px;
    }

    .brand {
        justify-content: flex-start;
        gap: 9px;
        min-width: 0;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand span {
        min-width: 0;
    }

    .brand strong {
        font-size: 16px;
        letter-spacing: .035em;
    }

    .brand small {
        margin-top: 2px;
        font-size: 10px;
        white-space: nowrap;
    }

    .nav-actions {
        width: auto;
        justify-self: end;
        display: flex;
        grid-template-columns: none;
        gap: 6px;
    }

    .nav-actions .btn {
        min-height: 34px;
        padding: 8px 11px;
        border-radius: 12px;
        font-size: 12px;
        white-space: nowrap;
    }

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

    .nav-links a {
        padding: 7px 9px;
        font-size: 13px;
    }

    .home-hero {
        gap: 20px;
        padding: 25px 0 22px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.18rem, 9.2vw, 2.9rem);
        line-height: .95;
        letter-spacing: -.055em;
    }

    .hero-lead,
    .page-hero p {
        margin-top: 14px;
        font-size: 1.02rem;
        line-height: 1.34;
    }

    .hero-support {
        margin-top: 10px;
        font-size: .94rem;
        line-height: 1.35;
    }

    .mini-badges {
        display: flex;
        gap: 7px;
        margin-top: 16px;
    }

    .mini-badges span {
        padding: 7px 9px;
        font-size: 11px;
        text-align: left;
    }

    .product-mockup {
        padding: 16px;
        border-radius: 22px;
    }

    .mockup-header {
        align-items: center;
        padding-bottom: 13px;
    }

    .mockup-brand {
        gap: 10px;
    }

    .mockup-brand img {
        width: 38px;
        height: 38px;
    }

    .mockup-brand strong {
        font-size: 16px;
    }

    .mockup-brand small {
        font-size: 11px;
    }

    .mockup-status {
        display: inline-flex;
        padding: 6px 8px;
        font-size: 10px;
    }

    .mockup-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 14px 0;
    }

    .mockup-metrics article {
        padding: 10px;
        border-radius: 16px;
    }

    .mockup-metrics span,
    .mockup-metrics small {
        font-size: 10px;
    }

    .mockup-metrics strong {
        margin: 5px 0 2px;
        font-size: 24px;
    }

    .mockup-list {
        gap: 8px;
    }

    .mockup-list div {
        align-items: center;
        padding: 10px;
        border-radius: 14px;
    }

    .mockup-list i {
        font-size: 15px;
    }

    .mockup-list span {
        font-size: 13px;
    }

    .mockup-list strong {
        display: inline;
        font-size: 10px;
    }

    .compact-strip {
        gap: 10px;
        margin-top: 0;
        padding-bottom: 22px;
    }

    .compact-strip article {
        min-height: auto;
        padding: 16px;
        border-radius: 20px;
    }

    .compact-strip i,
    .feature-card i {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .compact-strip h2 {
        margin: 12px 0 4px;
        font-size: 18px;
    }

    .compact-strip p {
        font-size: 14px;
        line-height: 1.35;
    }

    .page-main {
        padding: 24px 0 30px;
    }

    .page-hero {
        margin-bottom: 18px;
    }

    .feature-grid,
    .faq-list,
    .paid-plans {
        gap: 11px;
    }

    .feature-card,
    .paid-plan-card,
    .faq-item,
    .page-cta {
        border-radius: 22px;
    }

    .feature-card,
    .paid-plan-card {
        padding: 18px;
    }

    .feature-card h2 {
        margin: 14px 0 7px;
        font-size: 1.16rem;
    }

    .feature-card p,
    .page-cta p,
    .faq-item p {
        font-size: .94rem;
        line-height: 1.4;
    }

    .page-cta {
        gap: 16px;
        padding: 18px;
    }

    .page-cta h2 {
        margin: 10px 0 6px;
        font-size: 1.55rem;
    }

    .baby-plan {
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .plan-ribbon,
    .plan-badge {
        padding: 7px 10px;
        font-size: 10px;
    }

    .baby-copy h2 {
        margin-top: 14px;
        font-size: 3rem;
    }

    .baby-price {
        font-size: 2.2rem;
    }

    .baby-copy p {
        margin-top: 12px;
        font-size: .98rem;
    }

    .baby-details {
        padding: 16px;
        border-radius: 20px;
    }

    .baby-details strong {
        margin-bottom: 10px;
        font-size: 1.08rem;
    }

    .baby-details ul,
    .paid-plan-card ul {
        gap: 7px;
        margin-bottom: 16px;
    }

    .baby-details li,
    .paid-plan-card li {
        gap: 8px;
        font-size: .94rem;
        line-height: 1.3;
    }

    .paid-plan-card h2 {
        font-size: 1.45rem;
    }

    .paid-plan-card > strong {
        font-size: 1.55rem;
    }

    .paid-plan-card > span {
        font-size: .92rem;
    }

    .paid-plan-card ul {
        margin-top: 14px;
    }

    .faq-item summary {
        padding: 17px;
        font-size: 1.02rem;
    }

    .faq-item summary::after {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .faq-item p {
        padding: 0 17px 17px;
    }

    .btn,
    .btn-lg {
        min-height: 44px;
        padding: 11px 15px;
        border-radius: 14px;
        font-size: 14px;
    }

    .site-footer,
    .footer-inner {
        min-height: 68px;
    }

    .footer-inner {
        gap: 12px;
        padding: 16px 0;
    }

    .footer-inner nav {
        gap: 10px;
    }

    .footer-inner,
    .footer-inner a {
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .landing-container {
        width: min(100% - 22px, 420px);
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small {
        font-size: 9px;
    }

    .nav-actions .btn {
        min-height: 32px;
        padding: 7px 9px;
        font-size: 11px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 2.55rem);
    }

    .mockup-metrics article {
        padding: 8px;
    }

    .mockup-metrics strong {
        font-size: 21px;
    }
}

/* =========================================================
   FRA HUB - PUBLIC MOBILE FIT V2
   CabeÃ§alho e pÃ¡ginas pÃºblicas em escala mobile real.
   ========================================================= */
@media (max-width: 767px) {
    .landing-container {
        width: min(100% - 24px, 560px);
    }

    .site-header {
        min-height: auto;
    }

    .landing-nav {
        grid-template-columns: minmax(86px, .72fr) minmax(118px, 1fr) auto;
        grid-template-areas: "brand links actions";
        align-items: center;
        gap: 6px;
        min-height: 64px;
        padding: 8px 0;
    }

    .brand {
        justify-content: flex-start;
        gap: 7px;
        min-width: 0;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand strong {
        font-size: 14px;
        letter-spacing: .025em;
        white-space: nowrap;
    }

    .brand small {
        max-width: 112px;
        margin-top: 1px;
        font-size: 8.5px;
        line-height: 1.08;
        white-space: normal;
    }

    .nav-links {
        justify-content: center;
        gap: 2px;
        min-width: 0;
        width: auto;
    }

    .nav-links a {
        padding: 6px 4px;
        font-size: 11.5px;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-actions {
        width: auto;
        justify-self: end;
        display: flex;
        gap: 4px;
    }

    .nav-actions .btn {
        min-height: 32px;
        padding: 7px 9px;
        border-radius: 12px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .home-hero {
        gap: 22px;
        padding: 30px 0 26px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.42rem, 10vw, 3.25rem);
        line-height: .96;
        letter-spacing: -.055em;
    }

    .hero-lead,
    .page-hero p {
        margin-top: 14px;
        font-size: 1.08rem;
        line-height: 1.36;
    }

    .hero-support {
        margin-top: 10px;
        font-size: .98rem;
        line-height: 1.36;
    }

    .mini-badges {
        gap: 7px;
        margin-top: 17px;
    }

    .mini-badges span {
        padding: 7px 9px;
        font-size: 11.5px;
        line-height: 1;
    }

    .product-mockup {
        padding: 17px;
        border-radius: 24px;
    }

    .mockup-header {
        align-items: center;
    }

    .mockup-status {
        display: inline-flex;
    }

    .mockup-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .mockup-metrics article {
        padding: 10px;
    }

    .mockup-metrics strong {
        font-size: 24px;
    }

    .mockup-list strong {
        display: inline;
    }

    .compact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .compact-strip article {
        padding: 16px;
    }

    .compact-strip article:last-child {
        grid-column: 1 / -1;
    }

    .page-main {
        padding: 28px 0 34px;
    }

    .page-hero {
        margin-bottom: 18px;
    }

    .feature-card,
    .paid-plan-card,
    .faq-item,
    .page-cta,
    .baby-plan {
        border-radius: 22px;
    }

    .feature-grid,
    .paid-plans {
        gap: 12px;
    }

    .feature-card,
    .paid-plan-card {
        min-height: auto;
        padding: 18px;
    }

    .baby-plan {
        gap: 14px;
        padding: 18px;
    }

    .baby-copy h2 {
        margin-top: 12px;
        font-size: 3.08rem;
    }

    .baby-price {
        font-size: 2.2rem;
    }

    .baby-copy p {
        margin-top: 10px;
        font-size: 1rem;
    }

    .baby-details {
        padding: 16px;
    }

    .paid-plan-card {
        min-height: auto;
    }

    .paid-plan-card h2 {
        font-size: 1.5rem;
    }

    .paid-plan-card > strong {
        font-size: 1.65rem;
    }
}

@media (max-width: 430px) {
    .landing-container {
        width: min(100% - 20px, 430px);
    }

    .landing-nav {
        grid-template-columns: minmax(78px, .64fr) minmax(106px, 1fr) auto;
        gap: 4px;
    }

    .brand img {
        width: 31px;
        height: 31px;
    }

    .brand strong {
        font-size: 12.5px;
    }

    .brand small {
        max-width: 96px;
        font-size: 7.5px;
    }

    .nav-links a {
        padding-inline: 3px;
        font-size: 10.5px;
    }

    .nav-actions .btn {
        min-height: 30px;
        padding: 6px 7px;
        font-size: 10.5px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.28rem, 10.2vw, 2.9rem);
    }

    .hero-lead,
    .page-hero p {
        font-size: 1.02rem;
    }

    .mockup-status {
        display: none;
    }
}

/* =========================================================
   FRA HUB - Ajuste seguro do tÃ­tulo da Home somente desktop
   Preserva todas as regras mobile jÃ¡ existentes
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero .hero-copy h1 {
        max-width: 820px;
        font-size: clamp(50px, 4.35vw, 68px);
        line-height: 0.94;
        letter-spacing: -0.052em;
        text-wrap: balance;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        max-width: 880px;
        font-size: clamp(56px, 4.15vw, 76px);
    }
}

/* =========================================================
   FRA HUB - CorreÃ§Ã£o desktop hero v2
   Somente desktop. NÃ£o afeta mobile.
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero .hero-copy h1 {
        max-width: 980px !important;
        font-size: clamp(48px, 3.85vw, 66px) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.045em !important;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        max-width: 1040px !important;
        font-size: clamp(54px, 3.75vw, 68px) !important;
        line-height: 0.96 !important;
    }
}

/* =========================================================
   FRA HUB - CorreÃ§Ã£o desktop hero v3
   Deixa o tÃ­tulo mais prÃ³ximo da referÃªncia e preserva mobile
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero .hero-copy h1 {
        max-width: 1000px !important;
        font-size: clamp(44px, 3.35vw, 58px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.04em !important;
    }

    .home-hero {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
        gap: 46px !important;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        max-width: 1060px !important;
        font-size: clamp(50px, 3.4vw, 64px) !important;
    }
}

/* =========================================================
   FRA HUB - CorreÃ§Ã£o desktop hero v4
   Reduz mais o tÃ­tulo no desktop para melhorar a quebra
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero .hero-copy h1 {
        max-width: 1080px !important;
        font-size: clamp(42px, 3vw, 56px) !important;
        line-height: 1 !important;
        letter-spacing: -0.038em !important;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        max-width: 1120px !important;
        font-size: clamp(48px, 3vw, 58px) !important;
        line-height: 1 !important;
    }
}

/* =========================================================
   FRA HUB - CorreÃ§Ã£o desktop hero v5
   Remove quebra balanceada e dÃ¡ mais largura ao texto
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero {
        grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr) !important;
        gap: 34px !important;
    }

    .home-hero .hero-copy h1 {
        max-width: 1120px !important;
        font-size: clamp(40px, 2.75vw, 52px) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.035em !important;
        text-wrap: normal !important;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        max-width: 1180px !important;
        font-size: clamp(46px, 2.75vw, 54px) !important;
    }
}

/* =========================================================
   FRA HUB - Quebra controlada do tÃ­tulo da home
   Desktop com quebra manual / mobile preservado
   ========================================================= */
.hero-break-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .hero-break-desktop {
        display: initial;
    }
}

/* =========================================================
   FRA HUB - Ajuste final preciso do hero desktop
   Objetivo: fazer "GestÃ£o profissional para" caber na primeira linha
   NÃ£o afeta mobile
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero .hero-copy h1 {
        font-size: clamp(38px, 2.55vw, 49px) !important;
        line-height: 1.04 !important;
        letter-spacing: -0.032em !important;
        max-width: 1180px !important;
        text-wrap: normal !important;
    }
}

@media (min-width: 1400px) {
    .home-hero .hero-copy h1 {
        font-size: clamp(44px, 2.55vw, 49px) !important;
        line-height: 1.04 !important;
    }
}

/* =========================================================
   FRA HUB - Hero desktop final v6
   Corrige aproveitamento de espaÃ§o sem afetar mobile
   ========================================================= */
@media (min-width: 1024px) {
    .home-hero {
        align-items: start !important;
        grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.66fr) !important;
        gap: 32px !important;
        padding-top: 44px !important;
    }

    .home-hero .hero-copy {
        align-self: start !important;
        padding-top: 0 !important;
    }

    .home-hero .hero-copy h1 {
        margin-top: 0 !important;
        max-width: 1180px !important;
        font-size: clamp(52px, 4vw, 64px) !important;
        line-height: 0.95 !important;
        letter-spacing: -0.045em !important;
        text-wrap: normal !important;
    }
}

@media (min-width: 1400px) {
    .home-hero {
        grid-template-columns: minmax(0, 1.42fr) minmax(520px, 0.58fr) !important;
        gap: 34px !important;
        padding-top: 52px !important;
    }

    .home-hero .hero-copy h1 {
        max-width: 1240px !important;
        font-size: clamp(64px, 3.65vw, 72px) !important;
        line-height: 0.94 !important;
    }

    .home-hero .product-mockup {
        max-width: 690px !important;
    }
}

/* =========================================================
   FRA HUB - Hero desktop final v7
   Linhas controladas no desktop / mobile preservado
   ========================================================= */
.hero-title-line {
    display: contents;
}

@media (min-width: 1024px) {
    .home-hero {
        align-items: start !important;
        grid-template-columns: minmax(0, 1fr) minmax(420px, 620px) !important;
        gap: 44px !important;
        padding-top: 48px !important;
    }

    .home-hero .hero-copy {
        align-self: start !important;
        padding-top: 0 !important;
    }

    .home-hero .hero-copy h1.hero-title-main {
        margin-top: 0 !important;
        max-width: none !important;
        font-size: clamp(54px, 4vw, 66px) !important;
        line-height: 0.92 !important;
        letter-spacing: -0.047em !important;
        text-wrap: normal !important;
    }

    .home-hero .hero-title-line {
        display: block;
        white-space: nowrap;
    }

    .home-hero .product-mockup {
        width: 100% !important;
        max-width: 620px !important;
        justify-self: end !important;
    }
}

@media (min-width: 1400px) {
    .home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(520px, 660px) !important;
        gap: 48px !important;
        padding-top: 56px !important;
    }

    .home-hero .hero-copy h1.hero-title-main {
        font-size: clamp(62px, 3.55vw, 72px) !important;
        line-height: 0.91 !important;
    }

    .home-hero .product-mockup {
        max-width: 660px !important;
    }
}

/* =========================================================
   FRA HUB - Ajuste refinado da pÃ¡gina Planos
   Escopado apenas em planos.php
   ========================================================= */
.plans-page-main {
    padding-top: 34px !important;
}

.plans-page-hero {
    margin-bottom: 22px !important;
}

.plans-page-hero h1 {
    margin-top: 0 !important;
}

.baby-title-inline {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.baby-title-inline > span {
    display: inline-block;
}

.baby-title-inline > strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-2px);
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .75);
    background: linear-gradient(135deg, #ecfeff 0%, #8ff3ff 42%, #27c7ff 100%);
    color: #031021;
    box-shadow:
        0 18px 42px rgba(39, 199, 255, .34),
        inset 0 1px 0 rgba(255, 255, 255, .86);
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .plans-page-main {
        padding-top: 26px !important;
        padding-bottom: 54px !important;
    }

    .plans-page-hero {
        margin-bottom: 18px !important;
    }

    .plans-page-hero h1 {
        max-width: 980px !important;
        font-size: clamp(48px, 4.2vw, 70px) !important;
        line-height: .94 !important;
    }

    .plans-page-main .baby-plan {
        padding: 32px 34px !important;
    }

    .plans-page-main .baby-copy h2.baby-title-inline {
        margin-top: 18px !important;
        margin-bottom: 0 !important;
    }

    .plans-page-main .baby-copy p {
        margin-top: 14px !important;
    }
}

@media (max-width: 767px) {
    .plans-page-main {
        padding-top: 22px !important;
    }

    .plans-page-hero {
        margin-bottom: 16px !important;
    }

    .baby-title-inline {
        gap: 10px !important;
    }

    .baby-title-inline > strong {
        padding: 8px 12px;
        font-size: .92rem;
        letter-spacing: .07em;
    }
}

/* =========================================================
   FRA HUB - CorreÃ§Ã£o refinada do selo "GRÃTIS" no plano Baby
   Escopo: apenas pÃ¡gina de planos
   ========================================================= */
.plans-page-main .baby-copy h2.baby-title-inline {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin: 18px 0 0 !important;
    line-height: 1 !important;
}

.plans-page-main .baby-copy h2.baby-title-inline > span {
    display: inline-block !important;
    font-size: clamp(56px, 5vw, 84px) !important;
    line-height: .9 !important;
    font-weight: 950 !important;
    letter-spacing: -.055em !important;
}

.plans-page-main .baby-copy h2.baby-title-inline > strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(122, 232, 255, .45) !important;
    background: linear-gradient(135deg, rgba(123, 234, 255, .18), rgba(34, 197, 255, .28)) !important;
    color: #9aefff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .14),
        0 8px 24px rgba(3, 10, 27, .28) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
    .plans-page-main .baby-copy h2.baby-title-inline {
        gap: 10px !important;
    }

    .plans-page-main .baby-copy h2.baby-title-inline > strong {
        padding: 8px 12px !important;
        font-size: 13px !important;
        letter-spacing: .1em !important;
    }
}

/* =========================================================
   FRA HUB - Ajuste fino topo da pÃ¡gina Planos
   DÃ¡ respiro ao tÃ­tulo sem jogar os cards para baixo demais
   ========================================================= */
@media (min-width: 1024px) {
    .plans-page-main {
        padding-top: 54px !important;
    }

    .plans-page-hero {
        margin-bottom: 26px !important;
    }

    .plans-page-hero h1 {
        line-height: .96 !important;
    }
}

/* =========================================================
   FRA HUB - Ajuste fino topo da pÃ¡gina Planos
   DÃ¡ respiro ao tÃ­tulo sem jogar os cards para baixo demais
   ========================================================= */
@media (min-width: 1024px) {
    .plans-page-main {
        padding-top: 54px !important;
    }

    .plans-page-hero {
        margin-bottom: 26px !important;
    }

    .plans-page-hero h1 {
        line-height: .96 !important;
    }
}

/* =========================================================
   FRA HUB - Ajuste fino premium da marca / landing
   Corrige uso do Ã­cone em pontos compactos e evita overlap na home
   ========================================================= */

.landing-nav img[src*="fra-hub-icon-premium"],
.mockup-brand img[src*="fra-hub-icon-premium"],
.landing-brand img[src*="fra-hub-icon-premium"] {
    display: block;
    width: 58px;
    height: 58px;
    min-width: 58px;
    object-fit: cover;
    border-radius: 16px;
}

.mockup-brand img[src*="fra-hub-icon-premium"] {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
}

.landing-nav img[src*="fra-hub-icon-premium"],
.landing-brand img[src*="fra-hub-icon-premium"] {
    margin-right: 10px;
}

@media (min-width: 1024px) {
    .home-hero {
        grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.86fr);
        gap: clamp(42px, 5vw, 78px);
    }

    .home-hero .hero-copy {
        min-width: 0;
        max-width: 880px;
        position: relative;
        z-index: 2;
    }

    .home-hero .hero-copy h1 {
        max-width: 860px;
        font-size: clamp(50px, 4.15vw, 74px);
        line-height: .94;
        letter-spacing: -.052em;
    }

    .home-hero .product-mockup {
        width: min(100%, 560px);
        max-width: 560px;
        justify-self: end;
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .home-hero {
        grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.8fr);
        gap: 34px;
    }

    .home-hero .hero-copy h1 {
        max-width: 760px;
        font-size: clamp(44px, 4.1vw, 60px);
    }

    .home-hero .product-mockup {
        max-width: 460px;
    }
}

@media (max-width: 767px) {
    .landing-nav img[src*="fra-hub-icon-premium"],
    .landing-brand img[src*="fra-hub-icon-premium"] {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
    }

    .mockup-brand img[src*="fra-hub-icon-premium"] {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 15px;
    }
}

@media (min-width: 1280px) {
    .home-hero {
        grid-template-columns: minmax(0, 660px) minmax(0, 620px) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .home-hero .hero-copy {
        max-width: 660px !important;
        min-width: 0 !important;
        position: relative;
        z-index: 2;
    }

    .home-hero .hero-copy h1 {
        max-width: 660px !important;
        font-size: clamp(56px, 4.2vw, 78px) !important;
        line-height: .94 !important;
        letter-spacing: -.055em !important;
    }

    .home-hero .product-mockup {
        width: min(100%, 620px) !important;
        max-width: 620px !important;
        justify-self: end !important;
        align-self: start !important;
        margin-top: 10px !important;
        transform: none !important;
        position: relative !important;
        z-index: 1;
    }
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
    .home-hero {
        grid-template-columns: minmax(0, 580px) minmax(0, 500px) !important;
        gap: 48px !important;
        align-items: start !important;
    }

    .home-hero .hero-copy {
        max-width: 580px !important;
        min-width: 0 !important;
        position: relative;
        z-index: 2;
    }

    .home-hero .hero-copy h1 {
        max-width: 580px !important;
        font-size: clamp(48px, 4vw, 64px) !important;
        line-height: .95 !important;
    }

    .home-hero .product-mockup {
        width: min(100%, 500px) !important;
        max-width: 500px !important;
        justify-self: end !important;
        align-self: start !important;
        margin-top: 6px !important;
        transform: none !important;
        position: relative !important;
        z-index: 1;
    }
}

@media (max-width: 767px) {
}

@media (min-width: 1280px) {
    .home-hero {
        grid-template-columns: minmax(0, 640px) minmax(0, 620px) !important;
        gap: 112px !important;
        align-items: start !important;
    }

    .home-hero .hero-copy {
        max-width: 640px !important;
        min-width: 0 !important;
        z-index: 2 !important;
    }

    .home-hero .hero-copy h1 {
        max-width: 640px !important;
        font-size: clamp(54px, 3.85vw, 72px) !important;
        line-height: .94 !important;
    }

    .home-hero .product-mockup {
        width: min(100%, 610px) !important;
        max-width: 610px !important;
        justify-self: end !important;
        align-self: start !important;
        margin-top: 18px !important;
        margin-left: auto !important;
        transform: translateX(34px) !important;
        position: relative !important;
        z-index: 1 !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
    .home-hero {
        grid-template-columns: minmax(0, 560px) minmax(0, 470px) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .home-hero .hero-copy h1 {
        max-width: 560px !important;
        font-size: clamp(44px, 3.8vw, 60px) !important;
    }

    .home-hero .product-mockup {
        max-width: 470px !important;
        justify-self: end !important;
        transform: translateX(22px) !important;
    }
}

@media (min-width: 1280px) {
    .home-hero {
        grid-template-columns: minmax(0, 640px) minmax(0, 620px) !important;
        gap: 120px !important;
        align-items: center !important;
    }

    .home-hero .hero-copy {
        max-width: 640px !important;
        z-index: 2 !important;
    }

    .home-hero .hero-copy h1 {
        max-width: 640px !important;
        font-size: clamp(54px, 3.85vw, 72px) !important;
        line-height: .94 !important;
    }

    .home-hero .product-mockup {
        max-width: 610px !important;
        justify-self: end !important;
        transform: translateX(46px) !important;
        margin-top: 0 !important;
        z-index: 1 !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 1: Header pÃºblico
   Ajuste isolado do Ã­cone do topo pÃºblico
   NÃ£o afeta mockup, login, sidebar ou ADM
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin: 0 12px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: scale(1.08) !important;
    transform-origin: center !important;
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        border-radius: 16px !important;
        margin-right: 10px !important;
        transform: scale(1.06) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 1 FINAL: Header pÃºblico com sÃ­mbolo limpo
   Usa SVG sem fundo preto. NÃ£o afeta mockup/login/sidebar.
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 14px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    filter: drop-shadow(0 10px 18px rgba(0, 153, 255, .28));
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        margin-right: 10px !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 1 DEFINITIVO
   Header pÃºblico com sÃ­mbolo premium SVG sem fundo
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    max-width: 62px !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 14px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    filter: drop-shadow(0 12px 20px rgba(0, 170, 255, .30));
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        margin-right: 10px !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 1 RESET CONTROLADO
   Header pÃºblico usando PNG premium, sem afetar outros pontos
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 17px !important;
    padding: 0 !important;
    margin: 0 14px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: scale(1.16) !important;
    transform-origin: center !important;
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        max-width: 54px !important;
        border-radius: 15px !important;
        margin-right: 10px !important;
        transform: scale(1.14) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 1: ajuste milimÃ©trico vertical do logo
   Sobe apenas o Ã­cone do header pÃºblico
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    transform: translateY(-6px) scale(1.16) !important;
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        transform: translateY(-4px) scale(1.14) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 2: Mockup da home
   Ajuste isolado do Ã­cone dentro do card demonstrativo
   NÃ£o afeta header pÃºblico, login, sidebar ou ADM
   ========================================================= */

.product-mockup .mockup-brand > img.brand-icon-mockup {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin: 0 14px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateY(-4px) scale(1.13) !important;
    transform-origin: center !important;
}

@media (max-width: 767px) {
    .product-mockup .mockup-brand > img.brand-icon-mockup {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        border-radius: 16px !important;
        margin-right: 10px !important;
        transform: translateY(-3px) scale(1.12) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 2: Mockup home / encaixe nos 4 cantos
   Usa imagem exclusiva jÃ¡ recortada para o card demonstrativo
   ========================================================= */

.product-mockup .mockup-brand > img.brand-icon-mockup {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin: 0 14px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateY(-2px) scale(1.04) !important;
    transform-origin: center !important;
}

@media (max-width: 767px) {
    .product-mockup .mockup-brand > img.brand-icon-mockup {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        border-radius: 16px !important;
        margin-right: 10px !important;
        transform: translateY(-2px) scale(1.04) !important;
    }
}

/* =========================================================
   FRA HUB - MOCKUP HOME - AJUSTE FINO DEFINITIVO
   sem recorte, apenas tamanho + centralizaÃ§Ã£o
   ========================================================= */
.product-mockup .mockup-brand > img.brand-icon-mockup{
    width: 86px !important;
    height: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 16px 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: translateY(-3px) scale(1.12) !important;
    transform-origin: center center !important;
}

@media (max-width: 767px){
    .product-mockup .mockup-brand > img.brand-icon-mockup{
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
        max-width: 76px !important;
        margin-right: 12px !important;
        transform: translateY(-2px) scale(1.10) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 2: Mockup da home / ajuste fino
   Sem recorte. Apenas tamanho, centralizaÃ§Ã£o e encaixe.
   NÃ£o afeta header pÃºblico, login, sidebar ou ADM.
   ========================================================= */

.product-mockup .mockup-brand > img.brand-icon-mockup {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 19px !important;
    padding: 0 !important;
    margin: -4px 16px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: scale(1.18) !important;
    transform-origin: center center !important;
}

@media (max-width: 767px) {
    .product-mockup .mockup-brand > img.brand-icon-mockup {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        max-width: 64px !important;
        border-radius: 17px !important;
        margin: -3px 12px 0 0 !important;
        transform: scale(1.16) !important;
    }
}

/* =========================================================
   FRA HUB - PONTO 2: micro ajuste + logo mockup
   Aumenta apenas o Ã­cone dentro do card da home
   ========================================================= */

.product-mockup .mockup-brand > img.brand-icon-mockup {
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    border-radius: 20px !important;
    margin: -5px 17px 0 0 !important;
    transform: scale(1.21) !important;
    transform-origin: center center !important;
}

@media (max-width: 767px) {
    .product-mockup .mockup-brand > img.brand-icon-mockup {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px !important;
        max-width: 68px !important;
        border-radius: 18px !important;
        margin: -4px 12px 0 0 !important;
        transform: scale(1.19) !important;
    }
}

/* =========================================================
   FRA HUB - LOGO PREMIUM AMBIENTADO / LANDING
   SÃ­mbolo transparente com fundo do prÃ³prio layout.
   ========================================================= */

.site-header .brand > img.brand-icon-public {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 6px !important;
    margin: 0 10px 0 0 !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 14px !important;
    background:
        radial-gradient(circle at 34% 24%, rgba(56, 189, 248, .25), transparent 39%),
        linear-gradient(145deg, rgba(14, 41, 83, .72), rgba(5, 11, 31, .58)) !important;
    border: 1px solid rgba(96, 165, 250, .18) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 10px 24px rgba(37, 99, 235, .13) !important;
    transform: none !important;
    filter: drop-shadow(0 8px 12px rgba(14, 165, 233, .18)) !important;
    box-sizing: border-box !important;
}

.product-mockup .mockup-brand > img.brand-icon-mockup {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    padding: 7px !important;
    margin: 0 12px 0 0 !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 16px !important;
    background:
        radial-gradient(circle at 34% 24%, rgba(56, 189, 248, .24), transparent 39%),
        linear-gradient(145deg, rgba(14, 41, 83, .64), rgba(5, 11, 31, .46)) !important;
    border: 1px solid rgba(96, 165, 250, .16) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 28px rgba(37, 99, 235, .12) !important;
    transform: none !important;
    filter: drop-shadow(0 10px 16px rgba(14, 165, 233, .16)) !important;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        padding: 5px !important;
        margin-right: 8px !important;
        border-radius: 12px !important;
    }

    .product-mockup .mockup-brand > img.brand-icon-mockup {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        padding: 6px !important;
        margin-right: 9px !important;
        border-radius: 14px !important;
    }
}

/* =========================================================
   FRA HUB - LOGO 3D APROVADO / LANDING - CAMADA FINAL
   ========================================================= */

.site-header .brand > img.brand-icon-public[src*="fra-hub-logo-3d-premium"] {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    padding: 0 !important;
    margin: 0 10px 0 0 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 13px !important;
    background: transparent !important;
    border: 1px solid rgba(125, 211, 252, .14) !important;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .28), 0 0 22px rgba(14, 165, 233, .10) !important;
    transform: none !important;
    filter: none !important;
    box-sizing: border-box !important;
}

.product-mockup .mockup-brand > img.brand-icon-mockup[src*="fra-hub-logo-3d-premium"] {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    padding: 0 !important;
    margin: 0 12px 0 0 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    background: transparent !important;
    border: 1px solid rgba(125, 211, 252, .14) !important;
    box-shadow: 0 12px 28px rgba(2, 6, 23, .30), 0 0 24px rgba(14, 165, 233, .10) !important;
    transform: none !important;
    filter: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .site-header .brand > img.brand-icon-public[src*="fra-hub-logo-3d-premium"] {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        margin-right: 8px !important;
        border-radius: 11px !important;
    }

    .product-mockup .mockup-brand > img.brand-icon-mockup[src*="fra-hub-logo-3d-premium"] {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        margin-right: 9px !important;
        border-radius: 13px !important;
    }
}


