/* =========================================================================
   PEAK Landing Page
   =========================================================================
   The public page (product introduction, pricing, registration request).
   Independent from the dashboard stylesheets: it only reuses the brand
   palette, whose source of truth is assets/backend/css/peak-design.css.

   Direction: written with logical properties (margin-inline, padding-inline,
   inset-inline, border-inline) so Arabic (RTL) and English (LTR) share one
   implementation. No physical left/right rule below.
   ========================================================================= */

:root {
    /* Brand palette, identical to the dashboard design system */
    --peak-navy: #12284c;
    --peak-navy-700: #1b3763;
    --peak-blue: #1b75bc;
    --peak-blue-600: #1668a8;
    --peak-blue-050: #eaf3fb;
    --peak-green: #56a544;
    --peak-green-050: #eef7ec;

    /* Neutrals */
    --peak-white: #ffffff;
    --peak-page: #f4f6fa;
    --peak-soft: #f7fafd;
    --peak-line: #e8ecf3;
    --peak-text: #3a4250;
    --peak-text-strong: #1f2733;
    --peak-muted: #7b8698;

    /* Shape & depth */
    --peak-radius: 12px;
    --peak-radius-lg: 20px;
    --peak-shadow: 0 18px 50px rgba(18, 40, 76, .09);
    --peak-shadow-sm: 0 8px 25px rgba(18, 40, 76, .05);

    /* Layout */
    --peak-container: 1180px;

    /* Type: Latin faces for LTR, Cairo for Arabic (see [dir="rtl"] below) */
    --peak-font: "Poppins", "Lato", "Segoe UI", Tahoma, sans-serif;
}

/* -------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.peak-landing {
    margin: 0;
    font-family: var(--peak-font);
    color: var(--peak-text);
    background: var(--peak-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body.peak-landing {
    font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

.peak-landing a {
    text-decoration: none;
    color: inherit;
}

.peak-landing button,
.peak-landing input,
.peak-landing select,
.peak-landing textarea {
    font: inherit;
}

.peak-landing button {
    cursor: pointer;
}

.peak-landing img {
    max-width: 100%;
}

.container {
    width: min(var(--peak-container), calc(100% - 40px));
    margin-inline: auto;
}

.container.narrow {
    max-width: 850px;
}

/* Accessible skip target for keyboard users. */
.skip-link {
    position: absolute;
    inset-inline-start: -9999px;
    top: 0;
    z-index: 100;
    background: var(--peak-navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 var(--peak-radius) var(--peak-radius);
}

.skip-link:focus {
    inset-inline-start: 12px;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--peak-radius);
    padding: 13px 22px;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
}

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

.btn-sm {
    padding: 10px 16px;
}

.btn-primary {
    background: var(--peak-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(27, 117, 188, .2);
}

.btn-primary:hover {
    background: var(--peak-blue-600);
}

.btn-light {
    background: #fff;
    color: var(--peak-navy);
    border: 1px solid var(--peak-line);
}

.btn-white {
    background: #fff;
    color: var(--peak-navy);
}

.btn .btn-arrow {
    display: inline-block;
}

/* The arrow always points the way the text reads. */
[dir="rtl"] .btn .btn-arrow {
    transform: scaleX(-1);
}

.full {
    width: 100%;
}

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 236, 243, .8);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    margin-inline-end: auto;
}

.brand img {
    width: 76px;
    height: 62px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 27px;
    font-size: 14px;
    color: #566275;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--peak-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: auto;
}

.nav-actions .lang,
.nav-actions .login {
    border: 0;
    background: transparent;
    color: #536176;
    font-size: 13px;
    padding: 8px;
}

.nav-actions .lang {
    font-weight: 700;
}

.menu-btn {
    display: none;
    background: transparent;
    border: 0;
    font-size: 25px;
    line-height: 1;
    color: var(--peak-navy);
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9fe 0, #fff 100%);
    padding: 90px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--peak-blue);
    font-weight: 800;
    font-size: 12px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--peak-green);
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    margin: 18px 0 20px;
    color: var(--peak-navy);
}

.hero h1 strong,
.section-head strong,
.register-copy strong {
    color: var(--peak-blue);
}

.hero p {
    font-size: 17px;
    color: var(--peak-muted);
    max-width: 570px;
    margin: 0 0 28px;
}

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #667286;
    font-size: 13px;
}

