:root {
    --primary: #0D4B78;
    --primary-deep: #08304D;
    --green: #1E8449;
    --green-hov: #145A32;
    --blue-accent: #007AFF;
    --blue-soft: #D9ECFF;
    --blue-soft-border: #9DCBFF;
    --green-soft: #DDF9E5;
    --green-soft-hover: #C8F2D4;
    --bg: #F8FBFD;
    --bg-alt: #ECF4FA;
    --white: #FFFFFF;
    --text-gray: #334155;
    --border: #E2E8F0;
    --ff: 'Heebo', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --fast: 0.2s ease
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    --primary: #02324d;
    --primary-deep: #061725;
    --green: #41B37C;
    --green-hov: #329565;
    --blue-accent: #153A58;
    --blue-soft: #DDE8F1;
    --blue-soft-border: #B8CCDA;
    --green-soft: #D7F1E3;
    --green-soft-hover: #C3E7D4;
    --bg: #F5F8FA;
    --bg-alt: #E5EEF3;
    display: block;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden
}

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

main {
    flex: 1
}

ul {
    list-style: none
}

button,
input,
select {
    font: inherit;
    border: none;
    background: 0 0;
    outline: 0
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--primary)
}

.centered {
    text-align: center
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    font-weight: 500;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--fast);
    font-size: 1.1rem
}

.btn-solid i {
    margin-left: 8px;
    font-size: .9em
}

.btn-solid:hover {
    background: var(--green-hov)
}

.btn-solid:active {
    transform: translateY(0)
}

.btn-outline {
    background: 0 0;
    border: 2px solid var(--green);
    color: var(--green)
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white)
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 40px
}

.site-header {
    background: var(--primary);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 900
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white)
}

.header-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1.1
}

.logo-subtitle {
    font-size: .85rem;
    font-weight: 400;
    opacity: .8;
    line-height: 1
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-a {
    font-weight: 400;
    font-size: 1.05rem;
    opacity: .8;
    transition: var(--fast);
    position: relative
}

.nav-a:hover {
    opacity: 1
}

.nav-a.active {
    opacity: 1;
    font-weight: 700
}

.nav-a.active::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue-accent));
    border-radius: 4px 4px 0 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.btn-header {
    background: var(--green);
    border-radius: 20px;
    font-weight: 500;
    padding: 8px 24px;
    font-size: 1rem
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: var(--fast)
}

.hero {
    position: relative;
    padding: 100px 0 60px;
    min-height: 650px;
    display: flex;
    flex-direction: column
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    background-image: linear-gradient(to left, rgba(10, 42, 67, .6) 0, rgba(10, 42, 67, .2) 35%, rgba(10, 42, 67, 0) 60%), url('hero-bg-contract.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, .12) 0, rgba(255, 255, 255, .9) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden
}

.hero-text {
    text-align: right;
    margin-bottom: 60px;
    margin-top: 40px
}

.rubber-stamp {
    display: inline-block;
    position: absolute;
    top: -72px;
    left: -25px;
    color: var(--green);
    width: 140px;
    height: 140px;
    transform: rotate(-15deg);
    opacity: 0;
    animation: stampIn .5s cubic-bezier(.175, .885, .32, 1.275) forwards;
    animation-delay: .3s;
    pointer-events: none;
    z-index: 10;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center
}

.stamp-svg {
    width: 100%;
    height: 100%;
    display: block
}

@keyframes stampIn {
    0% {
        transform: scale(2) rotate(-15deg);
        opacity: 0
    }

    100% {
        transform: scale(1) rotate(-15deg);
        opacity: .95
    }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary)
}

.hero-text h1 .cursor,
.hero-text h1 .typewriter {
    text-shadow: 0 0 15px #fff, 0 0 30px rgba(255, 255, 255, .9), 0 0 45px rgba(255, 255, 255, .8), 0 0 60px rgba(255, 255, 255, .6)
}

.hero-text .hero-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.lead-box {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-float);
    padding: 30px;
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(100px);
    animation: formEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.lead-form-grid {
    display: flex;
    gap: 40px;
}

.form-side {
    flex: 1
}

.right-side {
    border-left: 1px solid var(--border);
    padding-left: 40px
}

.form-header {
    margin-bottom: 20px
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary)
}

.inputs-row {
    display: flex;
    gap: 16px
}

.inputs-row .field {
    flex: 1
}

.field {
    position: relative;
    margin-bottom: 16px
}

.field input,
.field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--primary);
    transition: var(--fast);
    font-family: inherit;
    direction: rtl !important;
    text-align: right !important
}

.field input:focus,
.field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(53, 160, 91, .1);
    background: var(--white)
}

