:root {
    --brand-primary: #D4AF37;
    --brand-highlight: #F5D27A;
    --brand-secondary: #0B0B0B;
    --surface: #fffdf7;
    --muted: #5b5647;
    --line: #ead9a7;
    --bg: linear-gradient(180deg, #fff9ec 0%, #f6edd4 100%);
    --bg-solid: #fffdf7;
    --ink: #0B0B0B;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg-solid);
    background-image: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
}

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

code {
    background: #f1f5f9;
    border-radius: 6px;
    padding: 2px 6px;
}

strong {
    color: var(--brand-secondary);
}

.topbar {
    align-items: center;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(26, 26, 26, 0.96));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.34);
    box-shadow: 0 18px 48px rgba(11, 11, 11, 0.28);
    display: flex;
    justify-content: space-between;
    padding: 18px clamp(18px, 4vw, 56px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.tenant-topbar {
    border-bottom: 4px solid var(--brand-primary);
}

.subnav {
    background: rgba(26, 26, 26, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px clamp(18px, 4vw, 56px);
}

.subnav a {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    white-space: nowrap;
}

.subnav a.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-highlight));
    border-color: rgba(245, 210, 122, 0.7);
    color: var(--brand-secondary);
}

.brand,
.topnav,
.actions,
.form-row {
    align-items: center;
    display: flex;
    gap: 14px;
}

.brand {
    font-weight: 800;
}

.brand-mark,
.brand-logo {
    align-items: center;
    /* background: var(--brand-secondary); */
    border-radius: 14px;
    color: #fff;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    width: 60px;
}

.brand-logo {
    background: #fff;
    object-fit: contain;
    padding: 4px;
}
.brand-mark img{
    height: 40px;
    width: 50px;
}

.topnav {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.topbar .brand {
    color: #fff;
}

.topbar .brand > span:last-child {
    color: var(--brand-highlight);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topnav a {
    transition: color 0.18s ease, opacity 0.18s ease;
}

.topnav a:hover {
    color: var(--brand-highlight);
}

.button {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-highlight));
    border: 1px solid rgba(245, 210, 122, 0.4);
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(212, 175, 55, 0.24);
    color: var(--brand-secondary);
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    padding: 13px 20px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button:hover {
    box-shadow: 0 20px 34px rgba(212, 175, 55, 0.3);
    filter: saturate(1.05);
    transform: translateY(-1px);
}

.button-small {
    padding: 9px 14px;
}

.button-ghost {
    background: rgba(255, 249, 236, 0.86);
    color: var(--brand-secondary);
    border-color: color-mix(in srgb, var(--brand-primary) 28%, white);
}

.color-guidance,
.settings-color-guidance {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, #ffffff);
    border-radius: 16px;
    background: color-mix(in srgb, var(--brand-primary) 8%, #ffffff);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.hero,
.section {
    padding: clamp(40px, 8vw, 96px) clamp(18px, 6vw, 88px);
}

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

.tenant-hero {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--brand-primary) 22%, transparent), transparent 34%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--brand-secondary) 20%, transparent), transparent 38%),
        linear-gradient(135deg, #fffdf7, #fff3cf 42%, #f4e3b0 100%);
}

.hero h1,
.section h1,
.section h2,
.form-card h3,
.auth-alt-card h3,
.feature-grid article h3 {
    color: var(--brand-secondary);
    font-size: clamp(34px, 6vw, 72px);
    line-height: 0.98;
    margin: 0 0 18px;
}

.section h1,
.section h2,
.form-card h3,
.auth-alt-card h3 {
    font-size: clamp(30px, 4vw, 52px);
}

