/**
 * Branding Plus - Unified Master Stylesheet
 * Complete external CSS injection. No inline styles used.
 */

/* ── 1. GLOBAL RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --brand-bg: #0b0d13;
    --brand-panel: #131722;
    --brand-accent: #f59e0b;
    --brand-cta: #ff6b35;
    --brand-cta-dark: #e0531f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --slate-600: #475569;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Assistant', sans-serif; background-color: #fafafa; color: var(--text-dark); overflow-x: hidden; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── 2. TYPOGRAPHY & COMPONENTS ── */
.section-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 800; color: var(--brand-bg); line-height: 1.3; }
.divider { width: 3.5rem; height: 3px; background: var(--brand-accent); margin: 1.25rem auto 0; border-radius: 4px; }

/* ── 3. HEADER & NAV ── */
header { position: absolute; top: 0; left: 0; width: 100%; z-index: 50; background: transparent; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; }
.logo-box { font-size: 1.35rem; font-weight: 800; color: var(--text-main); text-decoration: none; letter-spacing: -0.02em; }
.logo-box span { color: var(--brand-accent); }

.desktop-nav { display: none; gap: 2.5rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--brand-accent); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-quick-call { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--text-main); padding: 0.55rem 1.15rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.btn-quick-call:hover { background: var(--brand-accent); color: var(--brand-bg); border-color: var(--brand-accent); }

.mobile-menu-toggle { display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--text-main); font-size: 1.35rem; cursor: pointer; outline: none; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none !important; } }

/* ── 4. MOBILE MENU OVERLAY ── */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #ffffff; z-index: 99999; flex-direction: column; display: none; padding: 2rem; direction: rtl !important; box-sizing: border-box; }
.mobile-menu-overlay.active { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 3rem; }
.logo-box-mobile { font-size: 1.5rem; font-weight: 800; color: var(--brand-bg); text-decoration: none; letter-spacing: -0.02em; }
.logo-box-mobile span { color: var(--brand-accent); }
.mobile-menu-close { background: none; border: none; font-size: 1.75rem; color: var(--brand-bg); cursor: pointer; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.mobile-nav-link { font-size: 1.25rem; font-weight: 700; color: var(--brand-bg); text-decoration: none; padding: 0.5rem; border-bottom: 1px solid #f1f5f9; }
.mobile-nav-link:active { color: var(--brand-accent); }

/* ── 5. HERO SECTION ── */
#hero { position: relative; background: var(--brand-bg); padding: 9rem 0 7rem; min-height: auto; text-align: center; overflow: hidden; }
#hero .bg-mesh { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; background-position: center; pointer-events: none; opacity: 0.7; }
#hero .radial-glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%); pointer-events: none; }

.hero-center-stack { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; max-width: 46rem; margin: 0 auto; position: relative; z-index: 10; }
.badge-capsule { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.85rem; border-radius: 2rem; background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.15); color: var(--brand-accent); font-size: 0.8rem; font-weight: 700; }
h1.hero-title { font-size: clamp(2.25rem, 6vw, 3.8rem); font-weight: 800; color: var(--text-main); line-height: 1.15; letter-spacing: -0.01em; }
.hero-desc { color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.75; }

/* ── 6. HERO INLINE FORM ── */
.inline-action-form { background: var(--brand-panel); border: 1px solid rgba(255,255,255,0.08); padding: 0.75rem; border-radius: 3rem; width: 100%; max-width: 44rem; margin-top: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.3); position: relative; z-index: 20; }
.inline-form-grid { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
@media (min-width: 640px) { .inline-form-grid { flex-direction: row; align-items: center; } }
.inline-input-wrap { position: relative; flex: 1; width: 100%; }
.inline-action-form input { width: 100% !important; background: transparent !important; border: none !important; color: var(--text-main) !important; padding: 0.6rem 1rem !important; font-size: 0.95rem !important; outline: none !important; text-align: right !important; }
.inline-action-form input::placeholder { color: rgba(255,255,255,0.4); }
@media (min-width: 640px) { .inline-input-wrap:not(:last-child)::after { content: ''; position: absolute; left: 0; top: 25%; width: 1px; height: 50%; background: rgba(255,255,255,0.1); } }

.btn-submit-flat { background: var(--brand-cta); color: var(--text-main); border: none; padding: 0.85rem 1.75rem; font-size: 0.95rem; font-weight: 700; border-radius: 2rem; cursor: pointer; transition: background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; width: 100%; }
@media (min-width: 640px) { .btn-submit-flat { width: auto; white-space: nowrap; } }
.btn-submit-flat:hover { background: #e0531f; }
.form-success-overlay { display: none; position: absolute; inset: 0; background: var(--brand-panel); border-radius: 3rem; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-main); font-size: 0.95rem; font-weight: 700; z-index: 30; }
.form-error-alert { position:absolute; top:100%; right:0; color:#ef4444; font-size:0.75rem; display:none; font-weight:bold; padding-top:4px; }

/* ── 7. LOGO BAR ── */
#logo-bar { padding: 3rem 0; background: #ffffff; border-bottom: 1px solid #f1f5f9; }
.logo-bar-label { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--slate-600); margin-bottom: 2rem; }
.logo-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; }
.logo-bar-inner img { height: 2.2rem; width: auto; filter: grayscale(100%); opacity: 0.4; transition: filter 0.3s, opacity 0.3s; }
.logo-bar-inner img:hover { filter: none; opacity: 0.85; }