.field input::placeholder,
.field select::placeholder {
    color: #757575;
    text-align: right;
    direction: rtl
}

.field select {
    appearance: none;
    cursor: pointer;
    color: #555
}

.chevron {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: #555
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 700
}

.field.bad input,
.field.bad select {
    border-color: #e53e3e
}

.success {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.success.show {
    opacity: 1;
    pointer-events: auto
}

.success-inner {
    text-align: center
}

.success h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--green)
}

.success p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-gray)
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.btn-submit.loading .btn-label {
    display: none
}

.btn-submit.loading .spinner {
    display: inline-block
}

.logos-strip {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    direction: ltr
}

.logos-track {
    display: inline-flex;
    width: max-content;
    animation: slideRTL 30s linear infinite
}

.logos-strip:hover .logos-track {
    animation-play-state: paused
}

.logos-flex {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 80px;
    padding: 0 40px
}

.logo-img {
    height: 60px;
    max-width: none;
    object-fit: contain;
    transition: var(--fast);
    flex-shrink: 0
}

.logo-img:hover {
    transform: scale(1.05)
}

.clal-logo {
    height: 85px
}

.menora-logo {
    height: 160px
}

.pc-logo {
    height: 130px
}

.phoenix-logo {
    height: 120px
}

@keyframes slideRTL {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.story-section {
    padding: 80px 0;
    background: var(--bg)
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.story-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.2
}

.story-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px
}

.story-content .highlight-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    background: rgba(53, 160, 91, .1);
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin: 30px 0
}

.story-cta {
    margin-top: 50px
}

.about-me {
    padding: 80px 0;
    background: var(--white);
    contain: layout style
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    border: 1px solid var(--border)
}

.about-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--primary)
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover
}

@media (max-width:900px) {
    .about-text {
        padding: 40px 25px
    }
}

.why-me {
    padding: 80px 0;
    background: var(--bg)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--fast)
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--green)
}

.why-card svg {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--green);
}

.why-card svg {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--green);
    height: 1em;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 5px
}

.google-badge i {
    color: var(--blue-accent);
    font-size: 1.1rem
}

.google-badge span {
    font-size: .85rem;
    color: #5b6e80;
    font-weight: 500;
    font-family: Arial, sans-serif;
    letter-spacing: .5px
}

.stars {
    color: #d79a18;
    font-size: 1.1rem;
    margin-bottom: 12px
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary)
}

.why-card p {
    font-size: 1.05rem;
    color: var(--text-gray)
}

.services-detailed {
    padding: 80px 0;
    background: #f9f6f1
}

.services-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto
}

.service-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 24px;
    border-bottom: 1px solid #e0dbd3;
    text-decoration: none;
    color: inherit;
    transition: background var(--fast), transform var(--fast)
}

.service-row:first-child {
    border-top: 1px solid #e0dbd3
}

.service-row:hover {
    background: rgba(46, 139, 87, .04)
}

.service-row:hover .service-link {
    opacity: 1;
    color: var(--green)
}

.service-row:hover .service-illust svg {
    transform: scale(1.08)
}

.service-illust {
    flex-shrink: 0;
    width: 80px;
    height: 80px
}

.service-illust svg {
    width: 100%;
    height: 100%;
    transition: transform .3s ease
}

.service-info {
    flex: 1
}

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2e8b57;
    margin-bottom: 8px
}

.service-info p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px
}

.service-link {
    display: inline-block;
    font-size: .9rem;
    font-weight: 600;
    color: #2e8b57;
    opacity: .6;
    transition: opacity var(--fast), color var(--fast)
}

.audience {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center
}

.audience .section-title {
    color: var(--white);
    margin-bottom: 20px
}

.audience-sub {
    font-size: 1.2rem;
    opacity: .8;
    max-width: 700px;
    margin: 0 auto 50px
}

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

.aud-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 40px 30px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px)
}

.aud-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--green)
}

.aud-card p {
    font-size: 1.05rem;
    opacity: .9
}

.testimonials {
    padding: 80px 0;
    background: var(--bg)
}

.testimonials-header {
    padding-bottom: 0
}

.testi-marquee {
    width: 100%;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    direction: ltr
}

.testi-track {
    display: inline-flex;
    gap: 30px;
    padding: 0 15px;
    animation: slideTestimonials 80s linear infinite
}

