/**
 * Exsile Digital - Optimized Layout and Interaction Stylesheets
 * Production-ready, external non-blocking CSS.
 */

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-main);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1.2;
}

.divider {
    width: 5rem;
    height: 0.375rem;
    background: var(--blue-main);
    border-radius: 9999px;
    margin: 1rem auto 0;
}

.brand-gradient {
    background-image: linear-gradient(135deg, #05198a 0%, #0625D5 40%, #00F2FF 100%);
}

.premium-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(6, 37, 213, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(6, 37, 213, 0.13), 0 0 0 1px rgba(6, 37, 213, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--green-main);
    color: var(--slate-900); /* Contrast Fix */
    font-weight: 900;
    font-size: 1rem;
    padding: 1.1rem 2.5rem;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: scale(1.02);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* ── HIGH PERFORMANCE COMPOSITED PULSE GLOW ANIMATION (GPU BYPASS) ── */
.animate-pulse-btn {
    position: relative;
    isolation: isolate;
}

.animate-pulse-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.875rem;
    background: inherit;
    z-index: -1;
    opacity: 0.4;
    animation: pulse-glow 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.12, 1.22); opacity: 0; }
}

.animate-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── SCROLL FADE-IN ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-main), var(--green-main));
    z-index: 9999;
    transform-origin: right;
    transform: scaleX(0);
}

/* ── URGENCY BAR ── */
#urgency-bar {
    background: linear-gradient(90deg, #0625D5, #00F2FF 80%);
    color: white;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    position: relative;
    z-index: 60;
}

#urgency-bar span {
    color: #FFE066;
}

#countdown {
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    direction: rtl;
}

#hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #32EDB4;
    display: inline-block;
}

.hero-title-highlight {
    display: inline-block;
    margin-top: 0.6rem;
    background: var(--green-main);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(97, 206, 112, 0.35);
}

.typing-cursor::after {
    content: '|';
    animation: blink 0.8s infinite;
    color: white;
    margin-right: 2px;
}

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

.hero-cta-group { display: flex; flex-direction: column; gap: 1rem; }

@media (min-width: 480px) {
    .hero-cta-group { flex-direction: row; flex-wrap: wrap; }
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 500;
}

.hero-trust-item i { color: #32EDB4; }

.hero-form-box .form-title { color: white; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.25rem; }
.hero-form-box .form-subtitle { color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; margin-bottom: 0.75rem; }

.form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    flex-direction: column;
    gap: 0.5rem;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.wave-shape { overflow: hidden; line-height: 0; }
.wave-shape svg { display: block; width: 100%; }

/* ── LOGO BAR ── */
#logo-bar {
    padding: 2.5rem 0;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-100);
}

.logo-bar-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate-600); /* Contrast Fix */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.logo-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.85;
}

.logo-bar-inner img {
    height: 1.75rem;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.3s, opacity 0.3s;
}

.logo-bar-inner img:hover { filter: none; opacity: 1; }

/* ── PRICING ── */
#pricing {
    padding: 6rem 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
    scroll-margin-top: 5rem;
}

.pricing-grid { display: grid; gap: 2rem; align-items: stretch; }

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1.5px solid var(--slate-200);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(6, 37, 213, 0.1);
}

.pricing-card.featured { border-color: var(--green-main); border-width: 2px; }

@media (min-width: 768px) { .pricing-card.featured { transform: translateY(-0.75rem); } }
.pricing-card.featured:hover { transform: translateY(-1.25rem); }

.popular-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-main);
    color: var(--slate-900); /* Contrast Fix */
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
}

.pricing-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.tag-blue { background: rgba(6, 37, 213, 0.08); color: var(--blue-main); border: 1px solid rgba(6, 37, 213, 0.15); }
.tag-amber { background: rgba(245, 158, 11, 0.1); color: #B45309; border: 1px solid rgba(245, 158, 11, 0.2); }

.pricing-name { font-size: 1.4rem; font-weight: 900; color: var(--slate-900); margin-bottom: 0.25rem; }
.pricing-desc { font-size: 0.75rem; color: var(--slate-500); margin-bottom: 1.25rem; line-height: 1.6; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--slate-100);
    margin-bottom: 1.25rem;
}

.price-old { font-size: 0.875rem; color: var(--slate-400); text-decoration: line-through; }
.price-new { font-size: 2.5rem; font-weight: 900; color: var(--slate-900); letter-spacing: -0.03em; }
.price-vat { font-size: 0.72rem; font-weight: 700; color: var(--slate-500); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--slate-600);
}

.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-features li i { margin-top: 0.1rem; flex-shrink: 0; font-size: 0.85rem; }

.icon-green { color: var(--green-main); }
.icon-amber { color: #F59E0B; }
.icon-blue { color: #0625d5; }

.btn-pricing-green {
    display: block;
    text-align: center;
    background: var(--green-main);
    color: var(--slate-900); /* Contrast Fix */
    font-weight: 900;
    padding: 0.875rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.25);
}

.btn-pricing-green:hover { background: var(--green-dark); transform: scale(1.02); }

.btn-pricing-slate {
    display: block;
    text-align: center;
    background: var(--slate-100);
    color: var(--slate-700);
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

.btn-pricing-slate:hover { background: var(--green-main); color: var(--slate-900); }

.btn-pricing-dark {
    display: block;
    text-align: center;
    background: var(--slate-900);
    color: white;
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

.btn-pricing-dark:hover { background: var(--blue-main); }

.addons-box {
    max-width: 56rem;
    margin: 3.5rem auto 0;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.addons-title { font-weight: 900; font-size: 1.05rem; color: var(--slate-900); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.addons-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .addons-grid { grid-template-columns: 1fr 1fr; } }

.addon-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 0.875rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    transition: border-color 0.2s, background 0.2s;
}

.addon-item:hover { border-color: rgba(6, 37, 213, 0.2); background: white; }
.addon-emoji { font-size: 1.4rem; flex-shrink: 0; }
.addon-name { font-weight: 700; font-size: 0.8rem; color: var(--slate-900); margin-bottom: 0.2rem; }
.addon-desc { font-size: 0.72rem; color: var(--slate-500); margin-bottom: 0.4rem; line-height: 1.5; }
.addon-price {
    font-weight: 800;
    font-size: 0.75rem;
    background: rgba(6, 37, 213, 0.06);
    color: var(--blue-main);
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    display: inline-block;
}

.renewal-notice { max-width: 56rem; margin: 1.5rem auto 0; text-align: center; }
.renewal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(97, 206, 112, 0.06);
    border: 1px solid rgba(97, 206, 112, 0.2);
    border-radius: 1rem;
    padding: 0.875rem 1.5rem;
}

.renewal-badge i { color: var(--green-dark); font-size: 1.25rem; }
.renewal-badge span { font-weight: 700; color: var(--slate-700); font-size: 0.875rem; }

/* ── COMPARE ── */
#compare { padding: 6rem 0; background: white; border-bottom: 1px solid var(--slate-100); }
.compare-table-wrap {
    max-width: 56rem;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid var(--slate-100);
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

table { width: 100%; border-collapse: collapse; min-width: 560px; }
thead tr { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
th { padding: 1rem 1.5rem; font-size: 0.85rem; font-weight: 700; text-align: right; color: var(--slate-700); }
th.col-wp { color: var(--blue-main); }
td { padding: 0.875rem 1.5rem; font-size: 0.78rem; border-bottom: 1px solid var(--slate-100); color: #585858; text-align: right; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(248, 250, 252, 0.6); }

.td-green { color: var(--green-dark); font-weight: 700; }
.td-amber { color: #D97706; font-weight: 600; }
.td-bold { font-weight: 700; color: var(--slate-900); }

/* ── METHOD ── */
#about { padding: 6rem 0; background: white; }
.method-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }

.method-card {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--slate-100);
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(6, 37, 213, 0.07);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(6, 37, 213, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--blue-main);
    margin-bottom: 1.25rem;
    transition: background 0.3s, color 0.3s;
}

.method-card:hover .method-icon { background: var(--blue-main); color: white; }
.method-title { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.method-desc { font-size: 0.82rem; color: var(--slate-500); line-height: 1.7; }

/* ── PORTFOLIO ── */
#portfolio { padding: 6rem 0; background: var(--slate-50); }

.portfolio-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }

.portfolio-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 0.625rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.portfolio-card:hover {
    border-color: var(--blue-main);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(6, 37, 213, 0.08);
}

.portfolio-dots {
    display: flex;
    gap: 0.375rem;
    padding: 0 0.25rem 0.5rem;
    border-bottom: 1px solid var(--slate-100);
}

.dot-r { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #FC8181; }
.dot-y { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #F6C90E; }
.dot-g { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--green-main); }

/* ── PORTFOLIO IMAGE LAZY LOAD BYPASS ── */
.portfolio-screen-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
    position: relative;
    background: #f1f5f9;
}

.portfolio-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: object-position 4.5s ease-in-out;
    display: block;
}

.portfolio-card:hover .portfolio-screen-img { object-position: bottom center; }

.portfolio-label { padding: 0.625rem 0.25rem 0.25rem; text-align: center; }
.portfolio-label strong { display: block; font-size: 0.72rem; font-weight: 800; color: var(--slate-900); }
.portfolio-label span { font-size: 0.65rem; color: var(--slate-500); /* Contrast Fix */ }

/* ── PROCESS ── */
#process { padding: 6rem 0; background: white; border-bottom: 1px solid var(--slate-100); }
.process-grid { display: grid; gap: 2.5rem; 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: 3rem;
        left: 15%;
        right: 15%;
        height: 1px;
        background: var(--slate-200);
        z-index: 0;
    }
}

.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-light));
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(6, 37, 213, 0.25);
}

.process-num.green {
    background: linear-gradient(135deg, var(--green-main), var(--green-teal));
    box-shadow: 0 8px 24px rgba(97, 206, 112, 0.25);
}

.process-title { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.82rem; color: var(--slate-500); line-height: 1.7; padding: 0 1rem; }

/* ── STATS ── */
#stats-bar { background: white; border-bottom: 1px solid var(--slate-100); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--blue-main); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--slate-600); font-weight: 500; margin-top: 0.3rem; }

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 6rem 0;
    background: var(--blue-main);
    color: white;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.08;
}

.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    border-radius: 1.25rem;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured { transform: translateY(-1rem); }

.t-quote-icon { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 2.5rem; color: var(--blue-light); opacity: 0.25; }
.t-stars { display: flex; gap: 0.125rem; color: var(--green-teal); font-size: 0.8rem; margin-bottom: 1rem; }
.t-text { color: rgba(255, 255, 255, 0.88); font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.5rem; font-weight: 500; }

.t-author { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.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; flex-shrink: 0; }
.t-name { font-weight: 700; font-size: 0.875rem; color: white; }
.t-role { font-size: 0.72rem; color: var(--blue-light); }

/* ── FAQ ── */
#faq { padding: 5rem 0; background: white; }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

details.faq-item {
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

details.faq-item[open] { background: white; border-color: rgba(6, 37, 213, 0.2); }
details.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; color: var(--slate-900); list-style: none; outline: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary i { color: var(--blue-main); transition: transform 0.25s; flex-shrink: 0; }
details.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { margin-top: 1rem; font-size: 0.85rem; color: var(--slate-600); line-height: 1.8; }

/* ── CONTACT ── */
#contact { padding: 6rem 0; background: linear-gradient(180deg, #fff 0%, var(--slate-50) 100%); border-top: 1px solid var(--slate-100); scroll-margin-top: 5rem; }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form-box { background: white; border: 1px solid var(--slate-200); padding: 2rem; border-radius: 1.5rem; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); }
.contact-actions { display: flex; flex-direction: column; gap: 1rem; }
.contact-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    font-weight: 700;
}

.contact-action:hover { transform: translateX(-3px); }
.contact-action-phone { background: white; border: 1px solid var(--slate-200); color: var(--slate-700); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.contact-action-phone:hover { background: var(--slate-50); }
.contact-action-wa { background: var(--green-main); color: var(--slate-900); box-shadow: 0 4px 16px rgba(97, 206, 112, 0.3); }
.contact-action-wa:hover { background: var(--green-dark); }
.contact-action-inner { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }

/* ── FOOTER ── */
footer { background: white; border-top: 1px solid var(--slate-100); padding: 1.5rem 1rem 5rem; }
@media (min-width: 768px) { footer { padding-bottom: 1.5rem; } }

.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; font-size: 0.72rem; color: var(--slate-600); /* Contrast Fix */ }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-links { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--slate-600); text-decoration: none; transition: color 0.15s; }
.footer-links a:not(:last-child)::after { content: "•"; margin-right: 0.5rem; color: var(--slate-500); }
.footer-links a:hover { color: var(--slate-900); }
.footer-bottom .credit { font-weight: 600; color: var(--slate-600); }
.footer-bottom .credit span { color: var(--slate-900); font-weight: 700; }

