:root {
    --navy: #0b203d;
    --navy-2: #112f56;
    --blue: #2563eb;
    --blue-2: #3b82f6;
    --cyan: #61d9ec;
    --sky: #eaf2ff;
    --ink: #15243a;
    --muted: #65738a;
    --line: #e2e9f2;
    --surface: #f6f8fc;
    --white: #fff;
    --orange: #f59e5b;
    --green: #37aa7a;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(18,46,84,.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    direction: rtl;
    color: var(--ink);
    background: white;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}
body::selection { color: white; background: var(--blue); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

/* Navigation */
.site-header {
    width: min(1240px, calc(100% - 40px));
    height: 74px;
    padding: 0 13px 0 18px;
    position: fixed;
    top: 16px;
    right: 50%;
    z-index: 100;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    gap: 38px;
    color: var(--ink);
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(216,226,239,.85);
    border-radius: 18px;
    box-shadow: 0 14px 42px rgba(11,35,68,.08);
    backdrop-filter: blur(18px) saturate(150%);
    transition: top .25s, height .25s, box-shadow .25s;
}
.site-header.scrolled { top: 7px; height: 68px; box-shadow: 0 18px 50px rgba(11,35,68,.14); }
.brand { margin-left: auto; display: inline-flex; align-items: center; gap: 11px; direction: ltr; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--navy); font-size: 20px; font-weight: 900; letter-spacing: 3px; }
.brand small { margin-top: 5px; color: var(--blue); font-size: 7px; font-weight: 700; letter-spacing: 1.5px; }
.brand-mark { width: 38px; height: 38px; padding: 8px; display: flex; align-items: flex-end; gap: 3px; background: var(--blue); border-radius: 11px; box-shadow: 0 8px 20px rgba(37,99,235,.22); transform: rotate(-2deg); }
.brand-mark i { width: 5px; display: block; background: white; border-radius: 3px 3px 0 0; }
.brand-mark i:nth-child(1) { height: 11px; }.brand-mark i:nth-child(2) { height: 20px; }.brand-mark i:nth-child(3) { height: 15px; }
.site-header nav { display: flex; align-items: center; gap: 29px; }
.site-header nav a { color: #526279; font-size: 12px; font-weight: 650; transition: color .2s; }
.site-header nav a:hover { color: var(--blue); }
.menu-button { width: 42px; height: 42px; display: none; border: 0; border-radius: 11px; background: #edf4ff; cursor: pointer; }
.menu-button span { width: 20px; height: 2px; display: block; margin: 5px auto; background: var(--navy); border-radius: 4px; }

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    background: var(--blue);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(37,99,235,.22);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s, background .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-3px); background: #174fc6; box-shadow: 0 17px 35px rgba(37,99,235,.3); }
.button i { font-size: 10px; transition: transform .25s; }.button:hover i { transform: translateX(-4px); }
.button-small { min-height: 46px; padding-inline: 19px; }
.button-light { color: var(--blue); background: white; box-shadow: none; }
.button-light:hover { color: white; background: var(--blue); }

/* Hero */
.hero {
    min-height: 900px;
    padding: 165px max(5vw, calc((100vw - 1180px) / 2)) 0;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 24%, rgba(37,99,235,.13), transparent 29%),
        linear-gradient(135deg, #fbfdff 0%, #f1f6fd 58%, #e9f1fc 100%);
}
.hero::before {
    content: "";
    width: 680px;
    height: 680px;
    position: absolute;
    right: -345px;
    top: -310px;
    z-index: -1;
    border: 1px solid rgba(37,99,235,.13);
    border-radius: 50%;
    box-shadow: 0 0 0 95px rgba(37,99,235,.025), 0 0 0 190px rgba(37,99,235,.015);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .33;
    background-image: linear-gradient(rgba(74,112,165,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(74,112,165,.1) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-grid { max-width: 1180px; margin: 0 auto 83px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; position: relative; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .3px; }
.eyebrow { margin-bottom: 19px; padding: 7px 12px; background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.11); border-radius: 30px; }
.eyebrow span { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 5px rgba(37,99,235,.1); }
.hero h1 { max-width: 650px; margin-bottom: 22px; color: var(--navy); font-size: clamp(48px, 5.4vw, 76px); font-weight: 900; line-height: 1.22; letter-spacing: -3.2px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 585px; color: var(--muted); font-size: 15px; line-height: 2.05; }
.hero-actions { margin: 31px 0 39px; display: flex; align-items: center; gap: 25px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 11px; font-weight: 800; }
.text-link span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 8px 20px rgba(22,51,90,.08); }
.hero-metrics { display: flex; align-items: center; }
.hero-metrics div { min-width: 127px; padding: 0 19px; display: flex; flex-direction: column; }
.hero-metrics div:first-child { padding-right: 0; }
.hero-metrics div:not(:last-child) { border-left: 1px solid #d7e1ee; }
.hero-metrics strong { color: var(--navy); font-size: 20px; font-weight: 900; }
.hero-metrics span { color: var(--muted); font-size: 8.5px; }

/* Operational product visual */
.hero-visual { min-height: 535px; position: relative; display: grid; place-items: center; direction: ltr; }
.visual-glow { width: 500px; height: 500px; position: absolute; background: radial-gradient(circle, rgba(37,99,235,.2), transparent 69%); filter: blur(16px); }
.factory-photo {
    width: 92%;
    height: 475px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #cbd7e6;
    border: 8px solid rgba(255,255,255,.92);
    border-radius: 30px;
    box-shadow: 0 38px 85px rgba(20,53,98,.22);
    transform: rotate(-1.5deg);
}
.factory-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(7,23,44,.68)); pointer-events: none; }
.factory-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.factory-photo figcaption { position: absolute; right: 20px; left: 20px; bottom: 16px; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: white; font-size: 7px; }
.factory-photo figcaption span { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 800; }.factory-photo figcaption i { color: var(--cyan); }
.factory-photo figcaption small { color: rgba(255,255,255,.58); font-size: 6px; letter-spacing: 1.5px; }
.machine-panel { width: 315px; padding: 13px; position: absolute; right: -10px; bottom: 3px; z-index: 3; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid white; border-radius: 17px; box-shadow: 0 24px 55px rgba(20,53,98,.24); backdrop-filter: blur(14px); }
.panel-top { padding-bottom: 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 9px; }
.panel-top b { font-size: 10px; }.panel-top > span { color: #8a97a8; font-weight: 700; direction: ltr; }
.status-dot { width: 8px; height: 8px; display: inline-block; margin-right: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(57,183,126,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .55; transform: scale(.8); } }
.machine-data { padding: 17px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 7px; }
.machine-data div { padding: 10px 11px; background: #f1f4f8; border: 1px solid #e9eef4; border-radius: 9px; }
.machine-data small, .machine-data strong { display: block; }.machine-data small { margin-bottom: 3px; color: #8490a0; font-size: 7px; }.machine-data strong { font-size: 10px; }
.label-roll { padding: 20px 26px 17px; position: relative; background: #e9eef5; border-radius: 12px; }
.roll-head { margin-bottom: 13px; display: flex; justify-content: space-between; font-size: 8px; }.roll-head b { color: var(--blue); }
.roll-grid { padding: 14px; display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; background: white; border-inline: 4px solid #b7c3d2; box-shadow: inset 0 0 17px rgba(13,40,72,.06); }
.roll-grid i { aspect-ratio: 1.65; display: block; background: linear-gradient(135deg,#70a1ff,#3777ec); border: 1px solid #2f67c9; border-radius: 4px; }
.measure { position: absolute; color: #7b8796; font-size: 7px; }.measure-top { top: 47px; left: 50%; transform: translateX(-50%); }.measure-side { right: 7px; top: 62%; transform: rotate(-90deg); }
.panel-bottom { padding-top: 15px; display: flex; align-items: center; justify-content: space-between; font-size: 7px; }.panel-bottom span { color: #7f8b9a; }.panel-bottom b { color: #23885a; }.panel-bottom i { margin: 0 4px; color: var(--green); }
.float-card { padding: 11px 14px; position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid white; border-radius: 13px; box-shadow: 0 18px 42px rgba(20,53,98,.18); direction: rtl; animation: float 4s ease-in-out infinite; }
.float-card > i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: #eaf2ff; border-radius: 9px; }
.float-card span { display: flex; flex-direction: column; }.float-card small { color: #8490a0; font-size: 7px; }.float-card strong { font-size: 11px; }
.float-saving { right: 235px; bottom: 82px; }.float-speed { left: -8px; top: 40px; animation-delay: -2s; }.float-speed > i { color: #df7b20; background: #fff0df; }
@keyframes float { 50% { transform: translateY(-9px); } }
.trust-strip { max-width: 1180px; min-height: 84px; margin: auto; padding: 0 27px; display: flex; align-items: center; justify-content: space-between; gap: 25px; position: relative; border-top: 1px solid #d7e1ed; }
.trust-strip > span { color: #8895a6; font-size: 8px; }
.trust-strip div { display: flex; align-items: center; gap: 9px; color: #53647a; font-size: 9px; font-weight: 700; }.trust-strip i { color: var(--blue); font-size: 14px; }

/* Shared */
.section { padding: 120px max(5vw, calc((100vw - 1180px) / 2)); }
.section-heading { max-width: 1180px; margin: 0 auto 53px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-heading h2, .algorithm h2, .demo h2 { margin-top: 8px; color: var(--navy); font-size: clamp(35px,4vw,51px); line-height: 1.42; letter-spacing: -1.9px; }
.section-heading > p { max-width: 420px; color: var(--muted); font-size: 12px; }

/* Benefits */
.benefits { position: relative; background: white; }
.benefit-grid { max-width: 1180px; margin: auto; display: grid; grid-template-columns: 1.12fr .94fr .94fr; gap: 17px; }
.benefit-card { min-height: 420px; padding: 31px 28px; position: relative; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s, box-shadow .3s, border-color .3s; }
.benefit-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.card-dark { color: white; background: linear-gradient(145deg,#0a1d37,#123c70); border-color: transparent; }
.card-dark::before { content: ""; width: 230px; height: 230px; position: absolute; left: -100px; bottom: -120px; border: 35px solid rgba(97,217,236,.045); border-radius: 50%; }
.benefit-fantasy { width: 100%; height: 175px; position: absolute; right: 0; left: 0; bottom: 0; z-index: 0; object-fit: cover; opacity: .34; mask-image: linear-gradient(to bottom,transparent,black 38%); }
.card-dark > *:not(.benefit-fantasy) { position: relative; z-index: 1; }
.card-dark .card-number { position: absolute; }
.card-number { position: absolute; left: 23px; top: 17px; color: #dbe4ee; font-size: 35px; font-weight: 900; }.card-dark .card-number { color: rgba(255,255,255,.08); }
.benefit-icon { width: 56px; height: 56px; margin-bottom: 44px; display: grid; place-items: center; color: var(--blue); background: #eaf2ff; border-radius: 15px; font-size: 18px; }
.card-dark .benefit-icon { color: var(--cyan); background: rgba(97,217,236,.1); }
.benefit-card h3 { max-width: 280px; margin-bottom: 14px; font-size: 19px; line-height: 1.65; }
.benefit-card > p { color: var(--muted); font-size: 11.5px; line-height: 2; }.card-dark > p { color: rgba(255,255,255,.54); }
.benefit-card ul { margin-top: 24px; list-style: none; }.benefit-card li { margin-top: 9px; color: #536277; font-size: 10px; }.benefit-card li i { margin-left: 8px; color: var(--blue); }
.mini-chart { margin-top: 27px; padding-top: 19px; position: relative; border-top: 1px solid rgba(255,255,255,.1); }
.mini-chart div { margin-top: 10px; display: grid; grid-template-columns: 54px 1fr 38px; align-items: center; gap: 8px; color: rgba(255,255,255,.48); font-size: 7px; }
.mini-chart b { width: var(--w); height: 6px; display: block; background: rgba(255,255,255,.2); border-radius: 4px; }.mini-chart div:last-child b { background: linear-gradient(90deg,var(--blue-2),var(--cyan)); }.mini-chart em { color: white; font-style: normal; }
.layout-pills { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 7px; }.layout-pills span { padding: 6px 10px; color: #2359ad; background: #eaf2ff; border-radius: 20px; font-size: 7px; font-weight: 800; }

/* Algorithm */
.algorithm { padding: 125px max(5vw, calc((100vw - 1180px) / 2)); position: relative; overflow: hidden; color: white; background: #07172c; }
.algorithm::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(97,217,236,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(97,217,236,.12) 1px,transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(90deg,black,transparent); }
.algorithm::after { content: ""; width: 500px; height: 500px; position: absolute; left: -230px; bottom: -290px; border: 1px solid rgba(97,217,236,.14); border-radius: 50%; box-shadow: 0 0 0 75px rgba(97,217,236,.02),0 0 0 150px rgba(37,99,235,.02); }
.algorithm-inner { max-width: 1180px; margin: auto; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; position: relative; z-index: 2; }
.kicker-light { color: var(--cyan); }.algorithm h2,.demo h2 { color: white; }
.algorithm-copy > p { max-width: 530px; margin-top: 17px; color: rgba(255,255,255,.53); font-size: 12px; line-height: 2; }
.algorithm-steps { margin: 30px 0; }
.algorithm-steps div { padding: 12px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.09); }
.algorithm-steps b { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: var(--cyan); background: rgba(97,217,236,.09); border-radius: 9px; font-size: 9px; }
.algorithm-steps span { display: flex; flex-direction: column; }.algorithm-steps strong { font-size: 11px; }.algorithm-steps small { color: rgba(255,255,255,.38); font-size: 8px; }
.algorithm-console { padding: 17px; color: var(--ink); background: #f6f8fb; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; box-shadow: 0 35px 80px rgba(0,0,0,.3); direction: ltr; }
.algorithm-image { height: 165px; margin-bottom: 14px; position: relative; overflow: hidden; background: #0b2442; border-radius: 13px; }
.algorithm-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 35%,rgba(7,23,44,.68)); }
.algorithm-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.algorithm-image span { padding: 5px 9px; position: absolute; left: 11px; bottom: 10px; z-index: 2; color: white; background: rgba(7,23,44,.65); border: 1px solid rgba(97,217,236,.25); border-radius: 20px; font-size: 6px; font-weight: 800; letter-spacing: 1.2px; backdrop-filter: blur(8px); }.algorithm-image span i { margin-right: 5px; color: var(--cyan); }
.console-title { padding: 2px 5px 14px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid var(--line); font-size: 8px; }.console-title > span { display: flex; gap: 4px; }.console-title i { width: 7px; height: 7px; display: block; background: #d0d7df; border-radius: 50%; }.console-title b { letter-spacing: 1.3px; }.console-title em { margin-left: auto; padding: 3px 8px; color: #277d54; background: #def5e8; border-radius: 12px; font-size: 7px; font-style: normal; }
.console-flow { padding: 20px; }
.input-node { padding: 15px 18px; display: flex; align-items: center; gap: 12px; background: white; border: 1px solid var(--line); border-radius: 10px; }.input-node small { color: #7d8997; font-size: 7px; }.input-node strong { font-size: 11px; }.input-node span { margin-left: auto; color: #2f65bc; font-size: 8px; font-weight: 800; }
.flow-line { height: 34px; display: grid; place-items: center; position: relative; color: #a6b0bd; }.flow-line::before { content: ""; width: 1px; height: 100%; position: absolute; background: #d3dbe4; }.flow-line i { z-index: 2; padding: 4px; background: #f6f8fb; font-size: 7px; }
.process-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.process-row div { padding: 13px 8px; display: grid; grid-template-columns: 27px 1fr; background: #e9eef5; border-radius: 9px; }
.process-row i { grid-row: 1/3; width: 25px; height: 25px; display: grid; place-items: center; color: var(--blue); background: #dce9ff; border-radius: 7px; font-size: 8px; }.process-row small { color: #7b8796; font-size: 7px; }.process-row strong { font-size: 11px; }
.result-node { padding: 19px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; position: relative; color: white; background: linear-gradient(135deg,#0a203d,#123b6c); border-radius: 11px; }
.result-label { position: absolute; top: -8px; right: 12px; padding: 2px 9px; color: white; background: var(--blue); border-radius: 12px; font-size: 7px; font-weight: 800; }
.result-node div { padding: 9px; background: rgba(255,255,255,.055); border-radius: 8px; }.result-node small,.result-node b { display: block; }.result-node small { color: rgba(255,255,255,.38); font-size: 7px; }.result-node b { margin-top: 3px; font-size: 8px; }
.result-score { grid-column: 1/-1; display: flex !important; align-items: baseline; }.result-score strong { margin-left: auto; color: var(--cyan); font-size: 24px; }.result-score em { color: rgba(255,255,255,.3); font-size: 8px; font-style: normal; }

/* Features */
.features { background: var(--surface); }
.centered { display: flex; flex-direction: column; align-items: center; gap: 0; text-align: center; }.centered > p { margin-top: 11px; }
.feature-list { max-width: 1180px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.feature-list article { min-height: 180px; padding: 28px 24px; display: flex; gap: 16px; background: white; border: 1px solid #e6ecf3; border-radius: 17px; box-shadow: 0 10px 30px rgba(17,43,78,.04); transition: transform .3s,box-shadow .3s,border-color .3s; }
.feature-list article:hover { transform: translateY(-5px); border-color: transparent; box-shadow: 0 20px 45px rgba(17,43,78,.1); }
.feature-list > article > i { width: 45px; height: 45px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: #eaf2ff; border-radius: 12px; }
.feature-list h3 { margin-bottom: 7px; color: var(--navy); font-size: 13px; }.feature-list p { color: var(--muted); font-size: 10px; line-height: 1.9; }

/* Proof */
.results { padding-top: 0; background: var(--surface); }
.results-card { max-width: 1180px; min-height: 420px; margin: auto; padding: 65px 70px; display: grid; grid-template-columns: 1.25fr .75fr; position: relative; overflow: hidden; color: white; background: linear-gradient(125deg,#0a203c,#154778); border-radius: 27px; box-shadow: 0 28px 65px rgba(9,34,65,.17); }
.results-card::after { content: ""; width: 390px; height: 390px; position: absolute; left: -140px; top: -215px; border: 70px solid rgba(97,217,236,.045); border-radius: 50%; }
.quote-mark { position: absolute; right: 44px; top: 20px; color: var(--cyan); font-size: 100px; font-weight: 900; line-height: 1; opacity: .22; }
blockquote { max-width: 660px; align-self: center; font-size: clamp(19px,2.2vw,28px); font-weight: 700; line-height: 1.9; }
.quote-person { align-self: end; }.quote-person span,.quote-person small { display: block; }.quote-person span { font-size: 11px; font-weight: 800; }.quote-person small { color: rgba(255,255,255,.4); font-size: 8px; }
.result-stats { grid-row: 1/3; grid-column: 2; padding-right: 50px; display: flex; flex-direction: column; justify-content: center; gap: 24px; border-right: 1px solid rgba(255,255,255,.12); }
.result-stats div { display: flex; flex-direction: column; }.result-stats strong { color: var(--cyan); font-size: 32px; line-height: 1.2; }.result-stats span { color: rgba(255,255,255,.45); font-size: 8px; }

/* Conversion */
.demo { color: white; background: linear-gradient(120deg,#2563eb,#123e8e); position: relative; overflow: hidden; }
.demo::before { content: ""; width: 360px; height: 360px; position: absolute; left: -180px; top: -230px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.03),0 0 0 130px rgba(255,255,255,.02); }
.demo-inner { max-width: 1180px; margin: auto; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 85px; position: relative; z-index: 2; }
.demo-inner > div > p { max-width: 590px; margin-top: 11px; color: rgba(255,255,255,.58); font-size: 11px; }
.demo-form { padding: 21px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 17px; backdrop-filter: blur(10px); }
.demo-form label span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.6); font-size: 8px; }
.demo-form input { width: 100%; height: 49px; margin-bottom: 10px; padding: 0 16px; color: white; background: rgba(7,23,44,.25); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; outline: 0; direction: rtl; }.demo-form input:focus { border-color: white; }.demo-form input::placeholder { color: rgba(255,255,255,.45); }
.demo-form .button { width: 100%; }.form-success { display: none; margin-top: 10px; color: white; text-align: center; font-size: 9px; }.submitted .form-success { display: block; }

.landing-footer { padding: 35px max(5vw,calc((100vw - 1180px)/2)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; color: white; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.landing-footer .brand-footer { margin: 0; }.landing-footer .brand-footer strong { color: white; }.landing-footer .brand-footer + p { color: rgba(255,255,255,.38); font-size: 8px; }
.landing-footer > div { display: flex; gap: 19px; }.landing-footer > div a { color: rgba(255,255,255,.56); font-size: 8px; }.landing-footer > div a:hover { color: var(--cyan); }
.landing-footer > span { grid-column: 1/-1; color: rgba(255,255,255,.2); font-size: 7px; text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease,transform .65s ease; }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .site-header { gap: 20px; }.site-header nav { gap: 16px; }
    .hero-grid,.algorithm-inner { grid-template-columns: 1fr; }.hero-copy { text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions,.hero-metrics { justify-content: center; }
    .hero-grid { gap: 25px; margin-bottom: 50px; }.hero-visual { width: min(620px,100%); margin: auto; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }.card-dark { grid-column: 1/-1; }.benefit-card { min-height: 355px; }
    .algorithm-copy { text-align: center; }.algorithm-copy > p { margin-inline: auto; }.algorithm-steps { max-width: 560px; margin-inline: auto; text-align: right; }.algorithm-console { width: min(630px,100%); margin: auto; }
    .feature-list { grid-template-columns: repeat(2,1fr); }.results-card { padding: 50px; }.demo-inner { gap: 35px; }
}

@media (max-width: 760px) {
    .site-header { width: calc(100% - 22px); height: 66px; top: 10px; padding-inline: 10px; }.site-header > .button { display: none; }.menu-button { display: block; }
    .site-header nav { display: none; position: absolute; top: 73px; right: 0; left: 0; padding: 10px; flex-direction: column; align-items: stretch; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }.site-header nav.open { display: flex; }.site-header nav a { padding: 10px 12px; }
    .hero { padding: 125px 18px 0; }.hero h1 { font-size: 45px; }.hero-visual { min-height: 500px; }.factory-photo { width: 90%; height: 435px; }.machine-panel { right: 0; bottom: 0; }.float-saving { right: 210px; bottom: 75px; }.float-speed { left: 0; }
    .trust-strip { padding-block: 22px; flex-wrap: wrap; justify-content: center; }.trust-strip > span { width: 100%; text-align: center; }
    .section,.algorithm { padding: 82px 18px; }.section-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
    .results-card { grid-template-columns: 1fr; gap: 30px; }.result-stats { grid-row: auto; grid-column: auto; padding: 25px 0 0; flex-direction: row; justify-content: space-between; border: 0; border-top: 1px solid rgba(255,255,255,.12); }.result-stats strong { font-size: 24px; }
    .demo-inner { grid-template-columns: 1fr; }
    .landing-footer { grid-template-columns: 1fr; text-align: center; }.landing-footer .brand-footer,.landing-footer > div { justify-content: center; }.landing-footer .brand-footer + p { text-align: center; }.landing-footer > span { grid-column: auto; }
}

@media (max-width: 520px) {
    .brand strong { font-size: 17px; }.brand-mark { width: 34px; height: 34px; }
    .hero h1 { font-size: 37px; letter-spacing: -2px; }.hero-copy > p { font-size: 12.5px; }.hero-actions { flex-direction: column; gap: 17px; }.hero-actions .button { width: 100%; }
    .hero-metrics div { min-width: 0; flex: 1; padding-inline: 8px; }.hero-metrics strong { font-size: 16px; }.hero-metrics span { font-size: 7px; }
    .hero-visual { min-height: 455px; }.factory-photo { width: 100%; height: 390px; border-width: 5px; border-radius: 22px; transform: none; }.factory-photo figcaption small { display: none; }.machine-panel { width: calc(100% - 24px); right: 12px; bottom: 0; padding: 12px; }.machine-data { gap: 4px; }.machine-data div { padding: 7px 5px; }.machine-data strong { font-size: 8px; }.label-roll { display: none; }.panel-bottom { align-items: flex-start; gap: 8px; }.float-card { display: none; }
    .trust-strip div { width: calc(50% - 15px); }
    .section-heading h2,.algorithm h2,.demo h2 { font-size: 30px; }.benefit-grid { grid-template-columns: 1fr; }.card-dark { grid-column: auto; }.benefit-card { min-height: auto; }
    .algorithm-inner { gap: 55px; }.console-flow { padding: 14px 4px; }.process-row { gap: 4px; }.process-row div { padding: 10px 4px; }.result-node { padding: 17px 8px; gap: 4px; }
    .feature-list { grid-template-columns: 1fr; }.feature-list article { min-height: auto; }
    .results { padding-top: 0; }.results-card { padding: 45px 24px; }.result-stats { gap: 9px; }.result-stats strong { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }*,*::before,*::after { animation: none !important; transition: none !important; }
}
