:root {
    --cream: #faf8f2;
    --cream-deep: #f1ecdf;
    --paper: #fffefa;
    --white: #ffffff;
    --ink: #253029;
    --muted: #747d76;
    --green: #4e8f61;
    --green-dark: #2f5e3b;
    --green-deep: #183d25;
    --green-soft: #e7f1e9;
    --amber: #d8a44b;
    --amber-soft: #fbf0d9;
    --purple: #8573a3;
    --border: #e8e3d8;
    --shadow: 0 24px 70px rgba(46, 66, 52, 0.1);
    --shadow-soft: 0 14px 38px rgba(46, 66, 52, 0.07);
}

* {
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

[id] {
    scroll-margin-top: 105px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

body,
button,
input {
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

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

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: #cfe5d4;
    color: var(--green-deep);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 10px;
    right: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--green-deep);
    color: white;
    transform: translateY(-160%);
    transition: transform 0.2s;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
    width: min(1180px, calc(100% - 48px));
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 12px 10px 10px;
    border: 1px solid rgba(226, 222, 212, 0.82);
    border-radius: 20px;
    background: rgba(255, 254, 250, 0.86);
    box-shadow: 0 12px 36px rgba(42, 59, 47, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.brand-symbol {
    width: 46px;
    height: 46px;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 13px;
    box-shadow: 0 7px 18px rgba(47, 94, 59, 0.22);
}

.brand-copy {
    display: block;
    min-width: 92px;
}

.brand-type {
    width: 88px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-type-text {
    width: auto;
    color: var(--green-800);
    font-size: clamp(1.42rem, 1.65vw, 1.82rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    color: #5c655e;
    font-size: 13px;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
    padding-block: 10px;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    width: 100%;
}

.site-header>.button {
    justify-self: end;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    border: 0;
    border-radius: 15px;
    background: var(--green-dark);
    color: white;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(47, 94, 59, 0.18);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--green-deep);
    box-shadow: 0 15px 30px rgba(47, 94, 59, 0.23);
}

.button span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.button:hover span {
    transform: translateX(-3px);
}

.button:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.button-small {
    min-height: 46px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: 12px;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 790px;
    padding: 145px 0 78px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(216, 164, 75, 0.11), transparent 24%),
        linear-gradient(180deg, #faf8f2 0%, #f8f6ef 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.33;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(71, 100, 78, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(71, 100, 78, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.orb-one {
    width: 390px;
    height: 390px;
    top: -170px;
    left: -110px;
    border: 1px solid rgba(216, 164, 75, 0.25);
}

.orb-two {
    width: 530px;
    height: 530px;
    right: -360px;
    bottom: -210px;
    border: 1px solid rgba(78, 143, 97, 0.16);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.18fr;
    gap: 48px;
    align-items: center;
}

.hero-copy {
    padding-top: 12px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.1px;
}

.eyebrow {
    padding: 6px 8px 6px 13px;
    border: 1px solid #dbe7dc;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
    padding: 4px 9px;
    border-radius: 99px;
    background: var(--green-soft);
}

.eyebrow i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber);
}

.hero h1 {
    max-width: 570px;
    margin: 24px 0 16px;
    font-size: clamp(47px, 4.35vw, 69px);
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: -3px;
}

.hero h1 span {
    position: relative;
    display: block;
    width: max-content;
    max-width: 100%;
    color: var(--green);
}

.hero h1 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 72%;
    height: 7px;
    border-radius: 50%;
    background: rgba(216, 164, 75, 0.3);
    transform: rotate(-1deg);
    filter: blur(0.4px);
}

.hero-copy>p {
    max-width: 535px;
    margin: 0;
    color: #687169;
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 31px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4f5952;
    font-size: 14px;
    font-weight: 700;
}

.play {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding-right: 2px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--green);
    font-size: 10px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.text-link:hover .play {
    transform: scale(1.08);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 32px;
}

.hero-proof>div {
    display: flex;
    flex-direction: column;
}

.hero-proof strong {
    color: var(--green-dark);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.hero-proof span {
    margin-top: 4px;
    color: #858b86;
    font-size: 11px;
    white-space: nowrap;
}

.hero-proof>i {
    width: 1px;
    height: 34px;
    background: var(--border);
}

.hero-product {
    position: relative;
    min-width: 0;
    perspective: 1200px;
    animation: rise-in 0.8s 0.15s both ease-out;
}

.hero-product::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 92%;
    height: 82%;
    top: 13%;
    right: 4%;
    border-radius: 50%;
    background: rgba(78, 143, 97, 0.14);
    filter: blur(55px);
}

.dashboard-shell {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 475px;
    overflow: hidden;
    border: 1px solid rgba(210, 215, 205, 0.88);
    border-radius: 24px;
    background: #f7f6f1;
    box-shadow:
        0 34px 80px rgba(38, 56, 43, 0.17),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    transform: rotateY(2deg) rotateX(1deg);
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px;
    border-left: 1px solid #ebe8df;
    background: white;
}

.dash-logo {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
    border-radius: 11px;
    margin-bottom: 28px;
    transform: scale(0.84);
}

.dash-nav {
    width: 31px;
    height: 7px;
    display: block;
    margin-bottom: 17px;
    border-radius: 5px;
    background: #e2e4df;
}

.dash-nav.short {
    width: 24px;
}

.dash-nav.active {
    height: 30px;
    margin-top: -8px;
    border-radius: 9px;
    background: var(--green-soft);
    box-shadow: 0 0 0 1px #d9e8dc inset;
}

.dash-avatar {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    margin-top: auto;
    border-radius: 10px;
    background: var(--amber-soft);
    color: #a9792c;
    font-size: 10px;
    font-weight: 800;
}

.dash-main {
    min-width: 0;
    padding: 22px;
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.dash-topbar div {
    display: flex;
    flex-direction: column;
}

.dash-topbar small {
    color: #9ca19c;
    font-size: 7px;
}

.dash-topbar strong {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 800;
}

.dash-search {
    width: 135px;
    height: 30px;
    display: flex;
    align-items: center;
    padding-inline: 12px;
    border: 1px solid #e5e3dc;
    border-radius: 9px;
    background: white;
    color: #b1b4b0;
    font-size: 7px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.dash-stats article {
    position: relative;
    min-height: 91px;
    display: flex;
    flex-direction: column;
    padding: 13px 48px 11px 11px;
    border: 1px solid #e7e4dc;
    border-radius: 13px;
    background: white;
    box-shadow: 0 6px 18px rgba(48, 62, 52, 0.035);
}

.stat-icon {
    position: absolute;
    top: 12px;
    right: 11px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 8px;
    font-weight: 900;
}

.stat-icon.amber {
    background: var(--amber-soft);
    color: #b3812d;
}

.stat-icon.purple {
    background: #eee9f3;
    color: var(--purple);
}

.dash-stats small {
    color: #929791;
    font-size: 7px;
}

.dash-stats strong {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.2;
}

.dash-stats em {
    margin-top: 5px;
    color: var(--green);
    font-size: 6px;
    font-style: normal;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 12px;
    margin-top: 12px;
}

.chart-card,
.games-card {
    min-width: 0;
    min-height: 264px;
    padding: 15px;
    border: 1px solid #e7e4dc;
    border-radius: 15px;
    background: white;
}

.chart-card header,
.games-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.chart-card header div {
    display: flex;
    flex-direction: column;
}

.chart-card header strong,
.games-card header strong {
    font-size: 9px;
}

.chart-card header small {
    color: #9ca09c;
    font-size: 6px;
}

.chart-card header span {
    padding: 3px 6px;
    border-radius: 5px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 6px;
    font-weight: 800;
}

.chart-area {
    height: 165px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 16px;
    padding: 0 4px 2px;
    border-bottom: 1px solid #e8e7e1;
    background: repeating-linear-gradient(to bottom,
            transparent 0,
            transparent 40px,
            #f0efeb 41px);
}

.chart-area i {
    position: relative;
    flex: 1;
    height: var(--bar-height);
    min-height: 12px;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #80ad89, var(--green));
    opacity: 0.82;
    transform-origin: bottom;
    animation: chart-grow 1s 0.4s both ease-out;
}

.chart-area i:nth-child(3n) {
    background: linear-gradient(180deg, #e0b96f, var(--amber));
    opacity: 0.55;
}

.chart-card footer {
    display: flex;
    justify-content: space-between;
    padding-top: 7px;
    color: #a1a49f;
    font-size: 6px;
}

.games-card header span {
    color: #a1a49f;
    font-size: 6px;
}

.game-row {
    display: grid;
    grid-template-columns: 20px 1fr 26px;
    gap: 8px;
    align-items: center;
    padding-block: 14px;
    border-bottom: 1px solid #f0eee9;
}

.game-row:last-child {
    border-bottom: 0;
}

.game-row>b {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #f0f4ef;
    color: var(--green);
    font-size: 7px;
}

.game-row div {
    min-width: 0;
}

.game-row strong {
    display: block;
    font-size: 8px;
}

.game-row i {
    height: 4px;
    display: block;
    margin-top: 6px;
    overflow: hidden;
    border-radius: 4px;
    background: #ecece7;
}

.game-row i em {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--green);
}

.game-row>span {
    color: #777f78;
    font-size: 7px;
    text-align: left;
}

.floating-note {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid rgba(220, 220, 213, 0.88);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 35px rgba(45, 65, 51, 0.14);
    backdrop-filter: blur(10px);
    animation: float 4s infinite ease-in-out;
}

.floating-note>span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--green-soft);
    color: var(--green);
    font-weight: 900;
}

.floating-note div {
    display: flex;
    flex-direction: column;
}

.floating-note small {
    color: #989d98;
    font-size: 6px;
}

.floating-note strong {
    margin-top: 2px;
    font-size: 9px;
}

.note-one {
    top: -29px;
    left: 30px;
}

.note-two {
    right: -34px;
    bottom: 40px;
    animation-delay: -1.6s;
}

.note-two>span {
    background: var(--amber-soft);
    color: #aa792a;
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: 0px;
}

.trust-grid {
    min-height: 136px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(47, 94, 59, 0.12);
    border-radius: 26px;
    background: rgba(255, 254, 250, 0.94);
    box-shadow: 0 24px 64px rgba(38, 61, 44, 0.12);
    backdrop-filter: blur(14px);
}

.trust-grid>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid rgba(47, 94, 59, 0.09);
    border-radius: 18px;
    background: #fffefa;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-grid>div:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 94, 59, 0.2);
    box-shadow: 0 14px 30px rgba(38, 61, 44, 0.08);
}

.trust-grid>div>span {
    width: 82px;
    height: 82px;
    display: block;
    flex: 0 0 82px;
    overflow: hidden;
    border: 1px solid rgba(47, 94, 59, 0.1);
    border-radius: 20px;
    background: #fffefa;
}

.trust-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.trust-grid p {
    margin: 0;
    color: #747d76;
    font-size: 12px;
    line-height: 1.8;
}

.trust-grid h3 {
    display: block;
    margin: 0 0 3px;
    color: var(--green-deep);
    font-size: 16px;
    line-height: 1.45;
}

.section {
    padding: 98px 0;
}

.section-heading {
    display: grid;
    /* grid-template-columns: 1fr 0.7fr; */
    /* gap: 56px; */
    align-items: end;
    margin-bottom: 38px;
}

.section-kicker {
    position: relative;
    padding-right: 28px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    position: absolute;
    right: 0;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--amber);
}