.form-card h3,
.auth-alt-card h3,
.feature-grid article h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero p,
.section p,
.form-card p,
.auth-alt-card p,
.feature-grid article p,
.feature-grid-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.eyebrow {
    color: var(--brand-primary) !important;
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-lead {
    max-width: 820px;
}

.hero-card,
.form-card,
.feature-grid article,
.feature-grid-card,
.theme-preview,
.alert,
.auth-alt-card,
.stat-card {
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 245, 219, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(11, 11, 11, 0.08);
    padding: 28px;
}

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

.hero-card strong {
    color: var(--brand-secondary);
    font-size: 28px;
}

.hero-card span,
.card-label {
    color: var(--muted);
}

.feature-grid,
.list-grid,
.stats-grid {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.single-column {
    grid-template-columns: 1fr;
}

.list-grid,
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
    display: grid;
    gap: 8px;
    padding: 24px;
}

.stat-card strong {
    font-size: 34px;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compact-section {
    padding-top: 8px;
}

.narrow {
    margin: 0 auto;
    max-width: 1080px;
}

.form-card,
.auth-alt-card,
.feature-grid-card {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

label {
    color: #333;
    display: grid;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
}

input,
select,
textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    padding: 13px 14px;
    width: 100%;
}

input[type="color"] {
    height: 52px;
    padding: 4px;
}

.input-suffix {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
}

.input-suffix small {
    color: var(--muted);
}

.form-row {
    align-items: stretch;
}

.form-row label {
    flex: 1;
}

.alert-error {
    border-color: #fecaca;
    color: #991b1b;
}

.alert-success {
    border-color: #bbf7d0;
    color: #166534;
}

.theme-preview {
    display: grid;
    gap: 10px;
}

.theme-preview span {
    background: var(--brand-primary);
    border-radius: 18px;
    display: block;
    height: 120px;
}

.theme-preview span.secondary {
    background: var(--brand-secondary);
}

.inline-form {
    margin-top: 24px;
}

@media (max-width: 820px) {
    .topbar,
    .brand,
    .topnav,
    .actions,
    .form-row {
        align-items: stretch;
        flex-direction: column;
    }

    .subnav,
    .hero,
    .feature-grid,
    .feature-grid.single-column,
    .list-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.inline-actions {
    margin-top: 24px;
}

.compact-form-card {
    margin-top: 24px;
}

.schedule-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.schedule-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.07);
    display: grid;
    gap: 18px;
    padding: 24px;
}

.schedule-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 10px 0 8px;
}

.schedule-card-top,
.schedule-card-meta,
.status-inline-form {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.schedule-card-time {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.schedule-card-time strong {
    font-size: 18px;
}

.schedule-card-time small,
.muted-inline,
.status-note,
.form-note {
    color: var(--muted);
}

.schedule-card-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
}

.schedule-card-meta span {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
}

.status-inline-form {
    align-items: end;
    flex-wrap: wrap;
}

.status-inline-form label {
    min-width: 220px;
}

.status-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.status-agendado {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmado {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-concluido {
    background: #dcfce7;
    color: #166534;
}

.status-cancelado {
    background: #fee2e2;
    color: #b91c1c;
}

.status-faltou {
    background: #ede9fe;
    color: #6d28d9;
}

@media (max-width: 820px) {
    .schedule-card-top,
    .schedule-card-meta,
    .status-inline-form {
        align-items: stretch;
        flex-direction: column;
    }

    .schedule-card-time {
        justify-items: start;
    }
}
.salon-directory-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 28px;
}

.salon-directory-card {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.07);
    color: inherit;
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 24px 18px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.salon-directory-card:hover {
    border-color: rgba(212, 175, 55, 0.24);
    box-shadow: 0 22px 50px rgba(11, 11, 11, 0.14);
    transform: translateY(-2px);
}

.salon-directory-card strong {
    font-size: 18px;
}

.salon-directory-card span,
.salon-directory-card small {
    color: var(--muted);
}

.salon-directory-logo {
    align-items: center;
    display: inline-flex;
    height: 84px;
    justify-content: center;
    width: 84px;
}

.salon-directory-logo img,
.salon-directory-mark {
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
    display: block;
    height: 84px;
    object-fit: cover;
    width: 84px;
}

.salon-directory-mark {
    align-items: center;
    display: inline-flex;
    font-size: 32px;
    font-weight: 800;
    justify-content: center;
}

.empty-directory-card {
    background: var(--surface);
    border: 1px dashed var(--line);
    border-radius: 24px;
    margin-top: 28px;
    padding: 26px;
}

.empty-directory-card p {
    color: var(--muted);
    margin: 10px 0 0;
}
.objection-grid,
.faq-grid {
    margin-top: 28px;
}

.objection-card,
.faq-card,
.cta-section {
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 245, 219, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(11, 11, 11, 0.08);
    padding: 28px;
}

.objection-card h3,
.faq-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.objection-card p,
.faq-card p,
.cta-section p {
    color: var(--muted);
    margin: 0;
}

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

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(11, 11, 11, 0.98), rgba(26, 26, 26, 0.96)) !important;
    border: 1px solid rgba(245, 210, 122, 0.26);
    box-shadow: 0 32px 96px rgba(11, 11, 11, 0.24);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 42%);
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-section .eyebrow {
    color: var(--brand-highlight) !important;
}