.testi-track:hover {
    animation-play-state: paused
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.testi-card {
    width: 400px;
    flex-shrink: 0;
    background: var(--white);
    padding: 30px;
    border-radius: 20px 20px 4px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
    text-align: right
}

.testi-card p {
    color: var(--primary-deep);
    font-size: 1.05rem;
    margin-bottom: 16px
}

.testi-card h3 {
    color: var(--primary);
    font-weight: 700
}

.faq-section {
    padding: 80px 0;
    background: var(--primary)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(6, 23, 37, .12);
    position: relative;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04)
}

.faq-q {
    width: 100%;
    text-align: right;
    background: var(--green);
    padding: 22px 28px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--fast);
    position: relative;
    z-index: 1
}

.faq-q:hover {
    background: var(--green-hov)
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
    opacity: .7;
    flex-shrink: 0;
    transition: transform .3s ease
}

.faq-icon .vert-line {
    transition: transform .3s ease
}

.faq-item.active .faq-icon {
    transform: rotate(90deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
    border-top: 1px solid rgba(13, 75, 120, .1)
}

.faq-item.active .faq-a {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0)
}

.faq-a p {
    padding: 20px 28px 22px;
    font-size: 1.08rem;
    color: var(--primary-deep);
    line-height: 1.85;
    position: relative;
    z-index: 1
}

.bottom-cta {
    padding: 80px 0;
    background: var(--bg-alt)
}

.contact-phone-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0 18px
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid rgba(46, 102, 132, .2);
    border-radius: 999px;
    background: #f7fbfd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06)
}

.footer-tag {
    margin-top: 10px;
    font-size: .84rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
    letter-spacing: .02em
}

.cta-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px
}

.b-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px
}

.privacy-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: .95rem;
    color: var(--text-gray)
}

.privacy-check input {
    width: 18px;
    height: 18px;
    cursor: pointer
}

.site-footer {
    background: linear-gradient(180deg, var(--primary-deep), #061b26);
    color: rgba(255, 255, 255, .8);
    padding: 40px 0 20px;
    text-align: center
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center
}

.footer-col h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px
}

.footer-nav a {
    color: var(--white);
    font-weight: 400;
    font-size: .9rem;
    transition: color var(--fast)
}

.footer-nav a:hover {
    color: var(--green)
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: .9rem
}

.footer-info a {
    color: var(--white);
    font-weight: 600
}

.footer-info i {
    color: var(--green);
    margin-left: 6px
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: color var(--fast)
}

.footer-links a:hover {
    color: var(--white)
}

.footer-bottom p {
    font-size: .85rem;
    opacity: .7;
    margin: 0
}

.footer-tag {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px
}

@media(max-width:768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px
    }
}

