/* ============================================================
   CLOUD PAGES — shared design system
   Prefix: cp-  (cloud page)
   ============================================================ */

/* ── Banner ── */
.cp-banner {
    background: linear-gradient(135deg, #020c1e 0%, #062040 20%, #0a3a7a 50%, #0d47a1 72%, #1565c0 100%);
    padding: 80px 0 76px;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
}
.cp-banner::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .35;
    pointer-events: none;
}
.cp-banner-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cp-banner-deco span { position: absolute; border-radius: 50%; }
.cp-banner-deco span:nth-child(1) {
    width: 400px; height: 400px;
    top: -110px; right: 2%;
    background: radial-gradient(circle, rgba(99,179,237,.18) 0%, transparent 65%);
}
.cp-banner-deco span:nth-child(2) {
    width: 220px; height: 220px;
    bottom: -70px; left: 4%;
    background: radial-gradient(circle, rgba(129,140,248,.14) 0%, transparent 65%);
}
.cp-banner-deco span:nth-child(3) {
    width: 90px; height: 90px;
    top: 20%; right: 20%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
}
.cp-banner-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.cp-banner-wave svg { display: block; width: 100%; }
.cp-banner .cp-inner { position: relative; z-index: 2; }

/* Banner typography */
.cp-banner-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff; font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .35rem 1.1rem; border-radius: 50px;
    backdrop-filter: blur(10px); margin-bottom: .9rem;
}
.cp-banner-badge i { color: #93c5fd; }
.cp-banner h1 {
    color: #fff; font-family: 'Poppins', sans-serif;
    font-size: 2.7rem; font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,.28);
    letter-spacing: -.02em; line-height: 1.15;
    margin-bottom: .5rem;
}
.cp-banner h1 .cp-accent {
    background: linear-gradient(90deg, #93c5fd 0%, #c7d2fe 60%, #e0f2fe 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cp-banner p.cp-subtitle {
    color: rgba(255,255,255,.75); font-size: 1rem;
    line-height: 1.7; max-width: 560px; margin-bottom: 1.4rem;
}
.cp-breadcrumb {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .84rem; color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
    padding: .42rem 1.2rem; border-radius: 50px;
    backdrop-filter: blur(8px); margin-bottom: .9rem;
}
.cp-breadcrumb a { color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.cp-breadcrumb a:hover { color: #fff; }
.cp-breadcrumb .sep { font-size: .7rem; opacity: .5; }

/* Banner buttons */
.cp-banner-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .2rem; }
.cp-btn-primary {
    display: inline-flex; align-items: center; gap: .45rem;
    background: #fff; color: #0d47a1;
    padding: .62rem 1.5rem; border-radius: 8px;
    font-size: .92rem; font-weight: 700;
    text-decoration: none; transition: .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.cp-btn-primary:hover { background: #eef3ff; color: #0d47a1; transform: translateY(-2px); }
.cp-btn-outline {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,255,255,.12); color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    padding: .62rem 1.5rem; border-radius: 8px;
    font-size: .92rem; font-weight: 600;
    text-decoration: none; transition: .2s;
    backdrop-filter: blur(8px);
}
.cp-btn-outline:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── Sub-navigation tabs ── */
.cloud-subnav {
    background: #fff;
    border-bottom: 2px solid #e4ecf7;
    position: sticky; top: 78px; z-index: 100;
    box-shadow: 0 2px 14px rgba(10,92,186,.07);
}
.cloud-subnav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; overflow-x: auto;
    scrollbar-width: none;
}
.cloud-subnav-list::-webkit-scrollbar { display: none; }
.cloud-subnav-list li a {
    display: block;
    padding: .85rem 1.4rem;
    font-size: .9rem; font-weight: 600;
    color: #666; text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.cloud-subnav-list li a:hover,
.cloud-subnav-list li a.active {
    color: #0d47a1;
    border-bottom-color: #0d47a1;
}

/* ── Section helpers ── */
.cp-section     { padding: 60px 0; }
.cp-section-alt { background: #f4f7fb; padding: 60px 0; }
.cp-section-label {
    display: inline-block;
    background: rgba(25,103,210,.08);
    color: #1967d2; font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .3rem .9rem; border-radius: 20px; margin-bottom: .7rem;
}
.cp-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.85rem; font-weight: 700; color: #1a1a2e; margin-bottom: .5rem;
}
.cp-section-sub { font-size: .97rem; color: #666; max-width: 600px; line-height: 1.65; }

/* ── Feature / benefit cards ── */
.cp-benefit-card {
    background: #fff; border-radius: 14px;
    box-shadow: 0 4px 24px rgba(10,92,186,.09);
    padding: 1.8rem 1.5rem; height: 100%;
    transition: transform .25s, box-shadow .25s, border-bottom-color .25s;
    border-bottom: 3px solid transparent;
}
.cp-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10,92,186,.16);
    border-bottom-color: #1967d2;
}
.cp-benefit-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: #fff; margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #1967d2, #0a5cba);
}
.cp-benefit-card h5 {
    font-size: 1.02rem; font-weight: 700; color: #1a1a2e; margin-bottom: .45rem;
}
.cp-benefit-card p { font-size: .9rem; color: #555; line-height: 1.65; margin: 0; }

/* ── Why Choose grid ── */
.cp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
@media (max-width: 576px)  { .cp-why-grid { grid-template-columns: 1fr; } }
@media (min-width: 577px) and (max-width: 991px) { .cp-why-grid { grid-template-columns: repeat(2, 1fr); } }
.cp-why-item {
    display: flex; align-items: center; gap: .85rem;
    background: #fff; border-radius: 12px;
    padding: .95rem 1.1rem;
    box-shadow: 0 2px 12px rgba(10,92,186,.07);
    transition: box-shadow .2s, transform .2s;
}
.cp-why-item:hover { box-shadow: 0 6px 20px rgba(10,92,186,.13); transform: translateY(-2px); }
.cp-why-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 10px; background: #eef3ff;
    display: flex; align-items: center; justify-content: center;
}
.cp-why-icon img { width: 38px; height: 38px; object-fit: contain; }
.cp-why-item h6 { font-size: .88rem; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.3; }

/* ── Feature icon list ── */
.cp-feature-item {
    display: flex; align-items: flex-start; gap: .85rem;
    padding: 1.1rem 0; border-bottom: 1px solid #edf1f7;
}
.cp-feature-item:last-child { border-bottom: none; }
.cp-feature-dot {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 8px; background: rgba(25,103,210,.1);
    display: flex; align-items: center; justify-content: center;
    color: #1967d2; font-size: 1rem;
}
.cp-feature-item h6 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: .2rem; }
.cp-feature-item p  { font-size: .88rem; color: #666; margin: 0; line-height: 1.55; }

/* ── CTA strip ── */
.cp-cta {
    background: linear-gradient(135deg, #041630 0%, #0a3876 40%, #1967d2 100%);
    padding: 55px 0;
}
.cp-cta h3 {
    color: #fff; font-family: 'Poppins', sans-serif;
    font-size: 1.75rem; font-weight: 700; margin-bottom: .4rem;
}
.cp-cta p { color: rgba(255,255,255,.78); margin-bottom: 1.6rem; font-size: 1rem; }
.cp-cta-btns { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
