:root {
    --bg: #f5f3ee;
    --surface: #ffffff;
    --surface-soft: #fbfaf7;
    --surface-dark: #101a31;
    --surface-deep: #0b1326;
    --ink: #132034;
    --ink-soft: #526174;
    --ink-muted: #708197;
    --line: rgba(17, 28, 48, 0.1);
    --line-strong: rgba(17, 28, 48, 0.18);
    --brand: #c79334;
    --brand-deep: #a9781f;
    --navy: #15284c;
    --teal: #1f7f83;
    --bronze: #8f6844;
    --success: #256b47;
    --warning: #8f641d;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow-sm: 0 10px 30px rgba(8, 15, 30, 0.08);
    --shadow-md: 0 22px 60px rgba(8, 15, 30, 0.12);
    --shadow-lg: 0 40px 100px rgba(8, 15, 30, 0.18);
    --font-en: "Manrope", "Segoe UI", sans-serif;
    --font-ar: "Cairo", "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(199, 147, 52, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(31, 127, 131, 0.06), transparent 30%),
        var(--bg);
    color: var(--ink);
    font-family: var(--font-en);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.rtl {
    font-family: var(--font-ar);
}

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

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

.site-shell {
    min-height: 100vh;
}

.site-main {
    overflow: clip;
}

.section-block {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    position: relative;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92));
}

.section-heading {
    max-width: 840px;
    margin-bottom: 2.4rem;
}

.section-heading.narrow {
    max-width: 720px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(199, 147, 52, 0.24);
    background: rgba(199, 147, 52, 0.08);
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.page-hero-shell h1,
.cta-band-shell h2 {
    margin: 1rem 0 0.9rem;
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--surface-deep);
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 6vw, 5.3rem);
}

.section-heading h2,
.page-hero-shell h1,
.cta-band-shell h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p,
.hero-summary,
.page-hero-copy,
.cta-band-shell p,
.value-card p,
.overview-card p,
.feature-group p,
.screenshot-copy p,
.lead-sidebar-card p,
.lead-form-card p,
.asset-card p,
.pricing-card p,
.callout-banner span {
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.95rem 1.4rem;
    border-width: 1px;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(12, 20, 36, 0.16);
}

.btn-brand {
    background: linear-gradient(135deg, #d4a247, #b27e27);
    border-color: transparent;
    color: #fff7ea;
}

.btn-brand:hover,
.btn-brand:focus-visible {
    background: linear-gradient(135deg, #dda94b, #ba8328);
    color: #fffdf7;
}

.btn-outline-brand {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(19, 32, 52, 0.18);
    color: var(--ink);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
    border-color: rgba(19, 32, 52, 0.32);
    background: #ffffff;
    color: var(--surface-deep);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--navy);
}

.text-link::after {
    content: "↗";
    font-size: 0.95rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0 0;
    transition: padding 180ms ease;
}

.site-header.is-scrolled {
    padding-top: 0.35rem;
}

.site-nav-shell {
    min-height: 78px;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(10, 17, 31, 0.08);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--ink-muted);
    font-size: 0.82rem;
    margin-top: 0.12rem;
}

.nav-link {
    color: var(--ink-soft);
    font-weight: 700;
    padding: 0.65rem 0.95rem !important;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--surface-deep);
    background: rgba(21, 40, 76, 0.07);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-left: 1.1rem;
}

body.rtl .nav-actions {
    margin-left: 0;
    margin-right: 1.1rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(21, 40, 76, 0.06);
    border: 1px solid rgba(21, 40, 76, 0.08);
}

.lang-link {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--ink-muted);
}

.lang-link.is-active {
    background: #ffffff;
    color: var(--surface-deep);
    box-shadow: 0 8px 20px rgba(10, 17, 31, 0.08);
}

.nav-toggle {
    border: 1px solid rgba(19, 32, 52, 0.12);
    border-radius: 14px;
    padding: 0.55rem 0.7rem;
}

.navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(19,32,52,0.82)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section,
.page-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.4rem, 7vw, 5.2rem);
    position: relative;
}

.hero-section::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 238, 0.74)),
        linear-gradient(90deg, rgba(199, 147, 52, 0.05), transparent 38%);
    z-index: -2;
}

.hero-section::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(19, 32, 52, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 52, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 75%);
    z-index: -1;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 2.3rem;
    align-items: center;
}

.hero-summary {
    max-width: 690px;
    font-size: 1.14rem;
    margin-bottom: 1.5rem;
}

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

.hero-microcopy {
    margin: 1rem 0 1.25rem;
    color: var(--ink-muted);
    max-width: 680px;
}

.trust-chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-chip-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 32, 52, 0.1);
    border-radius: 999px;
    color: var(--surface-deep);
    font-size: 0.93rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.trust-chip-list li::before {
    content: "";
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.hero-stage {
    position: relative;
}

.hero-desktop-card {
    position: relative;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        linear-gradient(145deg, #10213e, #0b1326);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #eaf1ff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-desktop-card::before {
    content: "";
    position: absolute;
    inset: auto auto -25% -10%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 147, 52, 0.32), transparent 70%);
}

.hero-desktop-card::after {
    content: "";
    position: absolute;
    top: -14%;
    right: -8%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 127, 131, 0.24), transparent 72%);
}

.hero-app-topline,
.hero-mobile-header,
.workflow-ribbon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-app-topline {
    margin-bottom: 1rem;
    color: rgba(234, 241, 255, 0.82);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-desktop-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 1rem;
}

.hero-menu-panel,
.hero-preview-panel {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.hero-menu-panel {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.hero-menu-panel strong {
    color: #fff8e7;
    font-size: 0.95rem;
}

.hero-menu-panel span {
    padding: 0.65rem 0.8rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    color: rgba(234, 241, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 700;
}

.workflow-ribbon {
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.workflow-ribbon span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 248, 231, 0.92);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.hero-kpi-card,
.hero-mobile-card,
.hero-report-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-kpi-card {
    padding: 0.95rem;
}

.hero-kpi-card small,
.hero-mobile-metrics small {
    display: block;
    color: rgba(234, 241, 255, 0.66);
    margin-bottom: 0.25rem;
}

.hero-kpi-card strong,
.hero-mobile-metrics strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.hero-report-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.85rem;
}

.hero-report-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(199, 147, 52, 0.22));
}

.hero-report-card strong {
    display: block;
    margin-bottom: 0.1rem;
    color: #fff8e7;
}

.hero-report-card span {
    color: rgba(234, 241, 255, 0.7);
    font-size: 0.92rem;
}

.hero-mobile-card {
    padding: 1rem;
}

.hero-mobile-header {
    color: rgba(255, 248, 231, 0.94);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.hero-mobile-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.hero-mobile-metrics div {
    padding: 0.8rem 0.7rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-proof-card,
.value-card,
.overview-card,
.feature-group-shell,
.lead-form-card,
.lead-sidebar-card,
.screenshot-card,
.pricing-card,
.asset-card,
.callout-banner {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(19, 32, 52, 0.08);
    box-shadow: var(--shadow-sm);
}

.hero-proof-card,
.value-card,
.overview-card,
.feature-group-shell,
.lead-form-card,
.lead-sidebar-card,
.pricing-card,
.asset-card {
    border-radius: var(--radius-md);
}

.hero-proof-card {
    padding: 1.25rem 1.3rem;
}

.hero-proof-card h2 {
    margin: 0.55rem 0 0.5rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

.hero-proof-card p {
    margin: 0;
    color: var(--ink-soft);
}

.card-eyebrow {
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.value-card-grid,
.overview-grid,
.screenshot-grid,
.pricing-grid {
    display: grid;
    gap: 1.2rem;
}

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

.value-card,
.overview-card {
    position: relative;
    padding: 1.5rem;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}

.accent-navy::before {
    background: linear-gradient(90deg, #223e73, #142342);
}

.accent-teal::before {
    background: linear-gradient(90deg, #2f999d, #1d676b);
}

.accent-bronze::before {
    background: linear-gradient(90deg, #b98953, #7b5739);
}

.value-card h3,
.overview-card h3,
.feature-point-card h3,
.pricing-card h2,
.asset-card h3,
.lead-sidebar-card .section-eyebrow + p {
    margin: 0.6rem 0 0.45rem;
}

.anchor-strip-section {
    padding-top: 0;
}

.anchor-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.anchor-strip a {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(19, 32, 52, 0.1);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    font-weight: 700;
}

.feature-group + .feature-group {
    margin-top: 1.6rem;
}

.feature-group-shell {
    padding: 1.7rem;
}

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

.feature-point-card {
    height: 100%;
    padding: 1.25rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(247, 245, 239, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(19, 32, 52, 0.08);
}

.proof-note {
    margin-top: 0.85rem;
    color: var(--ink-muted);
    font-size: 0.92rem;
}

.page-hero-shell,
.cta-band-shell {
    max-width: 860px;
}

.cta-band-shell {
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(199, 147, 52, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(31, 127, 131, 0.16), transparent 34%),
        linear-gradient(135deg, #132542, #0c1427);
    color: #eef4ff;
    box-shadow: var(--shadow-lg);
}

.cta-band-shell h2,
.cta-band-shell p {
    color: inherit;
}

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

.screenshot-card {
    overflow: hidden;
    border-radius: 28px;
}

.screenshot-media {
    position: relative;
    background:
        linear-gradient(135deg, rgba(21, 40, 76, 0.98), rgba(14, 22, 42, 0.98));
    padding: 1rem;
}

.screenshot-media img {
    width: 100%;
    border-radius: 20px;
}

.screenshot-copy {
    padding: 1.35rem 1.35rem 1.45rem;
}

.placeholder-chip,
.footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(199, 147, 52, 0.12);
    color: var(--brand-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.placeholder-chip {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

body.rtl .placeholder-chip {
    right: auto;
    left: 1rem;
}

.callout-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.15rem;
    border-radius: 20px;
    margin-bottom: 1.3rem;
}

.callout-banner strong {
    color: var(--surface-deep);
    white-space: nowrap;
}

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

.asset-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    align-items: center;
}

.asset-card img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    flex: 0 0 auto;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.3rem;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.45rem;
}

.pricing-card.is-recommended {
    border-color: rgba(199, 147, 52, 0.38);
    box-shadow: 0 24px 50px rgba(133, 88, 12, 0.14);
    transform: translateY(-4px);
}

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

.price-line {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-line strong {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1;
    color: var(--surface-deep);
}

.price-line span {
    color: var(--ink-muted);
}

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

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--ink-soft);
}

body.rtl .check-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

body.rtl .check-list li::before {
    left: auto;
    right: 0;
}

.compact li {
    font-size: 0.96rem;
}

.lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.2rem;
    align-items: start;
}

.lead-form-card,
.lead-sidebar-card {
    padding: 1.5rem;
}

.lead-sidebar-card {
    position: sticky;
    top: 110px;
    background:
        radial-gradient(circle at top right, rgba(199, 147, 52, 0.16), transparent 30%),
        rgba(255, 255, 255, 0.94);
}

.lead-form label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--surface-deep);
}

.field-optional {
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.form-control {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(19, 32, 52, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--surface-deep);
    padding: 0.85rem 1rem;
    box-shadow: none;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.form-control:focus {
    border-color: rgba(199, 147, 52, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(199, 147, 52, 0.14);
}

.marketing-alert {
    border-radius: 18px;
    border: 0;
    padding: 1rem 1.1rem;
}

.alert-success.marketing-alert {
    background: rgba(37, 107, 71, 0.12);
    color: var(--success);
}

.alert-warning.marketing-alert {
    background: rgba(143, 100, 29, 0.12);
    color: var(--warning);
}

.validation-summary-errors {
    margin-bottom: 1rem;
    color: #8b2f2f;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.2rem;
}

body.rtl .validation-summary-errors ul {
    padding-left: 0;
    padding-right: 1.2rem;
}

.field-validation-error {
    display: block;
    margin-top: 0.4rem;
    color: #8b2f2f;
    font-size: 0.88rem;
}

.input-validation-error {
    border-color: rgba(139, 47, 47, 0.55);
}

.form-disclaimer {
    margin: 0.9rem 0 0;
    color: var(--ink-muted);
    font-size: 0.94rem;
}

.site-footer {
    padding: 0 0 2.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.85fr 0.9fr;
    gap: 1.4rem;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(19, 32, 52, 0.08);
}

.footer-brand p,
.footer-links a,
.footer-links span,
.footer-note,
.footer-bottom {
    color: var(--ink-soft);
}

.footer-links {
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.footer-links h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: var(--surface-deep);
}

.footer-note {
    margin-top: 0.8rem;
    font-size: 0.92rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(19, 32, 52, 0.08);
    font-size: 0.94rem;
}

.brand-mark-footer {
    width: 52px;
    height: 52px;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(19, 32, 52, 0.08);
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    padding: 1.15rem 1.25rem;
    font-weight: 800;
    color: var(--surface-deep);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(199, 147, 52, 0.08);
    color: var(--surface-deep);
}

.faq-accordion .accordion-body {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.98);
}

.section-actions {
    margin-top: 1.25rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

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

    .btn,
    .site-header,
    .reveal {
        transition: none;
    }

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

@media (max-width: 1199.98px) {
    .hero-layout,
    .lead-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof-grid,
    .feature-points-grid,
    .pricing-grid,
    .value-card-grid,
    .overview-grid,
    .screenshot-grid,
    .brand-assets-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-sidebar-card {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .site-nav-shell {
        border-radius: 28px;
    }

    .nav-actions {
        margin: 1rem 0 0;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    body.rtl .nav-actions {
        margin-right: 0;
    }

    .hero-layout,
    .hero-proof-grid,
    .feature-points-grid,
    .pricing-grid,
    .value-card-grid,
    .overview-grid,
    .screenshot-grid,
    .brand-assets-strip {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding-top: 0.5rem;
    }

    .site-nav-shell {
        padding: 0.8rem 0.95rem;
    }

    .hero-section,
    .page-hero,
    .section-block {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .hero-kpi-row,
    .hero-mobile-metrics {
        grid-template-columns: 1fr;
    }

    .callout-banner,
    .asset-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-line strong {
        font-size: 2.1rem;
    }
}