.cta-section p,
.cta-section .section-lead {
    color: rgba(255, 255, 255, 0.76) !important;
}

.cta-section .button-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 210, 122, 0.24);
    color: #fff;
}

.site-footer.premium-site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.site-footer.premium-site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.35rem;
}

.site-footer.premium-site-footer .footer-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 24px;
    padding: 1.25rem;
}

.site-footer.premium-site-footer .footer-column h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 0.8rem;
}

.site-footer.premium-site-footer .footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.site-footer.premium-site-footer .footer-logo,
.site-footer.premium-site-footer .footer-logo-placeholder {
    width: 100px;
    height: 72px;
    border-radius: 15px;
    object-fit:fill;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

.site-footer.premium-site-footer .footer-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-highlight));
    color: var(--brand-secondary);
    font-size: 1.6rem;
    font-weight: 800;
}

.site-footer.premium-site-footer .footer-title {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
}

.site-footer.premium-site-footer .footer-text,
.site-footer.premium-site-footer .footer-list span,
.site-footer.premium-site-footer .footer-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer.premium-site-footer .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.site-footer.premium-site-footer .footer-list a {
    color: var(--brand-highlight);
}

.site-footer.premium-site-footer .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.site-footer.premium-site-footer .dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 700;
}

.site-footer.premium-site-footer .dev-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

@media (max-width: 820px) {
    .site-footer.premium-site-footer .footer-copy {
        display: grid;
        justify-items: start;
    }
}
.hero-platform-premium {
    position: relative;
    overflow: hidden;
}

.hero-platform-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(11, 11, 11, 0.12), transparent 30%);
    pointer-events: none;
}

.hero-platform-premium > * {
    position: relative;
    z-index: 1;
}

.hero-platform-panel {
    gap: 1rem;
}

.hero-platform-stack {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.4rem;
}

.hero-platform-stack div {
    background: rgba(11, 11, 11, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}

.hero-platform-stack small {
    color: var(--muted);
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.hero-platform-stack b {
    color: var(--brand-secondary);
    font-size: 0.98rem;
}

.premium-inline-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.premium-inline-proof span {
    background: rgba(11, 11, 11, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    color: var(--brand-secondary);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.72rem 1rem;
}

.stats-grid-premium {
    align-items: stretch;
}

.stat-card-premium {
    position: relative;
    overflow: hidden;
}

.stat-card-premium::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-highlight));
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(28, 24, 16, 0.98));
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 34%);
    pointer-events: none;
}

.section-dark > * {
    position: relative;
    z-index: 1;
}

.section-dark h2,
.section-dark .eyebrow {
    color: var(--brand-highlight) !important;
}

.section-dark .section-lead,
.section-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.authority-grid,
.journey-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

.authority-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.authority-card,
.journey-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 210, 122, 0.16);
    border-radius: 26px;
    padding: 1.4rem;
}

.authority-card h3,
.journey-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin: 0 0 0.65rem;
}

.authority-card p,
.journey-card p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.premium-journey-section .journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-card span {
    color: var(--brand-primary);
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 0.85rem;
}

@media (max-width: 980px) {
    .authority-grid,
    .premium-journey-section .journey-grid {
        grid-template-columns: 1fr;
    }
}
.platform-segment-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

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

.plan-card h3 {
    align-items: baseline;
    display: flex;
    gap: 8px;
    margin: 0;
}

.plan-card h3 small {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
}

.plan-list {
    color: var(--muted);
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

/* Premium Visual Refresh */
.brand-logo,
.salon-directory-logo img,
.site-footer.premium-site-footer .footer-logo {
    background: rgba(255, 253, 247, 0.98);
    object-fit: contain;
    padding: 0.45rem;
}

.site-footer.premium-site-footer .footer-logo-placeholder {
    object-fit: contain;
}

.salon-directory-logo {
    width: 96px;
    height: 96px;
}

.salon-directory-logo img,
.salon-directory-mark {
    width: 96px;
    height: 96px;
}

.segment-showcase-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}

.segment-showcase-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 246, 223, 0.94));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 72px rgba(11, 11, 11, 0.08);
}

.segment-showcase-media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.segment-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.02), rgba(11, 11, 11, 0.22));
}

.segment-showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.segment-showcase-copy {
    display: grid;
    gap: 0.85rem;
    padding: 1.5rem;
}

.segment-showcase-copy h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.08;
    margin: 0;
}