.section-heading h2,
.journey-head h2,
.product-copy h2,
.demo-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 3.5vw, 49px);
    line-height: 1.35;
    letter-spacing: -1.8px;
}

.section-heading>p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

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

.feature-card {
    position: relative;
    min-height: 190px;
    padding: 25px 25px 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 254, 250, 0.85);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    top: -58px;
    left: -58px;
    border-radius: 50%;
    border: 1px solid rgba(78, 143, 97, 0.1);
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: #d3ded3;
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    position: relative;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.44),
        0 7px 16px rgba(78, 143, 97, 0.11);
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.feature-icon i,
.feature-icon i::before,
.feature-icon i::after,
.feature-icon::before,
.feature-icon::after {
    box-sizing: border-box;
}

.feature-icon i {
    position: relative;
    display: block;
    color: inherit;
    font-style: normal;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        0 11px 22px rgba(55, 85, 63, 0.14);
}

.feature-icon.amber {
    background: var(--amber-soft);
    color: #ad7a29;
}

.feature-icon.purple {
    background: #eee9f3;
    color: var(--purple);
}

.feature-icon.blue {
    background: #e7eff2;
    color: #588098;
}

.feature-icon.mint {
    background: #e2f1ed;
    color: #4f887a;
}

.feature-icon.rose {
    background: #f4e9e6;
    color: #a86e62;
}

.icon-customers i {
    width: 9px;
    height: 9px;
    margin-top: -10px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-customers i::after {
    position: absolute;
    top: 11px;
    left: 50%;
    width: 20px;
    height: 11px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 3px 3px;
    content: "";
    transform: translateX(-50%);
}

.icon-customers::before {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 21px 0 0 currentColor;
    content: "";
    opacity: 0.72;
}

.icon-games i {
    width: 25px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 5px;
    transform: rotate(-6deg);
}

.icon-games i::before {
    position: absolute;
    inset: 3px;
    background:
        radial-gradient(circle at 18% 23%, currentColor 0 1.5px, transparent 1.8px),
        radial-gradient(circle at 82% 23%, currentColor 0 1.5px, transparent 1.8px),
        radial-gradient(circle at 50% 50%, currentColor 0 1.5px, transparent 1.8px),
        radial-gradient(circle at 18% 77%, currentColor 0 1.5px, transparent 1.8px),
        radial-gradient(circle at 82% 77%, currentColor 0 1.5px, transparent 1.8px);
    content: "";
}

.icon-message i {
    width: 26px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 7px;
}

.icon-message i::before {
    position: absolute;
    top: 7px;
    left: 6px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 5px 0 0 currentColor, 10px 0 0 currentColor;
    content: "";
}

.icon-message i::after {
    position: absolute;
    right: 3px;
    bottom: -5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    transform: skewY(-38deg);
    content: "";
}

.icon-tournament i {
    width: 16px;
    height: 15px;
    margin-top: -7px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.icon-tournament i::before {
    position: absolute;
    top: 1px;
    left: -7px;
    z-index: -1;
    width: 26px;
    height: 9px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    content: "";
}

.icon-tournament i::after {
    position: absolute;
    top: 14px;
    left: 5px;
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: currentColor;
    box-shadow: -4px 7px 0 1px currentColor;
    content: "";
}

.icon-branches i {
    width: 25px;
    height: 22px;
    background:
        linear-gradient(currentColor, currentColor) 50% 4px / 2px 12px no-repeat,
        linear-gradient(currentColor, currentColor) 50% 15px / 20px 2px no-repeat;
}

.icon-branches i::before {
    position: absolute;
    top: 0;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: -10px 16px 0 currentColor, 10px 16px 0 currentColor;
    content: "";
}

.icon-reports i {
    width: 26px;
    height: 23px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-radius: 0 0 0 3px;
}

.icon-reports i::before {
    position: absolute;
    bottom: 3px;
    left: 4px;
    width: 4px;
    height: 7px;
    border-radius: 2px 2px 0 0;
    background: currentColor;
    box-shadow: 6px -4px 0 currentColor, 12px -10px 0 currentColor;
    content: "";
    opacity: 0.86;
}

.icon-reports i::after {
    position: absolute;
    top: 2px;
    right: 1px;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
}

.feature-card h3 {
    margin: 18px 0 7px;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.feature-card a {
    position: absolute;
    right: 25px;
    bottom: 19px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
}

.feature-card a span {
    transition: transform 0.2s;
}

.feature-card a:hover span {
    transform: translateX(-4px);
}

.product-section {
    position: relative;
    overflow: hidden;
    background: var(--green-deep);
    color: white;
}

.product-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -440px;
    top: -250px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.product-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.3fr;
    gap: 58px;
    align-items: center;
}

.section-kicker.light {
    color: #a8c8af;
}

.product-copy h2 {
    font-size: clamp(36px, 3.6vw, 52px);
}

.product-copy>p {
    margin: 20px 0 0;
    color: #aebeb2;
    font-size: 15px;
    line-height: 2;
}

.product-copy ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.product-copy li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.product-copy li>span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: #a8d3b0;
    font-size: 10px;
}

.product-copy li div {
    display: flex;
    flex-direction: column;
}

.product-copy li strong {
    font-size: 14px;
}

.product-copy li small {
    margin-top: 3px;
    color: #8fa195;
    font-size: 12px;
    line-height: 1.8;
}

.product-stage {
    position: relative;
    min-width: 0;
}

.product-dashboard-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 23px;
    background: #f8f7f2;
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
    transform-origin: left center;
    box-shadow: 0 35px 90px rgba(6, 22, 11, 0.36);
}

.product-dashboard-frame::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 32%);
    content: "";
    pointer-events: none;
}

.product-dashboard-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.product-dashboard-frame figcaption {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(39, 75, 49, 0.12);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(24, 46, 30, 0.1);
    backdrop-filter: blur(8px);
}

.stage-glow {
    position: absolute;
    width: 75%;
    height: 70%;
    right: 12%;
    bottom: -10%;
    background: rgba(110, 174, 128, 0.18);
    filter: blur(70px);
}

.mini-insight {
    position: absolute;
    left: -30px;
    bottom: -26px;
    width: 230px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: 0 22px 45px rgba(8, 26, 13, 0.25);
}

.mini-insight small {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
}

.mini-insight strong {
    margin-top: 4px;
    font-size: 12px;
}

.mini-insight span {
    margin-top: 9px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
}

.journey-section {
    background: #f7f4ec;
}

.journey-head {
    max-width: 690px;
    margin: 0 auto 38px;
    text-align: center;
}

.journey-head .section-kicker {
    padding-inline: 28px 0;
}

.journey-head p {
    max-width: 580px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

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

.step-card {
    position: relative;
    min-height: 320px;
    padding: 20px 23px 25px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--paper);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 91, 58, 0.23);
    box-shadow: 0 18px 42px rgba(37, 64, 45, 0.09);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-top span {
    color: #a2a7a2;
    font-size: 11px;
    font-weight: 800;
}

.step-top i {
    position: absolute;
    z-index: 3;
    left: -31px;
    width: 45px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: var(--cream);
    color: var(--green);
    font-size: 13px;
    font-style: normal;
}

.step-visual {
    position: relative;
    height: 170px;
    margin: 16px 0 19px;
    overflow: hidden;
    border-radius: 17px;
    background: #e7ebe4;
}

.step-visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(18, 35, 24, 0.16), transparent 48%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%);
    content: "";
    pointer-events: none;
}

.step-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.step-card:first-child .step-visual img {
    object-position: 58% center;
}

.step-card:nth-child(2) .step-visual img {
    object-position: 52% center;
}

.step-card:last-child .step-visual img {
    object-position: 48% center;
}

.step-card:hover .step-visual img {
    transform: scale(1.035);
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.step-card>p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.quote-section {
    padding: 0 0 98px;
    background: #f7f4ec;
}

.quote-card {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 25px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.quote-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 55px;
}

.quote-mark {
    position: absolute;
    top: 18px;
    right: 28px;
    color: #dce9df;
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
}

blockquote {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.95;
    letter-spacing: -0.6px;
}

.quote-content cite {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.quote-person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.quote-person>span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--green-dark);
    color: white;
    font-size: 12px;
    font-weight: 900;
}

.quote-person p {
    margin: 0;
}

.quote-person strong,
.quote-person small {
    display: block;
}

.quote-person strong {
    font-size: 13px;
}

.quote-person small {
    color: var(--muted);
    font-size: 11px;
}

