@charset "UTF-8";
/* דקה 99 - page 7170. Lifted out of the Elementor custom-HTML
   widget, where it was inline on every request. Brand primaries now
   resolve to tokens.css; neutrals were left as authored.
   Loaded only on this page. */

        :root {
            --red: var(--dk-brand);
            --red-dark: var(--dk-brand-dark);
            --red-light: #ff3333;
            --black: #0f0f0f;
            --gray-dark: #1e1e1e;
            --gray: #4a4a4a;
            --gray-mid: #888;
            --gray-light: #f0f4f8;
            --white: #ffffff;
            --green: #25d366;
            /* was #f5c518 - 1.63:1 on white, effectively invisible */
            --gold: var(--dk-gold);
            --border: #e2e8f0;
            --shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Heebo', sans-serif;
            background: var(--white);
            color: var(--black);
            direction: rtl;
            line-height: 1.7;
        }
        /* ========== HERO / CONVERSION SECTION ========== */
        .hero-section {
            display: flex;
            flex-wrap: wrap;
            min-height: calc(100vh - 70px);
            direction: rtl;
        }

        .hero-content {
            flex: 1;
            min-width: 320px;
            background: linear-gradient(150deg, var(--dk-brand) 0%, #7a0000 100%);
            color: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .hero-content::after {
            content: "";
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 540px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            margin-bottom: 24px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.85; }
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #4cd964;
            border-radius: 50%;
            animation: blink 1.4s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

       /* #daka99-page raises these above .elementor-kit-4 h1 (0,0,1,1),
          which otherwise wins font-size / font-weight / line-height. */
       #daka99-page .hero-title {
    font-family: var(--dk-font-serif);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
    color: #ffffff !important;
}

.hero-title em {
    font-style: normal;
    position: relative;
    color: #ffffff !important;
}

        .hero-title em::after {
            content: "";
            position: absolute;
            bottom: 2px;
            right: 0;
            left: 0;
            height: 3px;
            background: rgba(255,255,255,0.4);
            border-radius: 2px;
        }

        .hero-sub {
            font-size: 1.2rem;
            line-height: 1.7;
            opacity: 0.95;
            margin-bottom: 36px;
        }

        .hero-checks {
            list-style: none;
            margin-bottom: 36px;
        }

        .hero-checks li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .chk {
            background: linear-gradient(135deg, #4cd964, #2ebf4f);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
            box-shadow: 0 3px 10px rgba(76,217,100,0.35);
        }

        .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }

        .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 15px 26px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(37,211,102,0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-wa:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37,211,102,0.5);
        }

        .btn-tel {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 15px 26px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            transition: background 0.2s, border-color 0.2s;
        }

        .btn-tel:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
        }

        .btn-online-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: var(--red);
            padding: 12px 22px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 8px;
        }

        .btn-online-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }

        .online-note {
            display: block;
            font-size: 0.82rem;
            opacity: 0.85;
            margin-top: 7px;
            font-style: italic;
        }

        .agent-row {
            display: flex;
            align-items: flex-end;
            gap: 24px;
        }

        .cta-col { flex: 1; }

        .agent-img-wrap img {
            width: 160px;
            border-radius: 16px;
            border: 2px solid rgba(255,255,255,0.2);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            display: block;
        }

        /* FORM SIDE */
        .hero-form-side {
            flex: 1;
            min-width: 320px;
            background: #f9fafb;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 35px;
        }

        .form-card {
            background: white;
            width: 100%;
            max-width: 460px;
            border-radius: 22px;
            padding: 40px 36px;
            box-shadow: var(--shadow);
        }

        .form-card-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 6px;
            text-align: center;
        }

        .form-card-sub {
            font-size: 0.95rem;
            color: var(--gray-mid);
            text-align: center;
            margin-bottom: 24px;
        }

        .form-highlight {
            background: linear-gradient(135deg, var(--dk-brand-soft), var(--dk-brand-soft-2));
            border-right: 4px solid var(--red);
            border-radius: 10px;
            padding: 14px 16px;
            font-size: 0.9rem;
            color: var(--red-dark);
            margin-bottom: 22px;
            line-height: 1.5;
        }

        .form-highlight strong { display: block; font-weight: 700; margin-bottom: 4px; }

        .secure-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--gray-mid);
            margin-top: 16px;
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 80px 24px;
        }

        .section-inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .section-alt { background: var(--gray-light); }

        .section-tag {
            display: inline-block;
            background: var(--dk-brand-soft-2);
            color: var(--red);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .section-title {
            font-family: var(--dk-font-serif);
            font-size: 2.3rem;
            font-weight: 900;
            color: var(--black);
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .section-lead {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.75;
            max-width: 720px;
            margin-bottom: 40px;
        }

        /* ========== WHY PASSPORT ========== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 22px;
            margin-top: 10px;
        }

        .why-card {
            background: white;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: "";
            position: absolute;
            top: 0; right: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--red), var(--red-dark));
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        }

        .why-icon {
            font-size: 2.2rem;
            margin-bottom: 14px;
        }

        .why-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ========== COVERAGE TABLE ========== */
        .coverage-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            font-size: 0.92rem;
        }

        .coverage-table thead tr {
            background: var(--red);
            color: white;
        }

        .coverage-table thead th {
            padding: 16px 20px;
            text-align: right;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .coverage-table tbody tr:nth-child(even) { background: #fafafa; }
        .coverage-table tbody tr:nth-child(odd) { background: white; }
        .coverage-table tbody tr:hover { background: var(--dk-brand-soft); }

        .coverage-table tbody td {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
            color: var(--gray-dark);
        }

        .coverage-table tbody td:first-child {
            font-weight: 600;
            color: var(--black);
        }

        .tag-yes {
            background: #e6f9ee;
            color: #1a7a3c;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
        }

        .tag-opt {
            background: #fff8e1;
            color: #7a5f00;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
        }

        /* ========== PLANS COMPARISON ========== */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 24px;
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
            transition: transform 0.25s, border-color 0.25s;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-6px);
            border-color: var(--red);
        }

        .plan-card.featured {
            border-color: var(--red);
            background: linear-gradient(180deg, #fff9f9 0%, white 100%);
        }

        .plan-badge {
            position: absolute;
            top: -14px;
            right: 50%;
            transform: translateX(50%);
            background: var(--red);
            color: white;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 5px 16px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .plan-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 6px;
        }

        .plan-desc {
            font-size: 0.88rem;
            color: var(--gray-mid);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .plan-features-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .plan-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--gray-dark);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .plan-features-list li::before {
            content: "✓";
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .plan-btn {
            display: block;
            text-align: center;
            padding: 13px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .plan-btn-primary {
            background: var(--red);
            color: white;
        }

        .plan-btn-primary:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
        }

        .plan-btn-secondary {
            background: #f4f4f4;
            color: var(--black);
        }

        .plan-btn-secondary:hover {
            background: #e8e8e8;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 820px;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .faq-q {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .faq-q::before {
            content: "?";
            background: var(--red);
            color: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .faq-a {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.75;
            padding-right: 38px;
        }

        /* ========== LONG CONTENT ========== */
        .content-block {
            max-width: 820px;
        }

        .content-block h3 {
            font-family: var(--dk-font-serif);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--black);
            margin: 36px 0 14px;
        }

        .content-block h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--black);
            margin: 26px 0 10px;
        }

        .content-block p {
            font-size: 0.98rem;
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .content-block ul {
            padding-right: 20px;
            margin-bottom: 18px;
        }

        .content-block ul li {
            font-size: 0.97rem;
            color: var(--gray);
            line-height: 1.75;
            margin-bottom: 8px;
        }

        .content-block ul li::marker {
            color: var(--red);
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--dk-brand-soft), var(--dk-brand-soft-2));
            border: 1px solid #f5c6c6;
            border-radius: 14px;
            padding: 22px 24px;
            margin: 24px 0;
        }

        .highlight-box strong { color: var(--red-dark); }

        .info-box {
            background: #f0f9ff;
            border: 1px solid #bee3f8;
            border-radius: 14px;
            padding: 22px 24px;
            margin: 24px 0;
        }

        .info-box strong { color: #1a5f8a; }
        /* ========== STATS BAND ========== */
        .stats-band {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: white;
            padding: 60px 24px;
        }

        .stats-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {}

        .stat-num {
            font-family: var(--dk-font-serif);
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* ========== TIPS SECTION ========== */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 22px;
        }

        .tip-card {
            background: white;
            border-radius: 16px;
            padding: 26px 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
            display: flex;
            gap: 16px;
        }

        .tip-num {
            width: 40px;
            height: 40px;
            background: var(--red);
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .tip-text h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 6px;
        }

        .tip-text p {
            font-size: 0.88rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ========== CTA BAND ========== */
        .cta-band {
            background: var(--black);
            color: white;
            padding: 70px 24px;
            text-align: center;
        }

        .cta-band h2 {
            font-family: var(--dk-font-serif);
            font-size: 2.4rem;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .cta-band p {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 32px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-band-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        .cta-band-btns a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 30px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .cta-band-btns a:hover { transform: translateY(-2px); }

        .cta-btn-wa {
            background: var(--green);
            color: white;
        }

        .cta-btn-online {
            background: white;
            color: var(--black);
        }
        /* ========== STICKY BAR ========== */
        .sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            z-index: 1000;
            gap: 10px;
        }

        .sticky-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
        }

        .s-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
        .s-ph { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; }

        /* ========== עטיפה ראשית – מאפסת את המגבלות של אלמנטור ======= */
        #daka99-page {
            margin: 0 !important;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            overflow-x: hidden;
        }

        .daka99-parent-reset {
            padding: 0 !important;
            margin: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
        }

        #daka99-page .hero-section,
        #daka99-page .stats-band,
        #daka99-page .section,
        #daka99-page .cta-band,
        #daka99-page .sticky-bar {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 900px) {
            #daka99-page .hero-title { font-size: 2.5rem; }
        }

        @media (max-width: 680px) {
            .hero-content { padding: 40px 22px 35px; }
            #daka99-page .hero-title { font-size: 2.1rem; }
            .hero-form-side { padding: 30px 18px 110px; background: #f9fafb; margin-top: -18px; border-radius: 22px 22px 0 0; z-index: 10; }
            .form-card { box-shadow: none; padding: 20px 16px; }
            .section { padding: 55px 18px; }
            .section-title { font-size: 1.8rem; }
            .agent-row { flex-direction: column; align-items: center; }
            .agent-img-wrap img { width: 220px; margin-top: 16px; }
            .cta-group { flex-direction: column; }
            .btn-wa, .btn-tel { justify-content: center; }
            .cta-band h2 { font-size: 1.9rem; }
            .sticky-bar { display: flex; }
            /* Measured 2026-09-03 at 393px: the bar is fixed, 75px tall, and body
               padding-bottom was 0, so at the end of the document it covered 44px of
               nav.dk2-social permanently. Reserve its height below the footer. */
            body.page-id-7170 { padding-bottom: calc(75px + env(safe-area-inset-bottom)); }
            .coverage-table { font-size: 0.82rem; }
            .coverage-table thead th, .coverage-table tbody td { padding: 12px 14px; }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-inner { animation: fadeUp 0.65s ease-out; }
        .form-card { animation: fadeUp 0.65s ease-out 0.15s both; }
    