:root {
    --primary: hsl(204, 84%, 61%);
    --primary-dark: #d8325b;
    --secondary: #ffb703;
    --ink: #281837;
    --muted: #6e6476;
    --bg: #fffaf5;
    --soft: #fff1e8;
    --card: #fff;
    --line: #eadfe8;
    --radius: 24px;
    --shadow: 0 18px 50px rgba(63, 32, 78, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Heebo, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6
}

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

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: auto
}

.narrow {
    width: min(820px, calc(100% - 32px))
}

.section {
    padding: 92px 0
}

.compact {
    padding: 34px 0
}

.section-soft {
    background: var(--soft)
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px
}

.section-head h2,
.contact-layout h2,
.about-card h2,
.calc-layout h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    margin: 8px 0 14px
}

.section-head p,
p {
    color: var(--muted)
}

.eyebrow {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 99px;
    background: #fff0f4;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .9rem
}

.site-header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 245, .86);
    backdrop-filter: blur(16px);
    transition: .25s
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(50, 20, 60, .09)
}

.header-inner {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    height: 48px;
    gap: 10px
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #ff7c59);
    color: white
}

.main-nav {
    display: flex;
    gap: 23px;
    margin-inline-start: auto;
    font-weight: 600
}

.main-nav a:hover {
    color: var(--primary)
}

.btn {
    border: 0;
    border-radius: 16px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .2s
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff704d);
    color: white;
    box-shadow: 0 12px 28px rgba(239, 71, 111, .25)
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line)
}

.full {
    width: 100%
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 42px;
    height: 42px
}

.nav-toggle svg {
    width: 25px
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 105px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    line-height: .98;
    margin: 18px 0 24px;
    letter-spacing: -2px
}

.hero h1 em {
    font-style: normal;
    color: var(--primary)
}

.hero-copy>p {
    font-size: 1.2rem;
    max-width: 640px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 28px 0
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.hero-facts span {
    background: white;
    border: 1px solid var(--line);
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 700
}

.hero-visual {
    min-height: 470px;
    position: relative;
    display: grid;
    place-items: center
}

.hero-card-main {
    width: min(390px, 90%);
    height: 390px;
    border-radius: 45px;
    background: linear-gradient(145deg, #ffdd75, #ff8b72);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transform: rotate(-3deg)
}

.hero-card-main strong {
    font-size: 1.7rem;
    margin-top: 15px
}

.hero-card-main small {
    font-size: 1rem
}

.floating-card {
    position: absolute;
    background: white;
    padding: 13px 18px;
    border-radius: 17px;
    box-shadow: var(--shadow);
    font-weight: 800
}

.fc-one {
    top: 45px;
    right: 0
}

.fc-two {
    bottom: 40px;
    left: 0
}

.fc-three {
    top: 180px;
    left: -15px
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .25
}

.blob-a {
    width: 350px;
    height: 350px;
    background: #ffb703;
    top: -120px;
    right: -100px
}

.blob-b {
    width: 300px;
    height: 300px;
    background: #ef476f;
    bottom: -150px;
    left: -80px
}

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

.advantage-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    text-align: center
}

.advantage-icon {
    width: 44px;
    height: 44px;
    margin: auto;
    color: var(--primary)
}

.advantage-icon svg {
    width: 100%;
    height: 100%
}

.advantage-card h3 {
    font-size: 1rem;
    margin: 10px 0 4px
}

.advantage-card p {
    font-size: .88rem;
    margin: 0
}

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

.machine-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 9px 30px rgba(62, 30, 70, .08);
    border: 1px solid rgba(255, 255, 255, .8);
    transition: .25s
}

.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.machine-media {
    height: 210px;
    display: grid;
    place-items: center
}

.machine-media svg {
    width: 125px;
    height: 125px
}

.machine-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 13px
}

.machine-body h3 {
    font-size: 1.45rem;
    margin: 0
}

.machine-tagline {
    margin: 0;
    font-weight: 700;
    color: var(--primary)
}

.machine-desc {
    margin: 0
}

.machine-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.machine-tag {
    background: #f7f0f6;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: .8rem
}

.machine-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 16px
}

.machine-details-btn {
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px
}

.machine-details-btn svg {
    width: 18px
}

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

.step {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--line)
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900
}

.step h3 {
    margin: 15px 0 5px
}

.calc-section {
    background: linear-gradient(135deg, #291938, #493054);
    color: white
}

.calc-section p {
    color: #d8ccdf
}

.calc-layout {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 40px;
    align-items: start
}

.calc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px
}

.calc-item {
    background: white;
    color: var(--ink);
    padding: 15px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: auto 48px 1fr auto;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.calc-item input {
    accent-color: var(--primary)
}

.calc-item-icon svg {
    width: 42px;
    height: 42px
}

.calc-item-info {
    display: flex;
    flex-direction: column
}

.calc-item-info span {
    font-size: .8rem;
    color: var(--muted)
}

.calc-summary {
    background: white;
    color: var(--ink);
    padding: 28px;
    border-radius: 28px;
    position: sticky;
    top: 105px
}

.delivery-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f3edf3;
    border-radius: 13px;
    padding: 4px
}

