/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #0000f5;
    --blue-dark: #0000c4;
    --blue-light: rgba(0, 0, 245, 0.06);
    --blue-border: rgba(0, 0, 245, 0.10);
    --blue-hover: rgba(0, 0, 245, 0.04);
    --white: #ffffff;
    --bg: #fafafe;
    --text: #1a1a3e;
    --text-secondary: #5a5a7a;
    --border: #e8e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0,0,40,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,40,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,40,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Heebo', sans-serif;
    background: var(--white);
    color: var(--text);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.highlight { color: var(--blue); }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.section-header h2,
.transparency-text h2,
.photo-text h2,
.contact-text h2,
.calc-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Heebo', sans-serif;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 245, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 245, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue-border);
}
.btn-ghost:hover {
    background: var(--blue-light);
    border-color: var(--blue);
}
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.logo-he {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,250,254,0.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}
.hero-badge-row { margin-bottom: 20px; }
.hero-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--blue-border);
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.9;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}
.hero-numbers {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 32px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: inline-flex;
}
.hero-num {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    border-left: 1px solid var(--border);
}
.hero-num:last-child {
    border-left: none;
}
.num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.num-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.4;
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.proof-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.proof-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

/* ========== BENEFITS ========== */
.benefits-section { background: var(--bg); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(24px);
    box-shadow: var(--shadow-sm);
    background-image:
        linear-gradient(135deg, rgba(0,0,245,0.02) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,245,0.01) 100%);
}
.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.benefit-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,0,245,0.12), 0 0 0 1px rgba(0,0,245,0.08);
    transform: translateY(-6px);
}
.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-light), rgba(0,0,245,0.10));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--blue-border);
}
.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== GALLERY STRIP ========== */
.gallery-strip {
    padding: 40px 24px;
    overflow: hidden;
    max-width: 1248px;
    margin: 0 auto;
}
.gallery-track {
    display: flex;
    gap: 16px;
    height: 400px;
}
.gallery-item {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}

/* ========== CALCULATOR ========== */
.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.calc-text { padding-top: 20px; }
.calc-text p { max-width: 400px; }
.calculator-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.calc-input-group { margin-bottom: 28px; }
.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.calc-label-row label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}
.range-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 245, 0.3);
}
input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    cursor: pointer;
    border: none;
}
.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}
.calc-result {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
}
.result-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.result-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text);
}
.result-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 6px;
}
.vacation-result {
    border-color: var(--blue-border);
    background: var(--blue-light);
}
.calc-bar-wrap { margin: 20px 0; }
.calc-bar {
    height: 28px;
    background: var(--bg);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.bar-fill { height: 100%; border-radius: 14px; transition: width 0.8s ease; }
.rent-bar { background: var(--border); width: 40%; }
.vacation-bar { background: linear-gradient(90deg, var(--blue-dark), var(--blue)); width: 80%; }
.calc-profit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    margin: 20px 0;
    border: 1px solid var(--blue-border);
}
.calc-profit span { font-weight: 500; color: var(--text-secondary); }
.calc-profit strong { font-size: 1.4rem; }