/* ── MOBILE STICKY ── */
.mobile-sticky { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 100; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .mobile-sticky { display: none; } }

.mobile-btn { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); transition: transform 0.15s; text-decoration: none; }
.mobile-btn:active { transform: scale(0.94); }
.mobile-btn-phone { background: white; border: 1px solid var(--slate-200); }
.mobile-btn-phone i { color: var(--blue-main); font-size: 1.25rem; }
.mobile-btn-wa { background: var(--green-main); }
.mobile-btn-wa i { color: var(--slate-900); font-size: 1.5rem; }

/* ── COOKIE ── */
#cookie-banner { position: fixed; bottom: 1rem; left: 1rem; max-width: 18rem; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px); border: 1px solid var(--slate-200); border-radius: 0.875rem; padding: 1rem; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); z-index: 9999; }
.cookie-text { font-size: 0.75rem; color: var(--slate-600); font-weight: 600; line-height: 1.5; margin-bottom: 0.75rem; }
.cookie-btns { display: flex; gap: 0.5rem; }
.cookie-approve { background: var(--green-main); color: var(--slate-900); /* Contrast Fix */ padding: 0.35rem 0.75rem; border-radius: 0.5rem; font-size: 0.72rem; font-weight: 700; border: none; cursor: pointer; }
.cookie-deny { background: var(--slate-100); color: var(--slate-700); padding: 0.35rem 0.75rem; border-radius: 0.5rem; font-size: 0.72rem; font-weight: 700; border: none; cursor: pointer; }

/* ── DESKTOP STICKY CTA ── */
#desktop-sticky-cta { position: fixed; left: 1.25rem; top: 50%; transform: translateY(-50%); z-index: 90; display: none; flex-direction: column; gap: 0.75rem; opacity: 0; transition: opacity 0.4s; }
@media (min-width: 768px) { #desktop-sticky-cta { display: flex; } }
#desktop-sticky-cta.visible { opacity: 1; }

.sticky-cta-btn { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1rem; border-radius: 0.75rem; font-size: 0.78rem; font-weight: 800; text-decoration: none; white-space: nowrap; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); transition: transform 0.15s, box-shadow 0.15s; }
.sticky-cta-btn:hover { transform: translateX(3px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); }
.sticky-cta-phone { background: white; border: 1.5px solid var(--slate-200); color: var(--blue-main); }
.sticky-cta-form { background: var(--green-main); color: var(--slate-900); }