@media(max-width:991px) {
    .hero-text h1 {
        font-size: 3rem;
        margin-top: 3rem;
    }

    .hero-text .hero-subtitle {
        font-size: 2rem
    }

    .lead-form-grid {
        flex-direction: column;
        gap: 30px
    }

    .right-side {
        border-left: none;
        border-bottom: 1px solid var(--border);
        padding-left: 0;
        padding-bottom: 30px
    }

    .nav {
        position: fixed;
        top: 3.5rem;
        right: 0;
        left: 0;
        background: var(--primary);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: .3s
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto
    }

    .nav-a.active::after {
        bottom: -8px
    }

    .burger {
        display: flex
    }

    .header-actions .btn-header {
        display: none
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .audience-grid {
        grid-template-columns: 1fr
    }

    .b-inputs {
        flex-direction: column
    }

    .testi-card {
        width: 300px;
        padding: 24px
    }

    .logos-flex {
        gap: 48px;
        padding: 0 24px
    }

    .logo-img {
        height: 50px
    }

    .menora-logo {
        height: 130px
    }

    .pc-logo {
        height: 108px
    }

    .phoenix-logo {
        height: 100px
    }
}

@media(max-width:640px) {
    .wrap {
        padding: 0 16px
    }

    .hero-text h1 {
        font-size: 2.2rem
    }

    .hero-text .hero-subtitle {
        font-size: 1.5rem
    }

    .hero-text .hero-subtitle,
    .hero-text h1 {
        text-shadow: 0 1px 5px rgba(0, 0, 0, .1)
    }

    .inputs-row {
        flex-direction: column
    }

    .hero-bg {
        background-position: center
    }

    .hero-bg::after {
        background: linear-gradient(to top, rgba(255, 255, 255, .9) 30%, rgba(255, 255, 255, .4) 100%)
    }

    .hero-text {
        text-align: center
    }

    .hero-content {
        gap: 28px
    }

    .hero-subtitle {
        max-width: 100%
    }

    .cta-box,
    .lead-box {
        width: 100%
    }

    .lead-box {
        padding: 20px 16px
    }

    .about-grid,
    .audience-grid,
    .lead-form-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .aud-card,
    .testi-card,
    .why-card {
        padding: 22px
    }

    .testi-card {
        width: 86vw;
        max-width: 320px
    }

    .testi-track {
        gap: 18px
    }

    .logos-strip {
        padding: 28px 0
    }

    .logos-flex {
        gap: 28px;
        padding: 0 16px
    }

    .logo-img {
        height: 42px
    }

    .clal-logo {
        height: 64px
    }

    .menora-logo {
        height: 108px
    }

    .pc-logo {
        height: 92px
    }

    .phoenix-logo {
        height: 88px
    }

    .about-text h2,
    .cta-box h2,
    .section-title,
    .story-content h2 {
        font-size: 1.8rem
    }

    .about-text p,
    .aud-card p,
    .faq-a p,
    .story-content p,
    .testi-card p {
        font-size: 1rem;
        max-width: 100%
    }

    .cta-box {
        padding: 30px 20px
    }

    .btn-submit,
    .field input,
    .field select {
        font-size: 1rem
    }
}

@media(max-width:480px) {
    .header-inner {
        height: 68px
    }

    .header-brand-logo {
        height: 38px
    }

    .logo-title {
        font-size: 1.1rem
    }

    .logo-subtitle {
        font-size: .75rem
    }

    .hero {
        padding: 72px 0 44px;
        min-height: auto
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.25
    }

    .hero-text .hero-subtitle {
        font-size: 1.15rem
    }

    .lead-box {
        padding: 16px 12px
    }

    .form-header h3 {
        font-size: 1rem
    }

    .btn-header,
    .btn-large,
    .btn-solid,
    .btn-submit {
        width: 100%;
        justify-content: center
    }

    .aud-card,
    .cta-box,
    .testi-card,
    .why-card {
        border-radius: 18px
    }

    .logos-flex {
        gap: 18px
    }

    .logo-img {
        height: 36px
    }

    .clal-logo {
        height: 56px
    }

    .menora-logo {
        height: 92px
    }

    .pc-logo {
        height: 82px
    }

    .phoenix-logo {
        height: 78px
    }

    .success h3 {
        font-size: 1.4rem
    }

    .success p {
        font-size: 1rem
    }
}

@media(max-width:420px) {
    .nav {
        padding: 18px 16px
    }

    .nav-a {
        font-size: 1rem
    }

    .hero-text h1 {
        font-size: 1.65rem
    }

    .hero-text .hero-subtitle {
        font-size: 1.05rem
    }

    .about-text h2,
    .cta-box h2,
    .section-title,
    .story-content h2 {
        font-size: 1.5rem
    }

    .faq-q {
        padding: 18px 20px
    }

    .faq-a p {
        padding: 16px 20px 18px
    }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
    contain: layout style
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.subpage-main {
    background-color: var(--bg-alt)
}

.inner-hero {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden
}

.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(10, 42, 67, .95) 0, rgba(13, 75, 120, .85) 100%), url('main-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: 1
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto
}

.inner-hero .highlight-text {
    display: inline-block;
    background: rgba(65, 179, 124, .2);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 20px
}

.inner-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2
}

.inner-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6
}

.article-section {
    padding: 80px 0;
    background: var(--white)
}

.article-section .story-content {
    max-width: 800px;
    margin: 0 auto
}

.article-section h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800
}

.article-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px
}

.not-found-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    flex-grow: 1;
    background-color: var(--bg)
}

.not-found-content h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 10px
}

.not-found-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px
}

.not-found-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px
}

.mobile-fab {
    display: none
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    z-index: 800;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: 0 0;
    box-shadow: none;
    color: var(--white);
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease, filter .25s ease, box-shadow .25s ease;
    animation: fabPulse 2.6s ease-in-out infinite;
    will-change: transform
}

.fab-btn i {
    font-size: 1.3rem;
    line-height: 1;
    transition: transform .25s ease
}

@keyframes fabPulse {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-2px) scale(1.02)
    }
}

.fab-btn span {
    display: none
}

.fab-whatsapp {
    right: 20px;
    color: #25d366;
    background: rgba(37, 211, 102, .08);
    border: 1px solid rgba(37, 211, 102, .2);
    box-shadow: 0 4px 12px rgba(37, 211, 102, .15)
}

.fab-whatsapp:hover {
    background: rgba(37, 211, 102, .16);
    transform: scale(1.1) translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 18px rgba(37, 211, 102, .22)
}

.fab-whatsapp:hover i {
    transform: rotate(8deg) scale(1.05)
}

.fab-phone {
    left: 20px;
    color: var(--green);
    background: rgba(13, 75, 120, .08);
    border: 1px solid rgba(13, 75, 120, .2);
    box-shadow: 0 4px 12px rgba(13, 75, 120, .12)
}