.delivery-toggle button {
    border: 0;
    background: transparent;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer
}

.delivery-toggle button.active {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    font-weight: 800
}

.calc-breakdown {
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.calc-breakdown div {
    display: flex;
    justify-content: space-between;
    margin: 7px 0
}

.calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 1.25rem
}

.calc-total-row strong {
    font-size: 2rem;
    color: var(--primary)
}

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

.gallery-item {
    height: 260px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: .25s
}

.gallery-item:hover {
    transform: scale(1.02)
}

.gallery-item svg {
    width: 115px;
    height: 115px
}

.gallery-item span {
    font-weight: 800;
    margin-top: 10px
}

.testi-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-window {
    overflow: hidden;
    flex: 1
}

.testi-slides {
    display: flex;
    transition: .45s
}

.testi-slide {
    min-width: 100%;
    padding: 10px
}

.testi-card {
    max-width: 760px;
    margin: auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 45px;
    text-align: center
}

.testi-quote {
    width: 40px;
    color: var(--primary)
}

.testi-text {
    font-size: 1.25rem
}

.testi-name {
    font-weight: 900;
    color: var(--ink)
}

.testi-arrow {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    font-size: 2rem;
    cursor: pointer
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px
}

.testi-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #cdbdca
}

.testi-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary)
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    margin: 10px 0;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    text-align: right;
    font-weight: 800;
    cursor: pointer
}

.faq-q svg {
    width: 22px;
    transition: .2s
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .3s
}

.faq-a p {
    padding: 0 20px 20px;
    margin: 0
}

.about-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

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

.about-stats div {
    text-align: center;
    background: var(--soft);
    padding: 25px 10px;
    border-radius: 20px
}

.about-stats strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary)
}

.contact-section {
    background: #fff
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px
}

.contact-direct a {
    background: var(--soft);
    padding: 15px;
    border-radius: 15px
}

.contact-direct span {
    display: block;
    color: var(--muted);
    font-size: .8rem
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 28px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

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

.field input,
.field select,
.field textarea {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 12px;
    background: #fffcfa
}

.field small {
    display: none;
    color: #c62828
}

.field.invalid input,
.field.invalid select {
    border-color: #c62828
}

.field.invalid small {
    display: block
}

footer {
    background: var(--ink);
    color: white;
    padding: 55px 0 20px
}

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

.footer-inner div {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-inner p {
    color: #cbbfd1
}

.copyright {
    border-top: 1px solid #493a52;
    margin-top: 30px;
    padding-top: 18px;
    color: #b9abbf
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 40;
    background: #25d366;
    color: white;
    font-weight: 900;
    padding: 14px 19px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .3)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30, 15, 40, .85);
    z-index: 100;
    display: none;
    place-items: center;
    color: white
}

.lightbox.open {
    display: grid
}

.lightbox svg {
    width: 260px;
    height: 260px
}

.lightbox button {
    position: absolute;
    top: 20px;
    left: 25px;
    background: none;
    border: 0;
    color: white;
    font-size: 3rem
}

.lightbox p {
    color: white;
    font-weight: 800
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: .6s
}

[data-reveal].in-view {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .header-cta {
        display: none
    }

    .nav-toggle {
        display: block;
        margin-inline-start: auto
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        right: 16px;
        left: 16px;
        background: white;
        padding: 18px;
        border-radius: 18px;
        box-shadow: var(--shadow);
        flex-direction: column
    }

    .main-nav.open {
        display: flex
    }

    .hero-grid,
    .calc-layout,
    .about-card,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

    .hero-actions,
    .hero-facts {
        justify-content: center
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

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

    .calc-summary {
        position: static
    }

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

@media(max-width:600px) {
    .section {
        padding: 65px 0
    }

    .hero {
        padding-top: 55px
    }

    .hero h1 {
        letter-spacing: -1px
    }

    .hero-visual {
        min-height: 330px
    }

    .hero-card-main {
        height: 290px
    }

    .floating-card {
        font-size: .8rem
    }

    .advantages-grid,
    .machines-grid,
    .steps-grid,
    .calc-list,
    .gallery-grid,
    .about-stats,
    .contact-form {
        grid-template-columns: 1fr
    }

    .advantage-card {
        display: grid;
        grid-template-columns: 45px 1fr;
        text-align: right;
        column-gap: 12px
    }

    .advantage-card p,
    .advantage-card h3 {
        grid-column: 2;
        margin: 0
    }

    .machine-media {
        height: 180px
    }

    .gallery-item {
        height: 210px
    }

    .contact-form {
        padding: 20px
    }

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

    .field-full {
        grid-column: auto
    }

    .floating-wa {
        left: 12px;
        bottom: 12px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%
    }
}

.logo {
    height: 150px; /* 58px / 60px לפי הצורך */
    width: auto;
    display: block;
    object-fit: contain;
}