:root {
    --bg: #f5f7fb;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-dark: #111725;
    --surface-dark-2: #1a2437;
    --text: #132033;
    --muted: #607086;
    --line: rgba(19, 32, 51, 0.1);
    --line-soft: rgba(255, 255, 255, 0.14);
    --primary: #2f9cff;
    --primary-deep: #166bbd;
    --accent: #f24c3d;
    --accent-deep: #cf3e34;
    --gold: #ffb838;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #4f46e5;
    --shadow-lg: 0 32px 80px rgba(17, 21, 31, 0.16);
    --shadow-md: 0 20px 44px rgba(17, 21, 31, 0.12);
    --shadow-sm: 0 14px 28px rgba(17, 21, 31, 0.08);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font, "Outfit", sans-serif);
    font-size: calc(16px * var(--font-scale, 1));
    background:
        radial-gradient(circle at top left, rgba(47, 156, 255, 0.14), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255, 184, 56, 0.1), transparent 22%),
        var(--bg);
    color: var(--text);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-topline {
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.topbar {
    position: relative;
    z-index: 24;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(19, 32, 51, 0.05);
}

.topbar__inner,
.topbar__right {
    display: flex;
    align-items: center;
}

.topbar__inner {
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 92px;
}

.topbar__right {
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--heading-font, "Barlow", sans-serif);
    min-width: 0;
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-sm);
}

.brand__logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.brand__logo--footer {
    width: 58px;
    height: 58px;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-size: 1.26rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand__text small {
    color: var(--accent);
    font-size: 0.88rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.brand--light {
    color: #fff;
}

.topbar__pills,
.access-launchers {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.info-pill {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(47, 156, 255, 0.08);
    border: 1px solid rgba(47, 156, 255, 0.14);
    color: var(--muted);
    font-size: 0.86rem;
}

.access-menu {
    position: relative;
}

.access-menu summary {
    list-style: none;
}

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

.access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--heading-font, "Barlow", sans-serif);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.access-btn--client {
    background: linear-gradient(135deg, rgba(47, 156, 255, 0.14), rgba(47, 156, 255, 0.08));
    border-color: rgba(47, 156, 255, 0.16);
    color: var(--primary-deep);
}

.access-btn--admin {
    background: linear-gradient(135deg, rgba(242, 76, 61, 0.12), rgba(242, 76, 61, 0.08));
    border-color: rgba(242, 76, 61, 0.16);
    color: var(--accent-deep);
}

.access-menu__panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(310px, calc(100vw - 2rem));
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-md);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 18;
}

.access-menu[open] .access-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.access-menu__panel strong {
    display: block;
    margin-top: 0.55rem;
    font-family: "Barlow", sans-serif;
    font-size: 1.2rem;
}

.access-menu__panel p {
    margin: 0.45rem 0 1rem;
    color: var(--muted);
}

.main-nav {
    position: relative;
    z-index: 16;
    margin-top: 0;
    padding-top: 0.55rem;
}

.main-nav__inner {
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #389ef3, #287fd4);
    border-radius: 18px 18px 0 0;
    box-shadow: var(--shadow-md);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.3rem;
}

.nav-links a,
.nav-toggle {
    color: #fff;
    font-family: var(--heading-font, "Barlow", sans-serif);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 1rem;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero--slider {
    min-height: 690px;
}

.hero-slider {
    position: relative;
    min-height: 690px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__inner {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
    gap: 2rem;
    padding: 5rem 0 10rem;
}

.hero-copy {
    color: #fff;
    max-width: 620px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: "Barlow", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.quote-card__heading h2,
.auth-hero h1,
.dashboard-header h1,
.client-hero h2 {
    margin: 0.65rem 0 1rem;
    font-family: var(--heading-font, "Barlow", sans-serif);
    line-height: 0.97;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    max-width: 10ch;
}

.hero-copy p,
.hero-focus-card span,
.hero-focus-card li {
    line-height: 1.7;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 56ch;
}

.hero-focus-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.hero-focus-card strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: "Barlow", sans-serif;
    font-size: 2.6rem;
}

.hero-focus-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.hero-points {
    margin: 1.2rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-slider__footer {
    position: absolute;
    left: 50%;
    bottom: 1.9rem;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0;
}

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

.hero-metrics--compact {
    margin-right: auto;
}

.metric-chip {
    min-width: 150px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.metric-chip strong {
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 1.4rem;
    color: #fff;
}

.metric-chip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.hero-slider__controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.slider-arrow,
.slider-dot {
    border: 0;
}

.slider-arrow {
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
}

.slider-dot.is-active {
    width: 32px;
    border-radius: 999px;
    background: #fff;
}

.quote-strip {
    position: relative;
    z-index: 7;
    margin-top: -3.4rem;
}

.quote-card {
    background: var(--surface-strong);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent);
}

.quote-card__heading {
    margin-bottom: 1.4rem;
}

.quote-card__heading h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

.quote-card__heading p,
.section-heading p,
.feature-card p,
.plan-card p,
.timeline-card p,
.policy-card p,
.login-card p {
    color: var(--muted);
    line-height: 1.65;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.section-heading--light h2,
.section-heading--light p {
    color: #fff;
}

.section-heading--compact {
    margin-bottom: 1.2rem;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.contact-form,
.card-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quote-form label,
.contact-form label,
.card-form label,
.stack-form label,
.editor-card label {
    display: grid;
    gap: 0.45rem;
}

.quote-form span,
.contact-form span,
.card-form span,
.stack-form span,
.editor-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(19, 32, 51, 0.12);
    border-radius: 14px;
    background: rgba(245, 248, 252, 0.82);
    padding: 0.92rem 1rem;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(47, 156, 255, 0.42);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 156, 255, 0.11);
}

textarea {
    resize: vertical;
}

.quote-form__wide,
.contact-form__wide,
.card-form__wide {
    grid-column: span 2;
}

.feature-section,
.about-section,
.plans-section,
.process-section,
.faq-section,
.contact-section {
    padding: 5rem 0;
}

.feature-grid,
.plans-grid,
.timeline-grid,
.dashboard-stats,
.policy-grid {
    display: grid;
    gap: 1.2rem;
}

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

.feature-card,
.plan-card,
.timeline-card,
.policy-card,
.stat-panel,
.stats-card {
    position: relative;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.feature-card::after,
.plan-card::after,
.policy-card::after {
    content: "";
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(47, 156, 255, 0.6), transparent);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 56, 0.5), rgba(47, 156, 255, 0.08));
    border: 1px solid rgba(47, 156, 255, 0.16);
    color: var(--primary-deep);
    font-family: "Barlow", sans-serif;
    font-weight: 800;
}

.feature-card h3,
.plan-card h3,
.timeline-card h3,
.policy-card strong,
.login-card h3,
.editor-card h3 {
    margin: 0 0 0.7rem;
    font-family: "Barlow", sans-serif;
    font-size: 1.38rem;
}

.testimonials {
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(13, 18, 28, 0.96), rgba(16, 25, 39, 0.94)),
        radial-gradient(circle at top right, rgba(47, 156, 255, 0.15), transparent 26%);
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.testimonial-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 800;
}

.testimonial-card__person span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.about-grid,
.faq-grid,
.contact-grid,
.dashboard-grid-two,
.client-hero {
    display: grid;
    gap: 1.5rem;
}

.about-grid,
.faq-grid,
.contact-grid,
.dashboard-grid-two {
    grid-template-columns: 1.05fr 0.95fr;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-media__card {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1.2rem 1.35rem;
    border-radius: 20px;
    background: rgba(17, 23, 37, 0.78);
    color: #fff;
    backdrop-filter: blur(14px);
}

.about-copy {
    align-self: center;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.check-grid span {
    padding: 0.92rem 1rem;
    border-radius: 16px;
    background: rgba(47, 156, 255, 0.07);
    border: 1px solid rgba(47, 156, 255, 0.08);
}

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

.plan-card strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 1.1rem;
}

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

.timeline-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.faq-item p {
    margin: 1rem 0 0;
    color: var(--muted);
}

.newsletter-section {
    padding: 0 0 5rem;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(17, 23, 37, 0.96), rgba(23, 91, 165, 0.94));
    color: #fff;
    box-shadow: var(--shadow-md);
}

.newsletter-box h2 {
    margin: 0.6rem 0;
    font-family: "Barlow", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    width: min(460px, 100%);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-panel,
.login-card,
.table-card,
.list-card,
.timeline-panel,
.auth-card,
.editor-card,
.config-preview-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 32, 51, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.contact-panel,
.auth-card {
    padding: 2rem;
}

.login-cards {
    display: grid;
    gap: 1rem;
}

.login-card,
.stats-card {
    padding: 1.6rem;
}

.login-card--dark {
    background: linear-gradient(135deg, rgba(17, 23, 37, 0.98), rgba(26, 36, 58, 0.98));
    color: #fff;
}

.login-card--dark p {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer {
    padding: 2rem 0 3rem;
    background:
        linear-gradient(135deg, rgba(12, 18, 29, 0.98), rgba(18, 34, 58, 0.96)),
        radial-gradient(circle at top right, rgba(47, 156, 255, 0.16), transparent 22%);
    color: #fff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 0.7fr 0.95fr;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-brand__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand__head strong,
.footer-column strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Barlow", sans-serif;
    font-size: 1.1rem;
}

.footer-brand__head p,
.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-trust span {
    padding: 0.65rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.84);
}

.footer-column {
    padding: 0.2rem 0;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-column--contact .footer-links span {
    line-height: 1.55;
}

.stats-card strong {
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 2.35rem;
    color: var(--primary-deep);
}

.stats-card span {
    color: var(--muted);
}

.floating-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    padding: 0.92rem 1.18rem;
    border-radius: 999px;
    background: #14b96b;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 30;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: "Barlow", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 14px 26px rgba(47, 156, 255, 0.24);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    box-shadow: 0 14px 26px rgba(242, 76, 61, 0.24);
}

.btn--ghost,
.btn--ghost-light {
    background: transparent;
}

.btn--ghost {
    border-color: rgba(19, 32, 51, 0.12);
    color: var(--text);
}

.btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.btn--small {
    min-height: 38px;
    padding-inline: 0.95rem;
    font-size: 0.76rem;
}

.btn--full {
    width: 100%;
}

.flash {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.flash--success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.18);
    color: #0e8a61;
}

.flash--danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #c53c3c;
}

.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.auth-hero,
.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.auth-hero__copy {
    width: min(560px, 100%);
}

.auth-hero__copy h1 {
    font-size: clamp(3rem, 6vw, 4.7rem);
    max-width: 10ch;
}

.auth-hero__copy p {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.78);
}

.auth-card {
    width: min(500px, 100%);
}

.stack-form {
    display: grid;
    gap: 1rem;
}

.auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--muted);
}

.dashboard-page {
    background:
        radial-gradient(circle at top left, rgba(47, 156, 255, 0.12), transparent 22%),
        #f2f6fb;
}

.dashboard-page--admin {
    font-size: 15px;
}

.dashboard-page--admin .dashboard-header h1 {
    font-size: clamp(2.1rem, 3.7vw, 3.1rem);
}

.dashboard-page--admin .section-heading h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.dashboard-page--admin .stat-panel strong {
    font-size: 1.9rem;
}