.quote-photo {
    position: relative;
    min-width: 0;
    min-height: 360px;
    margin: 0;
    overflow: hidden;
}

.quote-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 51, 27, 0.72));
}

.quote-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 62% center;
}

.quote-metric {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    max-width: 190px;
}

.quote-metric strong {
    color: white;
    font-size: 45px;
    line-height: 1.2;
}

.quote-metric span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.7;
}

.demo-section {
    padding: 82px 0;
}

.demo-card {
    position: relative;
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 54px;
    align-items: center;
    padding: 56px 62px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(27, 68, 38, 0.92), rgba(47, 94, 59, 0.96)),
        url("img/mohreban-table.webp") left center / cover no-repeat;
    color: white;
    box-shadow: 0 30px 70px rgba(35, 74, 45, 0.2);
}

.demo-pattern {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.pattern-one {
    width: 380px;
    height: 380px;
    top: -250px;
    right: -90px;
}

.pattern-two {
    width: 260px;
    height: 260px;
    bottom: -190px;
    left: -30px;
    border-color: rgba(216, 164, 75, 0.22);
}

.demo-copy,
.demo-form {
    position: relative;
    z-index: 2;
}

.demo-copy h2 {
    margin-top: 15px;
    font-size: clamp(33px, 3vw, 45px);
}

.demo-copy p {
    margin: 15px 0 0;
    color: #b5c6ba;
    font-size: 14px;
    line-height: 2;
}

.demo-form {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.demo-form label {
    display: block;
    margin-bottom: 8px;
    color: #d6e3d9;
    font-size: 12px;
    font-weight: 700;
}

.demo-form>div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.demo-form input {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding-inline: 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    outline: 0;
    background: rgba(16, 45, 24, 0.6);
    color: white;
    font-size: 13px;
    direction: rtl;
}

.demo-form input::placeholder {
    color: #7f9a86;
}

.demo-form input:focus {
    border-color: #90b798;
    box-shadow: 0 0 0 3px rgba(144, 183, 152, 0.14);
}

.button-light {
    min-height: 52px;
    padding-inline: 17px;
    background: var(--paper);
    color: var(--green-dark);
    box-shadow: none;
}

.button-light:hover {
    background: white;
    color: var(--green-deep);
}

.demo-form>small {
    display: block;
    margin-top: 10px;
    color: #8eaa95;
    font-size: 10px;
}

.form-status {
    min-height: 22px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.8;
}

.form-status:empty {
    display: none;
}

.form-status.is-success {
    color: #307744;
}

.form-status.is-error {
    color: #b84c45;
}

.demo-form .form-status {
    color: #b8c8bc;
}

.demo-form .form-status.is-success {
    color: #b9e8c5;
}

.demo-form .form-status.is-error {
    color: #ffd0cb;
}

.demo-modal {
    width: min(520px, calc(100% - 28px));
    max-height: calc(100dvh - 28px);
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 25px;
    outline: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: 0 35px 100px rgba(22, 47, 29, 0.28);
}

.demo-modal[open] {
    animation: modal-in 240ms ease-out both;
}

.demo-modal::backdrop {
    background: rgba(15, 32, 20, 0.62);
    backdrop-filter: blur(7px);
}

.success-modal {
    width: min(480px, calc(100% - 28px));
    max-height: calc(100dvh - 28px);
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 27px;
    outline: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: 0 38px 110px rgba(16, 42, 23, 0.32);
}

.success-modal[open] {
    animation: modal-in 260ms ease-out both;
}

.success-modal::backdrop {
    background: rgba(15, 32, 20, 0.68);
    backdrop-filter: blur(8px);
}

.success-card {
    position: relative;
    padding: 44px 38px 38px;
    overflow: hidden;
    border: 1px solid rgba(47, 94, 59, 0.13);
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% -8%, rgba(78, 143, 97, 0.18), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(216, 164, 75, 0.11), transparent 31%),
        var(--paper);
    text-align: center;
}

.success-card::before,
.success-card::after {
    position: absolute;
    width: 115px;
    height: 115px;
    border: 1px solid rgba(78, 143, 97, 0.1);
    border-radius: 50%;
    content: "";
}

.success-card::before {
    top: -76px;
    right: -45px;
}

.success-card::after {
    bottom: -82px;
    left: -53px;
    border-color: rgba(216, 164, 75, 0.14);
}

.success-mark {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border: 9px solid #e7f1e9;
    border-radius: 50%;
    background: var(--green);
    box-shadow:
        0 17px 35px rgba(49, 112, 67, 0.22),
        0 0 0 7px rgba(78, 143, 97, 0.08);
}

.success-mark::before {
    position: absolute;
    top: 20px;
    left: 27px;
    width: 17px;
    height: 31px;
    border-right: 5px solid white;
    border-bottom: 5px solid white;
    border-radius: 2px;
    content: "";
    transform: rotate(45deg);
}

.success-kicker {
    position: relative;
    z-index: 1;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.success-card h2 {
    position: relative;
    z-index: 1;
    margin: 6px 0 9px;
    font-size: 29px;
    letter-spacing: -0.9px;
}

.success-card p {
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.success-action {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 25px;
}

.modal-card {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(47, 94, 59, 0.12);
    border-radius: inherit;
    background:
        radial-gradient(circle at 5% 0%, rgba(216, 164, 75, 0.12), transparent 29%),
        radial-gradient(circle at 95% 100%, rgba(78, 143, 97, 0.12), transparent 30%),
        var(--paper);
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: #737b75;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
    border-color: #cbd8cd;
    color: var(--green-dark);
    transform: rotate(5deg);
}

.modal-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 42px;
}

.modal-heading img {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 15px;
    box-shadow: 0 9px 24px rgba(47, 94, 59, 0.19);
}

.modal-heading span {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.modal-heading h2 {
    margin: 3px 0 0;
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.modal-intro {
    margin: 17px 0 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.95;
}

.modal-form {
    display: grid;
    gap: 14px;
}

.modal-form label {
    display: grid;
    gap: 7px;
    color: #4e5951;
    font-size: 12px;
    font-weight: 800;
}

.modal-form input {
    width: 100%;
    height: 52px;
    padding-inline: 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: 0;
    background: white;
    color: var(--ink);
    font-size: 13px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.modal-form input::placeholder {
    color: #a0a6a1;
}

.modal-form input:focus {
    border-color: #88ad90;
    box-shadow: 0 0 0 4px rgba(78, 143, 97, 0.11);
}

.demo-form input[type="tel"],
.modal-form input[type="tel"] {
    direction: ltr;
    text-align: right;
}

.modal-submit {
    width: 100%;
    margin-top: 2px;
}

.modal-form .form-status {
    margin: -2px 0 0;
}

.modal-form>small {
    color: #8b948d;
    font-size: 10px;
    text-align: center;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

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

.site-footer {
    padding: 30px 0 24px;
    border-top: 1px solid var(--border);
    background: #f6f3eb;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 27px;
}

.footer-main nav {
    display: flex;
    gap: 28px;
    color: #737b74;
    font-size: 12px;
    font-weight: 700;
}

.back-top {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--paper);
    color: var(--green-dark);
    font-size: 17px;
    transition: transform 0.2s;
}

.back-top:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: #989d98;
    font-size: 10px;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes chart-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@media (max-width: 1080px) {
    .hero {
        min-height: auto;
        padding-bottom: 82px;
    }

    .hero-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(44px, 5vw, 61px);
    }

    .dashboard-shell {
        min-height: 430px;
    }

    .dash-main {
        padding: 16px;
    }

    .dash-stats article {
        padding-right: 40px;
    }

    .note-two {
        right: -10px;
    }

    .product-layout {
        gap: 44px;
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .site-header>.button {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
        justify-self: end;
    }

    .mobile-menu summary {
        width: 43px;
        height: 43px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: white;
        list-style: none;
        cursor: pointer;
    }

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

    .mobile-menu summary span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--green-dark);
    }

    .mobile-menu nav {
        position: absolute;
        top: 51px;
        left: 0;
        width: 200px;
        display: flex;
        flex-direction: column;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .mobile-menu nav a {
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
    }

    .mobile-menu nav a:hover {
        background: var(--green-soft);
        color: var(--green-dark);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-copy {
        max-width: 650px;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1 {
        margin-inline: auto;
        font-size: clamp(49px, 8vw, 68px);
    }

    .hero h1 span {
        margin-inline: auto;
    }

    .hero-copy>p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-product {
        width: min(720px, 100%);
        margin-inline: auto;
    }

    .trust-grid>div {
        padding-inline: 14px;
    }

    .section-heading {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .section-kicker::after {
        content: "";
        position: absolute;
        right: 107%;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--amber);
    }

    .section-heading>p {
        max-width: 600px;
    }

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

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-copy {
        max-width: 650px;
        text-align: center;
    }
    .product-copy li>span{
        display: none;
    }
    .step-card{

    }

    .product-stage {
        margin-top: 20px;
    }

    .steps-grid {
        gap: 11px;
    }

    .step-card {
        padding-inline: 18px;
    }

    .quote-card {
        grid-template-columns: 1fr 0.85fr;
    }

    .demo-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

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

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 63px;
        border-radius: 17px;
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
    }

    .brand-type {
        width: 78px;
    }

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

    .hero {
        padding: 112px 0 70px;
    }

    .hero-grid {
        gap: 45px;
    }

    .eyebrow {
        font-size: 9px;
    }

    .hero h1 {
        margin-top: 22px;
        font-size: clamp(36px, 10.5vw, 46px);
        line-height: 1.38;
        letter-spacing: -1.7px;
    }

    .hero h1 span {
        width: auto;
    }

    .hero-copy>p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-proof>i {
        display: none;
    }

    .hero-proof strong {
        font-size: 14px;
    }

    .hero-proof span {
        white-space: normal;
        font-size: 9px;
    }

    .dashboard-shell {
        grid-template-columns: 44px 1fr;
        min-height: 350px;
        border-radius: 17px;
        transform: none;
    }

    .dash-sidebar {
        padding: 10px 6px;
    }

    .dash-logo {
        width: 29px;
        height: 29px;
        margin-bottom: 17px;
    }

    .dash-nav {
        width: 22px;
        height: 5px;
        margin-bottom: 12px;
    }

    .dash-nav.active {
        height: 23px;
    }

    .dash-main {
        padding: 11px;
    }

    .dash-search {
        display: none;
    }

    .dash-stats {
        gap: 5px;
    }

    .dash-stats article {
        min-height: 68px;
        padding: 9px 28px 7px 5px;
        border-radius: 9px;
    }

    .stat-icon {
        top: 8px;
        right: 6px;
        width: 18px;
        height: 18px;
        border-radius: 5px;
        font-size: 6px;
    }

    .dash-stats small,
    .dash-stats em {
        font-size: 5px;
    }

    .dash-stats strong {
        font-size: 11px;
    }

    .dash-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 6px;
    }

    .chart-card {
        min-height: 185px;
        padding: 10px;
    }

    .chart-area {
        height: 100px;
        gap: 3px;
        margin-top: 10px;
    }

    .demo-copy{
        text-align: center;
    }

    .chart-area i {
        max-height: calc(var(--bar-height) * 0.65);
    }

    .games-card {
        display: none;
    }

    .floating-note {
        display: none;
    }

    .trust-strip {
        margin-top: -28px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
        border-radius: 21px;
    }

    .trust-grid>div {
        min-height: 88px;
        justify-content: flex-start;
        gap: 13px;
        padding: 10px 12px;
        border: 1px solid rgba(47, 94, 59, 0.09);
        border-radius: 15px;
    }

    .trust-grid>div>span {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
        border-radius: 15px;
    }

    .trust-grid h3 {
        font-size: 14px;
    }

    .trust-grid p {
        font-size: 11px;
        line-height: 1.65;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .journey-head h2,
    .product-copy h2,
    .demo-copy h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

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

    .feature-card {
        /* min-height: 245px; */
    }

    .product-copy li {
        display: block;
    }

    .product-section {
        padding-bottom: 94px;
    }

    .product-dashboard-frame {
        aspect-ratio: 1.25;
        transform: none;
    }

    .product-dashboard-frame img {
        position: absolute;
        top: 0;
        right: 0;
        width: auto;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: right top;
    }

    .mini-insight {
        left: 12px;
        bottom: -44px;
        width: 205px;
    }

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

    .step-top i {
        display: none;
    }

    .step-card {
        min-height: 0;
    }

    .step-visual {
        height: clamp(190px, 56vw, 235px);
    }

    .quote-section {
        padding-bottom: 72px;
    }

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

    .quote-content {
        padding: 45px 27px 34px;
    }

    .quote-photo {
        min-height: 280px;
    }

    blockquote {
        font-size: 20px;
    }

    .quote-metric {
        right: 20px;
        bottom: 18px;
    }

    .demo-section {
        padding: 60px 0;
    }

    .demo-card {
        padding: 48px 23px;
        border-radius: 22px;
    }

    .demo-form {
        padding: 15px;
    }

    .demo-form>div {
        grid-template-columns: 1fr;
    }

    .modal-card {
        padding: 28px 20px 24px;
    }

    .success-card {
        padding: 38px 22px 25px;
    }

    .success-mark {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
    }

    .success-mark::before {
        top: 17px;
        left: 24px;
    }

    .success-card h2 {
        font-size: 25px;
    }

    .modal-heading {
        align-items: flex-start;
        padding-left: 36px;
    }

    .modal-heading img {
        width: 46px;
        height: 46px;
    }

    .modal-heading h2 {
        font-size: 20px;
    }

    .modal-close {
        top: 14px;
        left: 14px;
    }

    .footer-main {
        grid-template-columns: 1fr auto;
        row-gap: 25px;
    }

    .footer-main nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: space-between;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hero — واضح از همان نگاه اول: CRM تخصصی کافه‌های بردگیم */
.material-symbols-rounded {
    direction: ltr;
    display: inline-block;
    font-family: "Material Symbols Rounded";
    font-style: normal;
    font-weight: 400;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
    letter-spacing: normal;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.hero {
    min-height: 760px;
    padding: 120px 0 68px;
    background:
        radial-gradient(circle at 15% 42%, rgba(216, 164, 75, 0.13), transparent 31%),
        linear-gradient(180deg, #fbf8f1 0%, #faf8f2 100%);
}

.hero::before {
    opacity: 0.18;
    background-size: 82px 82px;
}

.hero-grid {
    grid-template-columns: minmax(500px, 1fr) minmax(0, 1.05fr);
    gap: 36px;
    min-height: 555px;
}

.hero-copy {
    position: relative;
    z-index: 5;
    padding-top: 0;
}

.hero .eyebrow {
    gap: 10px;
    padding: 7px 14px;
    border-color: rgba(74, 123, 87, 0.28);
    background: rgba(255, 254, 250, 0.76);
    color: var(--green-dark);
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.hero .eyebrow span {
    padding: 0;
    background: transparent;
}

.hero .eyebrow i {
    width: 7px;
    height: 7px;
    order: -1;
    box-shadow: 0 0 0 4px rgba(216, 164, 75, 0.1);
}

.hero h1 {
    max-width: 570px;
    margin: 22px 0 15px;
    color: #163723;
    font-size: clamp(49px, 4.25vw, 59px);
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: -2.8px;
}

.hero h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #163723;
}

.hero h1 span::after {
    right: 2%;
    bottom: -1px;
    width: 82%;
    height: 5px;
    background: rgba(239, 176, 68, 0.45);
    filter: none;
}

.hero-copy>p {
    max-width: 480px;
    color: #687069;
    font-size: 16.5px;
    font-weight: 500;
    line-height: 2.05;
}

.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.hero-capabilities article {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 8px;
    border: 1px solid rgba(74, 123, 87, 0.3);
    border-radius: 16px;
    background: rgba(255, 254, 250, 0.7);
    color: var(--green-dark);
    box-shadow: 0 9px 24px rgba(45, 68, 51, 0.035);
    backdrop-filter: blur(9px);
}

.hero-capabilities article.featured {
    border-color: rgba(216, 164, 75, 0.45);
    color: #aa7722;
}

.hero-capabilities .material-symbols-rounded {
    font-size: 39px;
}

.hero-capabilities strong {
    color: #5f675f;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-actions {
    justify-content: flex-start;
    margin-top: 24px;
}

.hero-actions .button {
    min-width: 260px;
    min-height: 60px;
    border-radius: 17px;
    font-size: 15px;
    box-shadow: 0 18px 34px rgba(47, 94, 59, 0.2);
}

.hero-showcase {
    position: relative;
    min-width: 0;
    height: 545px;
    animation: rise-in 0.8s 0.15s both ease-out;
}

.hero-cafe-image,
.hero-cafe-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.hero-cafe-image {
    display: block;
    object-fit: cover;
    object-position: 62% center;
    filter: saturate(0.82) sepia(0.08);
    mask-image: linear-gradient(to right, #000 0%, #000 69%, transparent 100%);
}

.hero-cafe-shade {
    background:
        linear-gradient(90deg, rgba(247, 240, 224, 0.02) 0%, rgba(250, 248, 242, 0.08) 60%, #faf8f2 100%),
        linear-gradient(180deg, rgba(250, 248, 242, 0.12), rgba(48, 65, 50, 0.06));
    pointer-events: none;
}

.hero-dashboard-frame {
    position: absolute;
    z-index: 2;
    top: 55px;
    left: -9px;
    width: calc(100% - 24px);
    height: 420px;
    overflow: hidden;
    border: 1px solid rgba(218, 217, 209, 0.95);
    border-radius: 24px;
    background: #f8f7f2;
    box-shadow:
        0 34px 72px rgba(31, 48, 36, 0.2),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero-dashboard-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 85% top;
}

.hero-metric {
    position: absolute;
    z-index: 4;
    min-width: 139px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(224, 221, 212, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(42, 59, 47, 0.15);
    backdrop-filter: blur(12px);
}

.hero-metric .material-symbols-rounded {
    width: 41px;
    height: 41px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 25px;
}

.hero-metric div {
    display: flex;
    flex-direction: column;
}

.hero-metric small {
    color: #858c86;
    font-size: 9px;
}

.hero-metric strong {
    margin-top: 2px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-return-metric {
    top: 31px;
    left: 6px;
}

.hero-score-metric {
    right: 18px;
    bottom: 22px;
}

.hero-score-metric .material-symbols-rounded {
    background: var(--amber-soft);
    color: var(--amber);
}

@media (max-width: 1080px) {
    .hero {
        min-height: 710px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: minmax(440px, 0.98fr) minmax(0, 1.02fr);
        gap: 28px;
        min-height: 510px;
    }

    .hero h1 {
        font-size: clamp(45px, 4.8vw, 54px);
    }

    .hero-capabilities {
        gap: 8px;
    }

    .hero-capabilities article {
        min-height: 96px;
    }

    .hero-capabilities strong {
        font-size: 11px;
    }

    .hero-showcase {
        height: 500px;
    }

    .hero-dashboard-frame {
        top: 95px;
        height: 330px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 122px 0 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-copy {
        max-width: 660px;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1,
    .hero h1 span,
    .hero-copy>p {
        margin-inline: auto;
    }

    .hero-capabilities {
        max-width: 500px;
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-showcase {
        width: min(720px, 100%);
        height: 500px;
        margin-inline: auto;
    }

    .hero-dashboard-frame {
        width: calc(100% - 32px);
        left: 16px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding: 106px 0 62px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero .eyebrow {
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero h1 {
        max-width: 430px;
        margin-top: 17px;
        font-size: clamp(36px, 10.2vw, 45px);
        line-height: 1.38;
        letter-spacing: -1.8px;
    }

    .hero h1 span {
        width: auto;
        white-space: normal;
    }

    .hero-copy>p {
        max-width: 470px;
        font-size: 15px;
        line-height: 1.95;
    }

    .hero-capabilities {
        gap: 7px;
        margin-top: 20px;
    }

    .hero-capabilities article {
        min-height: 91px;
        gap: 9px;
        padding: 10px 4px;
        border-radius: 14px;
    }

    .hero-capabilities .material-symbols-rounded {
        font-size: 31px;
    }

    .hero-capabilities strong {
        font-size: 10px;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-actions .button {
        min-height: 57px;
    }

    .hero-showcase {
        height: 365px;
    }

    .hero-cafe-image,
    .hero-cafe-shade {
        border-radius: 22px;
    }

    .hero-dashboard-frame {
        top: 72px;
        left: 10px;
        width: calc(100% - 20px);
        height: 238px;
        border-radius: 17px;
    }

    .hero-metric {
        min-width: 112px;
        gap: 7px;
        padding: 9px 10px;
        border-radius: 13px;
    }

    .hero-metric .material-symbols-rounded {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: 20px;
    }

    .hero-metric small {
        font-size: 7px;
    }

    .hero-metric strong {
        font-size: 12px;
    }

    .hero-return-metric {
        top: 50px;
        left: 4px;
    }

    .hero-score-metric {
        right: 7px;
        bottom: 20px;
    }
}

/* بازسازی دقیق نمای مرجع — نسبت پایه 1672 × 941 */
.site-header {
    top: clamp(18px, 1.62vw, 27px);
    width: min(1580px, calc(100% - clamp(48px, 5.74vw, 96px)));
    min-height: clamp(70px, 5.62vw, 94px);
    padding: clamp(10px, 0.84vw, 14px) clamp(12px, 1.44vw, 24px);
    border-radius: clamp(20px, 1.68vw, 28px);
    box-shadow: 0 15px 42px rgba(42, 59, 47, 0.1);
}

.site-header .brand {
    gap: clamp(12px, 0.9vw, 15px);
}

.site-header .brand-symbol {
    width: clamp(46px, 3.35vw, 56px);
    height: clamp(46px, 3.35vw, 56px);
    border-radius: clamp(13px, 1.02vw, 17px);
}

.site-header .brand-type {
    width: clamp(88px, 6.9vw, 116px);
}

.site-header .brand-type-text,
.site-footer .brand-type-text {
    width: auto;
}

.site-header .brand small {
    margin-top: 2px;
    font-size: clamp(10px, 0.72vw, 12px);
}

.site-header .desktop-nav {
    gap: clamp(35px, 3.3vw, 55px);
    font-size: clamp(13px, 0.96vw, 16px);
}

.site-header>.button {
    min-width: clamp(137px, 11.6vw, 194px);
    min-height: clamp(46px, 3.7vw, 62px);
    border-radius: clamp(13px, 1.08vw, 18px);
    font-size: clamp(12px, 0.96vw, 16px);
}

.reference-hero {
    min-height: max(720px, 100svh);
    padding: 0;
    overflow: hidden;
    background: var(--cream);
}

.reference-hero::before {
    display: none;
}

.reference-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 0 auto;
    width: 100%;
    pointer-events: none;
    /* background: linear-gradient(90deg, rgba(250, 248, 242, 0) 18%, rgba(250, 248, 242, 0.9) 83%, #faf8f2 109%, #faf8f2 100%); */
}

.hero-background-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) brightness(1.035);
    -webkit-mask-image: linear-gradient(to bottom,
            #000 0%,
            #000 72%,
            rgba(0, 0, 0, 0.85) 82%,
            rgba(0, 0, 0, 0.35) 93%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            #000 0%,
            #000 72%,
            rgba(0, 0, 0, 0.85) 82%,
            rgba(0, 0, 0, 0.35) 93%,
            transparent 100%);
}

.reference-hero .hero-grid {
    z-index: 2;
    width: min(1576px, calc(100% - clamp(48px, 5.74vw, 96px)));
    min-height: max(720px, 100svh);
    grid-template-columns: minmax(0, clamp(498px, 38.9vw, 650px)) minmax(0, 1fr);
    gap: clamp(26px, 2.03vw, 34px);
    align-items: start;
    padding-top: clamp(125px, 9.85vw, 165px);
}

.reference-hero .hero-copy {
    z-index: 5;
    width: 100%;
    padding: 0;
    text-align: right;
}

.reference-hero .eyebrow {
    min-height: clamp(35px, 2.5vw, 42px);
    margin-right: 0;
    margin-left: auto;
    padding: clamp(7px, 0.66vw, 11px) clamp(14px, 1.26vw, 21px);
    border-color: rgba(66, 106, 76, 0.28);
    background: rgba(255, 254, 250, 0.72);
    font-size: clamp(12px, 0.84vw, 14px);
}

.reference-hero .eyebrow i {
    width: clamp(7px, 0.54vw, 9px);
    height: clamp(7px, 0.54vw, 9px);
}

.reference-hero h1 {
    max-width: none;
    margin: clamp(9px, 0.66vw, 11px) 0 clamp(17px, 1.32vw, 22px);
    color: #173d27;
    font-size: clamp(42px, 3.23vw, 54px);
    font-weight: 900;
    line-height: 1.48;
    letter-spacing: clamp(-2.6px, -0.16vw, -2px);
    text-align: right;
}

.reference-hero h1 span {
    width: max-content;
    margin-right: 0;
    margin-left: auto;
    padding-bottom: clamp(2px, 0.24vw, 4px);
    border-bottom: clamp(3px, 0.3vw, 5px) solid rgba(235, 174, 72, 0.48);
    color: #173d27;
}

.reference-hero h1 span::after {
    display: none;
}

.reference-hero .hero-copy>p {
    max-width: clamp(405px, 27.5vw, 460px);
    margin-right: 0;
    margin-left: auto;
    color: #414441;
    font-size: clamp(14px, 1.02vw, 17px);
    font-weight: 500;
    line-height: 2;
    text-align: right;
}

.reference-hero .hero-capabilities {
    width: max-content;
    grid-template-columns: repeat(3, clamp(108px, 8.13vw, 136px));
    gap: clamp(14px, 1.08vw, 18px);
    margin: clamp(21px, 1.68vw, 28px) auto 0;
    transform: translateX(clamp(36px, 3vw, 50px));
}

.reference-hero .hero-capabilities article {
    min-height: clamp(94px, 7.06vw, 118px);
    gap: clamp(7px, 0.6vw, 10px);
    padding: clamp(9px, 0.72vw, 12px) 7px;
    border-radius: clamp(14px, 1.14vw, 19px);
    background: rgba(255, 254, 250, 0.62);
    box-shadow: none;
}

.reference-hero .hero-capabilities .capability-icon {
    width: clamp(50px, 3.47vw, 58px);
    height: clamp(50px, 3.47vw, 58px);
    display: block;
    flex: 0 0 auto;
    border-radius: clamp(12px, 0.96vw, 16px);
    object-fit: cover;
    /* box-shadow: 0 6px 16px rgba(37, 67, 45, 0.06); */
}

.reference-hero .hero-capabilities i {
    color: #2f6843;
    font-size: clamp(40px, 3.11vw, 52px);
    line-height: 1;
}

.reference-hero .hero-capabilities .icon-pair {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    color: #b47e20;
}

.reference-hero .hero-capabilities .icon-pair i {
    font-size: clamp(31px, 2.39vw, 40px);
}

.reference-hero .hero-capabilities article.featured i {
    color: #b47e20;
}

.reference-hero .hero-capabilities strong {
    color: #626762;
    font-size: clamp(10px, 0.81vw, 13.5px);
    font-weight: 600;
}

.reference-hero .hero-actions {
    justify-content: center;
    margin-top: clamp(22px, 1.8vw, 30px);
    transform: translateX(clamp(36px, 3vw, 50px));
}

.reference-hero .hero-actions .button {
    width: clamp(238px, 17.94vw, 300px);
    min-height: clamp(56px, 4.07vw, 68px);
    border-radius: clamp(17px, 1.26vw, 21px);
    font-size: clamp(14px, 1.02vw, 17px);
    box-shadow: 0 20px 38px rgba(47, 94, 59, 0.2);
}

.reference-hero .hero-showcase {
    width: 100%;
    height: clamp(552px, 43.1vw, 720px);
    margin: 0;
}

.reference-hero .hero-dashboard-frame {
    top: clamp(26px, 2.03vw, 34px);
    left: clamp(70px, 5.5vw, 92px);
    width: clamp(603px, 47.13vw, 788px);
    height: clamp(468px, 36.6vw, 612px);
    border-radius: clamp(20px, 1.56vw, 26px);
    box-shadow: 0 35px 76px rgba(38, 54, 42, 0.2);
}

.reference-hero .hero-dashboard-image {
    object-position: 88% top;
}

.reference-hero .hero-metric {
    min-width: 0;
    gap: clamp(9px, 0.72vw, 12px);
    padding: clamp(11px, 0.9vw, 15px) clamp(12px, 1.02vw, 17px);
    border-radius: clamp(14px, 1.08vw, 18px);
}

.reference-hero .hero-metric i {
    width: clamp(40px, 3.1vw, 52px);
    height: clamp(40px, 3.1vw, 52px);
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: clamp(10px, 0.78vw, 13px);
    background: var(--green-soft);
    color: var(--green);
    font-size: clamp(24px, 1.8vw, 30px);
}

.reference-hero .hero-metric small {
    font-size: clamp(8px, 0.6vw, 10px);
}

.reference-hero .hero-metric strong {
    font-size: clamp(14px, 1.08vw, 18px);
}

.reference-hero .hero-return-metric {
    top: clamp(7px, 0.54vw, 9px);
    left: clamp(86px, 6.7vw, 112px);
    width: clamp(135px, 10.53vw, 176px);
    min-height: clamp(63px, 4.9vw, 82px);
}

.reference-hero .hero-score-metric {
    right: clamp(-10px, -0.6vw, -8px);
    bottom: clamp(84px, 6.58vw, 110px);
    width: clamp(110px, 7.42vw, 124px);
    min-height: clamp(54px, 3.9vw, 65px);
    gap: 8px;
    padding: clamp(8px, 0.6vw, 10px) clamp(10px, 0.72vw, 12px);
}

.reference-hero .hero-score-metric i {
    width: clamp(32px, 2.15vw, 36px);
    height: clamp(32px, 2.15vw, 36px);
    background: var(--amber-soft);
    color: var(--amber);
    font-size: clamp(19px, 1.32vw, 22px);
}

@media (max-width: 900px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 63px;
        padding: 9px 11px;
        border-radius: 17px;
    }

    .reference-hero {
        min-height: auto;
        padding: 106px 0 60px;
    }

    .reference-hero::after {
        display: none;
    }

    .hero-background-image {
        top: 0;
        bottom: 0;
        height: 80vh;
        object-position: left bottom;
        opacity: 0.4;
        filter: saturate(0.88) brightness(1.035);
        /*opacity: 0.3;
    */
        -webkit-filter: saturate(0.88) brightness(1.035);
        -webkit-filter: saturate(0.88) brightness(1.035);
    }

    .reference-hero .hero-grid {
        width: min(100% - 28px, 620px);
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 0;
    }

    .reference-hero .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .reference-hero .eyebrow {
        min-height: 34px;
        padding: 6px 11px;
        font-size: 11px;
        margin-inline: auto;
    }

    .reference-hero h1 {
        max-width: 430px;
        margin: 17px auto 12px;
        font-size: clamp(32px, 8.8vw, 39px);
        line-height: 1.38;
        letter-spacing: -1.8px;
        transform: none;
        text-align: center;
    }

    .reference-hero h1 span {
        width: auto;
        margin-inline: auto;
    }

    .reference-hero .hero-copy>p {
        max-width: 470px;
        font-size: 14px;
        line-height: 1.95;
        margin-inline: auto;
        text-align: center;
    }

    .reference-hero .hero-capabilities {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 20px;
        transform: none;
    }

    .reference-hero .hero-capabilities article {
        min-height: 84px;
        gap: 7px;
        padding: 8px 4px;
        border-radius: 14px;
    }

    .reference-hero .hero-capabilities .capability-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .reference-hero .hero-capabilities i {
        font-size: 30px;
    }

    .reference-hero .hero-capabilities strong {
        font-size: 9.5px;
    }

    .reference-hero .hero-actions {
        margin-top: 20px;
        transform: none;
    }

    .reference-hero .hero-actions .button {
        width: 100%;
        min-height: 55px;
        font-size: 14px;
    }

    .reference-hero .hero-showcase {
        width: 100%;
        height: 365px;
        display: none;
    }

    .reference-hero .hero-dashboard-frame {
        top: 70px;
        left: 10px;
        width: calc(100% - 20px);
        height: 240px;
        border-radius: 17px;
    }

    .reference-hero .hero-return-metric {
        top: 49px;
        left: 4px;
        width: auto;
        min-height: 0;
    }

    .reference-hero .hero-score-metric {
        right: 7px;
        bottom: 20px;
        width: auto;
        min-height: 0;
    }

    .reference-hero .hero-metric i {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: 20px;
    }

    .reference-hero .hero-metric small {
        font-size: 7px;
    }

    .reference-hero .hero-metric strong {
        font-size: 12px;
    }
}
