/* ==========================================================================
   GLOBAL PROPERTIES & VARIABLES
   ========================================================================== */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #10b981;
    --dark: #0f172a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --pain-red: #ef4444;
    --white: #ffffff;
    --border: #edf2f7;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 95px;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    scroll-margin-top: 95px;
}

h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
    color: var(--text-muted);
    font-size: 16px;
}

.sub-heading-badge {
    display: table;
    margin: 0 auto 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.score-red { background: #fef2f2; color: var(--pain-red); }
.score-green { background: #f0fdf4; color: var(--secondary); }

/* ==========================================================================
   DESKTOP FIXED HEADER NAVIGATION
   ========================================================================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4% !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 !important;
    margin: 0 !important;
}

.main-logo {
    height: 70px !important;
    width: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    display: block !important;
    transform: scale(1.15) !important;
    transform-origin: left center;
    filter: contrast(1.05);
}

.menu-toggle {
    display: none !important;
}

nav.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-right: 35px;
}

nav.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

nav.nav-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

nav.nav-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav.nav-menu ul li a:hover::after,
nav.nav-menu ul li a.active::after {
    width: 100%;
}

nav.nav-menu ul li a:hover,
nav.nav-menu ul li a.active {
    color: var(--primary);
}

.demo-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.demo-btn:hover {
    background: var(--primary-hover) !important;
}

/* ==========================================================================
   HERO & CONTENT STRUCTURAL LAYOUTS
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content { flex: 1.1; }
.trust-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 { font-size: 46px; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 35px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }

.primary-btn, .secondary-btn, .section-btn {
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.primary-btn { background: var(--primary); color: var(--white); }
.secondary-btn { background: var(--secondary); color: var(--white); }

.hero-contact-info { font-size: 14px; font-weight: 500; display: flex; gap: 25px; }
.hero-contact-info span i { color: var(--primary); margin-right: 4px; }

.hero-image { flex: 0.9; display: flex; justify-content: center; }
.hero-image img { border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; max-width: 500px; }

/* ==========================================================================
   PAIN & BENEFITS ELEMENTS
   ========================================================================== */
.pain-section { background: var(--bg-light); }
.pain-box-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.pain-issue-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--pain-red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    gap: 20px;
}
.pain-icon-wrapper { font-size: 24px; color: var(--pain-red); margin-top: 3px; }
.pain-issue-item h3 { font-size: 18px; margin-bottom: 8px; }
.pain-issue-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.modern-benefit-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #edf2f7; transition: transform 0.3s ease; }
.modern-benefit-card:hover { transform: translateY(-5px); }
.benefit-img-header img { width: 100%; height: 180px; object-fit: cover; }
.benefit-card-body { padding: 25px; }
.benefit-card-body h3 { font-size: 19px; margin-bottom: 10px; }
.benefit-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-us { background: var(--bg-light); }
.benefit-block-card { background: var(--white); padding: 35px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); border: 1px solid #edf2f7; }
.benefit-block-card i { font-size: 30px; color: var(--primary); margin-bottom: 15px; display: block; }
.benefit-block-card h3 { font-size: 19px; margin-bottom: 10px; }
.benefit-block-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ==========================================================================
   CAROUSEL ENGINES
   ========================================================================== */
/* ==========================================================================
   🟢 REPLACE: CAROUSEL SLIDER ENGINE WIRES (FIXED TRACK SCROLLING)
   ========================================================================== */
.slider-wrapper { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    padding: 15px 5px; 
}

.slider-track { 
    display: flex; 
    gap: 25px; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    width: 100%; 
    
    /* 🌟 CRITICAL FIX: Allows hidden horizontal scrolling so script.js can move the track */
    overflow-x: auto !important; 
    scroll-behavior: smooth !important;
    scrollbar-width: none !important; /* Hides ugly scrollbar on Firefox */
}

/* Hides ugly scrollbar on Chrome, Safari, and Opera */
.slider-track::-webkit-scrollbar {
    display: none !important;
}

.slider-item-card {
    flex: 0 0 calc((100% - 50px) / 3); /* Keeps exactly 3 cards per view row on desktop */
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.slider-item-card {
    flex: 0 0 calc((100% - 50px) / 3);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.slider-item-card img { width: 100%; height: 200px; object-fit: cover; }
.slider-item-card h3 { padding: 20px 20px 6px; font-size: 18px; text-align: left; }
.slider-item-card p { padding: 0 20px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: var(--dark);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.slide-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.prev-arrow { left: 2px; }
.next-arrow { right: 2px; }

/* ==========================================================================
   PROCESS & TESTIMONIALS
   ========================================================================== */
.process { background: var(--bg-light); }
.steps-container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step-node { background: var(--white); padding: 25px 20px; border-radius: 12px; border: 1px solid #edf2f7; text-align: center; }
.step-badge { width: 36px; height: 36px; background: var(--primary); color: var(--white); font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.step-node h3 { font-size: 15px; margin-bottom: 8px; }
.step-node p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.testimonials .slider-item-card, 
.testimonial-item-card {
    flex: 0 0 calc((100% - 50px) / 3);
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.user-profile-img { width: 85px; height: 85px; border-radius: 50%; overflow: hidden; margin-bottom: 15px; border: 3px solid var(--primary); }
.user-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-item-card h3 { font-size: 17px; margin-bottom: 4px; }
.user-role { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.stars { color: #f59e0b; font-size: 15px; margin-bottom: 12px; }
.testimonial-text { font-size: 13px; color: var(--text-dark); line-height: 1.6; font-style: italic; }

.stats-section { background: var(--dark); color: var(--white); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid h3 { color: var(--white); font-size: 32px; margin-bottom: 4px; }
.stats-grid p { color: #94a3b8; font-size: 14px; }

/* ==========================================================================
   FAQ & PRICING SCHEME (TOGGLE FIXED)
   ========================================================================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px; background: none; border: none; text-align: left; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 12px; transition: transform 0.2s; }
.faq-item.open-faq .faq-question::after { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.plans-section { background: #ffffff; }
.plan-toggle-container { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 25px; }
.toggle-label { font-size: 16px; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.toggle-label.active { color: var(--primary); }
.save-badge { background: #eef5ff; color: var(--primary); font-size: 12px; padding: 3px 8px; border-radius: 10px; margin-left: 4px; }

.switch {
    position: relative !important;
    display: inline-block !important;
    width: 60px !important;
    height: 34px !important;
    flex-shrink: 0 !important;
    margin: 0 5px !important;
    vertical-align: middle !important;
}
.switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background-color: #cbd5e1 !important;
    transition: .4s ease !important;
    border-radius: 34px !important;
}
.toggle-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 26px !important; width: 26px !important;
    left: 4px !important; bottom: 4px !important;
    background-color: white !important;
    transition: .4s ease !important;
    border-radius: 50% !important;
}
input:checked + .toggle-slider { background-color: var(--primary) !important; }
input:checked + .toggle-slider:before { transform: translateX(26px) !important; }

.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: auto; margin-top: 40px; }
.plan-card { background: #fff; border: 2px solid var(--border); border-radius: 25px; padding: 45px 35px; display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); position: relative; }
.plan-card.active-card { border-color: var(--primary); box-shadow: var(--shadow); transform: scale(1.02); }
.plan-badge { display: inline-block; font-size: 12px; font-weight: 700; color: var(--primary); background: #eef5ff; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.elite-badge { background: rgba(13,110,253,0.15); color: var(--primary-hover); }
.plan-price { font-size: 46px; font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 15px; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 30px; }
.plan-features { margin-bottom: 35px; display: flex; flex-direction: column; gap: 15px; }
.plan-features li { display: flex; align-items: center; gap: 12px; color: var(--text-dark); font-size: 15px; font-weight: 500; }
.plan-features i { color: var(--primary); font-size: 16px; }

.plan-btn {
    display: block !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    width: 100% !important;
    padding: 14px 20px !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2) !important;
    transition: var(--transition) !important;
    margin-top: auto !important;
    text-decoration: none !important;
}

/* ==========================================================================
   CONTACT BRICKS & FOOTER HOOKS
   ========================================================================== */
.contact-section { background: linear-gradient(135deg, #0b1b3a, #111827); color: #e5e7eb; }
.contact-section .section-title { color: #ffffff; }
.contact-section .section-description { color: #cbd5e1; }
.contact-grid-layout { display: flex; justify-content: space-between; gap: 50px; }
.contact-brand-column { flex: 1; }
.contact-brand-column .brand-pitch { color: #cbd5e1; line-height: 1.7; margin-bottom: 25px; }
.contact-brand-column img { filter: brightness(0) invert(1); height: 60px; object-fit: contain; margin-bottom: 20px; }

.social-icon-wrapper { display: flex; gap: 14px; }
.social-icon-wrapper a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s ease; }
.social-icon-wrapper a:hover { background: var(--primary); color: #ffffff; transform: translateY(-2px); }

.contact-details-column { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.detail-row-item { display: flex; gap: 20px; align-items: flex-start; }
.info-icon { width: 45px; height: 45px; background: #eff6ff; border-radius: 8px; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-text h4 { color: #ffffff; font-size: 16px; margin-bottom: 4px; font-weight: 600; }
.info-text p { color: #cbd5e1; font-size: 14px; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 99999; }
.modal-overlay.show-modal { opacity: 1 !important; visibility: visible !important; }
.modal-box { background: var(--white); width: 500px; max-width: 92%; border-radius: 16px; padding: 35px 30px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); position: relative; transform: scale(0.9) translateY(-20px); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.modal-overlay.show-modal .modal-box { transform: scale(1) translateY(0); }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 32px; color: var(--text-muted); cursor: pointer; line-height: 1; }

.form-group-row { margin-bottom: 14px; display: flex; flex-direction: column; }
.form-group-row.flex-row { display: flex !important; flex-direction: row; gap: 10px; }
#countryCode { width: 85px !important; text-align: center; font-weight: 600; background: var(--bg-light); }
#clientPhone { flex: 1 !important; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px; outline: none; }
textarea { height: 90px; resize: none; }
.error-msg { font-size: 11px; color: var(--pain-red); margin-top: 3px; font-weight: 600; }
.submit-btn { width: 100%; background: var(--primary); color: var(--white); padding: 14px; border: none; border-radius: 6px; font-weight: 700; font-size: 15px; cursor: pointer; }
.hidden-element { display: none !important; }
#modalThankYouState { text-align: center; padding: 20px 0; }
.success-icon-box { font-size: 50px; color: var(--secondary); margin-bottom: 12px; }

.telephony-dock-wrapper { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 99999;float:inline-end; }
.dock-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white) !important; text-decoration: none !important; font-size: 24px; box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.call-channel { background: var(--primary); border: 2px solid var(--white); }
.whatsapp-channel { background: #25d366; border: 2px solid var(--white); }
.dock-btn:hover { transform: scale(1.12) translateY(-2px); }
.dynamic-pulse { animation: actionPulse 2s infinite; }
@keyframes actionPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); } 70% { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); } }

.whatsapp-header-btn { background: #25d366 !important; color: white !important; }

/* ==========================================================================
   EXCLUSIVE RESPONSIVE MOBILE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .slider-item-card, .testimonial-item-card { flex: 0 0 calc((100% - 25px) / 2); }
    .grid-three { grid-template-columns: 1fr 1fr; }
    .steps-container { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width: 912px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-buttons, .hero-contact-info { justify-content: center; }
    .pain-box-layout { grid-template-columns: 1fr; }
    .contact-grid-layout { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
    body { padding-top: 75px !important; }
    section { padding: 40px 4% !important; scroll-margin-top: 75px !important; }

    /* ✅ MOBILE HEADER ROW LAYER LEVELING */
    .header {
        display: grid !important;
        grid-template-columns: 45px 1fr auto !important;
        grid-template-rows: 1fr !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 12px !important;
        height: 75px !important;
        background: #ffffff !important;
        position: fixed !important;
        top: 0; left: 0; width: 100%;
        z-index: 10000 !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        box-sizing: border-box !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-self: start !important;
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        color: var(--dark) !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        justify-self: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .main-logo {
        height: 100px !important;
        width: auto !important;
        max-width: 200px !important;
        object-fit: contain !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    .demo-btn {
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: end !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        padding: 8px 14px !important;
        border-radius: 50px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* ✅ NAVIGATION TRAWER TRANSITIONS */
    .nav-menu {
        position: fixed !important;
        top: 75px !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 75px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        padding: 15px 0 25px 0 !important;
        border-top: 1px solid #f1f5f9 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        z-index: 999 !important;
        display: none !important;
        flex-direction: column !important;
    }

    .nav-menu.open-menu {
        display: flex !important;
    }

    nav.nav-menu ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
    }

    nav.nav-menu ul li a {
        display: block !important;
        padding: 8px 0 !important;
        font-size: 15px !important;
        color: var(--dark) !important;
        text-align: center !important;
    }

    /* ✅ ONE PAGE PRICING STRUCTURE SETUP */
    .plans-section { overflow-x: hidden !important; padding-top: 40px !important; }
    .plans-grid { display: flex !important; flex-direction: column !important; gap: 16px !important; padding: 10px 0 !important; }
    .plan-card { min-width: 100% !important; max-width: 100% !important; padding: 24px 20px !important; border-radius: 16px !important; }
    .plan-price { font-size: 32px !important; }

    .slider-item-card, .testimonial-item-card { flex: 0 0 100%; }
    .grid-three, .steps-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section-title { font-size: 24px; }
    .hero-content h1 { font-size: 28px; }
    .telephony-dock-wrapper { bottom: 20px; right: 20px; gap: 12px; }
    .dock-btn { width: 52px; height: 52px; font-size: 20px; }
}