.segment-showcase-copy p:last-child {
    margin: 0;
}

.platform-support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.platform-support-list span {
    background: rgba(11, 11, 11, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    color: var(--brand-secondary);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.8rem 1rem;
}

@media (max-width: 820px) {
    .segment-showcase-media,
    .segment-showcase-media img {
        min-height: 220px;
    }
}
/* End Premium Visual Refresh */

/* Layout Hardening */
.hero-copy,
.hero-platform-panel,
.hero-platform-stack,
.hero-platform-stack div,
.feature-grid > article,
.feature-grid-card,
.segment-showcase-card,
.segment-showcase-copy,
.authority-card,
.journey-card,
.plan-card,
.salon-directory-card,
.empty-directory-card,
.objection-card,
.cta-section,
.hero-card,
.stat-card {
    min-width: 0;
}

.feature-grid > article h3,
.feature-grid > article p,
.feature-grid-card h3,
.feature-grid-card p,
.segment-showcase-copy h3,
.segment-showcase-copy p,
.authority-card h3,
.authority-card p,
.journey-card h3,
.journey-card p,
.plan-card h3,
.plan-card li,
.salon-directory-card strong,
.salon-directory-card span,
.salon-directory-card small,
.empty-directory-card strong,
.empty-directory-card p,
.objection-card h3,
.objection-card p,
.cta-section h2,
.cta-section p,
.hero-copy h1,
.hero-copy p,
.hero-platform-stack b,
.hero-platform-stack small,
.premium-inline-proof span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.plan-card h3 {
    flex-wrap: wrap;
}

.salon-directory-card,
.segment-showcase-card,
.feature-grid-card,
.authority-card,
.journey-card,
.objection-card {
    height: 100%;
}

.premium-journey-section .journey-card {
    height: 100%;
}

.premium-journey-section .journey-grid,
.authority-grid,
.plan-grid,
.segment-showcase-grid,
.salon-directory-grid,
.feature-grid {
    align-items: stretch;
}

@media (max-width: 820px) {
    .hero-platform-stack div,
    .segment-showcase-copy,
    .objection-card,
    .feature-grid-card,
    .journey-card,
    .authority-card,
    .salon-directory-card {
        padding: 1rem;
    }

    .salon-directory-card strong {
        font-size: 1rem;
    }
}
/* End Layout Hardening */
/* Final Front Polish */
html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.topbar,
.hero,
.section,
.hero-copy,
.hero-platform-panel,
.hero-platform-stack div,
.segment-showcase-copy,
.feature-grid > article,
.feature-grid-card,
.plan-card,
.objection-card,
.cta-section,
.salon-directory-card {
    min-width: 0;
}

.topnav a,
.brand,
.hero-copy h1,
.hero-copy p,
.hero-platform-panel strong,
.hero-platform-panel span,
.hero-platform-stack b,
.hero-platform-stack small,
.segment-showcase-copy h3,
.segment-showcase-copy p,
.feature-grid > article h3,
.feature-grid > article p,
.feature-grid-card h3,
.feature-grid-card p,
.plan-card h3,
.plan-list li,
.salon-directory-card strong,
.salon-directory-card span,
.salon-directory-card small,
.objection-card h3,
.objection-card p,
.cta-section h2,
.cta-section p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.feature-grid,
.segment-showcase-grid,
.plan-grid,
.salon-directory-grid,
.authority-grid,
.journey-grid,
.stats-grid {
    align-items: stretch;
}

@media (max-width: 980px) {
    .topbar {
        gap: 1rem;
    }

    .hero,
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 720px) {
    .topbar {
        padding: 14px 16px;
    }

    .brand {
        gap: 10px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .brand-mark,
    .brand-logo {
        width: 54px;
        height: 46px;
    }

    .topnav {
        width: 100%;
    }

    .topnav a,
    .button,
    .button-small {
        width: 100%;
    }

    .hero {
        min-height: unset;
        gap: 1.25rem;
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-copy h1 {
        line-height: 1.04;
    }

    .hero-card,
    .feature-grid article,
    .feature-grid-card,
    .objection-card,
    .cta-section,
    .stat-card {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .segment-showcase-copy,
    .hero-platform-stack div {
        padding: 1rem;
    }

    .premium-inline-proof {
        gap: 0.5rem;
    }

    .premium-inline-proof span,
    .platform-support-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
/* End Final Front Polish */
.form-card select[name="segmento"] {
    margin-bottom: 34px;
}