/* ── WHATSAPP BUBBLE ── */
#wa-bubble { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; display: none; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
@media (min-width: 768px) { #wa-bubble { display: flex; } }
#wa-bubble-msg { background: white; border: 1px solid var(--slate-200); border-radius: 1rem 1rem 1rem 0; padding: 0.6rem 0.875rem; font-size: 0.75rem; font-weight: 700; color: var(--slate-700); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); max-width: 16rem; line-height: 1.5; opacity: 0; transform: translateY(8px); transition: opacity 0.5s, transform 0.5s; pointer-events: none; }
#wa-bubble-msg.show { opacity: 1; transform: translateY(0); }
#wa-bubble-btn { width: 3.5rem; height: 3.5rem; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); text-decoration: none; transition: transform 0.2s; }
#wa-bubble-btn:hover { transform: scale(1.08); }
#wa-bubble-btn i { color: var(--slate-900); font-size: 1.6rem; }

/* ── LIVE SOCIAL PROOF TOAST ── */
#social-proof-toast { position: fixed; bottom: 10rem; left: 1rem; z-index: 150; background: white; border: 1px solid var(--slate-200); border-radius: 0.875rem; padding: 0.75rem 1rem; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); display: flex; align-items: center; gap: 0.75rem; max-width: 18rem; transform: translateX(-120%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
#social-proof-toast.show { transform: translateX(0); }
@media (min-width: 768px) { #social-proof-toast { bottom: 10rem; left: 1rem; } }
.toast-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; color: white; flex-shrink: 0; }
.toast-text { font-size: 0.72rem; color: var(--slate-600); line-height: 1.5; }
.toast-text strong { color: var(--slate-900); display: block; font-size: 0.75rem; }
.toast-time { font-size: 0.65rem; color: var(--slate-400); margin-top: 0.15rem; }

/* ── EXIT INTENT POPUP ── */
#exit-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
#exit-overlay.active { display: flex; }
#exit-popup { background: white; border-radius: 1.5rem; padding: 2.5rem 2rem; max-width: 28rem; width: 100%; text-align: center; position: relative; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes popIn { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
#exit-popup .exit-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
#exit-popup h3 { font-size: 1.4rem; font-weight: 900; color: var(--slate-900); margin-bottom: 0.5rem; }
#exit-popup p { font-size: 0.85rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1.5rem; }
#exit-popup .exit-offer { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 0.875rem; padding: 1rem; margin-bottom: 1.5rem; font-size: 0.82rem; color: var(--slate-700); font-weight: 600; }
#exit-popup .exit-offer strong { color: var(--blue-main); font-size: 1rem; display: block; margin-bottom: 0.25rem; }
.exit-btn-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #25D366; color: var(--slate-900); font-weight: 900; padding: 0.875rem; border-radius: 0.875rem; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.75rem; transition: background 0.2s; }
.exit-btn-wa:hover { background: #1da851; }
.exit-btn-phone { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--blue-main); color: white; font-weight: 700; padding: 0.75rem; border-radius: 0.875rem; text-decoration: none; font-size: 0.875rem; margin-bottom: 1rem; transition: background 0.2s; }
.exit-btn-phone:hover { background: var(--blue-deep); }
.exit-close { background: none; border: none; cursor: pointer; font-size: 0.78rem; color: var(--slate-500); text-decoration: underline; }
#exit-popup .x-btn { position: absolute; top: 1rem; left: 1rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--slate-100); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--slate-500); font-size: 0.8rem; transition: background 0.15s; }
#exit-popup .x-btn:hover { background: var(--slate-200); }

/* ── CONVERSION DRIVEN FORM COMPONENTS ── */
.gtm-track-form { margin-top: 1.5rem; direction: rtl !important; }
.gtm-track-form .form-group { margin-bottom: 1rem; }
.gtm-track-form .form-group-last { margin-bottom: 1.25rem; }
.gtm-track-form .form-error-alert { color: #d9534f; font-size: 0.75rem; font-weight: bold; margin-top: 0.375rem; text-align: right; display: none; direction: rtl; }
.gtm-track-form input[type="text"], .gtm-track-form input[type="tel"], .gtm-track-form input[type="email"] { width: 100% !important; background: #f8fafc !important; border: 1px solid #e2e8f0 !important; border-radius: 0.75rem !important; padding: 0.85rem 1.25rem !important; font-size: 0.9rem !important; color: #585858 !important; outline: none !important; text-align: right !important; direction: rtl !important; box-sizing: border-box !important; }
.gtm-track-form button[type="submit"] { width: 100% !important; justify-content: center !important; border: none !important; cursor: pointer !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; direction: rtl !important; box-sizing: border-box !important; padding: 0.9rem 1rem !important; }
.gtm-track-form button[type="submit"] i { font-size: 0.875rem; }
.form-success-overlay { display: none; position: absolute; inset: 0; background: #ffffff; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 1.5rem; z-index: 10; direction: rtl !important; }
.form-success-overlay h3 { font-size: 1.5rem; font-weight: bold; color: #0f172a; margin-bottom: 0.5rem; }
.form-success-overlay p { color: #64748b; font-size: 0.875rem; }
.form-success-icon { width: 4rem; height: 4rem; background: #f0fdf4; color: #61CE70; border: 1px solid rgba(97,206,112,0.2); border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 1.875rem; margin-bottom: 1rem; }