.hero-note b {
    color: var(--peak-green);
}

.check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: var(--peak-green-050);
    color: var(--peak-green);
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .45;
    pointer-events: none;
}

.glow-one {
    width: 340px;
    height: 340px;
    background: #dff0ff;
    inset-inline-end: -130px;
    top: 50px;
}

.glow-two {
    width: 250px;
    height: 250px;
    background: #e5f7df;
    inset-inline-start: -100px;
    bottom: 0;
}

/* -------------------------------------------------------------------------
   Hero visual: dashboard preview
   ------------------------------------------------------------------------- */
.hero-visual {
    position: relative;
}

.dash-window {
    background: #fff;
    border: 1px solid #e2e9f2;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(18, 40, 76, .15);
    overflow: hidden;
}

.dash-top {
    min-height: 44px;
    background: var(--peak-soft);
    border-bottom: 1px solid var(--peak-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 17px;
    color: #8792a3;
    font-size: 10px;
}

.dots {
    display: flex;
    gap: 5px;
}

.dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e2;
}

.dash-body {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 355px;
}

.mini-side {
    background: var(--peak-navy);
    padding: 15px 11px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.mini-side img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 10px;
}

.mini-side div {
    height: 8px;
    width: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
}

.mini-side .mini-active {
    background: var(--peak-green);
    width: 38px;
}

.mini-main {
    padding: 22px;
    background: var(--peak-soft);
}

.mini-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mini-title span {
    font-weight: 800;
    font-size: 15px;
    color: var(--peak-navy);
}

.mini-title small {
    color: #9aa5b4;
    font-size: 9px;
}

.mini-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.mini-kpis div,
.mini-chart,
.mini-row {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: var(--peak-radius);
}

.mini-kpis div {
    padding: 11px;
}

.mini-kpis b {
    display: block;
    font-size: 16px;
    color: var(--peak-navy);
}

.mini-kpis span {
    font-size: 8px;
    color: #8995a6;
}

.mini-chart {
    margin-top: 10px;
    height: 150px;
    padding: 11px;
}

.chart-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
    color: var(--peak-navy);
}

.chart-head span {
    color: #a0a9b6;
}

.bars {
    height: 105px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 12px 4px 2px;
}

.bars i {
    display: block;
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(to top, var(--peak-green), #7bc86a);
    min-height: 18px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 13px;
    font-size: 9px;
}

.mini-row b {
    color: var(--peak-blue);
}

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--peak-line);
    border-radius: 14px;
    box-shadow: var(--peak-shadow);
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.float-card b {
    display: block;
    color: var(--peak-navy);
    font-size: 12px;
}

.float-card small {
    color: #93a0b1;
    font-size: 9px;
}

.float-icon {
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.float-icon.green {
    background: var(--peak-green-050);
    color: var(--peak-green);
}

.float-icon.blue {
    background: var(--peak-blue-050);
    color: var(--peak-blue);
}

.fc-one {
    bottom: 28px;
    inset-inline-start: -22px;
}

.fc-two {
    top: 30px;
    inset-inline-end: -18px;
}

/* -------------------------------------------------------------------------
   Trust bar
   ------------------------------------------------------------------------- */
.trust {
    border-top: 1px solid var(--peak-line);
    border-bottom: 1px solid var(--peak-line);
    background: #fff;
}

.trust-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #7c8798;
    font-size: 13px;
}

.trust-inner div {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: #9aa4b3;
    font-size: 12px;
}

