    /* ===== GLOBAL VARIABLES & BASE ===== */
    :root {
        --yp: #45108a;
        --yp-light: #6a1fc2;
        --yp-dark: #2d0a5e;
        --yo: #ff6b35;
        --yg: #00c853;
        --yb: #00468c;
        --yt: #1a1a2e;
        --ygr: #6c757d;
        --ylf: #f8f6ff;
        --yle: #ede9f7;
    }
    body { font-family: 'Inter', sans-serif; }

    /* ===== SCROLL-TO-TOP ===== */
    #yl-back-top {
        position: fixed;
        bottom: 90px;
        right: 24px;
        z-index: 9999;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--yp), var(--yp-light));
        color: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(69,16,138,0.4);
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        border: none;
    }
    #yl-back-top.visible { opacity: 1; visibility: visible; }
    #yl-back-top:hover { transform: translateY(-3px); color: #fff; background: var(--yo); }

    /* ===== NAVBAR ===== */
    .yl-navbar {
        background: linear-gradient(135deg, var(--yp-dark) 0%, var(--yp) 60%, var(--yp-light) 100%);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1050;
        box-shadow: 0 2px 20px rgba(69,16,138,0.35);
    }
    .yl-navbar .yl-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 30px; height: 70px; }
    .yl-navbar .yl-logo img { height: 42px; }
    .yl-nav-links { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
    .yl-nav-links > li { position: relative; }
    .yl-nav-links > li > a {
        color: rgba(255,255,255,0.88);
        text-decoration: none;
        padding: 8px 15px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        transition: all 0.2s;
        letter-spacing: 0.3px;
        display: block;
        white-space: nowrap;
    }
    .yl-nav-links > li > a:hover,
    .yl-nav-links > li.active > a { color: #fff; background: rgba(255,255,255,0.12); }

    /* FIXED DROPDOWN — uses hover with a buffer gap to prevent flicker */
    .yl-dropdown-wrap { position: relative; }
    .yl-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
        min-width: 200px;
        padding: 8px 0;
        z-index: 1060;
        /* Small top padding to create a hover bridge */
        margin-top: 0;
        border-top: 4px solid transparent;
    }
    /* The bridge: invisible area between nav link and dropdown */
    .yl-dropdown-wrap::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 12px;
        display: none;
    }
    .yl-dropdown-wrap:hover::after { display: block; }
    .yl-dropdown-wrap:hover .yl-dropdown-menu { display: block; }
    .yl-dropdown-menu a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        color: var(--yt) !important;
        padding: 11px 18px !important;
        font-size: 13.5px !important;
        font-weight: 500;
        background: transparent !important;
        border-radius: 0 !important;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
    }
    .yl-dropdown-menu a:hover { background: var(--ylf) !important; color: var(--yp) !important; }
    .yl-dropdown-menu a i { color: var(--yp); font-size: 13px; width: 16px; flex-shrink: 0; }
    .yl-dropdown-menu .dd-divider { height: 1px; background: var(--yle); margin: 4px 0; }

    .yl-nav-btns { display: flex; gap: 10px; align-items: center; }
    .yl-btn-signin {
        color: rgba(255,255,255,0.9);
        border: 1px solid rgba(255,255,255,0.4);
        padding: 7px 20px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
    }
    .yl-btn-signin:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }
    .yl-btn-register {
        background: var(--yo);
        color: #fff;
        padding: 8px 22px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s;
        box-shadow: 0 4px 14px rgba(255,107,53,0.4);
        white-space: nowrap;
    }
    .yl-btn-register:hover { background: #e55a28; transform: translateY(-1px); color: #fff; text-decoration: none; }

    /* Hamburger */
    .yl-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .yl-hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: all 0.3s; }

    /* Mobile nav */
    .yl-mobile-nav { display: none; background: var(--yp-dark); padding: 10px 20px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
    .yl-mobile-nav.open { display: block; }
    .yl-mobile-nav a { display: block; color: rgba(255,255,255,0.85); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; text-decoration: none; }
    .yl-mobile-nav a:last-of-type { border-bottom: none; }
    .yl-mobile-nav .yl-mob-btns { display: flex; gap: 10px; margin-top: 14px; }
    .yl-mobile-nav .yl-mob-btns a {
        flex: 1; text-align: center; padding: 10px; border-radius: 8px;
        font-size: 13px; font-weight: 700; text-decoration: none; border: none;
    }
    .yl-mob-btn-in { border: 1px solid rgba(255,255,255,0.4) !important; color: #fff !important; }
    .yl-mob-btn-up { background: var(--yo) !important; color: #fff !important; }

    /* ===== INNER PAGE HERO BANNER ===== */
    .yl-page-hero {
        background: linear-gradient(135deg, var(--yp-dark) 0%, var(--yp) 55%, var(--yp-light) 100%);
        padding: 52px 0;
        position: relative;
        overflow: hidden;
    }
    .yl-page-hero::after {
        content: '';
        position: absolute;
        bottom: -30px; right: -30px;
        width: 220px; height: 220px;
        background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
        border-radius: 50%;
    }
    .yl-page-hero-inner { position: relative; z-index: 2; }
    .yl-page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
    .yl-page-hero .breadcrumb-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .yl-page-hero .breadcrumb-wrap a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .yl-page-hero .breadcrumb-wrap a:hover { color: var(--yo); }
    .yl-page-hero .breadcrumb-wrap span { color: rgba(255,255,255,0.4); font-size: 12px; }
    .yl-page-hero .breadcrumb-wrap .current { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; }

    /* ===== SHARED SECTION STYLES ===== */
    .yl-section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yp); margin-bottom: 8px; }
    .yl-section-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--yt); margin-bottom: 12px; line-height: 1.25; }
    .yl-section-sub { color: var(--ygr); max-width: 560px; font-size: 15px; line-height: 1.75; margin-bottom: 0; }

    /* CTA button shared */
    .yl-btn-primary {
        display: inline-flex; align-items: center; gap: 8px;
        background: var(--yo); color: #fff;
        padding: 13px 30px; border-radius: 10px;
        font-size: 14px; font-weight: 700; text-decoration: none;
        transition: all 0.25s; box-shadow: 0 4px 18px rgba(255,107,53,0.35);
        border: none; cursor: pointer;
    }
    .yl-btn-primary:hover { background: #e55a28; transform: translateY(-2px); color: #fff; text-decoration: none; box-shadow: 0 8px 28px rgba(255,107,53,0.45); }
    .yl-btn-outline {
        display: inline-flex; align-items: center; gap: 8px;
        border: 2px solid var(--yp); color: var(--yp);
        padding: 11px 28px; border-radius: 10px;
        font-size: 14px; font-weight: 600; text-decoration: none;
        transition: all 0.25s;
    }
    .yl-btn-outline:hover { background: var(--yp); color: #fff; text-decoration: none; }

    @media (max-width: 991px) {
        .yl-nav-links, .yl-nav-btns { display: none !important; }
        .yl-hamburger { display: flex; }
    }






/* ===================================================
   YOOLA SMS – HOMEPAGE STYLES
   =================================================== */

/* ----- HERO SECTION ----- */
.yl-hero {
    background: linear-gradient(135deg, #2d0a5e 0%, #45108a 45%, #6a1fc2 80%, #8b2fc9 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.yl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.yl-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.yl-hero-content { position: relative; z-index: 2; }
.yl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}
.yl-hero-badge .dot { width: 8px; height: 8px; background: #00c853; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,200,83,0.6)} 50%{box-shadow:0 0 0 6px rgba(0,200,83,0)} }

.yl-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.yl-hero h1 span { color: #ff6b35; }
.yl-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.yl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.yl-hero-btns .btn-primary-hero {
    background: #ff6b35;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(255,107,53,0.45);
    transition: all 0.25s;
}
.yl-hero-btns .btn-primary-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.5); color: #fff; text-decoration: none; }
.yl-hero-btns .btn-outline-hero {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}
.yl-hero-btns .btn-outline-hero:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }

.yl-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.yl-hero-stat { }
.yl-hero-stat .num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.yl-hero-stat .num span { color: #ff6b35; }
.yl-hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero right – SMS mockup */
.yl-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.yl-phone-mockup {
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 6px rgba(255,255,255,0.1);
    position: relative;
}
.yl-phone-mockup .phone-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 14px;
}
.yl-phone-mockup .phone-top .avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,#45108a,#6a1fc2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.yl-phone-mockup .phone-top .name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
.yl-phone-mockup .phone-top .tag { font-size: 11px; color: #00c853; font-weight: 600; }
.yl-sms-bubble {
    background: #f3efff;
    border-radius: 14px 14px 14px 4px;
    padding: 11px 14px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #1a1a2e;
    line-height: 1.55;
    position: relative;
}
.yl-sms-bubble.sent {
    background: linear-gradient(135deg,#45108a,#6a1fc2);
    color: #fff;
    border-radius: 14px 14px 4px 14px;
    margin-left: 20px;
}
.yl-sms-time { font-size: 10px; color: #aaa; margin-top: 4px; text-align: right; }
.yl-phone-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.yl-phone-footer input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    outline: none;
    color: #999;
}
.yl-phone-footer button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff6b35;
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating badges on mockup */
.yl-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}
.yl-float-badge.badge-1 { top: -20px; right: -30px; animation-delay: 0s; }
.yl-float-badge.badge-2 { bottom: 40px; left: -40px; animation-delay: 1.5s; }
.yl-float-badge .badge-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ----- TRUSTED BY SECTION ----- */
.yl-trusted {
    background: #f8f6ff;
    padding: 30px 0;
    border-top: 1px solid #ede9f7;
    border-bottom: 1px solid #ede9f7;
}
.yl-trusted-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.yl-trusted-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.yl-trusted-logos {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.yl-trusted-logos img {
    height: 36px;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s;
}
.yl-trusted-logos img:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }

/* ----- SMS CALCULATOR ----- */
.yl-calc-section {
    background: linear-gradient(135deg, #45108a 0%, #6a1fc2 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.yl-calc-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.yl-calc-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    z-index: 2;
}
.yl-calc-section h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.yl-calc-section p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 15px; }
.yl-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
@media(max-width:767px){ .yl-calc-grid{ grid-template-columns:1fr; } }
.yl-calc-field label { display: block; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.yl-calc-field input, .yl-calc-field select {
    width: 100%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.yl-calc-field input::placeholder { color: rgba(255,255,255,0.45); }
.yl-calc-field input:focus, .yl-calc-field select:focus { border-color: rgba(255,255,255,0.6); }
.yl-calc-field select option { background: #45108a; color: #fff; }
.yl-calc-result {
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.yl-calc-result .res-label { color: rgba(255,255,255,0.75); font-size: 14px; }
.yl-calc-result .res-amount { color: #fff; font-size: 2rem; font-weight: 800; }
.yl-calc-result .res-amount span { color: #ff6b35; }
.yl-calc-result .res-rate { color: rgba(255,255,255,0.65); font-size: 13px; }
.yl-calc-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(255,107,53,0.4);
}
.yl-calc-btn:hover { background: #e55a28; transform: translateY(-1px); color: #fff; text-decoration: none; }

/* ----- FEATURES SECTION ----- */
.yl-features-section { padding: 90px 0; background: #fff; }
.yl-section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yoola-purple);
    margin-bottom: 10px;
}
.yl-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}
.yl-section-sub { text-align: center; color: #6c757d; max-width: 560px; margin: 0 auto 56px; font-size: 16px; line-height: 1.7; }

.yl-feature-card {
    background: #fff;
    border: 1px solid #ede9f7;
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.yl-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #45108a, #6a1fc2);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.yl-feature-card:hover { box-shadow: 0 12px 40px rgba(69,16,138,0.1); transform: translateY(-4px); border-color: #c9b9f0; }
.yl-feature-card:hover::before { transform: scaleX(1); }
.yl-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3efff, #e8e0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: #45108a;
    transition: all 0.3s;
}
.yl-feature-card:hover .yl-feature-icon { background: linear-gradient(135deg, #45108a, #6a1fc2); color: #fff; }
.yl-feature-card h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.yl-feature-card p { font-size: 14px; color: #6c757d; line-height: 1.65; margin: 0; }

/* ----- HOW IT WORKS ----- */
.yl-how-section { padding: 90px 0; background: #f8f6ff; }
.yl-step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.yl-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45108a, #6a1fc2);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(69,16,138,0.3);
}
.yl-step h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.yl-step p { font-size: 14px; color: #6c757d; line-height: 1.65; }
.yl-step-connector {
    position: absolute;
    top: 50px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #c9b9f0, transparent);
}
@media(max-width:767px){ .yl-step-connector { display: none; } }

/* ----- PRICING CARDS ----- */
.yl-pricing-section { padding: 90px 0; background: #fff; }
.yl-price-card {
    background: #fff;
    border: 2px solid #ede9f7;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}
.yl-price-card.popular {
    border-color: #45108a;
    background: linear-gradient(135deg, #2d0a5e, #45108a);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(69,16,138,0.3);
}
.yl-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.yl-price-card:hover:not(.popular) { border-color: #c9b9f0; box-shadow: 0 12px 40px rgba(69,16,138,0.1); transform: translateY(-4px); }
.yl-price-card .plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 14px; }
.yl-price-card.popular .plan-name { color: rgba(255,255,255,0.7); }
.yl-price-card .amount { font-size: 3.2rem; font-weight: 900; color: #45108a; line-height: 1; }
.yl-price-card.popular .amount { color: #ff6b35; }
.yl-price-card .amount small { font-size: 14px; font-weight: 500; color: #999; }
.yl-price-card.popular .amount small { color: rgba(255,255,255,0.6); }
.yl-price-card .msgs { font-size: 14px; color: #6c757d; margin: 10px 0 24px; }
.yl-price-card.popular .msgs { color: rgba(255,255,255,0.75); }
.yl-price-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.yl-price-card ul li { font-size: 13.5px; color: #555; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.yl-price-card.popular ul li { color: rgba(255,255,255,0.85); }
.yl-price-card ul li i { color: #00c853; font-size: 13px; }
.yl-price-card.popular ul li i { color: #ff6b35; }
.yl-price-cta {
    display: block;
    background: linear-gradient(135deg, #45108a, #6a1fc2);
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}
.yl-price-card.popular .yl-price-cta { background: #ff6b35; box-shadow: 0 4px 18px rgba(255,107,53,0.45); }
.yl-price-cta:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; text-decoration: none; }

/* ----- INDUSTRIES SECTION ----- */
.yl-industries-section { padding: 90px 0; background: #f8f6ff; }
.yl-industry-card {
    background: #fff;
    border: 1px solid #ede9f7;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.yl-industry-card:hover { border-color: #45108a; box-shadow: 0 8px 30px rgba(69,16,138,0.12); transform: translateY(-3px); }
.yl-industry-card .icon { font-size: 32px; margin-bottom: 10px; }
.yl-industry-card h5 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0; }

/* ----- PROMO & TRANSACTIONAL ----- */
.yl-sms-types { padding: 90px 0; background: #fff; }
.yl-type-card {
    background: #f8f6ff;
    border-radius: 20px;
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.yl-type-card.dark { background: linear-gradient(135deg, #2d0a5e, #45108a); }
.yl-type-card .type-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #45108a, #6a1fc2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 22px;
}
.yl-type-card.dark .type-icon { background: rgba(255,255,255,0.15); }
.yl-type-card h3 { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; }
.yl-type-card.dark h3 { color: #fff; }
.yl-type-card p { color: #6c757d; line-height: 1.75; font-size: 15px; margin-bottom: 24px; }
.yl-type-card.dark p { color: rgba(255,255,255,0.75); }
.yl-type-card ul { list-style: none; padding: 0; margin-bottom: 28px; }
.yl-type-card ul li { display: flex; align-items: flex-start; gap: 10px; color: #555; font-size: 14px; padding: 5px 0; }
.yl-type-card.dark ul li { color: rgba(255,255,255,0.8); }
.yl-type-card ul li i { color: #45108a; margin-top: 3px; flex-shrink: 0; }
.yl-type-card.dark ul li i { color: #ff6b35; }

/* ----- DELIVERY GUARANTEE ----- */
.yl-guarantee { padding: 80px 0; background: #fff; }
.yl-guarantee-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #f8f6ff;
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.3s;
}
.yl-guarantee-card:hover { box-shadow: 0 6px 24px rgba(69,16,138,0.1); transform: translateY(-2px); }
.yl-guarantee-card .g-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #45108a, #6a1fc2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.yl-guarantee-card h5 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 5px; }
.yl-guarantee-card p { font-size: 13.5px; color: #6c757d; line-height: 1.6; margin: 0; }

/* ----- TESTIMONIALS ----- */
.yl-testimonials { padding: 90px 0; background: linear-gradient(135deg, #2d0a5e, #45108a); }
.yl-testimonials .yl-section-label { color: rgba(255,107,53,0.9); }
.yl-testimonials .yl-section-title { color: #fff; }
.yl-testimonials .yl-section-sub { color: rgba(255,255,255,0.7); }
.yl-testi-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.yl-testi-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.yl-testi-stars { color: #ffd700; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.yl-testi-card p { color: rgba(255,255,255,0.88); font-size: 14.5px; line-height: 1.72; font-style: italic; margin-bottom: 20px; }
.yl-testi-author { display: flex; align-items: center; gap: 12px; }
.yl-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #e55a28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.yl-testi-name { font-weight: 700; color: #fff; font-size: 14px; }
.yl-testi-role { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ----- NETWORKS SECTION ----- */
.yl-networks { padding: 60px 0; background: #f8f6ff; }
.yl-networks h4 { text-align: center; font-size: 1rem; font-weight: 700; color: #45108a; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; }
.yl-network-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.yl-network-pill {
    background: #fff;
    border: 2px solid #ede9f7;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #45108a;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}
.yl-network-pill:hover { border-color: #45108a; background: #45108a; color: #fff; }
.yl-network-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #00c853; }

/* ----- CTA BANNER ----- */
.yl-cta-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a28 50%, #c9420d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.yl-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.yl-cta-banner h2 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.yl-cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.yl-cta-banner .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.yl-cta-btn-white {
    background: #fff;
    color: #e55a28;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.yl-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: #e55a28; text-decoration: none; }
.yl-cta-btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
}
.yl-cta-btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }