/* =========================================================
   W3SMS — Frontend Redesign (Override Layer)
   ---------------------------------------------------------
   Loads AFTER the existing theme stylesheet to provide a
   modern, premium, fully responsive UI without breaking
   the dynamic data bindings used by Blade templates.
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
    /* Brand gradient — used on hero & card headers */
    --w3-gradient: linear-gradient(135deg, #0c4a6e, #0ea5e9);
    --w3-gradient-soft: linear-gradient(135deg, rgba(12, 74, 110, 0.92), rgba(14, 165, 233, 0.92));

    /* Core colors */
    --w3-primary: #0ea5e9;
    --w3-primary-dark: #0c4a6e;
    --w3-accent: #38bdf8;
    --w3-text: #0f172a;
    --w3-text-muted: #475569;
    --w3-border: #e2e8f0;
    --w3-bg-soft: #f8fafc;
    --w3-white: #ffffff;

    /* Shadows */
    --w3-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --w3-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --w3-shadow-lg: 0 18px 50px rgba(12, 74, 110, 0.15);

    /* Radius */
    --w3-radius-sm: 8px;
    --w3-radius-md: 14px;
    --w3-radius-lg: 22px;

    /* Spacing rhythm */
    --w3-section-y: clamp(48px, 6vw, 96px);
}

/* ---------- 2. Base Typography & Layout ---------- */
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--w3-text);
    background: var(--w3-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--w3-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

p { color: var(--w3-text-muted); }

section { padding-top: var(--w3-section-y); padding-bottom: var(--w3-section-y); }

/* ---------- 3. Buttons ---------- */
.btn.theme-btn,
.btn-theme,
.btn.subscribe-plan {
    background: var(--w3-gradient);
    color: var(--w3-white) !important;
    border: 0;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn.theme-btn:hover,
.btn-theme:hover,
.btn.subscribe-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.35);
    filter: brightness(1.05);
    color: var(--w3-white) !important;
}

.btn-outline-theme {
    background: transparent;
    color: var(--w3-primary-dark);
    border: 2px solid var(--w3-primary);
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    transition: all .25s ease;
}
.btn-outline-theme:hover {
    background: var(--w3-gradient);
    color: var(--w3-white);
    border-color: transparent;
}

/* =========================================================
   4. SITE HEADER  (premium SaaS-style)
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--w3-border);
    transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--w3-shadow-md); }

/* ---- Top utility bar ---- */
.site-header .header-top {
    background:#158dc7;
    border-bottom: 1px solid var(--w3-border);
    font-size: 0.85rem;
    color: var(--w3-text-muted);
}
.site-header .header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    flex-wrap: wrap;
}
.site-header .header-contact {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 22px;
}
.site-header .header-contact li {
    display: inline-flex; align-items: center; gap: 8px;
}
.site-header .header-contact li i {
    color: #fff;
    font-size: 0.85rem;
}
.site-header .header-contact li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}
.site-header .header-contact li a:hover { color: #fff; }
.site-header .header-contact .muted { color: #fff; }

.site-header .header-top__right {
    display: flex; align-items: center; gap: 18px;
}

/* Language dropdown */
.site-header .lang-btn {
    background: transparent;
    border: 1px solid var(--w3-border);
    color: var(--w3-text);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all .2s ease;
}
.site-header .lang-btn:hover { border-color: var(--w3-primary); color: var(--w3-primary); }
.site-header .lang-btn .chev { font-size: 0.65rem; opacity: 0.7; }
.site-header .lang-dropdown .dropdown-menu {
    border: 0;
    box-shadow: var(--w3-shadow-md);
    border-radius: 10px;
    padding: 6px;
    min-width: 140px;
}
.site-header .lang-dropdown .dropdown-item {
    border-radius: 6px;
    font-size: 0.88rem;
    padding: 6px 12px;
}
.site-header .lang-dropdown .dropdown-item:hover { background: var(--w3-bg-soft); color: var(--w3-primary-dark); }
.site-header .lang-dropdown .dropdown-item.active { background: var(--w3-gradient); color: var(--w3-white); }

/* Social icons */
.site-header .header-socials {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 8px; align-items: center;
}
.site-header .header-socials li a {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--w3-white);
    border: 1px solid var(--w3-border);
    color: var(--w3-text-muted);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all .2s ease;
}
.site-header .header-socials li a:hover {
    background: var(--w3-gradient);
    color: var(--w3-white);
    border-color: transparent;
    transform: translateY(-2px);
}
.site-header .header-socials li a img {
    width: 14px; height: 14px;
    object-fit: contain;
}

/* ---- Main navbar ---- */
.site-header .header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}
.site-header .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-header .brand img { max-height: 38px; width: auto; }

/* Primary nav (desktop) */
.site-header .primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.site-header .nav-links {
    list-style: none; margin: 0; padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}
.site-header .nav-links a {
    display: inline-block;
    padding: 8px 16px;
    color: var(--w3-text);
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    transition: color .2s ease, background .2s ease;
    text-transform: uppercase;
    font-size: 14px;
}
.sms-btn--light {
    background: #e9561b!important;
    color: var(--sms-primary-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.sms-btn--light:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
    color: #fff!important;
}
.site-header .nav-links a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 2px;
    width: 0; height: 2px;
    background: var(--w3-gradient);
    border-radius: 2px;
    transition: width .25s ease, left .25s ease;
}
.site-header .nav-links a:hover,
.site-header .nav-links a.active {
    color: var(--w3-primary-dark);
}
.site-header .nav-links a:hover::after,
.site-header .nav-links a.active::after {
    width: 60%; left: 20%;
}

/* Header CTAs */
.site-header .header-cta {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.site-header .btn-ghost {
    background: transparent;
    border: 0;
    color: var(--w3-text);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: all .2s ease;
}
.site-header .btn-ghost:hover { background: var(--w3-bg-soft); color: var(--w3-primary-dark); }

.site-header .btn-grad {
    background: var(--w3-gradient);
    color: var(--w3-white) !important;
    border: 0;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(14,165,233,0.28);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.site-header .btn-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14,165,233,0.4);
    filter: brightness(1.05);
}
.site-header .btn-grad i { font-size: 0.78rem; }

/* Hamburger */
.site-header .nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--w3-border);
    width: 42px; height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.site-header .nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--w3-text);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

/* Mobile drawer + close button (hidden on desktop) */
.site-header .primary-nav__head,
.site-header .primary-nav__cta { display: none; }

/* ---- Mobile (<992px) ---- */
@media (max-width: 991.98px) {
    .site-header .header-top { display: none; }
    .site-header .nav-toggle { display: inline-flex; }

    .site-header .primary-nav {
        position: fixed;
        top: 0; right: -340px;
        width: 320px; max-width: 85vw;
        height: 100vh;
        background: var(--w3-white);
        box-shadow: var(--w3-shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        transition: right .3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    .site-header .primary-nav.open { right: 0; }

    .site-header .primary-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--w3-border);
    }
    .site-header .brand--mobile img { max-height: 34px; }
    .site-header .nav-close {
        background: var(--w3-bg-soft); border: 0;
        width: 36px; height: 36px; border-radius: 50%;
        color: var(--w3-text);
        font-size: 0.95rem;
    }

    .site-header .nav-links {
        flex-direction: column;
        gap: 4px;
        padding: 16px 12px;
        align-items: stretch;
    }
    .site-header .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        font-weight: 500;
    }
    .site-header .nav-links a:hover,
    .site-header .nav-links a.active { background: var(--w3-bg-soft); }
    .site-header .nav-links a::after { display: none; }

    .site-header .primary-nav__cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px 24px;
        margin-top: auto;
        border-top: 1px solid var(--w3-border);
    }
    .site-header .primary-nav__cta .btn-ghost,
    .site-header .primary-nav__cta .btn-grad {
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }
    .site-header .primary-nav__cta .btn-ghost {
        background: var(--w3-bg-soft);
    }
}

@media (max-width: 575.98px) {
    .site-header .header-main__inner { padding: 10px 0; }
    .site-header .brand img { max-height: 32px; }
}

/* Overlay for mobile menu */
.overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9998;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ---------- 5. Hero / Banner Section ---------- */
.banner-section,
.about-banner {
    background: var(--w3-gradient) !important;
    color: var(--w3-white);
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 140px) 0 clamp(60px, 8vw, 120px);
}
.banner-section::before,
.about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18) 0, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.25) 0, transparent 40%);
    pointer-events: none;
}
/* Force white text only in textual hero content — NOT inside the phone mockup or pulse badges */
.banner-section .banner-content,
.banner-section .banner-content *,
.about-banner * {
    color: var(--w3-white) !important;
}
/* Restore intended colors inside phone mockup */
.banner-section .hero-phone,
.banner-section .hero-phone * {
    color: inherit !important;
}
.banner-section .sms-bubble strong { color: #0ea5e9 !important; }
.banner-section .sms-bubble p      { color: #0f172a !important; }
.banner-section .sms-bubble small  { color: #64748b !important; }
.banner-section .sms-bubble b      { color: #0c4a6e !important; }
.banner-section .phone-status-bar,
.banner-section .phone-status-bar *  { color: #0f172a !important; }
.banner-section .phone-app-header,
.banner-section .phone-app-header *  { color: #0c4a6e !important; }
.banner-section .phone-pulse         { color: var(--w3-primary-dark) !important; }
.banner-section .phone-pulse i       { color: var(--w3-primary) !important; }
.banner-section .banner-content h1 {
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.banner-section .banner-content p {
    font-size: 1.075rem;
    max-width: 560px;
    opacity: 0.95;
}
.banner-section .demo-btn-group {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-top: 28px;
    align-items: center;
}
.banner-section .video-button {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--w3-white); font-weight: 600;
    text-decoration: none;
}
.banner-section .play-button {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: transform .25s ease;
}
.banner-section .play-button::before {
    content: '';
    position: absolute;
    top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #fff;
}
.banner-section .video-button:hover .play-button { transform: scale(1.08); }
.banner-section .banner-img img {
    max-width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* About / inner page hero */
.about-banner {
    text-align: center;
    padding: clamp(72px, 8vw, 120px) 0;
}
.about-banner h4 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.about-banner p {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ---------- 6. Section Titles ---------- */
.section-title {
    margin-bottom: 48px;
}
.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    width: 70px; height: 4px;
    background: var(--w3-gradient);
    border-radius: 4px;
    transform: translateX(-50%);
}
.section-title.text-start h2::after { left: 0; transform: none; }
.section-title p {
    max-width: 680px;
    margin: 14px auto 0;
}

/* ---------- 7. Feature / Envato Section ---------- */
.envato-section {
    padding-top: 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}
.envato-wrp {
    background: var(--w3-white);
    padding: 32px 24px;
    border-radius: var(--w3-radius-lg);
    box-shadow: var(--w3-shadow-lg);
}
.envato-wrp .d-flex {
    align-items: flex-start;
}
.envato-wrp h4 { font-size: 1.05rem; margin-bottom: 4px; }
.envato-wrp p { font-size: 0.92rem; margin: 0; }
.envato-wrp img { width: 44px; height: 44px; object-fit: contain; }

/* ---------- 8. Feature/Contact Cards ---------- */
.our-feature-section .feature-items {
    background: var(--w3-white);
    border: 1px solid var(--w3-border);
    border-radius: var(--w3-radius-md);
    padding: 32px 26px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}
.our-feature-section .feature-items::before {
    content: '';
    position: absolute; left: 0; top: 0;
    width: 100%; height: 4px;
    background: var(--w3-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.our-feature-section .feature-items:hover {
    transform: translateY(-6px);
    box-shadow: var(--w3-shadow-lg);
    border-color: transparent;
}
.our-feature-section .feature-items:hover::before { transform: scaleX(1); }
.our-feature-section .feature-items img {
    width: 56px; height: 56px;
    padding: 12px;
    background: var(--w3-bg-soft);
    border-radius: 14px;
    margin-bottom: 16px;
}
.our-feature-section .feature-items h4 { font-size: 1.15rem; margin-bottom: 8px; }
.our-feature-section .feature-items p { font-size: 0.95rem; margin: 0; }

/* ---------- 9. Service / Premium Cards ---------- */
.premium-product-section { background: var(--w3-bg-soft); }

.product-card {
    border: 0 !important;
    border-radius: var(--w3-radius-md) !important;
    overflow: hidden;
    box-shadow: var(--w3-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    background: var(--w3-white);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--w3-shadow-lg);
}
.product-card .flex-shrink-0 {
    background: var(--w3-gradient);
    padding: 28px;
    text-align: center;
}
.product-card .flex-shrink-0 img {
    width: 64px; height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.product-card .card-body { padding: 24px; }
.product-card .card-body h5 { color: var(--w3-text); margin-bottom: 10px; font-weight: 700; }
.product-card .card-body p { font-size: 0.95rem; }
.product-card .read-more {
    color: var(--w3-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .25s ease, color .25s ease;
}
.product-card .read-more:hover { color: var(--w3-primary-dark); gap: 10px; }

/* Swiper nav buttons */
.slider-container { position: relative; }
.swiper-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--w3-white);
    border: 1px solid var(--w3-border);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--w3-primary-dark);
    box-shadow: var(--w3-shadow-sm);
    transition: all .25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.swiper-btn:hover { background: var(--w3-gradient); color: var(--w3-white); border-color: transparent; }
.swiper-btn.prev1, .swiper-btn.prev2 { left: -10px; }
.swiper-btn.next1, .swiper-btn.next2 { right: -10px; }
@media (max-width: 575px) {
    .swiper-btn { display: none; }
}

/* ---------- 10. Service-Provide / Access Section ---------- */
.service-provide-section .service-banner-img img {
    border-radius: var(--w3-radius-lg);
    box-shadow: var(--w3-shadow-md);
    width: 100%;
}
.service-provide-section h2 { margin-bottom: 18px; }
.service-provide-section .short-description {
    color: var(--w3-primary-dark);
    font-weight: 600;
}

/* ---------- 11. FAQ Accordion ---------- */
.faqs-section { background: var(--w3-white); }
.faqs-section .accordion-item {
    border: 1px solid var(--w3-border);
    border-radius: var(--w3-radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--w3-white);
    box-shadow: var(--w3-shadow-sm);
}
.faqs-section .accordion-button {
    background: var(--w3-white);
    color: var(--w3-text);
    font-weight: 600;
    padding: 18px 22px;
    border: 0;
    box-shadow: none !important;
}
.faqs-section .accordion-button:not(.collapsed) {
    background: var(--w3-gradient);
    color: var(--w3-white);
}
.faqs-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.faqs-section .accordion-body { padding: 18px 22px; background: var(--w3-bg-soft); }
.faqs-section .accordion-body p { margin: 0; }
.faqs-section .faq-right-img img {
    border-radius: var(--w3-radius-lg);
    box-shadow: var(--w3-shadow-md);
}

/* ---------- 12. Pricing Plans ---------- */
.pricing-plan-section {
    background: var(--w3-bg-soft);
}
.pricing-plan-section .card {
    border-radius: var(--w3-radius-md) !important;
    overflow: hidden;
    background: var(--w3-white);
    box-shadow: var(--w3-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 0 !important;
    height: 100%;
}
.pricing-plan-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--w3-shadow-lg);
}

/* Card header — gradient with white title (per requirement) */
.pricing-plan-section .card .card-header,
.card .card-header {
    background: var(--w3-gradient) !important;
    color: var(--w3-white) !important;
    border: 0 !important;
    padding: 22px 26px !important;
    text-align: center;
}
.pricing-plan-section .card .card-header h4,
.card .card-header h1, .card .card-header h2,
.card .card-header h3, .card .card-header h4,
.card .card-header h5, .card .card-header h6 {
    color: var(--w3-white) !important;
    margin: 0;
    font-weight: 700;
}

.pricing-plan-section .card .card-body {
    padding: 28px 26px;
    text-align: center;
}
.pricing-plan-section .card .card-body h2 {
    color: var(--w3-primary-dark);
    font-weight: 800;
    margin: 8px 0 4px;
}
.pricing-plan-section .card .card-body h2 small {
    font-size: 0.9rem;
    color: var(--w3-text-muted);
    font-weight: 500;
}
.pricing-plan-section .card .card-body h6 {
    color: var(--w3-primary);
    font-weight: 600;
    margin-bottom: 14px;
}
.pricing-plan-section .card .card-body ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    text-align: left;
}
.pricing-plan-section .card .card-body ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--w3-border);
    color: var(--w3-text-muted);
    font-size: 0.95rem;
}
.pricing-plan-section .card .card-body ul li:last-child { border-bottom: 0; }
.pricing-plan-section .card .card-body .subscribe-plan {
    margin-top: 18px;
    width: 100%;
    color: var(--w3-white) !important;
}

/* ---------- 13. Testimonials ---------- */
.testimonial-section { background: var(--w3-bg-soft); }
.testimonial-item {
    background: var(--w3-white);
    padding: 28px;
    border-radius: var(--w3-radius-md);
    box-shadow: var(--w3-shadow-sm);
    height: 100%;
    transition: box-shadow .3s ease, transform .3s ease;
}
.testimonial-item:hover {
    box-shadow: var(--w3-shadow-md);
    transform: translateY(-4px);
}
.testimonial-item .top-area { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.testimonial-item .top-area ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; color: #f59e0b; }
.testimonial-item .top-area p { margin: 0; font-size: 0.85rem; color: var(--w3-text-muted); }
.testimonial-item .testimonial { color: var(--w3-text); margin-bottom: 18px; line-height: 1.7; }
.testimonial-item .media { display: flex; align-items: center; gap: 12px; }
.testimonial-item .media img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--w3-bg-soft); }
.testimonial-item .media-body strong { display: block; color: var(--w3-text); }
.testimonial-item .media-body small { color: var(--w3-text-muted); }

/* ---------- 14. Contact Page ---------- */
.contact-section .rounded-top-8 {
    background: var(--w3-gradient) !important;
    border-radius: var(--w3-radius-md) var(--w3-radius-md) 0 0 !important;
    padding: 14px !important;
}
.contact-section .rounded-bottom-8 {
    border-radius: 0 0 var(--w3-radius-md) var(--w3-radius-md) !important;
}
.contact-section .form-control {
    border-radius: 10px;
    border: 1px solid var(--w3-border);
    padding: 12px 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-section .form-control:focus {
    border-color: var(--w3-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.contact-section .submit-btn { width: 100%; }
.location-section .circle-image {
    width: 56px; height: 56px;
    padding: 12px;
    background: var(--w3-gradient);
    border-radius: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ---------- 15. About Page ---------- */
.about-us, .vision-mission { background: var(--w3-white); }
.vision-mission { background: var(--w3-bg-soft); }
.about-us img, .vision-mission img {
    border-radius: var(--w3-radius-lg);
    box-shadow: var(--w3-shadow-md);
}
.section-title.mb-4 { color: var(--w3-primary-dark); }

/* ---------- 16. Footer ---------- */
.footer-section {
    background: var(--w3-primary-dark) !important;
    color: rgba(255,255,255,0.85);
    padding-top: 64px;
    padding-bottom: 24px;
    background-image: var(--w3-gradient) !important;
}
.footer-section .footer-logo img { max-height: 44px; filter: brightness(0) invert(1); }
.footer-section hr { border-color: rgba(255,255,255,0.18); }
.footer-section .footer-title {
    color: var(--w3-white);
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-section .footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--w3-accent);
    border-radius: 3px;
}
.footer-section .footer-link { list-style: none; padding: 0; margin: 0; }
.footer-section .footer-link li { margin-bottom: 10px; }
.footer-section .footer-link a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}
.footer-section .footer-link a:hover { color: var(--w3-white); padding-left: 4px; }
.footer-section p { color: rgba(255,255,255,0.78); }
.footer-section .social-link { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.footer-section .social-link li a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, transform .25s ease;
}
.footer-section .social-link li a:hover { background: var(--w3-accent); transform: translateY(-3px); }
.footer-section .social-link li a img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-section .newsletter-form {
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 4px;
    display: flex;
    align-items: center;
}
.footer-section .newsletter-form .form-control {
    background: transparent;
    border: 0;
    color: var(--w3-white);
    flex: 1;
    padding: 10px 18px;
}
.footer-section .newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.footer-section .newsletter-form .form-control:focus { box-shadow: none; outline: 0; color: var(--w3-white); }
.footer-section .newsletter-form .btn { border-radius: 50%; width: 40px; height: 40px; padding: 0; }
.footer-section .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-top: 32px;
    padding-top: 18px;
    text-align: center;
}
.footer-section .footer-bottom p { margin: 0; }

/* ---------- 17. Modal ---------- */
.modal-content { border: 0; border-radius: var(--w3-radius-md); overflow: hidden; }
.modal-header { background: var(--w3-gradient); color: var(--w3-white); border: 0; }
.modal-header .modal-title { color: var(--w3-white); }
.modal-header .btn-close { filter: brightness(0) invert(1); opacity: .9; }

/* ---------- 18. Utilities ---------- */
.text-custom-primary { color: var(--w3-primary-dark) !important; }
.custom-clr-primary { color: var(--w3-primary) !important; }
.custom-bg-secondary { background: var(--w3-gradient) !important; }
.bg-soft { background: var(--w3-bg-soft) !important; }

/* ---------- 19. Responsive Tweaks ---------- */
@media (max-width: 767px) {
    .banner-section { text-align: center; }
    .banner-section .demo-btn-group { justify-content: center; }
    .header-section .header-top { display: none; }
    .envato-section { margin-top: 0; }
    .envato-wrp { padding: 22px 16px; }
    .section-title { margin-bottom: 32px; }
    .footer-section .social-link { justify-content: center; }
    .footer-section .row.align-items-center { text-align: center; }
}

/* =========================================================
   PROFESSIONAL HOMEPAGE — v2 sections
   ========================================================= */

/* Hero v2 */
.banner-section.hero-v2 { padding: clamp(80px, 9vw, 140px) 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--w3-white);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: #fbbf24; }
.banner-section .hero-typer {
    display: inline-block;
    color: #fde68a;
    font-style: italic;
    border-right: 3px solid #fde68a;
    padding-right: 4px;
    animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { border-color: transparent; } }
.banner-section .hero-sub { font-size: 1.1rem; max-width: 580px; opacity: 0.95; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust .trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--w3-white); font-size: 0.9rem; font-weight: 500;
}
.hero-trust .trust-item i { color: #4ade80; }

/* Phone mockup */
.hero-phone {
    position: relative;
    perspective: 1200px;
    display: flex; justify-content: center;
}
.phone-frame {
    width: 280px;
    background: #0f172a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.1);
    transform: rotateY(-12deg) rotateX(4deg);
    position: relative;
}
.phone-notch {
    width: 90px; height: 18px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: absolute;
    top: 12px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.phone-screen {
    background: #f1f5f9;
    border-radius: 26px;
    padding: 28px 12px 16px;
    height: 480px;
    overflow: hidden;
}
.phone-status-bar {
    display: flex; justify-content: space-between;
    color: #0f172a; font-size: 0.7rem; font-weight: 600;
    padding: 0 8px 6px;
}
.phone-status-bar i { margin-left: 4px; }
.phone-app-header {
    display: flex; align-items: center; gap: 8px;
    color: #0c4a6e; font-weight: 700;
    padding: 8px 4px; border-bottom: 1px solid #cbd5e1;
    margin-bottom: 10px;
}
.sms-bubble {
    background: #fff;
    border-radius: 14px 14px 14px 4px;
    padding: 10px 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(10px);
    animation: bubbleIn .5s ease forwards;
}
.sms-bubble.animated-1 { animation-delay: .3s; }
.sms-bubble.animated-2 { animation-delay: 1.1s; }
.sms-bubble.animated-3 { animation-delay: 1.9s; }
.sms-bubble strong { display: block; color: #0ea5e9; font-size: 0.78rem; margin-bottom: 2px; }
.sms-bubble p { color: #0f172a; font-size: 0.78rem; margin: 0; line-height: 1.4; }
.sms-bubble small { color: #64748b; font-size: 0.65rem; }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }

.phone-pulse {
    position: absolute;
    background: var(--w3-white);
    color: var(--w3-primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem; font-weight: 700;
    box-shadow: var(--w3-shadow-md);
    animation: floatY 4s ease-in-out infinite;
}
.phone-pulse i { margin-right: 6px; color: var(--w3-primary); }
.pulse-1 { top: 20%; left: -10px; }
.pulse-2 { bottom: 18%; right: -10px; animation-delay: 1.5s; }
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}

/* Stats Section */
.stats-section {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--w3-white) 0%, var(--w3-bg-soft) 100%);
    border-bottom: 1px solid var(--w3-border);
}
.stat-item { text-align: center; }
.stat-item h3.counter {
    display: inline;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--w3-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.stat-item span {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--w3-primary);
}
.stat-item p { margin: 6px 0 0; color: var(--w3-text-muted); font-weight: 500; }

/* Features v2 */
.features-v2 .feature-card-v2 {
    background: var(--w3-white);
    border: 1px solid var(--w3-border);
    border-radius: var(--w3-radius-md);
    padding: 32px 28px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}
.features-v2 .feature-card-v2::before {
    content: '';
    position: absolute; left: 0; top: 0;
    width: 100%; height: 4px;
    background: var(--w3-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.features-v2 .feature-card-v2:hover { transform: translateY(-6px); box-shadow: var(--w3-shadow-lg); border-color: transparent; }
.features-v2 .feature-card-v2:hover::before { transform: scaleX(1); }
.features-v2 .feature-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--w3-gradient);
    color: var(--w3-white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}
.features-v2 .feature-icon img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.features-v2 h4 { font-size: 1.15rem; margin-bottom: 8px; }
.features-v2 p { font-size: 0.95rem; margin: 0; }

/* How It Works */
.how-it-works { background: var(--w3-bg-soft); }
.step-card {
    background: var(--w3-white);
    border-radius: var(--w3-radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--w3-shadow-sm);
    position: relative;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--w3-shadow-lg); }
.step-num {
    position: absolute; top: 14px; right: 18px;
    font-weight: 800; font-size: 2rem;
    background: var(--w3-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
}
.step-icon {
    font-size: 2.2rem;
    background: var(--w3-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}
.step-card h5 { font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; margin: 0; }

/* Use Cases */
.use-case-card {
    background: var(--w3-white);
    border: 1px solid var(--w3-border);
    border-radius: var(--w3-radius-md);
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    transition: all .25s ease;
}
.use-case-card:hover {
    border-color: var(--w3-primary);
    transform: translateY(-4px);
    box-shadow: var(--w3-shadow-md);
}
.use-case-card i {
    font-size: 1.5rem;
    color: var(--w3-primary-dark);
    background: rgba(14,165,233,0.1);
    width: 50px; height: 50px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    transition: all .25s ease;
}
.use-case-card:hover i {
    background: var(--w3-gradient);
    color: var(--w3-white);
}
.use-case-card h6 { font-weight: 700; margin-bottom: 6px; }
.use-case-card p { font-size: 0.82rem; color: var(--w3-text-muted); margin: 0; line-height: 1.4; }

/* API Showcase */
.api-showcase { background: var(--w3-white); }
.eyebrow {
    display: inline-block;
    color: var(--w3-primary);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
}
.api-feature-list {
    list-style: none; padding: 0; margin: 22px 0 8px;
}
.api-feature-list li {
    padding: 8px 0;
    color: var(--w3-text);
    display: flex; align-items: center; gap: 10px;
}
.api-feature-list li i {
    width: 22px; height: 22px;
    background: var(--w3-gradient);
    color: var(--w3-white);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.code-window {
    background: #0f172a;
    border-radius: var(--w3-radius-md);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,23,42,0.25);
    border: 1px solid #1e293b;
}
.code-header {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}
.code-header .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.code-header .dot.red { background: #ef4444; }
.code-header .dot.yellow { background: #f59e0b; }
.code-header .dot.green { background: #10b981; }
.code-header .code-title { color: #94a3b8; font-size: 0.82rem; margin-left: 12px; font-family: 'JetBrains Mono', monospace; }
.code-body {
    padding: 20px;
    margin: 0;
    color: #e2e8f0;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    overflow-x: auto;
    white-space: pre;
}
.code-body .c-cmd     { color: #38bdf8; font-weight: 700; }
.code-body .c-flag    { color: #f472b6; }
.code-body .c-str     { color: #4ade80; }
.code-body .c-key     { color: #fbbf24; }
.code-body .c-num     { color: #fb923c; }
.code-body .c-comment { color: #64748b; font-style: italic; }

/* Coverage */
.coverage-section { background: var(--w3-bg-soft); }
.grad-text {
    background: var(--w3-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.coverage-stat {
    background: var(--w3-white);
    padding: 14px 18px;
    border-radius: var(--w3-radius-sm);
    border-left: 3px solid var(--w3-primary);
    box-shadow: var(--w3-shadow-sm);
}
.coverage-stat strong { display: block; color: var(--w3-primary-dark); font-size: 1.4rem; }
.coverage-flags {
    display: flex; flex-wrap: wrap; gap: 8px;
    background: var(--w3-white);
    padding: 24px;
    border-radius: var(--w3-radius-md);
    box-shadow: var(--w3-shadow-md);
    max-height: 380px;
    overflow: hidden;
    position: relative;
}
.coverage-flags::after {
    content: '';
    position: absolute; left: 0; bottom: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--w3-white));
    pointer-events: none;
}
.flag-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--w3-bg-soft);
    border: 1px solid var(--w3-border);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--w3-text);
    transition: all .2s ease;
}
.flag-pill:hover { background: var(--w3-gradient); color: var(--w3-white); border-color: transparent; }
.flag-pill img { border-radius: 2px; }

/* Final CTA */
.final-cta { padding-bottom: 0; }
.final-cta .cta-card {
    background: var(--w3-gradient);
    color: var(--w3-white);
    padding: clamp(36px, 5vw, 64px);
    border-radius: var(--w3-radius-lg);
    box-shadow: 0 30px 60px rgba(12,74,110,0.3);
    position: relative;
    overflow: hidden;
}
.final-cta .cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(56,189,248,0.3) 0, transparent 35%);
    pointer-events: none;
}
.final-cta .cta-card h2 { color: var(--w3-white); margin-bottom: 10px; }
.final-cta .cta-card p { color: rgba(255,255,255,0.9); margin: 0; }
.final-cta .cta-btn {
    background: var(--w3-white) !important;
    color: var(--w3-primary-dark) !important;
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 700;
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform .25s ease;
}
.final-cta .cta-btn:hover { transform: translateY(-3px); }

/* ---------- 20. Print/Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* =========================================================
   21. PROFESSIONAL HOMEPAGE POLISH — SaaS Landing v3
   ========================================================= */
body {
    background: radial-gradient(circle at top left, rgba(14,165,233,0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-v2 {
    min-height: calc(100vh - 94px);
    display: flex;
    align-items: center;
    isolation: isolate;
}
.hero-v2::after {
    content: '';
    position: absolute;
    inset: auto -10% -22% -10%;
    height: 34%;
    background: #ffffff;
    transform: skewY(-3deg);
    transform-origin: left top;
    z-index: 0;
}
.hero-v2 .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 0.9rem;
}
.hero-typer {
    display: inline-block;
    margin-left: 8px;
    color: #bae6fd !important;
}
.hero-typer::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.9em;
    margin-left: 5px;
    background: #fff;
    vertical-align: -0.08em;
    animation: blink 0.9s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.18rem) !important;
    line-height: 1.8;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-trust .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    font-size: 0.9rem;
}
.hero-trust .trust-item i { color: #86efac !important; }
.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    max-width: 560px;
}
.hero-proof > div {
    padding: 16px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}
.hero-proof strong {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1;
    font-weight: 800;
}
.hero-proof span {
    display: block;
    margin-top: 7px;
    font-size: 0.82rem;
    opacity: 0.86;
}
.hero-phone {
    position: relative;
    max-width: 360px;
    margin-left: auto;
    filter: drop-shadow(0 28px 60px rgba(8,47,73,0.32));
    animation: float 7s ease-in-out infinite;
}
.phone-frame {
    padding: 14px;
    border-radius: 42px;
    background: linear-gradient(145deg, #0f172a, #334155);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 24px 70px rgba(2,6,23,0.32);
}
.phone-notch {
    width: 118px;
    height: 26px;
    background: #0f172a;
    border-radius: 0 0 18px 18px;
    position: absolute;
    left: 50%;
    top: 14px;
    transform: translateX(-50%);
    z-index: 3;
}
.phone-screen {
    min-height: 620px;
    border-radius: 32px;
    background: linear-gradient(180deg, #f8fafc, #e0f2fe);
    overflow: hidden;
    padding: 22px 18px;
    position: relative;
}
.phone-status-bar,
.phone-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}
.phone-app-header {
    margin: 28px 0 22px;
    padding: 12px 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--w3-shadow-sm);
}
.sms-bubble {
    background: #fff;
    border-radius: 18px;
    padding: 14px 15px;
    margin-bottom: 14px;
    box-shadow: 0 10px 26px rgba(12,74,110,0.12);
    border: 1px solid rgba(226,232,240,0.9);
    transform-origin: left bottom;
}
.sms-bubble p {
    margin: 5px 0;
    line-height: 1.55;
    font-size: 0.92rem;
}
.animated-1 { animation: smsIn 0.7s ease both 0.15s; }
.animated-2 { animation: smsIn 0.7s ease both 0.55s; }
.animated-3 { animation: smsIn 0.7s ease both 0.95s; }
@keyframes smsIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to { opacity: 1; transform: none; }
}
.phone-pulse {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: var(--w3-shadow-md);
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid var(--w3-border);
    width: auto !important;
    min-width: 104px;
    max-width: 132px;
    height: 38px;
    white-space: nowrap;
    z-index: 5;
}
.pulse-1 { left: -20px; bottom: 142px; }
.pulse-2 { right: -14px; top: 134px; }
.hero-phone .phone-pulse,
.banner-section .hero-phone .phone-pulse {
    inline-size: fit-content !important;
    block-size: 38px !important;
    min-inline-size: 104px !important;
    max-inline-size: 132px !important;
    writing-mode: horizontal-tb !important;
    overflow: hidden;
}
.stats-section {
    margin-top: -58px;
    padding-top: 0;
    position: relative;
    z-index: 5;
    background: transparent;
}
.stats-section .container {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--w3-shadow-lg);
    border: 1px solid rgba(226,232,240,0.85);
}
.stat-item {
    text-align: center;
    padding: 18px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--w3-border);
    height: 100%;
}
.stat-item h3,
.stat-item > span {
    display: inline;
    color: var(--w3-primary-dark);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.stat-item p {
    margin: 8px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
}
.feature-card-v2,
.step-card,
.use-case-card,
.testimonial-item,
.accordion-item,
.coverage-stat {
    border: 1px solid rgba(226,232,240,0.9);
    box-shadow: var(--w3-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card-v2:hover,
.step-card:hover,
.use-case-card:hover,
.testimonial-item:hover,
.coverage-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--w3-shadow-lg);
    border-color: transparent;
}
.feature-card-v2,
.step-card,
.use-case-card {
    position: relative;
    overflow: hidden;
}
.feature-card-v2::before,
.step-card::before,
.use-case-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--w3-gradient);
}
.feature-icon,
.step-icon,
.use-case-card i {
    background: var(--w3-gradient) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(14,165,233,0.28);
}
.how-it-works,
.api-showcase,
.faqs-section {
    background: radial-gradient(circle at top right, rgba(14,165,233,0.08), transparent 30%), #ffffff;
}
.use-cases,
.premium-product-section,
.coverage-section,
.testimonial-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}
.api-showcase .eyebrow,
.coverage-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(14,165,233,0.1);
    color: var(--w3-primary-dark);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: .78rem;
}
.code-window {
    border: 1px solid rgba(148,163,184,0.28);
    box-shadow: var(--w3-shadow-lg);
}
.coverage-flags {
    background: #fff;
    border: 1px solid var(--w3-border);
    box-shadow: var(--w3-shadow-md);
    padding: 22px;
    border-radius: 24px;
}
.flag-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.final-cta { padding-top: 36px; }
.final-cta .cta-card {
    border-radius: 28px;
    padding: clamp(28px, 5vw, 44px);
}
.final-cta h2,
.final-cta p { color: #fff !important; }
.final-cta p { opacity: .9; }
@media (max-width: 991.98px) {
    .hero-v2 {
        min-height: auto;
        text-align: center;
        padding-top: 78px;
    }
    .hero-v2 .banner-content p,
    .hero-proof {
        margin-left: auto;
        margin-right: auto;
    }
    .demo-btn-group,
    .hero-trust { justify-content: center; }
    .stats-section { margin-top: -34px; }
}
@media (max-width: 575.98px) {
    .hero-proof { grid-template-columns: 1fr; }
    .hero-trust .trust-item {
        width: 100%;
        justify-content: center;
    }
    .stats-section .container {
        border-radius: 18px;
        padding: 18px;
    }
    .section-title { margin-bottom: 32px; }
}

/* =========================================================
   25. PROFESSIONAL HOMEPAGE LAYER (Automas-inspired)
   ---------------------------------------------------------
   Strategy: clean rhythm, alternating subtle backgrounds,
   premium cards with gradient icon orbs.
   ========================================================= */

/* ---------- Section background rhythm ---------- */
.stats-section,
.features-v2,
.faqs-section,
.testimonial-section {
    background: #ffffff !important;
}

.how-it-works,
.premium-product-section,
.pricing-plan-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.use-cases,
.coverage-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(14,165,233,0.10), transparent 30%),
        linear-gradient(180deg, #eff6ff 0%, #ffffff 100%) !important;
}

.api-showcase {
    background: var(--w3-gradient) !important;
    color: #fff;
}

/* ---------- Section title rhythm + eyebrow pill ---------- */
.features-v2 .section-title,
.how-it-works .section-title,
.use-cases .section-title,
.premium-product-section .section-title,
.faqs-section .section-title,
.pricing-plan-section .section-title,
.testimonial-section .section-title {
    margin-bottom: 56px;
}

.features-v2 .section-title h2,
.how-it-works .section-title h2,
.use-cases .section-title h2,
.premium-product-section .section-title h2,
.faqs-section .section-title h2,
.pricing-plan-section .section-title h2,
.testimonial-section .section-title h2,
.coverage-section h2 {
    color: var(--w3-text) !important;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.features-v2 .section-title p,
.how-it-works .section-title p,
.use-cases .section-title p,
.premium-product-section .section-title p,
.faqs-section .section-title p,
.pricing-plan-section .section-title p,
.testimonial-section .section-title p,
.coverage-section p {
    color: var(--w3-text-muted) !important;
    font-size: 1.02rem;
    max-width: 660px;
    margin: 0 auto;
}

.features-v2 .section-title::before,
.how-it-works .section-title::before,
.use-cases .section-title::before,
.premium-product-section .section-title::before,
.faqs-section .section-title::before,
.pricing-plan-section .section-title::before,
.testimonial-section .section-title::before {
    content: 'BUILT FOR SCALE';
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 14px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--w3-primary-dark);
    background: rgba(14,165,233,0.10);
    border: 1px solid rgba(14,165,233,0.18);
    border-radius: 999px;
}
.how-it-works .section-title::before  { content: 'GET STARTED'; }
.use-cases .section-title::before     { content: 'USE CASES'; }
.premium-product-section .section-title::before { content: 'OUR SERVICES'; }
.faqs-section .section-title::before  { content: 'NEED HELP?'; }
.pricing-plan-section .section-title::before  { content: 'PRICING'; }
.testimonial-section .section-title::before   { content: 'TESTIMONIALS'; }

/* Underline below h2 */
.features-v2 .section-title h2::after,
.how-it-works .section-title h2::after,
.use-cases .section-title h2::after,
.premium-product-section .section-title h2::after,
.faqs-section .section-title h2::after,
.pricing-plan-section .section-title h2::after,
.testimonial-section .section-title h2::after {
    background: var(--w3-gradient);
    opacity: 1;
    height: 4px;
    width: 64px;
    border-radius: 4px;
}

/* ---------- 1. FEATURES ---------- */
.features-v2 .feature-card-v2 {
    padding: 34px 28px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(226,232,240,0.85) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05) !important;
    transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease, border-color .35s ease !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: none;
}
.features-v2 .feature-card-v2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--w3-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.features-v2 .feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(12,74,110,0.18) !important;
    border-color: rgba(14,165,233,0.30) !important;
}
.features-v2 .feature-card-v2:hover::after { transform: scaleX(1); }
.features-v2 .feature-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    background: var(--w3-gradient) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(14,165,233,0.32);
    border: 0 !important;
}
.features-v2 .feature-icon i { font-size: 1.55rem; color: #fff !important; }
.features-v2 .feature-icon img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.features-v2 .feature-card-v2 h4 {
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: var(--w3-text) !important;
}
.features-v2 .feature-card-v2 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--w3-text-muted) !important;
    margin: 0;
}

/* ---------- 2. HOW IT WORKS — connected steps ---------- */
.how-it-works .row { position: relative; }
.how-it-works .row::before {
    content: '';
    position: absolute;
    left: 14%;
    right: 14%;
    top: 78px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), transparent);
    z-index: 0;
}
@media (max-width: 767.98px) { .how-it-works .row::before { display: none; } }

.how-it-works .step-card {
    padding: 36px 26px 28px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(226,232,240,0.85) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05) !important;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}
.how-it-works .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(12,74,110,0.16) !important;
}
.how-it-works .step-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    background: var(--w3-gradient) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem !important;
    margin: 0 auto 18px !important;
    box-shadow: 0 14px 30px rgba(14,165,233,0.30);
    border: 6px solid #ffffff;
}
.how-it-works .step-num {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1;
    background: var(--w3-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    opacity: 0.18;
}
.how-it-works .step-card h5 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: var(--w3-text) !important;
}
.how-it-works .step-card p {
    color: var(--w3-text-muted) !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- 3. USE CASES — hover reveal gradient ---------- */
.use-cases .use-case-card {
    padding: 28px 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid rgba(226,232,240,0.85) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05) !important;
    text-align: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.use-cases .use-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--w3-gradient);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 0;
}
.use-cases .use-case-card > * { position: relative; z-index: 1; }
.use-cases .use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(12,74,110,0.22) !important;
    border-color: transparent !important;
}
.use-cases .use-case-card:hover::before { opacity: 1; }
.use-cases .use-case-card i {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    background: rgba(14,165,233,0.12) !important;
    color: var(--w3-primary-dark) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem !important;
    margin-bottom: 16px;
    transition: all .35s ease;
    border: 0 !important;
}
.use-cases .use-case-card:hover i {
    background: rgba(255,255,255,0.20) !important;
    color: #fff !important;
}
.use-cases .use-case-card h6 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--w3-text) !important;
    margin-bottom: 6px !important;
    transition: color .35s ease;
}
.use-cases .use-case-card p {
    font-size: 0.85rem;
    color: var(--w3-text-muted) !important;
    margin: 0;
    line-height: 1.55;
    transition: color .35s ease;
}
.use-cases .use-case-card:hover h6,
.use-cases .use-case-card:hover p { color: #fff !important; }

/* ---------- 4. SERVICES (product cards) ---------- */
.premium-product-section .product-card {
    border-radius: 22px !important;
    overflow: hidden;
    border: 1px solid rgba(226,232,240,0.85) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05) !important;
}
.premium-product-section .product-card .flex-shrink-0 {
    padding: 36px !important;
    background: var(--w3-gradient) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-product-section .product-card .flex-shrink-0::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(186,230,253,0.20), transparent 35%);
    pointer-events: none;
}
.premium-product-section .product-card .flex-shrink-0 img {
    width: 70px !important;
    height: 70px !important;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}
.premium-product-section .product-card .card-body { padding: 28px 26px !important; }
.premium-product-section .product-card .card-body h5 {
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    color: var(--w3-text) !important;
    margin-bottom: 12px !important;
}
.premium-product-section .product-card .card-body p {
    color: var(--w3-text-muted) !important;
    font-size: 0.94rem;
    line-height: 1.7;
}
.premium-product-section .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--w3-primary) !important;
    font-weight: 700;
    text-decoration: none;
}
.premium-product-section .read-more:hover {
    gap: 12px;
    color: var(--w3-primary-dark) !important;
}

/* ---------- 5. COVERAGE flag pills ---------- */
.coverage-section .coverage-flags {
    background: #fff !important;
    border: 1px solid var(--w3-border) !important;
    box-shadow: 0 18px 42px rgba(12,74,110,0.06);
    padding: 22px;
    border-radius: 24px;
}
.coverage-section .flag-pill {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: var(--w3-text) !important;
}
.coverage-section .grad-text { color: var(--w3-primary) !important; }
.coverage-section .coverage-stat {
    background: #fff !important;
    border: 1px solid var(--w3-border) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05);
    padding: 16px 20px;
    border-radius: 14px;
    color: var(--w3-text) !important;
}

/* ---------- 6. FAQs ---------- */
.faqs-section .accordion-item {
    background: #fff !important;
    border: 1px solid var(--w3-border) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.faqs-section .accordion-button {
    background: #fff !important;
    color: var(--w3-text) !important;
    font-weight: 700 !important;
    padding: 18px 22px;
    box-shadow: none !important;
    border: 0;
}
.faqs-section .accordion-button:not(.collapsed) {
    background: rgba(14,165,233,0.06) !important;
    color: var(--w3-primary-dark) !important;
}
.faqs-section .accordion-button::after { filter: none; }
.faqs-section .accordion-body { padding: 6px 22px 20px; }
.faqs-section .accordion-body p {
    color: var(--w3-text-muted) !important;
    margin: 0;
    line-height: 1.75;
}

/* ---------- 7. PRICING ---------- */
.pricing-plan-section .card {
    background: #fff !important;
    border: 1px solid var(--w3-border) !important;
    border-radius: 22px !important;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05);
    transition: transform .35s ease, box-shadow .35s ease;
}
.pricing-plan-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(12,74,110,0.16);
}
.pricing-plan-section .card-header {
    background: var(--w3-gradient) !important;
    border: 0 !important;
    padding: 22px 24px !important;
}
.pricing-plan-section .card-header,
.pricing-plan-section .card-header * { color: #fff !important; }
.pricing-plan-section .card-body,
.pricing-plan-section .card-footer {
    background: transparent !important;
}
.pricing-plan-section .card-body h2,
.pricing-plan-section .card-body h3,
.pricing-plan-section .card-body h4 { color: var(--w3-text) !important; }
.pricing-plan-section .card-body p,
.pricing-plan-section .card-body li { color: var(--w3-text-muted) !important; }
.pricing-plan-section .subscribe-plan,
.pricing-plan-section .btn {
    background: var(--w3-gradient) !important;
    color: #fff !important;
    border: 0 !important;
}

/* ---------- 8. TESTIMONIALS ---------- */
.testimonial-section .testimonial-item {
    background: #fff !important;
    border: 1px solid var(--w3-border) !important;
    border-radius: 22px;
    box-shadow: 0 6px 18px rgba(15,23,42,0.05);
    padding: 28px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial-section .testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(12,74,110,0.16);
}
.testimonial-section .top-area ul li i { color: #fbbf24 !important; }
.testimonial-section .testimonial-item p,
.testimonial-section .testimonial-item strong { color: var(--w3-text) !important; }
.testimonial-section .testimonial-item small { color: var(--w3-text-muted) !important; }

/* ---------- 9. STATS overlap on hero ---------- */
.stats-section {
    margin-top: -58px;
    padding-top: 0 !important;
    background: transparent !important;
}
.stats-section .container {
    background: #ffffff !important;
    border: 1px solid var(--w3-border) !important;
    box-shadow: 0 24px 60px rgba(12,74,110,0.16);
    border-radius: 24px;
    padding: 26px;
    backdrop-filter: none;
}
.stats-section .stat-item {
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
    border: 1px solid var(--w3-border) !important;
    border-radius: 18px;
    text-align: center;
    padding: 20px 14px;
}
.stats-section .stat-item h3,
.stats-section .stat-item > span { color: var(--w3-primary-dark) !important; }
.stats-section .stat-item p { color: var(--w3-text-muted) !important; }

/* ---------- 10. API SHOWCASE (highlight gradient) ---------- */
.api-showcase h2,
.api-showcase p,
.api-showcase .api-feature-list li { color: #fff !important; }
.api-showcase .eyebrow {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}
.api-showcase .api-feature-list li i { color: #86efac !important; }

/* ---------- 11. Mobile polish ---------- */
@media (max-width: 767.98px) {
    .features-v2 .feature-card-v2,
    .how-it-works .step-card,
    .use-cases .use-case-card { padding: 26px 22px !important; }
    .how-it-works .step-icon { width: 64px !important; height: 64px !important; font-size: 1.5rem !important; }
}

/* =========================================================
   26. AUTOMAS CLONE LAYOUT — W3SMS CONTENT
   ========================================================= */
.automas-clone-home {
    --auto-blue: #0d8bd4;
    --auto-blue-dark: #0065a8;
    --auto-cyan: #16b5e8;
    --auto-ink: #111827;
    --auto-muted: #6b7280;
    --auto-border: #e5e7eb;
    --auto-soft: #f7fbff;
    --auto-gradient: linear-gradient(135deg, #0072bc 0%, #12a9e6 100%);
    background: #fff;
}

.automas-clone-home {
    display: flex;
    flex-direction: column;
}

.automas-clone-home .banner-section { order: 1; }
.automas-clone-home .premium-product-section { order: 2; }
.automas-clone-home .pricing-plan-section { order: 3; }
.automas-clone-home .use-cases { order: 4; }
.automas-clone-home .stats-section { order: 5; }
.automas-clone-home .features-v2 { order: 6; }
.automas-clone-home .how-it-works { order: 7; }
.automas-clone-home .api-showcase { order: 8; }
.automas-clone-home .coverage-section { order: 9; }
.automas-clone-home .faqs-section { order: 10; }
.automas-clone-home .testimonial-section { order: 11; }
.automas-clone-home .final-cta { order: 12; }
.automas-clone-home .service-provide-section { order: 13; }

.automas-clone-home section {
    padding: 78px 0 !important;
}

.automas-clone-home .banner-section {
    min-height: 620px;
    padding: 120px 0 96px !important;
    background:
        radial-gradient(circle at 78% 22%, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(135deg, #0072bc 0%, #10a9e4 100%) !important;
}

.automas-clone-home .banner-section::after {
    display: none;
}

.automas-clone-home .banner-content h1 {
    font-size: clamp(2.35rem, 4vw, 4rem) !important;
    line-height: 1.12;
    font-weight: 800 !important;
    letter-spacing: -0.035em;
    max-width: 740px;
}

.automas-clone-home .hero-sub {
    max-width: 620px;
    font-size: 1.08rem !important;
    line-height: 1.85;
}

.automas-clone-home .hero-badge,
.automas-clone-home .hero-trust .trust-item,
.automas-clone-home .hero-proof > div {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: none;
}

.automas-clone-home .theme-btn,
.automas-clone-home .btn.theme-btn {
    background: #0b75bb !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(0,101,168,0.22);
}

.automas-clone-home .theme-btn:hover,
.automas-clone-home .btn.theme-btn:hover {
    background: #075f9b !important;
    transform: translateY(-2px);
}

.automas-clone-home .section-title {
    margin-bottom: 44px !important;
}

.automas-clone-home .section-title::before {
    display: none !important;
}

.automas-clone-home .section-title h2,
.automas-clone-home .coverage-section h2,
.automas-clone-home .api-showcase h2 {
    color: var(--auto-ink) !important;
    font-size: clamp(1.75rem, 2.4vw, 2.6rem) !important;
    line-height: 1.25;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

.automas-clone-home .section-title h2::after {
    width: 54px !important;
    height: 3px !important;
    background: var(--auto-blue) !important;
}

.automas-clone-home .section-title p,
.automas-clone-home .coverage-section p {
    color: var(--auto-muted) !important;
    font-size: 0.98rem;
}

.automas-clone-home .premium-product-section,
.automas-clone-home .use-cases,
.automas-clone-home .features-v2,
.automas-clone-home .faqs-section,
.automas-clone-home .testimonial-section {
    background: #fff !important;
}

.automas-clone-home .pricing-plan-section,
.automas-clone-home .how-it-works,
.automas-clone-home .coverage-section {
    background: var(--auto-soft) !important;
}

.automas-clone-home .product-card,
.automas-clone-home .feature-card-v2,
.automas-clone-home .use-case-card,
.automas-clone-home .step-card,
.automas-clone-home .pricing-plan-section .card,
.automas-clone-home .testimonial-item,
.automas-clone-home .accordion-item,
.automas-clone-home .coverage-stat,
.automas-clone-home .coverage-flags {
    background: #fff !important;
    border: 1px solid var(--auto-border) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 18px rgba(17,24,39,0.06) !important;
    transition: all .3s ease !important;
}

.automas-clone-home .product-card:hover,
.automas-clone-home .feature-card-v2:hover,
.automas-clone-home .use-case-card:hover,
.automas-clone-home .step-card:hover,
.automas-clone-home .pricing-plan-section .card:hover,
.automas-clone-home .testimonial-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 38px rgba(0,114,188,0.16) !important;
    border-color: rgba(0,114,188,0.28) !important;
}

.automas-clone-home .premium-product-section .slider-container,
.automas-clone-home .testimonial-section .slider-container {
    max-width: 1120px;
    margin: 0 auto;
}

.automas-clone-home .product-card {
    min-height: 310px;
    text-align: center;
}

.automas-clone-home .product-card .flex-shrink-0 {
    width: 74px;
    height: 74px;
    margin: 28px auto 0;
    padding: 18px !important;
    border-radius: 50%;
    background: rgba(0,114,188,0.10) !important;
}

.automas-clone-home .product-card .flex-shrink-0::before {
    display: none;
}

.automas-clone-home .product-card .flex-shrink-0 img {
    width: 38px !important;
    height: 38px !important;
    filter: none !important;
}

.automas-clone-home .product-card .card-body {
    padding: 22px 24px 28px !important;
}

.automas-clone-home .product-card .card-body h5,
.automas-clone-home .feature-card-v2 h4,
.automas-clone-home .step-card h5,
.automas-clone-home .use-case-card h6 {
    color: var(--auto-ink) !important;
    font-size: 1.06rem !important;
    font-weight: 700 !important;
}

.automas-clone-home .product-card .card-body p,
.automas-clone-home .feature-card-v2 p,
.automas-clone-home .step-card p,
.automas-clone-home .use-case-card p {
    color: var(--auto-muted) !important;
    font-size: 0.92rem;
    line-height: 1.7;
}

.automas-clone-home .read-more {
    color: var(--auto-blue) !important;
    font-weight: 700;
}

.automas-clone-home .pricing-plan-section .card-header {
    background: var(--auto-gradient) !important;
    border-radius: 0 !important;
}

.automas-clone-home .pricing-plan-section .subscribe-plan,
.automas-clone-home .pricing-plan-section .btn {
    background: var(--auto-blue) !important;
    border-radius: 6px !important;
}

.automas-clone-home .stats-section {
    margin-top: 0 !important;
    background: #fff !important;
    padding: 58px 0 !important;
}

.automas-clone-home .stats-section .container {
    box-shadow: none !important;
    border: 0 !important;
    padding: 0;
}

.automas-clone-home .stat-item {
    padding: 30px 18px !important;
    border-radius: 8px !important;
}

.automas-clone-home .stat-item h3,
.automas-clone-home .stat-item > span {
    color: var(--auto-blue) !important;
    font-size: clamp(2rem, 3vw, 2.7rem) !important;
}

.automas-clone-home .feature-icon,
.automas-clone-home .step-icon,
.automas-clone-home .use-case-card i {
    background: var(--auto-gradient) !important;
    color: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 22px rgba(0,114,188,0.22) !important;
}

.automas-clone-home .feature-card-v2,
.automas-clone-home .step-card {
    text-align: center;
    padding: 34px 24px !important;
}

.automas-clone-home .use-case-card {
    min-height: 210px;
}

.automas-clone-home .use-case-card::before {
    display: none;
}

.automas-clone-home .use-case-card:hover h6,
.automas-clone-home .use-case-card:hover p {
    color: inherit !important;
}

.automas-clone-home .api-showcase {
    background: var(--auto-gradient) !important;
}

.automas-clone-home .api-showcase h2,
.automas-clone-home .api-showcase p,
.automas-clone-home .api-feature-list li {
    color: #fff !important;
}

.automas-clone-home .code-window {
    border-radius: 10px !important;
    box-shadow: 0 22px 50px rgba(0,0,0,0.22) !important;
}

.automas-clone-home .accordion-button:not(.collapsed) {
    background: rgba(0,114,188,0.06) !important;
    color: var(--auto-blue-dark) !important;
}

.automas-clone-home .final-cta .cta-card {
    background: var(--auto-gradient) !important;
    border-radius: 10px !important;
}

@media (max-width: 991.98px) {
    .automas-clone-home .banner-section {
        text-align: center;
        min-height: auto;
        padding: 92px 0 72px !important;
    }
}

@media (max-width: 575.98px) {
    .automas-clone-home section {
        padding: 56px 0 !important;
    }
}

/* =========================================================
   27. SMS AUTOMAS VOICE PAGE CLONE
   ========================================================= */
.automas-voice-clone {
    --voice-blue: #087fc0;
    --voice-blue-dark: #075d93;
    --voice-cyan: #12aee8;
    --voice-ink: #111827;
    --voice-muted: #5f6b7a;
    --voice-border: #e5e7eb;
    --voice-soft: #f5fbff;
    --voice-gradient: linear-gradient(135deg, #0072bc 0%, #12aee8 100%);
    background: #fff;
    color: var(--voice-ink);
}

.voice-nav-section {
    background: #fff;
    border-bottom: 1px solid var(--voice-border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.voice-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.voice-nav a {
    color: var(--voice-ink);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 9px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .2s ease;
}

.voice-nav a:hover,
.voice-nav a.active {
    color: var(--voice-blue);
    background: rgba(8,127,192,0.08);
}

.voice-nav .signup-link {
    background: var(--voice-blue);
    color: #fff !important;
    margin-left: 6px;
}

.voice-nav .signup-link:hover {
    background: var(--voice-blue-dark);
}

.voice-hero {
    padding: 92px 0;
    background:
        radial-gradient(circle at 84% 20%, rgba(255,255,255,0.18), transparent 30%),
        var(--voice-gradient);
    color: #fff;
}

.voice-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    margin-bottom: 18px;
}

.voice-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.voice-hero p {
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 720px;
}

.voice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.voice-primary-btn,
.voice-outline-btn {
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 800 !important;
}

.voice-primary-btn {
    background: #fff !important;
    color: var(--voice-blue-dark) !important;
    border: 0 !important;
}

.voice-outline-btn {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
}

.voice-visual-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    text-align: center;
}

.voice-visual-card img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0,0,0,0.22));
}

.voice-content-section,
.voice-docs-section {
    padding: 78px 0;
    background: #fff;
}

.voice-block-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.voice-info-block,
.voice-doc-card,
.voice-notice-card {
    background: #fff;
    border: 1px solid var(--voice-border);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(17,24,39,0.06);
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.voice-info-block:hover,
.voice-doc-card:hover,
.voice-notice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8,127,192,0.28);
    box-shadow: 0 18px 44px rgba(8,127,192,0.14);
}

.voice-info-block h3,
.voice-doc-card h3,
.voice-notice-card h3 {
    color: var(--voice-ink);
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.voice-info-block h3::after,
.voice-doc-card h3::after,
.voice-notice-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: var(--voice-gradient);
}

.voice-info-block ul,
.voice-doc-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.voice-info-block li,
.voice-doc-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--voice-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.voice-info-block li i,
.voice-doc-card li i {
    color: var(--voice-blue);
    margin-top: 4px;
}

.voice-package-strip {
    padding: 70px 0;
    background: var(--voice-soft);
}

.voice-package-card {
    background: var(--voice-gradient);
    border-radius: 14px;
    padding: clamp(28px, 4vw, 46px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 22px 50px rgba(8,127,192,0.22);
}

.voice-package-card span {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    opacity: .88;
    margin-bottom: 8px;
}

.voice-package-card h2 {
    color: #fff;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.voice-package-card p {
    color: rgba(255,255,255,0.88);
    max-width: 720px;
    margin: 0;
}

.voice-docs-section {
    background: #fff;
}

.voice-notice-card {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.voice-notice-card p {
    color: var(--voice-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.automas-voice-clone .voice-pricing {
    background: var(--voice-soft) !important;
    padding-top: 78px;
}

.automas-voice-clone .pricing-plan-section .section-title h2 {
    color: var(--voice-ink) !important;
    font-weight: 800;
}

.automas-voice-clone .pricing-plan-section .section-title p {
    color: var(--voice-muted) !important;
}

/* Force PRICING eyebrow pill to sit ABOVE the heading (stacked) instead of beside it */
.automas-voice-clone .pricing-plan-section .section-title::before {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.automas-voice-clone .pricing-plan-section .card {
    border: 1px solid var(--voice-border) !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(17,24,39,0.06);
    transition: all .25s ease;
}

.automas-voice-clone .pricing-plan-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(8,127,192,0.14);
}

.automas-voice-clone .pricing-plan-section .card-header {
    background: var(--voice-gradient) !important;
    border: 0 !important;
}

.automas-voice-clone .pricing-plan-section .card-header h4 {
    color: #fff !important;
}

.automas-voice-clone .pricing-plan-section .subscribe-plan {
    background: var(--voice-blue) !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .voice-hero {
        padding: 76px 0;
        text-align: center;
    }

    .voice-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .voice-actions,
    .voice-package-card {
        justify-content: center;
        text-align: center;
    }

    .voice-package-card {
        flex-direction: column;
    }

    .voice-block-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .voice-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .voice-nav a {
        white-space: nowrap;
    }

    .voice-content-section,
    .voice-docs-section,
    .voice-package-strip {
        padding: 56px 0;
    }
}