.dashboard-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, #121826, #182033 66%, #121826);
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar--client {
    background: linear-gradient(180deg, #102232, #16314a 66%, #102232);
}

.sidebar__brand p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.sidebar__nav,
.sidebar__footer {
    display: grid;
    gap: 0.55rem;
}

.sidebar__nav a,
.sidebar__footer a {
    padding: 0.82rem 0.95rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar__nav a:hover,
.sidebar__footer a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar__footer {
    margin-top: auto;
}

.dashboard-main {
    padding: 1.2rem 1.6rem 5rem 0;
}

.dashboard-header,
.client-hero {
    padding: 1.8rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    background:
        linear-gradient(135deg, rgba(17, 23, 37, 0.96), rgba(29, 87, 151, 0.84)),
        radial-gradient(circle at top right, rgba(255, 184, 56, 0.18), transparent 20%);
    color: #fff;
}

.dashboard-page--client .dashboard-header,
.dashboard-page--client .client-hero {
    background:
        linear-gradient(135deg, rgba(10, 24, 40, 0.96), rgba(17, 112, 97, 0.82)),
        radial-gradient(circle at top right, rgba(255, 184, 56, 0.16), transparent 20%);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0.8rem;
    z-index: 18;
}

.dashboard-header p,
.client-hero p {
    color: rgba(255, 255, 255, 0.76);
}

.dashboard-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dashboard-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.stat-panel span {
    color: var(--muted);
    font-size: 0.88rem;
}

.stat-panel strong {
    display: block;
    margin: 0.35rem 0;
    font-family: "Barlow", sans-serif;
    font-size: 2.05rem;
}

.stat-panel small {
    color: var(--muted);
}

.dashboard-section {
    margin-top: 1.5rem;
}

.table-card,
.list-card,
.timeline-panel {
    padding: 1.25rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 0.95rem 0.8rem;
    border-bottom: 1px solid rgba(19, 32, 51, 0.08);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.data-table td span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge--success {
    background: rgba(16, 185, 129, 0.12);
    color: #0e8a61;
}

.badge--warning {
    background: rgba(245, 158, 11, 0.14);
    color: #c88300;
}

.badge--danger {
    background: rgba(239, 68, 68, 0.12);
    color: #cc3939;
}

.badge--info {
    background: rgba(79, 70, 229, 0.12);
    color: #4037c8;
}

.inline-form,
.mini-actions,
.editor-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.inline-form select {
    min-width: 135px;
}

.inline-form--stack {
    flex-direction: column;
    align-items: stretch;
}

.list-card,
.timeline-panel {
    display: grid;
    gap: 1rem;
}

.list-item,
.timeline-entry {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(245, 248, 252, 0.86);
    border: 1px solid rgba(19, 32, 51, 0.06);
}

.list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.list-item p,
.list-item small,
.timeline-entry p,
.timeline-entry small {
    color: var(--muted);
}

.list-item__side,
.action-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.card-form {
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 32, 51, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.timeline-entry--summary strong {
    font-family: "Barlow", sans-serif;
    font-size: 1.34rem;
}

.landing-editor {
    display: grid;
    gap: 1rem;
}

.editor-group {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.editor-group summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background: rgba(47, 156, 255, 0.07);
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

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

.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem;
}

.editor-card {
    padding: 1rem;
}

.editor-card--wide {
    grid-column: 1 / -1;
}

.editor-card textarea {
    min-height: 120px;
}

.dashboard-footer {
    position: sticky;
    bottom: 0.85rem;
    z-index: 16;
    margin-top: 1.5rem;
    padding: 0.95rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.dashboard-footer--admin {
    background: rgba(20, 28, 43, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.dashboard-footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
}

.config-preview-card {
    padding: 1.3rem;
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.config-logo-preview {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(47, 156, 255, 0.08), rgba(242, 76, 61, 0.08));
}

.config-logo-preview img {
    max-width: 220px;
    max-height: 90px;
    object-fit: contain;
}

.config-logo-fallback {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.config-preview-meta p {
    margin: 0.25rem 0;
    color: var(--muted);
}

.document-header-preview {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(245, 248, 252, 0.9);
}

.document-header-preview__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.document-header-preview__brand img {
    max-width: 100px;
    max-height: 54px;
    object-fit: contain;
}

.document-header-preview__brand strong {
    display: block;
    font-family: "Barlow", sans-serif;
}

.document-header-preview__brand small,
.document-header-preview__text p {
    color: var(--muted);
}

.document-header-preview__text p {
    margin: 0.3rem 0;
}

.card-form--stack {
    grid-template-columns: 1fr;
}

.config-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.config-checkbox input {
    width: 18px;
    height: 18px;
}

.client-hero {
    grid-template-columns: 1.3fr 0.7fr;
    margin-top: 1.5rem;
}

.hero-metrics--dashboard {
    margin-top: 1.3rem;
}

.client-hero__aside {
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.client-hero__aside h3 {
    margin: 0.8rem 0 0.3rem;
    font-family: "Barlow", sans-serif;
    font-size: 1.72rem;
}

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

.policy-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.policy-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.policy-card__meta span {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(47, 156, 255, 0.08);
    color: var(--primary-deep);
    font-size: 0.84rem;
}

.policy-card__coverage {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

.btn,
.section-kicker,
.feature-card h3,
.plan-card h3,
.timeline-card h3,
.policy-card strong,
.login-card h3,
.editor-card h3,
.hero-focus-card strong,
.metric-chip strong,
.timeline-entry--summary strong,
.auth-hero__copy h1,
.sidebar__nav a,
.sidebar__footer a {
    font-family: var(--heading-font, "Barlow", sans-serif);
}

.brand--logo-only {
    gap: 0;
}

.brand--logo-only .brand__logo {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: transparent;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 64;
}

.topbar__inner {
    min-height: 88px;
    gap: 1rem;
}

.topbar__right {
    gap: 0.8rem;
}

.info-pill {
    padding: 0.7rem 0.95rem;
    font-size: 0.82rem;
}

.main-nav {
    position: sticky;
    top: 88px;
    z-index: 58;
    padding-top: 0;
    background: linear-gradient(90deg, #389ef3, #287fd4);
    box-shadow: 0 14px 28px rgba(47, 156, 255, 0.16);
}

.main-nav__inner {
    max-width: 1140px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.nav-links {
    width: 100%;
    gap: 1.35rem;
    padding: 0.95rem 0;
}

.hero--slider,
.hero-slider {
    min-height: 640px;
}

.hero-slide__inner {
    min-height: 590px;
    align-items: center;
    gap: 1.6rem;
    padding: 4rem 0 11.8rem;
}

.hero-copy h1 {
    font-size: clamp(2.25rem, 3.4vw, 3.45rem);
    max-width: 16ch;
    text-align: left;
    text-wrap: balance;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.hero-copy p {
    max-width: 48ch;
    font-size: 1rem;
}

.hero-focus-card {
    padding: 1.35rem 1.45rem;
    border-radius: 28px;
    align-self: center;
    max-width: 360px;
    margin-bottom: 0.9rem;
}

.hero-focus-card strong {
    font-size: 2.05rem;
}

.hero-slider__footer {
    bottom: 1.5rem;
    align-items: flex-end;
    width: min(1140px, calc(100% - 2rem));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.metric-chip {
    min-width: 136px;
    padding: 0.88rem 1rem;
}

.metric-chip strong {
    font-size: 1.22rem;
}

.metric-chip span {
    font-size: 0.82rem;
}

.slider-arrow {
    min-height: 40px;
    padding: 0.65rem 0.95rem;
}

.hero-slider__controls {
    align-self: end;
    padding-bottom: 0.15rem;
}

.quote-strip {
    margin-top: 0;
}

.quote-card {
    padding: 1.75rem;
}

.quote-card__heading h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.section-heading h2 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.dashboard-header h1,
.client-hero h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.auth-hero__copy h1 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    max-width: 12ch;
}

.feature-card h3,
.plan-card h3,
.timeline-card h3,
.policy-card strong,
.login-card h3,
.editor-card h3 {
    font-size: 1.18rem;
}

.newsletter-box {
    align-items: stretch;
    gap: 1.5rem;
    padding: 2.15rem;
}

.newsletter-box h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.newsletter-form {
    width: min(520px, 100%);
    align-self: center;
    padding: 0.55rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-form input {
    min-height: 56px;
    padding-inline: 1.15rem;
    border-radius: 18px;
    background: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
    font-size: 1rem;
    box-shadow: 0 12px 24px rgba(9, 13, 21, 0.12);
}

.newsletter-form input::placeholder {
    color: rgba(19, 32, 51, 0.5);
}

.site-footer {
    padding: 2.5rem 0 3.2rem;
}

.site-footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.footer-brand {
    grid-column: 1 / -1;
    padding: 1.6rem 1.7rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(47, 156, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__head {
    align-items: center;
    margin-bottom: 1.15rem;
}

.footer-brand__head > .brand {
    flex: 0 0 auto;
}

.footer-brand__head > div p {
    margin: 0;
    max-width: 42ch;
}

.footer-column {
    padding: 1.2rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-page--admin {
    font-size: 14.5px;
}

.dashboard-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.sidebar {
    gap: 1.2rem;
    padding: 1.2rem 1rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, #0f1727, #152235 48%, #0d1724);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
}

.sidebar__brand {
    display: grid;
    gap: 0.8rem;
    padding: 0.35rem 0.45rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar__brand p {
    margin: 0;
    font-size: 0.88rem;
}

.sidebar__nav a,
.sidebar__footer a {
    display: block;
    position: relative;
    padding: 0.9rem 0.95rem 0.9rem 1.15rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    border-radius: 18px;
}

.sidebar__nav a::before,
.sidebar__footer a::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.sidebar__nav a.is-active,
.sidebar__nav a:hover,
.sidebar__footer a:hover {
    background: linear-gradient(135deg, rgba(47, 156, 255, 0.24), rgba(47, 156, 255, 0.08));
    border-color: rgba(47, 156, 255, 0.2);
    color: #fff;
}

.sidebar__nav a.is-active::before,
.sidebar__nav a:hover::before,
.sidebar__footer a:hover::before {
    background: #7cc4ff;
}

.sidebar__footer {
    padding-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-main {
    min-width: 0;
    padding: 1rem 1.2rem 5.4rem 1.2rem;
}

.dashboard-header {
    top: 0.75rem;
    padding: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.header-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-stats {
    margin: 1.25rem 0;
}

.dashboard-section,
.table-card,
.list-card,
.timeline-panel,
.card-form,
.editor-group,
.config-preview-card {
    overflow: hidden;
}

.table-card--scroll {
    overflow-x: auto;
}

.quick-links-grid,
.section-action-grid {
    display: grid;
    gap: 1rem;
}

.quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.quick-link-card,
.mini-panel {
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.quick-link-card strong,
.mini-panel strong {
    display: block;
    margin-bottom: 0.45rem;
}

.quick-link-card p,
.mini-panel p {
    margin: 0 0 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.editor-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.editor-card__top h3 {
    margin-bottom: 0;
}

.hidden-form {
    display: none;
}

.dashboard-grid-two--policy {
    grid-template-columns: minmax(0, 1.16fr) minmax(310px, 0.84fr);
}

.list-item--policy {
    align-items: center;
}

.policy-card__details {
    margin-top: 1rem;
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
}

.policy-card__details p,
.policy-card__details span {
    margin: 0;
}

.dashboard-footer {
    bottom: 0.7rem;
}

.offer-popup {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 80;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.offer-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offer-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 26, 0.56);
    backdrop-filter: blur(6px);
}

.offer-popup__card,
.offer-popup-preview {
    position: relative;
    width: min(560px, 100%);
    padding: 1.6rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98));
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--shadow-lg);
}

.offer-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(19, 32, 51, 0.06);
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
}

.offer-popup__card h3,
.offer-popup-preview h3 {
    margin: 0.65rem 0 0.75rem;
    font-size: 1.8rem;
}

.offer-popup__card p,
.offer-popup-preview p {
    color: var(--muted);
    line-height: 1.7;
}

.offer-popup__list,
.offer-popup-preview__list {
    margin: 1rem 0 1.25rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.6rem;
    color: var(--text);
}

.offer-popup__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 1120px) {
    .hero-slide__inner,
    .about-grid,
    .faq-grid,
    .contact-grid,
    .dashboard-grid-two,
    .client-hero,
    .feature-grid,
    .testimonial-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid,
    .dashboard-stats,
    .policy-grid,
    .editor-grid,
    .quick-links-grid,
    .section-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero-slider__footer {
        position: static;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar__inner,
    .topbar__right,
    .site-footer__inner,
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar__inner,
    .topbar__right {
        flex-direction: row;
        align-items: center;
    }

    .topbar__inner {
        min-height: 76px;
    }

    .topbar__right {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .topbar__pills,
    .access-launchers {
        justify-content: flex-start;
    }

    .main-nav__inner {
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        top: 88px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .hero--slider,
    .hero-slider {
        min-height: 780px;
    }

    .hero-slide__inner {
        min-height: 700px;
        padding: 3rem 0 8rem;
    }

    .hero-slider__footer {
        position: static;
        transform: none;
    }

    .quote-strip {
        margin-top: -2rem;
    }

    .quote-card,
    .contact-panel,
    .auth-card,
    .dashboard-header,
    .client-hero,
    .hero-focus-card,
    .newsletter-box {
        padding: 1.4rem;
    }

    .quote-form,
    .contact-form,
    .card-form,
    .newsletter-form,
    .dashboard-stats,
    .plans-grid,
    .policy-grid,
    .editor-grid,
    .editor-inline,
    .quick-links-grid,
    .section-action-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .quote-form__wide,
    .contact-form__wide,
    .card-form__wide,
    .editor-card--wide {
        grid-column: auto;
    }

    .newsletter-box,
    .auth-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer__inner,
    .dashboard-footer__main {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand {
        padding: 1.35rem;
    }

    .footer-column {
        padding: 1rem;
    }

    .sidebar {
        position: static;
        height: auto;
    }

    .dashboard-header,
    .dashboard-footer {
        position: static;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .floating-whatsapp {
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .offer-popup__card,
    .offer-popup-preview {
        padding: 1.3rem;
    }
}

.editor-help {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.site-footer {
    padding: 3.2rem 0 2.35rem;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--footer-accent) 22%, transparent), transparent 32%),
        linear-gradient(180deg, var(--footer-bg), color-mix(in srgb, var(--footer-bg) 82%, #090d16));
    color: var(--footer-text);
}

.site-footer__wrap {
    display: grid;
    gap: 1.25rem;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.footer-column-card,
.footer-promo-card {
    border-radius: 26px;
    border: 1px solid color-mix(in srgb, var(--footer-text) 8%, transparent);
    box-shadow: 0 22px 48px rgba(5, 10, 20, 0.24);
}

.footer-column-card {
    padding: 1.45rem 1.4rem;
    background: linear-gradient(180deg, color-mix(in srgb, var(--footer-surface) 94%, white 6%), var(--footer-surface));
}

.footer-column-card h3 {
    margin: 0 0 1rem;
    color: var(--footer-text);
    font-size: 1.08rem;
}

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

.footer-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--footer-muted);
    line-height: 1.55;
}

.footer-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--footer-accent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--footer-accent) 18%, transparent);
}

.footer-country-badge {
    justify-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.78rem 1.05rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--footer-surface) 88%, white 12%);
    border: 1px solid color-mix(in srgb, var(--footer-text) 9%, transparent);
    color: var(--footer-text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-country-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0057b8, #ef4444);
}

.footer-promo-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--footer-card) 92%, white 8%), var(--footer-card));
}

.footer-promo__copy p {
    margin: 0;
    color: var(--footer-text);
    font-size: 1.02rem;
    line-height: 1.75;
}

.footer-promo__copy span {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--footer-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-promo__brand {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: end;
}

.footer-promo__brand .brand {
    justify-content: flex-end;
}

.footer-promo__brand .brand__logo {
    width: 96px;
    height: 96px;
    border-radius: 28px;
}

.footer-contact-stack {
    display: grid;
    gap: 0.6rem;
    justify-items: end;
}

.footer-contact-stack a {
    color: var(--footer-text);
    font-weight: 600;
}

.footer-social-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.footer-socials,
.footer-badges,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--footer-surface) 84%, white 16%);
    border: 1px solid color-mix(in srgb, var(--footer-text) 10%, transparent);
    color: var(--footer-text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: color-mix(in srgb, var(--footer-accent) 30%, var(--footer-surface));
    border-color: color-mix(in srgb, var(--footer-accent) 40%, transparent);
}

.footer-badges {
    justify-content: flex-end;
}

.footer-badge {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--footer-surface) 84%, white 16%);
    color: var(--footer-text);
    font-size: 0.84rem;
    font-weight: 600;
    border: 1px solid color-mix(in srgb, var(--footer-text) 7%, transparent);
}

.footer-legal {
    justify-content: center;
    row-gap: 0.65rem;
}

.footer-legal a {
    color: var(--footer-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover,
.footer-contact-stack a:hover {
    color: var(--footer-text);
}

.footer-bottom-note {
    margin: 0;
    text-align: center;
    color: var(--footer-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 64px;
    padding: 0.72rem 1rem 0.72rem 0.8rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #16c772, #129c5b);
}

.floating-whatsapp__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 46px;
    padding: 0 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.floating-whatsapp__text {
    display: grid;
    gap: 0.16rem;
}

.floating-whatsapp__text strong {
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.15;
}

.floating-whatsapp__text small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    line-height: 1.2;
}

@media (max-width: 1120px) {
    .site-footer__columns,
    .footer-social-row,
    .footer-promo-card {
        grid-template-columns: 1fr 1fr;
    }

    .footer-promo-card {
        grid-template-columns: 1fr;
    }

    .footer-promo__brand,
    .footer-contact-stack,
    .footer-badges {
        justify-items: start;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 2.5rem 0 2rem;
    }

    .site-footer__columns,
    .footer-social-row {
        grid-template-columns: 1fr;
    }

    .footer-country-badge,
    .footer-badges,
    .footer-legal {
        justify-content: flex-start;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
    }

    .floating-whatsapp {
        right: 0.85rem;
        bottom: 0.85rem;
        min-height: 58px;
        padding: 0.7rem 0.9rem 0.7rem 0.76rem;
        gap: 0.7rem;
    }

    .floating-whatsapp__badge {
        min-width: 46px;
        min-height: 42px;
        padding: 0 0.7rem;
    }

    .floating-whatsapp__text strong {
        font-size: 0.9rem;
    }

    .floating-whatsapp__text small {
        font-size: 0.72rem;
    }
}