/* ========== TRANSPARENCY ========== */
.transparency-section { background: var(--bg); }
.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.transparency-text > p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.transparency-list { list-style: none; }
.transparency-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.check-icon { flex-shrink: 0; margin-top: 2px; }
.transparency-list li strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}
.transparency-list li div span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Phone Mockup */
.transparency-visual { display: flex; justify-content: center; }
.phone-mockup {
    width: 280px;
    background: var(--white);
    border-radius: 40px;
    padding: 10px;
    border: 3px solid var(--blue-border);
    box-shadow: 0 20px 60px rgba(0,0,245,0.10), 0 0 0 1px rgba(0,0,245,0.04);
    position: relative;
}
.phone-notch {
    width: 120px;
    height: 24px;
    background: var(--white);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 2px solid var(--border);
    border-top: none;
}
.phone-screen {
    background: var(--bg);
    border-radius: 32px;
    padding: 20px 14px;
    min-height: 420px;
    margin-top: -10px;
}
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
}
.app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}
.app-card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}
.app-label { font-size: 0.7rem; color: var(--text-secondary); }
.app-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
    margin: 4px 0;
}
.app-trend { font-size: 0.7rem; color: #16a34a; font-weight: 600; }
.app-progress {
    height: 5px;
    background: var(--border);
    border-radius: 3px;
    margin: 8px 0;
}
.progress-fill { height: 100%; background: var(--blue); border-radius: 3px; }
.app-booking strong { display: block; color: var(--text); font-size: 0.85rem; }
.app-booking span { font-size: 0.7rem; color: var(--text-secondary); }

/* ========== CHANNELS ========== */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.channel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.channel-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,0,245,0.10), 0 0 0 1px rgba(0,0,245,0.06);
    transform: translateY(-6px);
}
.channel-logo-wrap {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.award-medal {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 16px rgba(0,0,245,0.12));
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.channel-card:hover .award-medal {
    transform: scale(1.06) rotate(-2deg);
}
.award-medal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.award-medal-booking {
    background: radial-gradient(circle at center, rgba(0,53,128,0.08), transparent 70%);
    border-radius: 50%;
}
.booking-score-badge {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003580 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,53,128,0.35), inset 0 2px 4px rgba(255,255,255,0.25);
    border: 3px solid #FFD700;
    position: relative;
}
.booking-score-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.4);
}
.booking-score-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
}
.channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.returning-icon {
    background: none !important;
    width: auto;
    height: auto;
    border-radius: 0;
}
.channel-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.channel-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.airbnb-status { color: #FF5A5F; font-weight: 600; }
.booking-status { color: #003580; font-weight: 600; }

/* ========== PHOTOGRAPHY ========== */
.photography-section { background: var(--white); }
.photo-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.photo-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.photo-features { display: flex; flex-direction: column; gap: 14px; }
.photo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}
.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
.photo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 12px;
}
.mosaic-large {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
}
.mosaic-small {
    border-radius: var(--radius);
    overflow: hidden;
}
.mosaic-large img,
.mosaic-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mosaic-large:hover img,
.mosaic-small:hover img {
    transform: scale(1.04);
}

/* ========== SECURITY ========== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.security-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(24px);
    box-shadow: var(--shadow-sm);
    background-image: linear-gradient(to bottom right, transparent 70%, rgba(0,0,245,0.03) 100%);
}
.security-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.security-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,0,245,0.10), 0 0 0 1px rgba(0,0,245,0.06);
    transform: translateY(-6px);
}
.security-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 12px;
    opacity: 0.2;
    font-style: italic;
}
.security-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.security-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section { background: var(--bg); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.contact-trust { display: flex; flex-direction: column; gap: 14px; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
    direction: rtl;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 245, 0.08);
}
.form-group select { cursor: pointer; color: var(--text-secondary); }
.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-secondary); font-size: 0.8rem; }

/* ========== LUXURY ACCENTS ========== */
.hero-content::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,0,245,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-header h2::after,
.transparency-text h2::after,
.photo-text h2::after,
.contact-text h2::after,
.calc-text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--blue);
    margin-top: 16px;
    border-radius: 2px;
}
.section-header h2::after {
    margin-left: auto;
    margin-right: auto;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--blue);
    transition: width 0.4s ease;
    border-radius: 0 var(--radius) 0 0;
}
.benefit-card {
    position: relative;
    overflow: hidden;
}
.benefit-card:hover::before {
    width: 100%;
}