/* ── MITUG PLUS COMPACT FLOATING TABS SWITCHER ── */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.pricing-switcher-btn {
    position: relative;
    display: inline-flex;
    background: #090d16;
    padding: 4px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.8);
    width: 280px;
}

.tab-toggle-btn {
    flex: 1;
    width: 50%;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    z-index: 2;
    transition: color 0.25s ease;
    text-align: center;
    white-space: nowrap;
}

.tab-toggle-btn.active {
    color: #ffffff;
}

/* Slider with Mitug Plus premium amber/amber-dark gradient */
.pricing-switcher-btn .switcher-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: 4px;
    width: calc(50% - 4px);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 9999px;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 12px rgba(245, 158, 10, 0.3);
}

/* RTL translation matrix for smooth shifting left */
.pricing-list-row.tab-bundle-active ~ .pricing-tabs-wrapper .switcher-slider,
body:has(.tab-toggle-btn[data-tab="bundle"].active) .switcher-slider {
    transform: translateX(calc(-100% - 0px));
}

/* Stable Mobile View & Sticky Behavior */
@media (max-width: 768px) {
    .pricing-tabs-wrapper {
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 1rem 0;
        background: rgba(9, 13, 22, 0.8);
        backdrop-filter: blur(12px);
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    .pricing-switcher-btn {
        width: 260px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    
    .tab-toggle-btn {
        font-size: 0.78rem;
    }
}

/* ── STATE SWITCHING LOGIC (ROW VIEW) ── */
.pricing-list-row .state-page-only {
    display: none !important;
}

.pricing-list-row.tab-page-only-active .state-page-only {
    display: block !important;
}

.pricing-list-row.tab-page-only-active .state-bundle {
    display: none !important;
}

/* Flex layout structure logic safety */
.pricing-list-row.tab-page-only-active li.state-page-only,
.pricing-list-row.tab-bundle-active li.state-bundle {
    display: list-item !important;
}

.pricing-list-row.tab-page-only-active div.p-row-price .state-page-only,
.pricing-list-row.tab-bundle-active div.p-row-price .state-bundle {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

/* ── 8. HORIZONTAL PRICING ── */
#pricing { padding: 6rem 0; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.pricing-list-row { display: flex; flex-direction: column; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
.package-horizontal-row { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 2.25rem 2rem; display: grid; gap: 1.5rem; align-items: center; transition: all 0.3s ease; }
@media (min-width: 900px) { .package-horizontal-row { grid-template-columns: 1.2fr 1.5fr 1fr; } }
.package-horizontal-row:hover { transform: scale(1.01); box-shadow: 0 15px 35px rgba(11,13,19,0.04); }
.package-horizontal-row.featured { border: 2px solid var(--brand-accent); background: #fffdf9; }

.p-row-meta { display: flex; flex-direction: column; align-items: flex-start; }
.p-row-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; background: #f1f5f9; color: var(--brand-bg); border-radius: 4px; margin-bottom: 0.75rem; }
.p-row-tag.favorite { background: var(--brand-accent); color: var(--brand-bg); }
.p-row-tag.custom { background: var(--brand-panel); color: var(--text-main); }
.p-row-name { font-size: 1.35rem; font-weight: 800; color: var(--brand-bg); margin-bottom: 0.35rem; }
.p-row-desc { font-size: 0.85rem; color: #64748b; line-height: 1.5; }

.p-row-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.88rem; color: #475569; }
.p-row-features li { display: flex; gap: 0.5rem; align-items: flex-start; }
.p-row-features li i { margin-top: 0.2rem; color: var(--brand-accent); }

.p-row-price-action { text-align: right; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 900px) { .p-row-price-action { align-items: flex-end; } }
.p-row-price { display: flex; align-items: baseline; gap: 0.35rem; }
.price-old { font-size: 0.9rem; color: #94a3b8; text-decoration: line-through; }
.price-new { font-size: 2rem; font-weight: 800; color: var(--brand-bg); }
.price-vat { font-size: 0.75rem; color: #94a3b8; }
.btn-row-action { display: block; width: 100%; text-align: center; background: #f1f5f9; color: #334155; font-weight: 700; font-size: 0.9rem; padding: 0.85rem; border-radius: 0.5rem; text-decoration: none; transition: background 0.2s; }
.btn-row-action:hover { background: var(--brand-bg); color: #fff; }
.btn-row-action.cta { background: var(--brand-cta); color: #fff; }
.btn-row-action.cta:hover { background: #e0531f; }

/* ── 9. COMPARE TABLE ── */
/* Override global dark color for the h2 in the compare section */
#compare .section-title {
    color: #ffffff;
}

#compare { padding: 5rem 0; background: var(--brand-bg); }

.vs-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .vs-cards-container {
        flex-direction: row;
        align-items: stretch;
    }
}

.vs-card {
    flex: 1;
    background: var(--brand-panel);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.vs-card.featured-vs {
    border-color: rgba(245, 158, 11, 0.3); /* Brand accent subtle border */
    background: linear-gradient(to bottom, #131722, #181d2b);
}

.vs-card:hover {
    transform: translateY(-5px);
}

.vs-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.vs-card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.vs-card-header p {
    font-size: 0.85rem;
    color: #ffffff;
}

.vs-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vs-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vs-features li.con-item {
    color: var(--slate-500);
}

.vs-features i { font-size: 1.1rem; }
.icon-pro { color: #10b981; } /* Green */
.icon-mid { color: var(--brand-accent); } /* Amber */
.icon-con { color: #ef4444; opacity: 0.6; } /* Red */

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--brand-cta);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50%;
    border: 4px solid var(--brand-bg);
    margin: -1.5rem auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .vs-badge {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
}

/* ── 10. NEW MODERN PORTFOLIO OVERLAY CARDS ── */
#portfolio { padding: 5rem 0; background: #f8fafc; }
.modern-portfolio-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px) { .modern-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modern-portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.modern-portfolio-card {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.modern-portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* השורה שנוספה כדי לקבע לחלק העליון */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.modern-portfolio-card:hover img {
    transform: scale(1.08);
}
.p-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,13,19,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: padding 0.3s ease;
}
.modern-portfolio-card:hover .p-card-overlay {
    padding-bottom: 2rem;
}
.p-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 0.25rem;
}
.p-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

/* ── 11. STATS & ABOUT ── */
#stats-bar { padding: 3rem 0; background: white; border-bottom: 1px solid #e2e8f0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--brand-bg); margin-bottom: 0.2rem; }
.stat-label { font-size: 0.9rem; color: #475569; font-weight: 600; }

#about { padding: 5rem 0; background: white; }
.method-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }
.method-card { padding: 2.25rem 2rem; border-radius: 0.75rem; border: 1px solid #e2e8f0; background: #ffffff; transition: transform 0.3s; }
.method-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.04); }
.method-icon { font-size: 1.35rem; color: var(--brand-accent); margin-bottom: 1.25rem; }
.method-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brand-bg); }
.method-desc { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }

/* ── 12. PROCESS ── */
#process { padding: 5rem 0; background: #f8fafc; }
.process-grid { display: grid; gap: 2.5rem; max-width: 56rem; margin: 0 auto; position: relative; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-line { display: none; }
@media (min-width: 768px) { .process-line { display: block; position: absolute; top: 2.5rem; left: 15%; right: 15%; height: 1px; background: #cbd5e1; z-index: 0; } }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 5rem; height: 5rem; border-radius: 50%; background: var(--brand-bg); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-weight: 800; font-size: 1.5rem; border: 4px solid white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.process-num.green { background: var(--brand-cta); }
.process-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brand-bg); }
.process-desc { font-size: 0.9rem; color: #475569; line-height: 1.6; padding: 0 0.5rem; }

/* ── 13. TESTIMONIALS ── */
#testimonials { padding: 5rem 0; background: var(--brand-bg); color: white; }
.testimonials-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--brand-panel); padding: 2.25rem 1.5rem; border-radius: 0.75rem; }
.testimonial-card.featured { border: 1px solid rgba(255,107,53,0.3); transform: translateY(-0.5rem); }
.t-stars { color: var(--brand-accent); font-size: 0.8rem; margin-bottom: 1.25rem; display: flex; gap: 0.2rem; }
.t-text { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }
.t-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.t-name { font-weight: 700; font-size: 0.9rem; color: white; }
.t-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── 14. FAQ ── */
#faq { padding: 5rem 0; background: white; }
.faq-list { max-width: 44rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
details.faq-item { border: 1px solid #e2e8f0; padding: 1.25rem; border-radius: 0.5rem; background: #f8fafc; cursor: pointer; transition: all 0.2s; }
details.faq-item[open] { background: white; border-color: rgba(245,158,11,0.3); }
details.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.95rem; color: var(--brand-bg); outline: none; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary i { color: var(--brand-accent); transition: transform 0.2s; }
details.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { margin-top: 1rem; font-size: 0.9rem; color: #475569; line-height: 1.7; padding-left: 1rem; }

/* ── 15. VERTICAL CONTACT (FOOTER) ── */
#contact { padding: 6rem 0; background: #f8fafc; border-top: 1px solid #e2e8f0; }
.contact-vertical-box { background: #ffffff; border: 1px solid #e2e8f0; padding: 2.5rem 2rem; border-radius: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); text-align: right; max-width: 32rem; margin: 0 auto; position: relative; }
.form-group-v { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group-v label { font-size: 0.85rem; font-weight: 700; color: var(--brand-bg); }
.contact-vertical-box input { width: 100% !important; background: #f8fafc !important; border: 1px solid #cbd5e1 !important; border-radius: 0.5rem !important; padding: 0.85rem 1.15rem !important; font-size: 0.95rem !important; outline: none !important; color: var(--brand-bg) !important; text-align: right !important; }
.contact-vertical-box input:focus { border-color: var(--brand-accent) !important; }
.btn-submit-v { width: 100%; background: var(--brand-bg); color: white; border: none; padding: 1rem; border-radius: 0.5rem; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.75rem; transition: background 0.2s; }
.btn-submit-v:hover { background: var(--brand-panel); }

/* ── 16. FOOTER ── */
footer { background: white; padding: 2rem 1rem 6rem; border-top: 1px solid #e2e8f0; font-size: 0.8rem; }
@media (min-width: 768px) { footer { padding-bottom: 2rem; } }
.footer-bottom { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; color: var(--slate-600); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-links { display: flex; gap: 0.75rem; font-weight: 700; }
.footer-links a { color: #475569; text-decoration: none; }
.footer-links a:hover { color: var(--brand-bg); }

/* Animations Basics */
.animate-pulse-btn { position: relative; isolation: isolate; }
.animate-pulse-btn::after { content: ''; position: absolute; inset: 0; border-radius: 2rem; background: inherit; z-index: -1; opacity: 0.35; animation: pulse-glow 3s infinite cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes pulse-glow { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.05, 1.15); opacity: 0; } }

/* ── 17. NEW MODERN FLOATING ACTIONS ── */
.modern-floating-actions {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .modern-floating-actions {
        bottom: 2rem;
        left: 2rem;
        flex-direction: row-reverse;
    }
}

.float-action-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
    text-decoration: none;
}

.float-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.wa-btn { background: #25D366; }
.phone-btn { background: var(--brand-dark); border: 2px solid var(--brand-accent); color: var(--brand-accent); }
.phone-btn i { font-size: 1.25rem; }

/* ── 18. POPUPS (COOKIE & EXIT) ── */
#cookie-banner { position: fixed; bottom: 1rem; right: 1rem; max-width: 18rem; background: white; border: 1px solid #e2e8f0; padding: 1.25rem; z-index: 9999; border-radius: 0.75rem; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.cookie-text { font-size: 0.8rem; color: #475569; line-height: 1.6; margin-bottom: 1rem; }
.cookie-btns { display: flex; gap: 0.5rem; }
.cookie-approve { background: var(--brand-accent); border: none; padding: 0.4rem 0.85rem; font-weight: 700; font-size: 0.8rem; cursor: pointer; border-radius: 4px; color: var(--brand-bg); }
.cookie-deny { background: #f1f5f9; border: none; padding: 0.4rem 0.85rem; font-size: 0.8rem; cursor: pointer; border-radius: 4px; color: var(--slate-700); }

#exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); }
#exit-overlay.active { display: flex; }
#exit-popup { background: white; padding: 2.5rem 2rem; border-radius: 1rem; max-width: 28rem; width: 100%; text-align: center; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
#exit-popup h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--brand-bg); }
#exit-popup p { font-size: 0.9rem; color: #475569; line-height: 1.6; }

/* ── EXIT POPUP SPLIT CARDS ── */
.exit-offer {
    margin: 1.5rem 0;
    text-align: center;
}

.exit-offer-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.exit-split-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (min-width: 480px) {
    .exit-split-cards {
        flex-direction: row;
        align-items: stretch;
    }
}

.exit-card-option {
    flex: 1;
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

/* Premium Highlight for the Bundle Option */
.exit-card-option.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: #f8fafc;
}

.exit-card-option .option-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.exit-card-option.featured .option-label {
    color: var(--brand-accent);
}

.exit-card-option .option-content {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.exit-card-option .option-content strong {
    color: #000000;
}

.exit-card-option .option-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.5px;
}

.exit-card-option .option-price span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    margin-right: 2px;
}

.exit-btn-wa { display: block; background: #25d366; color: var(--brand-bg); padding: 0.85rem; font-weight: 800; text-decoration: none; border-radius: 0.5rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.exit-btn-phone { display: block; background: var(--brand-bg); color: white; padding: 0.85rem; font-weight: 700; text-decoration: none; border-radius: 0.5rem; margin-bottom: 1rem; font-size: 0.9rem; }
.exit-close { background: none; border: none; font-size: 0.8rem; color: #94a3b8; text-decoration: underline; cursor: pointer; }
#exit-popup .x-btn { position: absolute; top: 1rem; left: 1rem; border: none; background: none; font-size: 1.25rem; cursor: pointer; color: #94a3b8; }