.fab-phone:hover {
    background: rgba(13, 75, 120, .16);
    transform: scale(1.1) translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 18px rgba(13, 75, 120, .2)
}

.fab-phone:hover i {
    transform: rotate(-8deg) scale(1.05)
}

@media (max-width:768px) {
    .mobile-fab {
        display: flex
    }

    body {
        padding-bottom: 0
    }

    [class*=userway],
    [id*=userway] {
        top: 3rem !important;
        bottom: auto !important;
        left: rem !important;
        right: auto !important;
        transform: none !important
    }
}

p {
    font-size: 1.1rem;
    max-width: 75ch
}

.cursor {
    display: inline-block;
    width: 4px;
    height: .9em;
    background-color: var(--primary);
    margin-right: 6px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom
}

.cursor.typing {
    animation: none;
    opacity: 1
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.typewriter {
    color: var(--green)
}

.subpage-main .about-me {
    padding-top: 20px
}

.dashboard-container {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .05);
    padding: 40px;
    max-width: 1100px;
    margin: -80px auto 0;
    position: relative;
}

.dashboard-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background: var(--bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0
}

.dash-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.dash-input-group label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: .95rem
}

.dash-input-group input {
    direction: ltr;
    text-align: center;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--primary-deep);
    transition: .3s
}

.dash-input-group input:focus {
    border-color: var(--green);
    outline: 0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(65, 179, 124, .1)
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width:900px) {
    .dashboard-content {
        flex-direction: row
    }
}

.chart-area {
    width: 100%;
    flex: 2;
    position: relative;
    min-height: 350px
}

.summary-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.summary-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.box-final {
    background: #e8f5ee;
    border: 1px solid #c8e6c9
}

.box-deposits {
    background: #fff3e0;
    border: 1px solid #ffe0b2
}

.box-profit {
    background: #e3f2fd;
    border: 1px solid #bbdefb
}

.box-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6)
}

.box-final .box-icon {
    color: #2e8b57
}

.box-deposits .box-icon {
    color: #f57c00
}

.box-profit .box-icon {
    color: #1976d2
}

.box-text {
    display: flex;
    flex-direction: column
}

.box-text span {
    font-size: .95rem;
    color: var(--primary-deep);
    font-weight: 500;
    margin-bottom: 2px
}

.box-text strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111
}

.dash-input-group--slider {
    flex-basis: 100%;
    text-align: center;
}

.dash-input-group--slider label {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.slider-container {
    padding: 0 10px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: var(--bg-alt);
    border-radius: 4px;
    border: 1px solid var(--border);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
    margin-top: -9px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bottom-cta,
.faq,
.site-footer,
.testimonials {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, .1);
    padding: 1rem 0;
    z-index: 9999;
    transition: bottom .5s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    justify-content: center
}

.cookie-banner.show {
    bottom: 0
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    gap: 20px
}

.cookie-content p {
    font-size: .95rem;
    color: var(--text-gray);
    margin: 0
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline
}

.btn-sm {
    padding: 8px 20px;
    font-size: .95rem;
    border-radius: 30px;
    min-width: max-content
}

@media (max-width:768px) {
    .cookie-banner {
        bottom: -100%;
        width: 94%;
        left: 3%;
        border-radius: 1rem;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, .15);
        padding: 1.25rem 1rem
    }

    .cookie-banner.show {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0.5rem))
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem
    }
}

.hero-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.service-tag {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(13, 75, 120, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
    color: var(--primary-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-tag svg {
    color: var(--green);
    font-size: 1em;
}

.service-tag:hover {
    background: var(--white);
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .hero-services-tags {
        justify-content: center;
    }

    .service-tag {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(13, 75, 120, 0.15);
        padding: 0.5rem 1.2rem;
        border-radius: 2rem;
        font-size: 1.05rem;
        font-weight: 700;
        backdrop-filter: blur(8px);
        transition: 0.3s ease;
        color: var(--primary-deep);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
}

.form-cta-sub {
    font-size: 1.05rem;
    color: var(--primary);
    margin-top: 5px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .form-cta-sub {
        font-size: 0.95rem;
    }
}

/* Staggered animation for service tags */
#tag1 { animation-delay: 0.6s; }
#tag2 { animation-delay: 0.7s; }
#tag3 { animation-delay: 0.8s; }
#tag4 { animation-delay: 0.9s; }
#tag5 { animation-delay: 1.0s; }

@keyframes slideUpFadeBox {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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




@media (max-width: 768px) {
    .rubber-stamp {
        left: 12px;
    }
}