.security-card {
    position: relative;
    overflow: hidden;
}
.security-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--blue-light);
    border-radius: 50%;
    transform: translate(20px, 20px);
    transition: transform 0.4s ease;
}
.security-card:hover::after {
    transform: translate(10px, 10px);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,40,0.15) 100%);
    pointer-events: none;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    left: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius) var(--radius) 0 0;
}
.contact-form {
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    left: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius) var(--radius) 0 0;
}
.calculator-card {
    position: relative;
    overflow: hidden;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .benefits-grid,
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* NAV */
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links { gap: 0; }
    .logo { font-size: 1.2rem; letter-spacing: 3px; }
    .logo-he { font-size: 0.55rem; }

    /* HERO */
    .hero { min-height: auto; }
    .hero-content { padding-top: 100px; padding-bottom: 60px; }
    .hero h1 { font-size: 2rem; margin-bottom: 16px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; line-height: 1.7; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 40px; }
    .hero-actions .btn { text-align: center; padding: 14px 24px; }
    .hero-numbers {
        flex-direction: row;
        gap: 0;
        padding: 20px 16px;
        width: 100%;
        justify-content: space-around;
    }
    .hero-num { padding: 0 12px; align-items: center; text-align: center; }
    .hero-num:last-child { border-left: none; }
    .num { font-size: 1.8rem; }
    .num-label { font-size: 0.7rem; margin-top: 4px; }

    /* SOCIAL PROOF */
    .proof-divider { display: none; }
    .proof-items { gap: 12px; flex-direction: column; align-items: center; }
    .proof-item { font-size: 0.8rem; }

    /* BENEFITS */
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefit-card { padding: 24px 20px; }

    /* GALLERY */
    .gallery-strip { padding: 20px 16px; }
    .gallery-track { flex-direction: column; height: auto; gap: 12px; }
    .gallery-item { height: 220px; }

    /* CALCULATOR */
    .calc-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .calc-text { text-align: center; }
    .calc-text .section-tag { margin-bottom: 12px; }
    .calc-text h2::after { margin-left: auto; margin-right: auto; }
    .calc-text p { max-width: 100%; }
    .calculator-card { padding: 24px 20px; }
    .calc-results { grid-template-columns: 1fr; gap: 12px; }
    .calc-result { padding: 20px; }
    .result-amount { font-size: 1.5rem; }
    .range-value { font-size: 1rem; }
    .calc-profit { flex-direction: column; gap: 4px; text-align: center; padding: 14px; }
    .calc-profit strong { font-size: 1.2rem; }

    /* TRANSPARENCY */
    .transparency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .transparency-visual { order: -1; }
    .phone-mockup { width: 240px; }
    .phone-screen { min-height: 360px; padding: 16px 12px; }
    .app-amount { font-size: 1.3rem; }

    /* CHANNELS */
    .channels-grid { grid-template-columns: 1fr; gap: 16px; }
    .channel-card { padding: 24px 16px; }
    .award-medal { width: 88px; height: 88px; }
    .booking-score-badge { width: 76px; height: 76px; border-width: 3px; }
    .booking-score-num { font-size: 2.1rem; }

    /* PHOTOGRAPHY */
    .photo-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .photo-mosaic {
        grid-template-rows: 200px 140px;
        gap: 8px;
    }
    .photo-feature { font-size: 0.85rem; }

    /* SECURITY */
    .security-grid { grid-template-columns: 1fr; gap: 16px; }
    .security-card { padding: 24px 20px; }
    .security-num { font-size: 1.8rem; }

    /* CONTACT */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-text { text-align: center; }
    .contact-text h2::after { margin-left: auto; margin-right: auto; }
    .contact-trust { align-items: center; }
    .contact-form { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }

    /* FOOTER */
    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-direction: column; align-items: center; gap: 12px; }

    /* SECTION HEADERS */
    .section-header h2,
    .transparency-text h2,
    .photo-text h2,
    .contact-text h2,
    .calc-text h2 { font-size: 1.6rem; }
    .section-desc { font-size: 0.95rem; }
    .section-tag { font-size: 0.7rem; padding: 5px 14px; }
}

@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-numbers { padding: 16px 8px; }
    .num { font-size: 1.5rem; }
    .num-label { font-size: 0.6rem; }
    .calculator-card, .contact-form { padding: 18px 14px; }
    .award-medal { width: 78px; height: 78px; }
    .booking-score-badge { width: 68px; height: 68px; }
    .booking-score-num { font-size: 1.9rem; }
}