/* -------------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section.soft {
    background: var(--peak-page);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head.centered {
    text-align: center;
    margin-inline: auto;
}

.section-head h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 14px 0 12px;
    color: var(--peak-navy);
}

.section-head p {
    color: var(--peak-muted);
    margin: 0;
    font-size: 15px;
}

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

.feature-card {
    background: #fff;
    border: 1px solid var(--peak-line);
    border-radius: var(--peak-radius-lg);
    padding: 25px;
    transition: .25s;
    box-shadow: var(--peak-shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--peak-shadow);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 16px;
}

.blue-bg {
    background: var(--peak-blue-050);
    color: var(--peak-blue);
}

.green-bg {
    background: var(--peak-green-050);
    color: var(--peak-green);
}

.feature-card h3 {
    font-size: 16px;
    margin: 0 0 7px;
    color: var(--peak-navy);
}

.feature-card p {
    font-size: 13px;
    color: var(--peak-muted);
    margin: 0;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr;
    align-items: center;
}

.step {
    text-align: center;
}

.step-no {
    width: 62px;
    height: 62px;
    margin: 0 auto 17px;
    border-radius: 18px;
    background: var(--peak-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(18, 40, 76, .13);
}

.step:last-of-type .step-no {
    background: var(--peak-green);
}

.step h3 {
    font-size: 17px;
    color: var(--peak-navy);
    margin: 0 0 7px;
}

.step p {
    font-size: 13px;
    color: var(--peak-muted);
    margin: 0;
}

.step-line {
    height: 1px;
    background: #cfd9e5;
}

/* -------------------------------------------------------------------------
   Pricing
   ------------------------------------------------------------------------- */
.pricing-section {
    background: #fbfcfe;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--peak-line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--peak-shadow-sm);
}

.price-card.popular {
    border: 2px solid var(--peak-blue);
    box-shadow: 0 18px 45px rgba(27, 117, 188, .13);
}

.popular-tag {
    position: absolute;
    top: -13px;
    inset-inline-end: 25px;
    background: var(--peak-blue);
    color: #fff;
    border-radius: 30px;
    padding: 4px 13px;
    font-size: 11px;
    font-weight: 800;
}

.price-top span {
    display: block;
    font-size: 21px;
    font-weight: 900;
    color: var(--peak-navy);
}

.price-top small {
    color: #8a95a6;
    font-size: 12px;
}

.price {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 7px;
    margin: 25px 0;
}

.price b {
    font-size: 34px;
    line-height: 1.2;
    color: var(--peak-navy);
}

.price span {
    font-size: 12px;
    color: #8a95a6;
    padding-bottom: 3px;
}

.price.custom b {
    font-size: 28px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.price-card li {
    font-size: 13px;
    color: #667286;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f6;
}

.price-card li::before {
    content: "\2713";
    color: var(--peak-green);
    font-weight: 900;
    margin-inline-end: 8px;
}

.price-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.price-limits span {
    background: var(--peak-page);
    border: 1px solid var(--peak-line);
    border-radius: 30px;
    padding: 4px 11px;
    font-size: 11px;
    color: #667286;
}

.free-offer {
    margin-top: 24px;
    background: linear-gradient(110deg, var(--peak-navy), var(--peak-navy-700));
    border-radius: 22px;
    padding: 25px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.free-offer > div {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.offer-badge {
    border: 1px dashed rgba(255, 255, 255, .55);
    padding: 8px 14px;
    border-radius: var(--peak-radius);
    color: #a7e692;
    font-weight: 900;
    letter-spacing: 1px;
}

.free-offer h3 {
    margin: 0;
    font-size: 22px;
}

.free-offer p {
    margin: 2px 0 0;
    color: #cad7e5;
    font-size: 13px;
}

.free-offer p b {
    color: #a7e692;
}

/* -------------------------------------------------------------------------
   Registration request
   ------------------------------------------------------------------------- */
.register-section {
    background: #f3f8fc;
}

.register-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.register-copy h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--peak-navy);
    margin: 15px 0;
}

.register-copy p {
    color: var(--peak-muted);
    font-size: 15px;
}

.register-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 25px;
    color: #566275;
    font-size: 13px;
}

.register-points span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-form {
    background: #fff;
    border: 1px solid var(--peak-line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--peak-shadow);
}

.form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-head h3 {
    margin: 0;
    color: var(--peak-navy);
    font-size: 21px;
}

