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

    html {
        scroll-behavior: smooth;
    }

    :root {
        --gold: #c9963a;
        --gold2: #e0ae4a;
        --gold-soft: #f5e8ca;
        --gold-dim: rgba(201, 150, 58, 0.15);
        --gold-border: rgba(201, 150, 58, 0.25);
        --bg: #ffffff;
        --bg2: #f7f5f0;
        --bg3: #efece6;
        --ink: #0f0e0d;
        --ink2: #201f1e;
        --ink3: #312519;
        --line: rgba(0, 0, 0, 0.07);
        --line2: rgba(0, 0, 0, 0.12);
    }

    body {
        font-family: "IBM Plex Sans Arabic", sans-serif;
        background: var(--bg);
        color: var(--ink);
        overflow-x: hidden;
    }

    /* ===========================
         NAV
         =========================== */

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .logo-gem {
        width: 38px;
        height: 38px;
        background: var(--gold);
        border-radius: 9px;
        display: grid;
        place-items: center;
        font-size: 18px;
        color: #ffffff;
        flex-shrink: 0;
        font-weight: 700;
    }

    .logo-text {
        font-size: 17px;
        font-weight: 500;
        color: var(--ink);
        letter-spacing: 0.01em;
    }

    .logo-sub {
        font-size: 11px;
        color: var(--ink3);
        margin-top: 1px;
    }

    nav {
        padding: 18px 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        border-bottom: 1px solid var(--line);
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(16px);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: space-between;
    }

    nav ul {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: 14px;
        color: var(--ink2);
        text-decoration: none;
        transition: 0.25s;
        white-space: nowrap;
    }

    nav ul li a:hover {
        color: var(--gold);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .nav-cta {
        padding: 10px 20px;
        border: 1px solid var(--gold-border);
        border-radius: 10px;
        color: #8a6420;
        text-decoration: none;
        font-size: 14px;
        background: white;
        transition: 0.25s;
        white-space: nowrap;
        cursor: pointer;
    }

    .nav-cta:hover {
        background: var(--gold);
        color: white;
    }

    .nav-main-btn {
        background: var(--gold);
        color: white;
    }

    .nav-main-btn:hover {
        background: var(--gold2);
    }

    .nav-ham {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
        z-index: 1200;
    }

    .nav-ham span {
        width: 24px;
        height: 2px;
        background: var(--ink);
        border-radius: 20px;
        transition: 0.3s;
    }

    /* animation */
    .nav-ham.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-ham.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-ham.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ===========================
         HERO
         =========================== */
    .hero {
        padding: 110px 72px 90px;
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 72px;
        align-items: center;
        max-width: 1240px;
        margin: 0 auto;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
        animation: fadeUp 0.7s 0.1s both;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--gold);
        display: block;
    }

    .hero-title {
        font-size: 62px;
        font-weight: 300;
        line-height: 1.08;
        letter-spacing: -0.025em;
        margin-bottom: 24px;
        animation: fadeUp 0.7s 0.2s both;
    }

    .hero-title em {
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
        font-family: "Playfair Display", serif;
    }

    .hero-desc {
        font-size: 18px;
        line-height: 1.85;
        color: var(--ink2);
        max-width: 500px;
        margin-bottom: 38px;
        font-weight: 300;
        animation: fadeUp 0.7s 0.3s both;
    }

    .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        animation: fadeUp 0.7s 0.4s both;
    }

    .btn-primary {
        padding: 14px 30px;
        background: var(--gold);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary:hover {
        background: var(--gold2);
    }

    .btn-ghost {
        padding: 14px 30px;
        border: 1px solid var(--line2);
        color: var(--ink);
        border-radius: 10px;
        font-size: 15px;
        cursor: pointer;
        font-family: inherit;
        background: transparent;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-ghost:hover {
        border-color: var(--ink2);
    }

    .hero-card {
        background: #ffffff;
        border: 1px solid var(--gold-border);
        border-radius: 20px;
        padding: 30px;
        animation: fadeUp 0.7s 0.3s both;
    }

    .hc-label {
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(201, 150, 58, 0.5);
        margin-bottom: 20px;
    }

    .hc-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hc-item {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

    .hc-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hc-val {
        font-size: 38px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: -0.03em;
        line-height: 1;
        font-family: "Playfair Display", serif;
    }

    .hc-lbl {
        font-size: 14px;
        color: var(--ink3);
        margin-top: 5px;
    }

    .hero-trust {
        margin-top: 36px;
        display: flex;
        align-items: center;
        gap: 16px;
        animation: fadeUp 0.7s 0.5s both;
    }

    .trust-faces {
        display: flex;
    }

    .trust-face {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #efece6;
        border: 2px solid #ffffff;
        display: grid;
        place-items: center;
        font-size: 14px;
        margin-right: -8px;
        color: var(--gold);
    }

    .trust-text {
        font-size: 15px;
        color: var(--ink3);
    }

    .trust-text strong {
        color: var(--gold);
        font-weight: 500;
    }

    /* ===========================
         SLIDER (TESTIMONIALS)
         =========================== */
    .slider-section {
        padding: 90px 0;
        background: #f7f5f0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .slider-inner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 72px;
    }

    .sec-eyebrow {
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sec-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
        display: block;
    }

    .sec-title {
        font-size: 38px;
        font-weight: 300;
        margin-bottom: 48px;
        letter-spacing: -0.02em;
        max-width: 480px;
        line-height: 1.2;
    }

    .sec-title em {
        font-style: italic;
        font-family: "Playfair Display", serif;
        color: var(--gold);
    }

    .slider-track-wrap {
        overflow: hidden;
        position: relative;
    }

    .slider-track {
        display: flex;
        gap: 24px;
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 18px;
        padding: 32px;
        min-width: 360px;
        flex-shrink: 0;
    }

    .slide-stars {
        color: var(--gold);
        font-size: 14px;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .slide-quote {
        font-size: 15px;
        line-height: 1.75;
        color: var(--ink2);
        font-weight: 300;
        margin-bottom: 24px;
        font-style: italic;
        font-family: "Playfair Display", serif;
    }

    .slide-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .slide-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--gold-dim);
        border: 1px solid var(--gold-border);
        display: grid;
        place-items: center;
        font-size: 14px;
        color: var(--gold);
        flex-shrink: 0;
    }

    .slide-name {
        font-size: 14px;
        font-weight: 500;
    }

    .slide-role {
        font-size: 14px;
        color: var(--ink3);
        margin-top: 2px;
    }

    .slider-controls {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
    }

    .sl-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--line2);
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: all 0.2s;
        font-size: 16px;
    }

    .sl-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .sl-dots {
        display: flex;
        gap: 8px;
    }

    .sl-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--line2);
        transition: all 0.3s;
        cursor: pointer;
    }

    .sl-dot.active {
        width: 20px;
        border-radius: 3px;
        background: var(--gold);
    }

    /* ===========================
         HOW IT WORKS
         =========================== */
    .steps-section {
        padding: 100px 72px;
        max-width: 1240px;
        margin: 0 auto;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 60px;
        position: relative;
    }

    .steps-grid::before {
        content: "";
        position: absolute;
        top: 32px;
        right: 10%;
        left: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold-border), transparent);
    }

    .step-card {
        padding: 0 20px;
        text-align: center;
        position: relative;
    }

    .step-num-wrap {
        margin-bottom: 24px;
        display: flex;
        justify-content: center;
    }

    .step-num {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 1px solid var(--gold-border);
        background: #ffffff;
        display: grid;
        place-items: center;
        font-size: 22px;
        font-weight: 300;
        color: var(--gold);
        font-family: "Playfair Display", serif;
        position: relative;
        z-index: 1;
    }

    .step-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 1px solid var(--gold-border);
        background: #fdf4e3;
        display: grid;
        place-items: center;
        font-size: 24px;
        position: relative;
        z-index: 1;
    }

    .step-title {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        color: var(--ink);
    }

    .step-desc {
        font-size: 15px;
        line-height: 1.7;
        color: var(--ink3);
        font-weight: 300;
    }

    .step-role {
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
    }

    /* ===========================
         WHY US
         =========================== */
    .why-section {
        padding: 100px 72px;
        background: #f7f5f0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .why-inner {
        max-width: 1240px;
        margin: 0 auto;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 60px;
    }

    .why-left {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .why-item {
        padding: 24px 0;
        border-bottom: 1px solid var(--line);
        display: flex;
        gap: 20px;
        align-items: flex-start;
        transition: all 0.25s;
        cursor: default;
    }

    .why-item:first-child {
        padding-top: 0;
    }

    .why-item:last-child {
        border-bottom: none;
    }

    .why-item:hover .why-icon-wrap {
        border-color: rgba(201, 150, 58, 0.5);
        background: rgba(201, 150, 58, 0.12);
    }

    .why-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #efece6;
        display: grid;
        place-items: center;
        font-size: 20px;
        flex-shrink: 0;
        transition: all 0.25s;
    }

    .why-title {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 7px;
    }

    .why-desc {
        font-size: 14px;
        line-height: 1.75;
        color: var(--ink2);
        font-weight: 300;
    }

    .why-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .why-big-card {
        background: #ffffff;
        border: 1px solid var(--gold-border);
        border-radius: 20px;
        padding: 36px;
        text-align: center;
    }

    .wbc-num {
        font-size: 72px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: -0.04em;
        line-height: 1;
        font-family: "Playfair Display", serif;
    }

    .wbc-lbl {
        font-size: 15px;
        color: var(--ink3);
        margin-top: 8px;
    }

    .why-small-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .wsc {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        padding: 22px;
        text-align: center;
    }

    .wsc-val {
        font-size: 36px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: -0.03em;
        font-family: "Playfair Display", serif;
        line-height: 1;
    }

    .wsc-lbl {
        font-size: 14px;
        color: var(--ink3);
        margin-top: 6px;
    }

    .why-compare {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        padding: 22px;
    }

    .wc-title {
        font-size: 14px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--ink3);
        margin-bottom: 14px;
    }

    .wc-row {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
        padding: 8px 0;
        border-bottom: 1px solid var(--line);
    }

    .wc-row:last-child {
        border-bottom: none;
    }

    .wc-label {
        color: var(--ink3);
    }

    .wc-bad {
        color: #e05252;
    }

    .wc-good {
        color: var(--gold);
    }

    /* ===========================
         3 STEPS CTA
         =========================== */
    .cta3-section {
        padding: 100px 72px;
        max-width: 1240px;
        margin: 0 auto;
    }

    .cta3-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 60px;
        counter-reset: step;
    }

    .cta3-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 36px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.25s;
    }

    .cta3-card:hover {
        border-color: var(--gold-border);
    }

    .cta3-card::before {
        counter-increment: step;
        content: counter(step, "0" counter(step));
        position: absolute;
        top: 24px;
        left: 28px;
        font-size: 72px;
        font-weight: 300;
        color: rgba(201, 150, 58, 0.07);
        font-family: "Playfair Display", serif;
        line-height: 1;
        pointer-events: none;
    }

    .cta3-step {
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
    }

    .cta3-icon {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta3-title {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }

    .cta3-desc {
        font-size: 14px;
        line-height: 1.75;
        color: var(--ink2);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .cta3-action {
        font-size: 15px;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .cta3-final {
        margin-top: 56px;
        background: #fdf8ee;
        border: 1px solid var(--gold-border);
        border-radius: 24px;
        padding: 56px;
        text-align: center;
    }

    .cf-eyebrow {
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .cf-title {
        font-size: 48px;
        font-weight: 300;
        letter-spacing: -0.025em;
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .cf-title em {
        font-style: italic;
        font-family: "Playfair Display", serif;
        color: var(--gold);
    }

    .cf-desc {
        font-size: 18px;
        color: var(--ink2);
        margin-bottom: 36px;
        font-weight: 300;
        line-height: 1.7;
    }

    .cf-price {
        display: inline-flex;
        align-items: baseline;
        gap: 8px;
        background: var(--gold-dim);
        border: 1px solid var(--gold-border);
        border-radius: 14px;
        padding: 14px 28px;
        margin-bottom: 32px;
    }

    .cf-price-num {
        font-size: 44px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: -0.03em;
        font-family: "Playfair Display", serif;
        line-height: 1;
    }

    .cf-price-unit {
        font-size: 14px;
        color: rgba(201, 150, 58, 0.6);
    }

    .cf-note {
        font-size: 15px;
        color: var(--ink3);
        margin-top: 20px;
    }

    /* ===========================
         FAQ
         =========================== */
    .faq-section {
        padding: 100px 72px;
        background: #f7f5f0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .faq-inner {
        max-width: 1240px;
        margin: 0 auto;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 80px;
        margin-top: 60px;
    }

    .faq-left h3 {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: -0.02em;
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .faq-left h3 em {
        font-style: italic;
        font-family: "Playfair Display", serif;
        color: var(--gold);
    }

    .faq-left p {
        font-size: 15px;
        color: var(--ink2);
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 28px;
    }

    .faq-contact {
        border: 1px solid var(--gold-border);
        border-radius: 12px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fdf8ee;
    }

    .faq-contact-icon {
        font-size: 24px;
    }

    .faq-contact-title {
        font-size: 14px;
        font-weight: 500;
    }

    .faq-contact-sub {
        font-size: 14px;
        color: var(--ink3);
        margin-top: 2px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .faq-item {
        border-bottom: 1px solid var(--line);
    }

    .faq-item:first-child {
        border-top: 1px solid var(--line);
    }

    .faq-q {
        padding: 22px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
        transition: color 0.2s;
        gap: 16px;
        user-select: none;
    }

    .faq-q:hover {
        color: var(--gold);
    }

    .faq-arrow {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid var(--line2);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        transition: all 0.3s;
        font-size: 13px;
    }

    .faq-item.open .faq-arrow {
        border-color: var(--gold);
        color: var(--gold);
        transform: rotate(45deg);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.4s ease,
            padding 0.3s;
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        padding-bottom: 22px;
    }

    .faq-a p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--ink2);
        font-weight: 300;
    }

    /* ===========================
         FOOTER
         =========================== */
    footer {
        background: var(--bg);
        border-top: 1px solid var(--line);
        padding: 64px 72px 36px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 80px;
        padding-bottom: 56px;
        border-bottom: 1px solid var(--line);
    }

    .footer-brand .logo {
        margin-bottom: 16px;
    }

    .footer-brand p {
        font-size: 14px;
        color: var(--ink3);
        line-height: 1.75;
        font-weight: 300;
        max-width: 240px;
    }

    .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 24px;
    }

    .soc-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        display: grid;
        place-items: center;
        font-size: 14px;
        color: #9a9590;
        transition: all 0.2s;
        cursor: pointer;
        text-decoration: none;
    }

    .soc-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .footer-cols {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .footer-col h4 {
        font-size: 14px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--ink3);
        margin-bottom: 20px;
        font-weight: 500;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        font-size: 14px;
        color: var(--ink2);
        text-decoration: none;
        transition: color 0.2s;
        font-weight: 300;
    }

    .footer-col ul li a:hover {
        color: var(--gold);
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 28px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 15px;
        color: var(--ink3);
    }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    .footer-bottom-links a {
        font-size: 15px;
        color: #9a9590;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
        color: var(--gold);
    }

    .footer-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold-dim);
        border: 1px solid var(--gold-border);
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 15px;
        color: var(--gold);
        margin-top: 16px;
    }

    /* ===========================
         ANIMATIONS & SHARED
         =========================== */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(22px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity 0.7s ease,
            transform 0.7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 1100px) {

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 88%;
            height: 100vh;

            background: #fff;

            padding: 90px 20px 24px;

            flex-direction: column;

            align-items: stretch;
            justify-content: flex-start;

            overflow-y: auto;

            border-left: 1px solid var(--line);

            z-index: 999;

            transition: right .35s ease;
        }

        .nav-menu.active {
            right: 0 !important;
        }

        .nav-ham {
            display: flex;
        }

        nav ul {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
            width: 100%;
        }

        nav ul li {
            width: 100%;
        }

        nav ul li a {
            display: block;
            width: 100%;
            padding: 14px;
            background: #f7f5f0;
            border-radius: 12px;
        }

        .nav-actions {
            flex-direction: column;
            width: 100%;
            margin-top: 10px;
        }

        .nav-actions a,
        .nav-actions form,
        .nav-actions button {
            width: 100%;
        }

        .hero {
            grid-template-columns: 1fr;
            padding: 60px 24px;
            gap: 40px;
        }

        .hero-card {
            display: none;
        }

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

        .steps-section,
        .why-section,
        .cta3-section,
        .faq-section,
        footer {
            padding: 60px 24px;
        }

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

        .steps-grid::before {
            display: none;
        }

        .why-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

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

        .faq-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

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

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

        .slider-inner {
            padding: 0 24px;
        }

        .slide-card {
            min-width: 300px;
        }
    }