.form-head span {
    font-size: 11px;
    color: var(--peak-green);
    background: var(--peak-green-050);
    padding: 5px 10px;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.register-form label {
    display: block;
    font-size: 12px;
    color: #536176;
    font-weight: 700;
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #dfe6ef;
    border-radius: 11px;
    padding: 11px 13px;
    background: #fbfcfe;
    outline: none;
    color: var(--peak-text);
    font-size: 13px;
    transition: .2s;
}

.register-form textarea {
    resize: vertical;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    border-color: #8fc9ee;
    box-shadow: 0 0 0 3px rgba(27, 117, 188, .08);
}

.register-form .is-invalid {
    border-color: #d0474b;
}

.field-error {
    display: block;
    margin-top: 5px;
    color: #d0474b;
    font-size: 11px;
    font-weight: 600;
}

.full-field {
    grid-column: 1 / -1;
}

.promo-field {
    display: flex;
    align-items: end;
    gap: 10px;
}

.promo-field label {
    flex: 1;
}

.promo-field .btn {
    white-space: nowrap;
}

.promo-hint {
    min-height: 25px;
    font-size: 12px;
    font-weight: 700;
    color: var(--peak-green);
}

.promo-hint.is-invalid {
    color: #d0474b;
}

.form-foot {
    text-align: center;
    color: #9aa4b2;
    font-size: 11px;
    margin: 10px 0 0;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
}

.form-alert.is-success {
    background: var(--peak-green-050);
    color: #327d29;
}

.form-alert.is-warning {
    background: #fdf4e6;
    color: #96601a;
}

.form-alert.is-danger {
    background: #fdecec;
    color: #a5363a;
}

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq-section {
    background: #fff;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq details {
    background: #fff;
    border: 1px solid var(--peak-line);
    border-radius: 14px;
    padding-inline: 20px;
}

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    padding: 17px 0;
    font-weight: 800;
    color: var(--peak-navy);
    font-size: 14px;
}

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

.faq summary::after {
    content: "+";
    color: var(--peak-blue);
    font-size: 20px;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "\2212";
}

.faq p {
    color: var(--peak-muted);
    font-size: 13px;
    margin: 0 0 18px;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.landing-footer {
    background: var(--peak-navy);
    color: #d5dfeb;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-grid img {
    width: 92px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 5px;
}

.footer-grid p {
    max-width: 350px;
    color: #aebdcd;
    font-size: 12px;
}

.footer-grid h4 {
    color: #fff;
    margin: 5px 0 13px;
    font-size: 13px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    color: #aebdcd;
    font-size: 12px;
    margin: 7px 0;
}

.footer-grid a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 35px;
    padding-top: 17px;
    color: #91a4b8;
    font-size: 11px;
}

/* -------------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1050px) {
    .nav-links {
        gap: 15px;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero h1 {
        font-size: 42px;
    }

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

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

    .fc-one {
        inset-inline-start: 5px;
    }

    .fc-two {
        inset-inline-end: 5px;
    }
}

@media (max-width: 800px) {
    .nav-inner {
        min-height: 70px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        inset-inline: 20px;
        background: #fff;
        border: 1px solid var(--peak-line);
        border-radius: 15px;
        padding: 12px;
        box-shadow: var(--peak-shadow);
        flex-direction: column;
        gap: 4px;
    }

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

    .nav-links a {
        padding: 9px;
    }

    .nav-actions .login,
    .nav-actions .lang {
        display: none;
    }

    .hero {
        padding: 65px 0;
    }

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

    .hero-visual {
        margin-top: 30px;
    }

    .trust-inner {
        flex-direction: column;
        justify-content: center;
        padding: 18px;
        text-align: center;
    }

    .trust-inner div {
        justify-content: center;
    }

    .section {
        padding: 70px 0;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-line {
        display: none;
    }

    .free-offer {
        flex-direction: column;
        align-items: stretch;
    }

    .free-offer .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--peak-container), calc(100% - 28px));
    }

    .brand img {
        width: 62px;
        height: 52px;
    }

    .nav-inner {
        gap: 10px;
    }

    .nav-actions .btn {
        padding: 9px 12px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-actions .btn {
        flex: 1;
    }

    .dash-body {
        grid-template-columns: 45px 1fr;
        min-height: 270px;
    }

    .mini-side {
        padding: 10px 7px;
    }

    .mini-side img {
        width: 31px;
        height: 31px;
    }

    .mini-main {
        padding: 13px;
    }

    .mini-kpis {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .mini-chart {
        height: 120px;
    }

    .bars {
        height: 75px;
        gap: 6px;
    }

    .float-card {
        display: none;
    }

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

    .section-head h2,
    .register-copy h2 {
        font-size: 27px;
    }

    .form-grid,
    .promo-field {
        grid-template-columns: 1fr;
        display: grid;
    }

    .full-field {
        grid-column: auto;
    }

    .register-form,
    .price-card {
        padding: 22px;
    }

    .free-offer {
        padding: 22px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .feature-card {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
