:root {
    --brand-primary: #123b8f;
    --brand-primary-dark: #0f2f73;
    --brand-ink: #0f172a;
    --brand-muted: #475569;
    --brand-soft: #f8fafc;
    --brand-border: #dbe3ef;
    --brand-accent: #16a3b7;
    --brand-gradient: linear-gradient(135deg, #0f172a 0%, #123b8f 48%, #16a3b7 100%);
    --shadow-soft: 0 20px 60px rgba(15, 23, 42, .08);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, .08);
    --shadow-floating: 0 18px 45px rgba(15, 23, 42, .14);
    --radius-xl: 1.5rem;
    --radius-lg: 1rem;
    --radius-md: .85rem;
}

html { scroll-behavior: smooth; }

body {
    color: var(--brand-ink);
    background-color: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
}

a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

::selection { background: rgba(18, 59, 143, .16); }

.text-muted-2 { color: var(--brand-muted) !important; }
.bg-soft { background: var(--brand-soft); }
.bg-brand-gradient { background: var(--brand-gradient); }
.radius-xl { border-radius: var(--radius-xl); }
.radius-lg { border-radius: var(--radius-lg); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }
.section-padding { padding: 5rem 0; }
.section-padding-lg { padding: 6.5rem 0; }
.sticky-offset-anchor { scroll-margin-top: 6rem; }
.p-xl-6 { padding: 4rem !important; }

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.topbar {
    background: #0b1220;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.topbar a:hover { color: #ffffff; }

.navbar-premium {
    backdrop-filter: saturate(180%) blur(16px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    transition: box-shadow .2s ease, background-color .2s ease;
}

.navbar-premium .nav-link { font-weight: 500; }
.navbar-premium .nav-link.active { color: var(--brand-primary); }

body.is-scrolled .navbar-premium {
    box-shadow: 0 8px 30px rgba(15, 23, 42, .08);
}

.navbar-brand-mark {
    width: 2.65rem;
    height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    background: var(--brand-gradient);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(18, 59, 143, .22);
}

.navbar-toggler { padding: .35rem .5rem; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn {
    letter-spacing: .01em;
    box-shadow: none;
    font-weight: 600;
    padding: .85rem 1.35rem;
    border-radius: .95rem;
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 12px 28px rgba(18, 59, 143, .18);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(18, 59, 143, .2);
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: rgba(18, 59, 143, .3);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-light:hover,
.btn-light:focus {
    transform: translateY(-1px);
}

.service-link,
.text-link {
    color: var(--brand-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover,
.text-link:hover {
    color: var(--brand-primary);
}

/* Generic white cards */
.hero-visual,
.premium-card,
.info-card,
.support-box,
.service-spotlight,
.mockup-card {
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.trust-strip-card,
.service-card,
.hosting-card,
.reason-card,
.process-card,
.faq-note,
.support-card,
.mini-cta-card,
.audience-card,
.proof-placeholder,
.team-placeholder {
    height: 100%;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
}

.metric-card,
.mini-stat,
.audience-chip,
.mini-feature {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .06);
}

.metric-card { padding: 1rem; }

.service-card-featured {
    position: relative;
    border-color: rgba(18, 59, 143, .18);
    transform: translateY(-3px);
}

.service-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(18, 59, 143, .45), rgba(22, 163, 183, .35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.icon-badge {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .95rem;
    background: rgba(18, 59, 143, .10);
    color: var(--brand-primary-dark);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.proof-placeholder--inverse {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.accordion-item {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .9rem;
    box-shadow: var(--shadow-card);
}

.accordion-button {
    font-weight: 600;
    padding: 1.15rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(18, 59, 143, .06);
    color: var(--brand-ink);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    color: var(--brand-muted);
    line-height: 1.75;
}

.eyebrow,
.section-kicker,
.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.eyebrow {
    padding: .5rem .9rem;
    background: rgba(18, 59, 143, .08);
    color: var(--brand-primary-dark);
    border: 1px solid rgba(18, 59, 143, .12);
    border-radius: 999px;
    font-size: .82rem;
}

.section-kicker {
    color: var(--brand-primary-dark);
    font-size: .82rem;
    margin-bottom: .75rem;
}

.section-title {
    max-width: 52rem;
    margin-bottom: 1rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(22, 163, 183, .14), transparent 28%),
        radial-gradient(circle at left top, rgba(18, 59, 143, .12), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
}

.hero-orb,
.section-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .45;
    pointer-events: none;
}

.hero-orb-1 {
    width: 18rem;
    height: 18rem;
    top: -4rem;
    right: -4rem;
    background: rgba(18, 59, 143, .12);
}

.hero-orb-2 {
    width: 10rem;
    height: 10rem;
    bottom: 2rem;
    left: -2rem;
    background: rgba(22, 163, 183, .14);
}

.hero-visual { padding: 1.25rem; }

.hero-screen {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #0f172a;
}

.hero-screen-top {
    padding: .9rem 1rem;
    background: #0b1220;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.hero-dot {
    width: .65rem;
    height: .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
}

.hero-screen-body {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(18, 59, 143, .20), rgba(22, 163, 183, .18)), #0f172a;
    min-height: 21rem;
}

.support-box {
    padding: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.support-highlight-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .75rem;
}

.support-highlight-list li::before {
    content: '\2022';
    position: absolute;
    left: .25rem;
    color: var(--brand-primary);
    font-weight: 700;
}

.audience-tag {
    padding: .5rem .9rem;
    border-radius: 999px;
    background: rgba(18, 59, 143, .08);
    color: var(--brand-primary-dark);
    font-size: .9rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.section-panel-dark {
    color: rgba(255, 255, 255, .90);
    background: linear-gradient(135deg, #0b1220 0%, #102a62 55%, #134e5e 100%);
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.section-panel-dark p,
.section-panel-dark .text-muted-2,
.section-panel-dark .section-title p {
    color: rgba(255, 255, 255, .76) !important;
}

.section-panel-dark h2,
.section-panel-dark h3,
.section-panel-dark h4,
.section-panel-dark .section-kicker,
.section-panel-dark .service-link,
.section-panel-dark .text-link,
.section-panel-dark .list-unstyled li,
.section-panel-dark .icon-badge {
    color: #ffffff;
}

.section-panel-dark .icon-badge {
    background: rgba(255, 255, 255, .10);
}

.section-panel-dark .hosting-card,
.section-panel-dark .proof-placeholder,
.section-panel-dark .team-placeholder,
.section-panel-dark .mini-cta-card {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: none;
}

/* ================================
   FINAL CTA PANEL - CLEAN VERSION
================================ */

.cta-panel {
    isolation: isolate;
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.cta-panel.bg-brand-gradient {
    background: var(--brand-gradient) !important;
    border: 1px solid transparent !important;
    color: #ffffff;
}

.cta-panel::before,
.cta-panel::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
}

.cta-panel::before {
    width: 15rem;
    height: 15rem;
    top: -3rem;
    right: -2rem;
    background: rgba(255, 255, 255, .12);
}

.cta-panel::after {
    width: 11rem;
    height: 11rem;
    bottom: -3rem;
    left: -2rem;
    background: rgba(255, 255, 255, .08);
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel.bg-brand-gradient h1,
.cta-panel.bg-brand-gradient h2,
.cta-panel.bg-brand-gradient h3,
.cta-panel.bg-brand-gradient h4,
.cta-panel.bg-brand-gradient h5,
.cta-panel.bg-brand-gradient h6,
.cta-panel.bg-brand-gradient p,
.cta-panel.bg-brand-gradient li,
.cta-panel.bg-brand-gradient a {
    color: #ffffff;
}

.cta-panel.bg-brand-gradient .text-white-50,
.cta-panel.bg-brand-gradient p.text-white-50,
.cta-panel.bg-brand-gradient .section-kicker {
    color: rgba(255, 255, 255, 0.78) !important;
}

.cta-panel.bg-brand-gradient .proof-placeholder--inverse {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.cta-panel.bg-brand-gradient .btn-light {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
}

.cta-panel.bg-brand-gradient .btn-light:hover,
.cta-panel.bg-brand-gradient .btn-light:focus {
    background: #f8fafc;
    color: #111827;
    border-color: #f8fafc;
}

.cta-panel.bg-brand-gradient .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: transparent;
}

.cta-panel.bg-brand-gradient .btn-outline-light:hover,
.cta-panel.bg-brand-gradient .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.cta-panel.bg-brand-gradient a.text-white {
    color: #ffffff !important;
}

.cta-panel.bg-brand-gradient a.text-white:hover {
    color: rgba(255, 255, 255, 0.88) !important;
}

.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, .78);
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover { color: #ffffff; }

.site-footer .footer-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li + li { margin-top: .7rem; }

@media (max-width: 1199.98px) {
    .p-xl-6 { padding: 3rem !important; }
}

@media (max-width: 991.98px) {
    .section-padding,
    .section-padding-lg {
        padding: 4rem 0;
    }

    .hero-screen-body { min-height: auto; }
    .section-panel-dark { border-radius: 1.5rem; }
    .p-xl-6 { padding: 2.25rem !important; }
}

@media (max-width: 575.98px) {
    .display-5 { font-size: calc(1.425rem + 2.1vw); }
    .display-6 { font-size: calc(1.35rem + 1.2vw); }
}

/* =====================================================
   BD IT CENTER HEADER - CLEAN FINAL VERSION
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1045;
    background: #ffffff;
    box-shadow: 0 10px 34px rgba(15, 47, 115, 0.08);
}

/* Top Black Bar */
.site-header .topbar-tech {
    background: linear-gradient(90deg, #061126 0%, #07152e 55%, #081528 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.site-header .topbar-tech-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header .topbar-tech-left,
.site-header .topbar-tech-right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.site-header .topbar-tech-left {
    font-weight: 600;
    min-width: 0;
}

.site-header .topbar-separator {
    opacity: 0.45;
}

.site-header .topbar-tech a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-weight: 600;
    line-height: 1.4;
}

.site-header .topbar-tech a:hover {
    color: #ffffff;
}

/* Main Navbar */
.site-header .navbar-tech {
    position: relative;
    min-height: 88px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(15, 47, 115, 0.08);
    transition: all 0.25s ease;
}

body.is-scrolled .site-header .navbar-tech {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 34px rgba(15, 47, 115, 0.08);
}

.site-header .tech-nav-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(18, 59, 143, 0) 0%,
        rgba(18, 59, 143, 0.95) 25%,
        rgba(22, 163, 183, 0.95) 55%,
        rgba(18, 59, 143, 0) 100%
    );
    opacity: 0.9;
}

/* Logo */
.site-header .navbar-brand-tech {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    max-width: 260px;
    flex-shrink: 0;
}

.site-header .header-logo {
    width: auto;
    height: 54px;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.site-header .header-logo-mobile {
    height: 44px;
    max-width: 150px;
}

/* Desktop Menu */
.site-header .navbar-tech .navbar-collapse {
    min-width: 0;
}

.site-header .navbar-tech .navbar-nav {
    flex-wrap: nowrap;
}

.site-header .navbar-tech .nav-link {
    position: relative;
    color: #0b1220;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.9rem 0.62rem !important;
    transition: color 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.site-header .navbar-tech .nav-link:hover,
.site-header .navbar-tech .nav-link.active {
    color: #123b8f;
}

.site-header .navbar-tech .nav-link::after {
    content: "";
    position: absolute;
    left: 0.62rem;
    right: 0.62rem;
    bottom: 0.52rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #123b8f 0%, #16a3b7 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-header .navbar-tech .nav-link:hover::after,
.site-header .navbar-tech .nav-link.active::after {
    transform: scaleX(1);
}

/* Header Buttons */
.site-header .header-cta-group {
    flex-shrink: 0;
}

.site-header .btn-tech-primary,
.site-header .btn-tech-ghost,
.site-header .btn-tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.22s ease;
}

.site-header .btn-tech-primary {
    min-height: 48px;
    padding: 0.78rem 1.05rem;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #123b8f 0%, #0f2f73 100%);
    border: 1px solid transparent;
    box-shadow: 0 14px 30px rgba(18, 59, 143, 0.18);
}

.site-header .btn-tech-primary:hover,
.site-header .btn-tech-primary:focus {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(18, 59, 143, 0.22);
}

.site-header .btn-tech-ghost {
    min-height: 48px;
    padding: 0.78rem 1.05rem;
    border-radius: 16px;
    color: #123b8f;
    background: rgba(18, 59, 143, 0.06);
    border: 1px solid rgba(18, 59, 143, 0.12);
}

.site-header .btn-tech-ghost:hover,
.site-header .btn-tech-ghost:focus {
    color: #0f2f73;
    background: rgba(18, 59, 143, 0.10);
    transform: translateY(-1px);
}

.site-header .btn-tech-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(18, 59, 143, 0.08);
    color: #123b8f;
    border: 1px solid rgba(18, 59, 143, 0.08);
    padding: 0;
}

/* Mega Menu */
.site-header .dropdown-mega {
    position: static;
}

.site-header .mega-panel {
    width: min(900px, calc(100vw - 40px));
    left: 50% !important;
    transform: translateX(-50%);
    margin-top: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14) !important;
    background: #ffffff;
}

.site-header .mega-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: #123b8f;
    margin-bottom: 0.55rem;
}

.site-header .mega-title {
    font-weight: 900;
    color: #0b1220;
    margin-bottom: 1rem;
}

.site-header .mega-link-card {
    display: flex;
    gap: 0.9rem;
    height: 100%;
    padding: 1rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header .mega-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(18, 59, 143, 0.16);
}

.site-header .mega-link-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(18, 59, 143, 0.08);
    color: #123b8f;
    font-size: 1rem;
}

.site-header .mega-link-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-header .mega-link-content strong {
    color: #0b1220;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.site-header .mega-link-content small {
    color: #64748b;
    line-height: 1.55;
}

.site-header .mega-side-wrap {
    background: linear-gradient(135deg, #07152e 0%, #102a62 58%, #134e5e 100%);
}

.site-header .mega-side-panel {
    padding: 2rem 1.5rem;
}

@media (min-width: 1200px) {
    .site-header .navbar-tech .dropdown-mega:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile Menu Trigger */
.site-header .mobile-menu-trigger {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(18, 59, 143, 0.08);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.site-header .mobile-menu-trigger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0b1220;
    display: block;
}

/* Offcanvas */
.site-header .offcanvas-tech {
    width: min(420px, 92vw);
    background: #ffffff;
    border-left: 0;
}

.site-header .offcanvas-tech .offcanvas-header {
    padding: 1rem 1.1rem;
}

.site-header .mobile-menu-cta .btn {
    border-radius: 16px;
    font-weight: 900;
}

.site-header .mobile-direct-links .list-group-item,
.site-header .accordion-tech .list-group-item {
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1rem 0;
    color: #0b1220;
    font-weight: 700;
}

.site-header .mobile-direct-links .list-group-item:hover,
.site-header .accordion-tech .list-group-item:hover {
    color: #123b8f;
    background: transparent;
}

.site-header .accordion-tech .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: none;
}

.site-header .accordion-tech .accordion-button {
    font-weight: 900;
    color: #0b1220;
    background: #ffffff;
    box-shadow: none !important;
}

.site-header .accordion-tech .accordion-button:not(.collapsed) {
    background: rgba(18, 59, 143, 0.05);
    color: #123b8f;
}

.site-header .mobile-contact-box {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid rgba(18, 59, 143, 0.08);
}

.site-header .mobile-contact-box a {
    color: #123b8f;
    font-weight: 700;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 1499.98px) {
    .site-header .navbar-brand-tech {
        max-width: 220px;
    }

    .site-header .header-logo {
        height: 48px;
        max-width: 165px;
    }

    .site-header .navbar-tech .nav-link {
        font-size: 0.88rem;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .site-header .btn-tech-primary,
    .site-header .btn-tech-ghost {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 1299.98px) {
    .site-header .navbar-brand-tech {
        max-width: 190px;
    }

    .site-header .header-logo {
        height: 44px;
        max-width: 150px;
    }

    .site-header .navbar-tech .nav-link {
        font-size: 0.84rem;
        padding-left: 0.42rem !important;
        padding-right: 0.42rem !important;
    }

    .site-header .btn-tech-primary,
    .site-header .btn-tech-ghost {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        font-size: 0.84rem;
    }
}

@media (max-width: 1199.98px) {
    .site-header .navbar-tech {
        min-height: 74px;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .site-header .navbar-brand-tech {
        max-width: 100%;
    }

    .site-header .header-logo {
        height: 46px;
        max-width: 165px;
    }
}

@media (max-width: 991.98px) {
    .site-header .topbar-tech-inner {
        justify-content: center;
        text-align: center;
    }

    .site-header .topbar-tech-right {
        display: none;
    }

    .site-header .topbar-tech-left {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .site-header .topbar-tech {
        font-size: 0.82rem;
    }

    .site-header .header-logo {
        height: 42px;
        max-width: 145px;
    }

    .site-header .offcanvas-tech {
        width: min(100vw, 360px);
    }
}

@media (max-width: 575.98px) {
    .site-header .navbar-tech .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .site-header .topbar-tech {
        font-size: 0.76rem;
    }

    .site-header .topbar-tech-inner {
        min-height: 40px;
    }

    .site-header .topbar-tech-left {
        gap: 0.35rem;
    }

    .site-header .topbar-separator {
        display: none;
    }

    .site-header .header-logo {
        height: 38px;
        max-width: 128px;
    }

    .site-header .btn-tech-icon,
    .site-header .mobile-menu-trigger {
        width: 42px;
        height: 42px;
    }
}

/* =========================================
   HERO SECTION - PREMIUM RESPONSIVE VERSION
========================================= */

.hero-section-tech {
    position: relative;
    padding: clamp(3.5rem, 5vw, 6rem) 0 clamp(3rem, 5vw, 5rem);
    background:
        radial-gradient(circle at top right, rgba(22, 163, 183, .10), transparent 24%),
        radial-gradient(circle at left center, rgba(18, 59, 143, .08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-main-row {
    min-height: clamp(620px, 72vh, 760px);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,0.85), transparent 82%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    background: rgba(18, 59, 143, .08);
    border: 1px solid rgba(18, 59, 143, .12);
    color: #123b8f;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-title {
    color: #0b1533;
    line-height: .98;
    letter-spacing: -.03em;
    max-width: 12ch;
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.hero-description {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 58ch;
}

.hero-support {
    max-width: 60ch;
    font-size: .98rem;
}

.hero-actions .btn {
    min-width: 200px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
    color: #123b8f;
    font-weight: 700;
}

.hero-text-link:hover {
    color: #0f2f73;
}

.hero-highlight-list {
    max-width: 520px;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #1e293b;
    font-weight: 600;
}

.hero-highlight-item i {
    color: #123b8f;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-mini-card {
    height: 100%;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .05);
}

.hero-mini-card h3 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .4rem;
    color: #0f172a;
    line-height: 1.35;
}

.hero-mini-card p {
    margin: 0;
    color: #64748b;
    font-size: .84rem;
    line-height: 1.65;
}

.hero-visual-wrap {
    position: relative;
    z-index: 2;
}

.hero-visual-card {
    position: relative;
    padding: clamp(1rem, 2vw, 1.4rem);
    border-radius: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,.82) 0%, rgba(245,250,255,.92) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .10);
}

.hero-device-frame {
    position: relative;
    border-radius: 1.55rem;
    overflow: hidden;
    background: #07152e;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-device-topbar {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .95rem 1rem;
    background: #041022;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.hero-device-topbar span {
    width: .78rem;
    height: .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
}

.hero-device-body {
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.18), transparent 22%),
        linear-gradient(135deg, #081a38 0%, #0f2f73 56%, #103a8a 100%);
}

.hero-dashboard-card {
    height: 100%;
    padding: 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-dashboard-card-lg {
    padding: 1.2rem;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: .38rem .7rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.hero-chip-light {
    background: rgba(255,255,255,.14);
    color: #ffffff;
}

.hero-chip-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.88);
}

.hero-dashboard-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-stack-list {
    display: grid;
    gap: .85rem;
}

.hero-stack-item {
    padding: .85rem .9rem;
    border-radius: .95rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.hero-stack-item small,
.hero-card-label {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .35rem;
}

.hero-stack-item strong,
.hero-side-copy {
    color: #ffffff;
    font-size: .93rem;
    line-height: 1.6;
    margin: 0;
}

.hero-side-copy {
    color: rgba(255,255,255,.88);
}

.hero-stats-card {
    height: 100%;
    padding: .9rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

.hero-stats-dot {
    width: .72rem;
    height: .72rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7dd3fc 0%, #22d3ee 100%);
    display: inline-block;
    margin-bottom: .55rem;
    box-shadow: 0 0 14px rgba(34, 211, 238, .55);
}

.hero-stats-card strong {
    display: block;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.hero-stats-card small {
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}

.hero-floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 30px rgba(15,23,42,.10);
    font-size: .82rem;
    font-weight: 700;
    color: #0f172a;
    backdrop-filter: blur(10px);
    animation: heroFloat 4.8s ease-in-out infinite;
}

.hero-floating-card i {
    color: #123b8f;
    font-size: .92rem;
}

.hero-floating-card-1 {
    top: 4%;
    left: -2%;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    top: 22%;
    right: -2%;
    animation-delay: .8s;
}

.hero-floating-card-3 {
    bottom: 6%;
    left: 10%;
    animation-delay: 1.6s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1399.98px) {
    .hero-title {
        max-width: 13ch;
    }

    .hero-floating-card-2 {
        right: 0;
    }
}

@media (max-width: 1199.98px) {
    .hero-main-row {
        min-height: auto;
    }

    .hero-title {
        max-width: 14ch;
    }

    .hero-visual-card {
        border-radius: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section-tech {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-main-row {
        min-height: auto;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description,
    .hero-support,
    .hero-highlight-list {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-text-link {
        justify-content: center;
    }

    .hero-highlight-item {
        justify-content: center;
        text-align: center;
    }

    .hero-mini-cards {
        margin-top: 1rem;
    }

    .hero-floating-card-1 {
        top: 2%;
        left: 4%;
    }

    .hero-floating-card-2 {
        top: 6%;
        right: 4%;
    }

    .hero-floating-card-3 {
        bottom: 4%;
        left: 8%;
    }
}

@media (max-width: 767.98px) {
    .hero-section-tech {
        padding-top: 2.4rem;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1.02;
    }

    .hero-description {
        font-size: .98rem;
        line-height: 1.75;
    }

    .hero-support {
        font-size: .92rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 100%;
    }

    .hero-visual-card {
        padding: .9rem;
        border-radius: 1.2rem;
    }

    .hero-device-body {
        padding: .9rem;
    }

    .hero-dashboard-card h3 {
        font-size: 1.2rem;
    }

    .hero-floating-card {
        position: static;
        margin-top: .75rem;
        animation: none;
        justify-content: center;
        width: 100%;
    }

    .hero-floating-card-1,
    .hero-floating-card-2,
    .hero-floating-card-3 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .hero-eyebrow {
        font-size: .78rem;
        padding: .58rem .92rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 10vw, 2.75rem);
    }

    .hero-mini-card {
        text-align: left;
    }

    .hero-device-topbar {
        padding: .8rem .85rem;
    }

    .hero-device-topbar span {
        width: .68rem;
        height: .68rem;
    }

    .hero-dashboard-card,
    .hero-dashboard-card-lg {
        padding: .95rem;
    }

    .hero-stack-item {
        padding: .8rem .82rem;
    }
}


/* =========================================
   TRUST STRIP + CORE SOLUTIONS
========================================= */

.section-padding-sm {
    padding: 2.5rem 0;
}

.section-heading {
    max-width: 760px;
}

.section-intro {
    font-size: 1rem;
    line-height: 1.8;
}

.trust-strip-section {
    position: relative;
    z-index: 2;
}

.trust-strip-card {
    height: 100%;
    padding: 1.35rem 1.2rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 30px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trust-strip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.trust-strip-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.trust-strip-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .55rem;
    line-height: 1.35;
}

.trust-strip-text {
    margin: 0;
    color: #64748b;
    font-size: .92rem;
    line-height: 1.75;
}

.core-solutions-section {
    position: relative;
}

.solution-card {
    height: 100%;
    padding: 1.5rem 1.35rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 18px 40px rgba(15,23,42,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15,23,42,.09);
    border-color: rgba(18,59,143,.16);
}

.solution-card-featured {
    padding: 1.8rem 1.6rem;
    border-color: rgba(18,59,143,.14);
    background:
        linear-gradient(180deg, rgba(248,251,255,1) 0%, rgba(255,255,255,1) 100%);
}

.solution-icon {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
}

.solution-title {
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .8rem;
}

.solution-title-sm {
    font-size: 1.1rem;
    line-height: 1.35;
}

.solution-text {
    color: #64748b;
    line-height: 1.8;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #123b8f;
    text-decoration: none;
    font-weight: 700;
}

.solution-link:hover {
    color: #0f2f73;
}

.solution-link i {
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .section-padding-sm {
        padding: 2rem 0;
    }

    .solution-card-featured {
        padding: 1.55rem 1.3rem;
    }

    .solution-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .trust-strip-card,
    .solution-card {
        padding: 1.2rem 1rem;
    }

    .solution-title {
        font-size: 1.18rem;
    }

    .solution-title-sm {
        font-size: 1rem;
    }

    .trust-strip-title {
        font-size: 1rem;
    }

    .section-intro,
    .trust-strip-text,
    .solution-text {
        font-size: .92rem;
    }
}

@media (max-width: 575.98px) {
    .section-padding-sm {
        padding: 1.7rem 0;
    }

    .trust-strip-icon,
    .solution-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1rem;
    }

    .solution-card-featured {
        padding: 1.25rem 1rem;
    }
}

/* =========================================
   HOSTING SECTION - PREMIUM RESPONSIVE
========================================= */

.hosting-showcase-section {
    position: relative;
}

.hosting-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.9rem;
    padding: clamp(1.25rem, 2vw, 2rem);
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.18), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

.hosting-panel::before {
    content: "";
    position: absolute;
    inset: auto -8% -18% auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hosting-copy {
    position: relative;
    z-index: 2;
}

.hosting-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 12ch;
}

.hosting-copy-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.hosting-mini-title {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: .92rem;
    margin-top: .3rem;
}

.hosting-mini-title::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7dd3fc 0%, #22d3ee 100%);
}

.hosting-support-box {
    padding: 1.2rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .10);
}

.hosting-support-box h3 {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: .55rem;
    line-height: 1.35;
}

.hosting-support-box p {
    color: #64748b;
    margin: 0;
    font-size: .92rem;
    line-height: 1.75;
}

.hosting-actions .btn {
    min-width: 210px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.hosting-card-clean {
    position: relative;
    height: 100%;
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hosting-card-clean:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.14);
}

.hosting-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.hosting-card-title {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .6rem;
}

.hosting-card-text {
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: .9rem;
}

.hosting-card-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.hosting-card-link:hover {
    color: #dbeafe;
}

.hosting-bottom-note {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hosting-bottom-chip {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    font-size: .88rem;
}

.hosting-bottom-chip i {
    color: #7dd3fc;
    font-size: 1rem;
    margin-top: .08rem;
    flex-shrink: 0;
}

@media (max-width: 1199.98px) {
    .hosting-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 4vw, 2.8rem);
    }
}

@media (max-width: 991.98px) {
    .hosting-panel {
        border-radius: 1.45rem;
    }

    .hosting-title {
        max-width: 100%;
    }

    .hosting-copy-text {
        max-width: 100%;
    }

    .hosting-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hosting-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .hosting-title {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .hosting-copy-text {
        font-size: .93rem;
        line-height: 1.75;
    }

    .hosting-support-box,
    .hosting-card-clean {
        padding: 1rem;
    }

    .hosting-card-title {
        font-size: 1rem;
    }

    .hosting-card-text {
        font-size: .9rem;
    }

    .hosting-bottom-note {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hosting-card-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: .95rem;
    }

    .hosting-support-box h3 {
        font-size: 1rem;
    }
}

/* =========================================
   DEVELOPMENT SECTION - PREMIUM RESPONSIVE
========================================= */

.development-showcase-section {
    position: relative;
}

.development-panel {
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.development-copy {
    position: relative;
}

.development-title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 14ch;
}

.development-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.development-mini-title {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #0f172a;
    font-weight: 700;
    font-size: .92rem;
    margin-top: .3rem;
}

.development-mini-title::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #123b8f 0%, #16a3b7 100%);
}

.development-highlight-box {
    padding: 1.2rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(18,59,143,.04);
    border: 1px solid rgba(18,59,143,.08);
}

.development-highlight-box h3 {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: .55rem;
    line-height: 1.35;
}

.development-highlight-box p {
    color: #64748b;
    margin: 0;
    font-size: .92rem;
    line-height: 1.75;
}

.development-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.development-card {
    height: 100%;
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 18px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.development-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.development-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.development-card-title {
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .6rem;
}

.development-card-text {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: .9rem;
}

.development-card-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #123b8f;
    font-weight: 700;
    text-decoration: none;
}

.development-card-link:hover {
    color: #0f2f73;
}

@media (max-width: 1199.98px) {
    .development-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 4vw, 2.6rem);
    }
}

@media (max-width: 991.98px) {
    .development-panel {
        border-radius: 1.45rem;
    }

    .development-title,
    .development-copy-text {
        max-width: 100%;
    }

    .development-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .development-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .development-title {
        font-size: clamp(1.7rem, 9vw, 2.25rem);
        line-height: 1.12;
    }

    .development-copy-text {
        font-size: .93rem;
        line-height: 1.75;
    }

    .development-card,
    .development-highlight-box {
        padding: 1rem;
    }

    .development-card-title {
        font-size: 1rem;
    }

    .development-card-text {
        font-size: .9rem;
    }
}

@media (max-width: 575.98px) {
    .development-card-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: .95rem;
    }

    .development-highlight-box h3 {
        font-size: 1rem;
    }
}

/* =========================================
   DOMAIN SECTION - CLEAN RESPONSIVE
========================================= */

.domain-section-clean {
    position: relative;
}

.domain-panel {
    padding: clamp(1.15rem, 2vw, 1.8rem);
    border-radius: 1.6rem;
    background: #ffffff;
}

.domain-copy {
    position: relative;
}

.domain-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.85rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 14ch;
}

.domain-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 60ch;
}

.domain-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.domain-support-card {
    height: 100%;
    padding: 1.4rem 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 20px 40px rgba(15,23,42,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.domain-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 44px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.domain-support-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.domain-support-title {
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: .6rem;
}

.domain-support-text {
    color: #64748b;
    font-size: .93rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.domain-support-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.domain-tag {
    display: inline-flex;
    align-items: center;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .78rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .domain-title,
    .domain-copy-text {
        max-width: 100%;
    }

    .domain-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .domain-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .domain-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .domain-copy-text,
    .domain-support-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .domain-support-card {
        padding: 1rem;
    }

    .domain-support-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .domain-support-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: .95rem;
    }
}

/* =========================================
   MOBILE APP SECTION - PREMIUM RESPONSIVE
========================================= */

.mobile-app-section-clean {
    position: relative;
}

.mobile-app-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(22,163,183,.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.mobile-app-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.9rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 14ch;
}

.mobile-app-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.mobile-app-feature-list {
    display: grid;
    gap: .7rem;
}

.mobile-app-feature-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #1e293b;
    font-weight: 600;
}

.mobile-app-feature-item i {
    color: #123b8f;
    font-size: 1rem;
    flex-shrink: 0;
}

.mobile-app-card {
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mobile-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.mobile-app-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.mobile-app-card-title {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.mobile-app-card-text {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: .85rem;
}

.mobile-app-card-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #123b8f;
    font-weight: 700;
    text-decoration: none;
}

.mobile-app-card-link:hover {
    color: #0f2f73;
}

.mobile-app-support-line {
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
}

.mobile-app-actions .btn {
    min-width: 240px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

/* Visual block */
.mobile-app-visual-wrap {
    position: relative;
}

.mobile-app-visual-card {
    position: relative;
    min-height: 520px;
    border-radius: 1.7rem;
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.20), transparent 20%),
        linear-gradient(135deg, #081a38 0%, #0f2f73 58%, #114d5f 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
    overflow: hidden;
    padding: 1.25rem;
}

.mobile-app-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    opacity: .75;
}

.mobile-app-glow-1 {
    width: 220px;
    height: 220px;
    top: -50px;
    right: -40px;
    background: rgba(125, 211, 252, .18);
}

.mobile-app-glow-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -20px;
    background: rgba(34, 211, 238, .14);
}

.mobile-app-device-row {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100%;
    gap: 1.1rem;
    z-index: 2;
}

.mobile-device {
    position: relative;
    width: 220px;
    max-width: 42%;
    border-radius: 2rem;
    background: #061120;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 40px rgba(0,0,0,.26);
    overflow: hidden;
}

.device-front {
    transform: translateY(10px);
    z-index: 3;
    animation: mobileDeviceFloat 4.5s ease-in-out infinite;
}

.device-back {
    opacity: .9;
    transform: translateY(42px) scale(.94);
}

.mobile-device-notch {
    width: 34%;
    height: 16px;
    border-radius: 0 0 1rem 1rem;
    background: #020814;
    margin: 0 auto;
}

.mobile-device-screen {
    padding: 1rem .9rem 1.1rem;
    min-height: 360px;
    background:
        radial-gradient(circle at top center, rgba(125,211,252,.18), transparent 25%),
        linear-gradient(180deg, #0a2247 0%, #0a1b36 100%);
}

.mobile-ui-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mobile-ui-panel {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
}

.mobile-ui-panel h3 {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .5rem;
}

.mobile-ui-panel p {
    color: rgba(255,255,255,.76);
    margin: 0;
    font-size: .85rem;
    line-height: 1.65;
}

.mobile-ui-stats {
    display: grid;
    gap: .75rem;
}

.mobile-ui-stat {
    padding: .8rem .85rem;
    border-radius: .95rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.mobile-ui-stat strong {
    display: block;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.mobile-ui-stat small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}

.mobile-ui-card {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: .9rem .95rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.mobile-ui-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.mobile-ui-card strong {
    color: #ffffff;
    font-size: .92rem;
    font-weight: 800;
}

.mobile-ui-bars {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}

.mobile-ui-bars span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.mobile-ui-bars span:nth-child(1) {
    width: 84%;
}

.mobile-ui-bars span:nth-child(2) {
    width: 68%;
}

.mobile-ui-bars span:nth-child(3) {
    width: 52%;
}

.mobile-app-floating-card {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
}

.mobile-app-floating-card i {
    color: #123b8f;
}

.floating-card-left {
    left: 1rem;
    top: 1.2rem;
    animation: mobileFloatTag 4.2s ease-in-out infinite;
}

.floating-card-right {
    right: 1rem;
    bottom: 1.5rem;
    animation: mobileFloatTag 4.2s ease-in-out infinite .9s;
}

@keyframes mobileDeviceFloat {
    0%, 100% { transform: translateY(10px); }
    50% { transform: translateY(0); }
}

@keyframes mobileFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .mobile-app-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .mobile-app-title,
    .mobile-app-copy-text {
        max-width: 100%;
    }

    .mobile-app-actions .btn {
        min-width: 100%;
    }

    .mobile-app-visual-card {
        min-height: 460px;
    }
}

@media (max-width: 767.98px) {
    .mobile-app-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .mobile-app-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .mobile-app-copy-text,
    .mobile-app-card-text,
    .mobile-app-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .mobile-app-card {
        padding: 1rem;
    }

    .mobile-app-card-title {
        font-size: 1rem;
    }

    .mobile-app-visual-card {
        min-height: auto;
        padding: 1rem;
    }

    .mobile-app-device-row {
        gap: .75rem;
    }

    .mobile-device {
        width: 180px;
        max-width: 46%;
    }

    .mobile-device-screen {
        min-height: 300px;
        padding: .85rem .8rem 1rem;
    }

    .mobile-app-floating-card {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .floating-card-left,
    .floating-card-right {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 575.98px) {
    .mobile-app-card-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: .95rem;
    }

    .mobile-app-visual-card {
        padding: .85rem;
    }

    .mobile-device {
        width: 150px;
    }

    .mobile-device-screen {
        min-height: 260px;
    }

    .mobile-ui-panel h3 {
        font-size: .95rem;
    }
}

/* =========================================
   GRAPHICS SECTION - PREMIUM RESPONSIVE
========================================= */

.graphics-section-clean {
    position: relative;
}

.graphics-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.10), transparent 18%),
        linear-gradient(135deg, #0b1220 0%, #102a62 58%, #134e5e 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.graphics-copy {
    position: relative;
    z-index: 2;
}

.graphics-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 14ch;
}

.graphics-copy-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.graphics-feature-list {
    display: grid;
    gap: .7rem;
}

.graphics-feature-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #ffffff;
    font-weight: 600;
}

.graphics-feature-item i {
    color: #7dd3fc;
    font-size: 1rem;
    flex-shrink: 0;
}

.graphics-support-line {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.75;
}

.graphics-actions .btn {
    min-width: 240px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.graphics-visual-wrap {
    position: relative;
}

.graphics-visual-card {
    position: relative;
    padding: 1.1rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    overflow: hidden;
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
    position: relative;
    z-index: 2;
}

.graphics-card {
    height: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.graphics-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.graphics-card-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: .9rem;
}

.graphics-card-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .5rem;
}

.graphics-card-text {
    color: rgba(255,255,255,.76);
    font-size: .89rem;
    line-height: 1.7;
    margin-bottom: .8rem;
}

.graphics-card-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.graphics-card-link:hover {
    color: #dbeafe;
}

.graphics-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: graphicsFloatTag 4.4s ease-in-out infinite;
}

.graphics-floating-chip i {
    color: #123b8f;
}

.chip-1 {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .8s;
}

.chip-3 {
    top: 46%;
    right: -0.25rem;
    animation-delay: 1.4s;
}

@keyframes graphicsFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .graphics-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .graphics-title,
    .graphics-copy-text {
        max-width: 100%;
    }

    .graphics-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .graphics-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .graphics-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .graphics-copy-text,
    .graphics-card-text,
    .graphics-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .graphics-grid {
        grid-template-columns: 1fr;
    }

    .graphics-card {
        padding: 1rem;
    }

    .graphics-card-title {
        font-size: 1rem;
    }

    .graphics-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .chip-1,
    .chip-2,
    .chip-3 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .graphics-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .graphics-visual-card {
        padding: .9rem;
    }
}

/* =========================================
   DIGITAL MARKETING SECTION - PREMIUM RESPONSIVE
========================================= */

.digital-marketing-section-clean {
    position: relative;
}

.digital-marketing-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(22,163,183,.10), transparent 20%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.digital-marketing-copy {
    position: relative;
    z-index: 2;
}

.digital-marketing-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 14ch;
}

.digital-marketing-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.digital-marketing-feature-list {
    display: grid;
    gap: .7rem;
}

.digital-marketing-feature-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #1e293b;
    font-weight: 600;
}

.digital-marketing-feature-item i {
    color: #123b8f;
    font-size: 1rem;
    flex-shrink: 0;
}

.digital-marketing-support-line {
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
}

.digital-marketing-actions .btn {
    min-width: 240px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.digital-marketing-visual-wrap {
    position: relative;
}

.digital-marketing-visual-card {
    position: relative;
    padding: 1.1rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #081a38 0%, #0f2f73 58%, #114d5f 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
    overflow: hidden;
}

.digital-marketing-visual-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(34,211,238,.10), transparent 20%);
    pointer-events: none;
}

.digital-marketing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}

.digital-marketing-card {
    height: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.digital-marketing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.digital-marketing-card-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: .9rem;
}

.digital-marketing-card-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .5rem;
}

.digital-marketing-card-text {
    color: rgba(255,255,255,.76);
    font-size: .89rem;
    line-height: 1.7;
    margin-bottom: .8rem;
}

.digital-marketing-card-link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.digital-marketing-card-link:hover {
    color: #dbeafe;
}

.digital-marketing-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: digitalMarketingFloatTag 4.4s ease-in-out infinite;
}

.digital-marketing-floating-chip i {
    color: #123b8f;
}

.chip-top {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.chip-middle {
    top: 46%;
    left: -0.2rem;
    animation-delay: .8s;
}

.chip-bottom {
    bottom: 1rem;
    right: 1rem;
    animation-delay: 1.4s;
}

@keyframes digitalMarketingFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .digital-marketing-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .digital-marketing-title,
    .digital-marketing-copy-text {
        max-width: 100%;
    }

    .digital-marketing-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .digital-marketing-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .digital-marketing-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .digital-marketing-copy-text,
    .digital-marketing-card-text,
    .digital-marketing-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .digital-marketing-grid {
        grid-template-columns: 1fr;
    }

    .digital-marketing-card {
        padding: 1rem;
    }

    .digital-marketing-card-title {
        font-size: 1rem;
    }

    .digital-marketing-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .chip-top,
    .chip-middle,
    .chip-bottom {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .digital-marketing-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .digital-marketing-visual-card {
        padding: .9rem;
    }
}
/* =========================================
   AUDIENCES SECTION - PREMIUM RESPONSIVE
========================================= */

.audiences-section-clean {
    position: relative;
}

.audiences-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.audiences-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
}

.audiences-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.audience-card-clean {
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.audience-card-clean:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.audience-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.audience-card-title {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.audience-card-text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.audiences-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.audiences-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.audiences-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.audiences-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.audiences-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: audiencesFloatTag 4.5s ease-in-out infinite;
}

.audiences-floating-chip i {
    color: #123b8f;
}

.audiences-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.audiences-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes audiencesFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .audiences-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .audiences-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .audiences-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .audiences-intro,
    .audience-card-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .audience-card-clean {
        padding: 1rem;
    }

    .audience-card-title {
        font-size: 1rem;
    }

    .audiences-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .audiences-floating-chip-1,
    .audiences-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .audience-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .audiences-chip {
        font-size: .76rem;
    }
}

/* =========================================
   WHY CHOOSE US SECTION - PREMIUM RESPONSIVE
========================================= */

.why-choose-section-clean {
    position: relative;
}

.why-choose-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(22,163,183,.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.why-choose-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
}

.why-choose-intro {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-card {
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18,59,143,.14);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
}

.why-choose-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.why-choose-card-title {
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.why-choose-card-text {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.why-choose-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-choose-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.why-choose-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .8rem;
    font-weight: 700;
}

.why-choose-actions .btn {
    min-width: 280px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.why-choose-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
    backdrop-filter: blur(10px);
    animation: whyChooseFloatTag 4.5s ease-in-out infinite;
}

.why-choose-floating-chip i {
    color: #123b8f;
}

.why-choose-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.why-choose-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes whyChooseFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .why-choose-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .why-choose-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .why-choose-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .why-choose-intro,
    .why-choose-card-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .why-choose-card {
        padding: 1rem;
    }

    .why-choose-card-title {
        font-size: 1rem;
    }

    .why-choose-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .why-choose-floating-chip-1,
    .why-choose-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .why-choose-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .why-choose-chip {
        font-size: .76rem;
    }
}

/* =========================================
   PROCESS SECTION - PREMIUM RESPONSIVE
========================================= */

.process-section-clean {
    position: relative;
}

.process-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.process-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
}

.process-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.process-card-clean {
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.process-card-clean:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .9rem;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.process-card-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    flex-shrink: 0;
}

.process-card-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.process-card-text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.process-support-box {
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
}

.process-support-box h3 {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.process-support-box p {
    color: rgba(255,255,255,.78);
    font-size: .93rem;
    line-height: 1.75;
    margin: 0;
}

.process-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.process-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.process-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.process-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: processFloatTag 4.5s ease-in-out infinite;
}

.process-floating-chip i {
    color: #123b8f;
}

.process-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.process-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes processFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .process-card-title {
        font-size: .96rem;
    }
}

@media (max-width: 991.98px) {
    .process-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .process-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .process-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .process-intro,
    .process-card-text,
    .process-support-box p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .process-card-clean,
    .process-support-box {
        padding: 1rem;
    }

    .process-card-title,
    .process-support-box h3 {
        font-size: 1rem;
    }

    .process-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .process-floating-chip-1,
    .process-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .process-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .process-chip {
        font-size: .76rem;
    }
}

/* =========================================
   SUPPORT & MAINTENANCE SECTION - PREMIUM RESPONSIVE
========================================= */

.support-maintenance-section-clean {
    position: relative;
}

.support-maintenance-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.support-maintenance-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 14ch;
}

.support-maintenance-copy-text {
    color: rgba(255,255,255,.80);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.support-maintenance-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.support-maintenance-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.support-maintenance-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.support-maintenance-card {
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.support-maintenance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.support-maintenance-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.support-maintenance-card-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .55rem;
}

.support-maintenance-card-text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.support-maintenance-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: supportMaintenanceFloatTag 4.5s ease-in-out infinite;
}

.support-maintenance-floating-chip i {
    color: #123b8f;
}

.support-maintenance-floating-chip-1 {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.support-maintenance-floating-chip-2 {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes supportMaintenanceFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .support-maintenance-title,
    .support-maintenance-copy-text {
        max-width: 100%;
    }

    .support-maintenance-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .support-maintenance-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .support-maintenance-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .support-maintenance-copy-text,
    .support-maintenance-card-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .support-maintenance-card {
        padding: 1rem;
    }

    .support-maintenance-card-title {
        font-size: 1rem;
    }

    .support-maintenance-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .support-maintenance-floating-chip-1,
    .support-maintenance-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .support-maintenance-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .support-maintenance-chip {
        font-size: .76rem;
    }
}

/* =========================================
   SECURITY SECTION - PREMIUM RESPONSIVE
========================================= */

.security-section-clean {
    position: relative;
}

.security-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(22,163,183,.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.security-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 14ch;
}

.security-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 58ch;
}

.security-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.security-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .8rem;
    font-weight: 700;
}

.security-actions .btn {
    min-width: 280px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.security-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18,59,143,.14);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
}

.security-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    flex-shrink: 0;
}

.security-card-content {
    min-width: 0;
}

.security-card-title {
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .45rem;
}

.security-card-text {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.security-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
    backdrop-filter: blur(10px);
    animation: securityFloatTag 4.5s ease-in-out infinite;
}

.security-floating-chip i {
    color: #123b8f;
}

.security-floating-chip-1 {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.security-floating-chip-2 {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes securityFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .security-title,
    .security-copy-text {
        max-width: 100%;
    }

    .security-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .security-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .security-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .security-copy-text,
    .security-card-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .security-card {
        padding: 1rem;
    }

    .security-card-title {
        font-size: 1rem;
    }

    .security-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .security-floating-chip-1,
    .security-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .security-card {
        gap: .85rem;
    }

    .security-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .security-chip {
        font-size: .76rem;
    }
}

/* =========================================
   PROOF / PROJECTS SECTION - PREMIUM RESPONSIVE
========================================= */

.proof-section-clean {
    position: relative;
}

.proof-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.proof-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
}

.proof-intro,
.proof-support-text {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.proof-project-card {
    height: 100%;
    border-radius: 1.15rem;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.proof-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.proof-project-image-wrap {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    aspect-ratio: 4 / 3;
}

.proof-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.proof-project-card:hover .proof-project-image {
    transform: scale(1.04);
}

.proof-image-view {
    position: absolute;
    right: .85rem;
    top: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
}

.proof-project-body {
    padding: 1rem;
}

.proof-project-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .85rem;
    min-height: 2.7rem;
}

.proof-project-actions {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.proof-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: .62rem .85rem;
    border-radius: .9rem;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.proof-btn-view {
    background: rgba(255,255,255,.12);
    color: #ffffff;
    border-color: rgba(255,255,255,.14);
}

.proof-btn-visit {
    background: #ffffff;
    color: #0f172a;
}

.proof-btn-disabled {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.64);
    border-color: rgba(255,255,255,.08);
    cursor: default;
}

.proof-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.proof-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.proof-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.proof-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: proofFloatTag 4.5s ease-in-out infinite;
}

.proof-floating-chip i {
    color: #123b8f;
}

.proof-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.proof-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes proofFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Lightbox */
.proof-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
}

.proof-lightbox.is-open {
    display: block;
}

.proof-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, .72);
    backdrop-filter: blur(4px);
}

.proof-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 980px);
    margin: 4vh auto;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.proof-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.proof-lightbox-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.proof-lightbox-close {
    border: 0;
    background: rgba(15,23,42,.06);
    color: #0f172a;
    border-radius: .8rem;
    padding: .55rem .85rem;
    font-size: .86rem;
    font-weight: 700;
}

.proof-lightbox-body {
    padding: 1rem;
    background: #f8fbff;
}

.proof-lightbox-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: .9rem;
}

body.proof-lightbox-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .proof-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .proof-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .proof-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .proof-intro,
    .proof-support-text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .proof-project-body {
        padding: .9rem;
    }

    .proof-project-title {
        font-size: .96rem;
        min-height: auto;
    }

    .proof-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .proof-floating-chip-1,
    .proof-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .proof-lightbox-dialog {
        width: calc(100vw - 20px);
        margin: 10px auto;
    }
}

@media (max-width: 575.98px) {
    .proof-btn {
        flex: 1 1 100%;
    }

    .proof-image-view span {
        display: none;
    }
}

/* =========================================
   FAQ SECTION - PREMIUM RESPONSIVE
========================================= */

.faq-section-clean {
    position: relative;
}

.faq-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.faq-title {
    color: #ffffff;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
}

.faq-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion-item {
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .9rem;
    background: rgba(255,255,255,.08);
    box-shadow: none;
}

.faq-accordion .accordion-button {
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-weight: 700;
    font-size: .96rem;
    line-height: 1.5;
    padding: 1.1rem 1.15rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: .9;
}

.faq-accordion .accordion-body {
    color: rgba(255,255,255,.80);
    font-size: .93rem;
    line-height: 1.8;
    background: rgba(255,255,255,.05);
}

.faq-side-card {
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.faq-side-title {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .6rem;
}

.faq-side-text {
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.faq-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.faq-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.faq-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: faqFloatTag 4.5s ease-in-out infinite;
}

.faq-floating-chip i {
    color: #123b8f;
}

.faq-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.faq-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes faqFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 767.98px) {
    .faq-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .faq-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .faq-intro,
    .faq-side-text,
    .faq-accordion .accordion-body {
        font-size: .92rem;
        line-height: 1.75;
    }

    .faq-accordion .accordion-button {
        font-size: .92rem;
        padding: 1rem;
    }

    .faq-side-card {
        padding: 1rem;
    }

    .faq-side-title {
        font-size: 1rem;
    }

    .faq-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .faq-floating-chip-1,
    .faq-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .faq-chip {
        font-size: .76rem;
    }
}



/* =========================================
   TEAM SECTION - PREMIUM RESPONSIVE
========================================= */

.team-section-clean {
    position: relative;
}

.team-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(22,163,183,.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.team-title {
    color: #0f172a;
    font-size: clamp(1.95rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 14ch;
}

.team-copy-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 56ch;
}

.team-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.team-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .8rem;
    font-weight: 700;
}

.team-actions .btn {
    min-width: 240px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.team-member-card {
    height: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18,59,143,.14);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
}

.team-member-image-wrap {
    padding: 1.25rem 1rem .4rem;
}

.team-member-image {
    width: 128px;
    height: 128px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 6px solid rgba(18,59,143,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.08);
}

.team-member-body {
    padding: .85rem 1rem 1.2rem;
}

.team-member-name {
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .35rem;
}

.team-member-role {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}

.team-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
    backdrop-filter: blur(10px);
    animation: teamFloatTag 4.5s ease-in-out infinite;
}

.team-floating-chip i {
    color: #123b8f;
}

.team-floating-chip-1 {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.team-floating-chip-2 {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes teamFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .team-title,
    .team-copy-text {
        max-width: 100%;
    }

    .team-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .team-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .team-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .team-copy-text,
    .team-member-role {
        font-size: .92rem;
        line-height: 1.75;
    }

    .team-member-image {
        width: 112px;
        height: 112px;
    }

    .team-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .team-floating-chip-1,
    .team-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .team-chip {
        font-size: .76rem;
    }

    .team-member-name {
        font-size: .96rem;
    }

    .team-member-image {
        width: 104px;
        height: 104px;
    }
}

/* =========================================
   FINAL CTA SECTION - PREMIUM RESPONSIVE
========================================= */

.final-cta-section-clean {
    position: relative;
}

.final-cta-panel-clean {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 2vw, 2rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.16), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.final-cta-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 14ch;
}

.final-cta-text {
    color: rgba(255,255,255,.80);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 60ch;
}

.final-cta-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.final-cta-contact-list {
    display: grid;
    gap: .8rem;
}

.final-cta-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.final-cta-contact-link i {
    color: #7dd3fc;
    font-size: .95rem;
    flex-shrink: 0;
}

.final-cta-contact-link:hover {
    color: #dbeafe;
}

.final-cta-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.final-cta-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.final-cta-side-card {
    padding: 1.25rem 1.15rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.final-cta-side-title {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .9rem;
}

.final-cta-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .75rem;
}

.final-cta-side-list li {
    position: relative;
    padding-left: 1.3rem;
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.75;
}

.final-cta-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7dd3fc;
    box-shadow: 0 0 12px rgba(125,211,252,.55);
}

.final-cta-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: finalCtaFloatTag 4.5s ease-in-out infinite;
}

.final-cta-floating-chip i {
    color: #123b8f;
}

.final-cta-floating-chip-1 {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.final-cta-floating-chip-2 {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes finalCtaFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .final-cta-title,
    .final-cta-text {
        max-width: 100%;
    }

    .final-cta-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .final-cta-panel-clean {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .final-cta-title {
        font-size: clamp(1.7rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .final-cta-text,
    .final-cta-side-list li {
        font-size: .92rem;
        line-height: 1.75;
    }

    .final-cta-side-card {
        padding: 1rem;
    }

    .final-cta-side-title {
        font-size: 1rem;
    }

    .final-cta-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .final-cta-floating-chip-1,
    .final-cta-floating-chip-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .final-cta-chip {
        font-size: .76rem;
    }
}



/* =========================================
   HERO SECTION - PREMIUM POLISHED
   Based on: bdhc-hero prefix structure
========================================= */

.bdhc-hero,
.bdhc-hero * {
    box-sizing: border-box;
}

.bdhc-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at top right, rgba(22, 163, 183, 0.08), transparent 20%),
        radial-gradient(circle at left center, rgba(18, 59, 143, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.bdhc-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdhc-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.65;
}

.bdhc-hero__orb--one {
    width: 260px;
    height: 260px;
    top: -60px;
    left: -40px;
    background: rgba(18, 59, 143, 0.10);
}

.bdhc-hero__orb--two {
    width: 280px;
    height: 280px;
    right: -60px;
    top: 40px;
    background: rgba(22, 163, 183, 0.12);
}

.bdhc-hero__orb--three {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: 12%;
    background: rgba(125, 211, 252, 0.12);
}

.bdhc-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.85), transparent 82%);
}

.bdhc-hero__row {
    min-height: clamp(620px, 75vh, 790px);
}

.bdhc-hero__content {
    position: relative;
    z-index: 2;
}

.bdhc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    background: rgba(18, 59, 143, 0.08);
    border: 1px solid rgba(18, 59, 143, 0.12);
    color: #123b8f;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bdhc-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #123b8f 0%, #16a3b7 100%);
    box-shadow: 0 0 0 6px rgba(18, 59, 143, 0.08);
}

.bdhc-hero__title {
    color: #0b1533;
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0 0 1.35rem;
    max-width: 12ch;
}

.bdhc-hero__desc {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.85;
    margin: 0 0 0.9rem;
    max-width: 58ch;
}

.bdhc-hero__support {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.8;
    margin: 0 0 1.4rem;
    max-width: 58ch;
}

.bdhc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.bdhc-hero__actions .btn {
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-weight: 700;
    padding: 0.9rem 1.2rem;
}

.bdhc-hero__textlink-wrap {
    margin-bottom: 1.35rem;
}

.bdhc-hero__textlink {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #123b8f;
    font-weight: 700;
    text-decoration: none;
}

.bdhc-hero__textlink:hover {
    color: #0f2f73;
}

.bdhc-hero__highlights {
    display: grid;
    gap: 0.72rem;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.bdhc-hero__highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.6;
}

.bdhc-hero__highlight-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123b8f;
    flex-shrink: 0;
}

.bdhc-hero__mini-grid {
    margin-top: 0.2rem;
}

.bdhc-hero__mini-card {
    position: relative;
    height: 100%;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(244,248,255,.96) 100%);
    border: 1px solid rgba(18,59,143,.08);
    box-shadow: 0 16px 30px rgba(15,23,42,0.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}

.bdhc-hero__mini-grid .col-12:nth-child(1) .bdhc-hero__mini-card {
    background:
        linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdhc-hero__mini-grid .col-12:nth-child(2) .bdhc-hero__mini-card {
    background:
        linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdhc-hero__mini-grid .col-12:nth-child(3) .bdhc-hero__mini-card {
    background:
        linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdhc-hero__mini-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
    pointer-events: none;
}

.bdhc-hero__mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(15,23,42,0.08);
    border-color: rgba(18,59,143,0.12);
}

.bdhc-hero__mini-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,0.08);
    color: #123b8f;
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.bdhc-hero__mini-card h3 {
    color: #0f172a;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 0.38rem;
}

.bdhc-hero__mini-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.7;
}

.bdhc-hero__visual {
    position: relative;
    z-index: 2;
}

.bdhc-hero__shell {
    position: relative;
    padding: clamp(1rem, 2vw, 1.4rem);
    border-radius: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,.82) 0%, rgba(245,250,255,.94) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 30px 72px rgba(15,23,42,.10);
}

.bdhc-hero__frame {
    position: relative;
    border-radius: 1.55rem;
    overflow: hidden;
    background: #07152e;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.bdhc-hero__frame-topbar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.95rem 1rem;
    background: #041022;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.bdhc-hero__frame-topbar span {
    width: 0.78rem;
    height: 0.78rem;
    border-radius: 50%;
    background: rgba(255,255,255,.32);
}

.bdhc-hero__frame-body {
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.18), transparent 22%),
        linear-gradient(135deg, #081a38 0%, #0f2f73 56%, #103a8a 100%);
}

.bdhc-hero__panel {
    height: 100%;
    padding: 1.05rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.bdhc-hero__panel--primary {
    padding: 1.15rem;
}

.bdhc-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.bdhc-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.bdhc-hero__chip--solid {
    background: rgba(255,255,255,.14);
    color: #ffffff;
}

.bdhc-hero__chip--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.88);
}

.bdhc-hero__panel h3 {
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 1rem;
}

.bdhc-hero__stack {
    display: grid;
    gap: 0.82rem;
}

.bdhc-hero__stack-item {
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.bdhc-hero__stack-item small,
.bdhc-hero__metric small {
    display: block;
    color: rgba(255,255,255,.66);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.32rem;
}

.bdhc-hero__stack-item strong {
    color: #ffffff;
    font-size: 0.93rem;
    line-height: 1.6;
    font-weight: 700;
}

.bdhc-hero__metric + .bdhc-hero__metric {
    margin-top: 1rem;
}

.bdhc-hero__metric p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 0.92rem;
    line-height: 1.7;
}

.bdhc-hero__stat-card {
    height: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

.bdhc-hero__stat-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd3fc 0%, #22d3ee 100%);
    display: inline-block;
    margin-bottom: 0.55rem;
    box-shadow: 0 0 14px rgba(34,211,238,.55);
}

.bdhc-hero__stat-card strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.bdhc-hero__stat-card small {
    color: rgba(255,255,255,.72);
    line-height: 1.55;
    font-size: 0.82rem;
}

.bdhc-hero__floating {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 30px rgba(15,23,42,.10);
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: bdhcHeroFloat 4.8s ease-in-out infinite;
}

.bdhc-hero__floating i {
    color: #123b8f;
    font-size: 0.94rem;
}

.bdhc-hero__floating--one {
    top: 4%;
    left: -2%;
    animation-delay: 0s;
}

.bdhc-hero__floating--two {
    top: 22%;
    right: -2%;
    animation-delay: .8s;
}

.bdhc-hero__floating--three {
    bottom: 6%;
    left: 10%;
    animation-delay: 1.6s;
}

.bdhc-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(22px);
    opacity: 0.65;
}

.bdhc-hero__glow--one {
    width: 160px;
    height: 160px;
    right: 8%;
    top: 10%;
    background: rgba(125,211,252,.18);
}

.bdhc-hero__glow--two {
    width: 120px;
    height: 120px;
    left: 8%;
    bottom: 8%;
    background: rgba(34,211,238,.14);
}

@keyframes bdhcHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1399.98px) {
    .bdhc-hero__title {
        max-width: 13ch;
    }
}

@media (max-width: 1199.98px) {
    .bdhc-hero__row {
        min-height: auto;
    }

    .bdhc-hero__title {
        max-width: 14ch;
    }

    .bdhc-hero__shell {
        border-radius: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .bdhc-hero {
        padding-top: 3.2rem;
        padding-bottom: 3rem;
    }

    .bdhc-hero__content {
        text-align: center;
    }

    .bdhc-hero__title,
    .bdhc-hero__desc,
    .bdhc-hero__support,
    .bdhc-hero__highlights {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .bdhc-hero__actions,
    .bdhc-hero__highlights {
        justify-content: center;
    }

    .bdhc-hero__highlight-item {
        justify-content: center;
        text-align: center;
    }

    .bdhc-hero__floating--one {
        top: 2%;
        left: 4%;
    }

    .bdhc-hero__floating--two {
        top: 6%;
        right: 4%;
    }

    .bdhc-hero__floating--three {
        bottom: 4%;
        left: 8%;
    }
}

@media (max-width: 767.98px) {
    .bdhc-hero {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .bdhc-hero__title {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1.02;
        max-width: 100%;
    }

    .bdhc-hero__desc,
    .bdhc-hero__support {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .bdhc-hero__actions .btn {
        width: 100%;
        min-width: 100%;
    }

    .bdhc-hero__shell {
        padding: 0.9rem;
        border-radius: 1.25rem;
    }

    .bdhc-hero__frame-body {
        padding: 0.95rem;
    }

    .bdhc-hero__panel h3 {
        font-size: 1.2rem;
    }

    .bdhc-hero__floating {
        position: static;
        justify-content: center;
        width: 100%;
        margin-top: 0.75rem;
        animation: none;
    }

    .bdhc-hero__floating--one,
    .bdhc-hero__floating--two,
    .bdhc-hero__floating--three {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdhc-hero__eyebrow {
        font-size: 0.76rem;
        padding: 0.58rem 0.9rem;
    }

    .bdhc-hero__mini-card {
        text-align: left;
    }

    .bdhc-hero__mini-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .bdhc-hero__frame-topbar {
        padding: 0.8rem 0.85rem;
    }

    .bdhc-hero__frame-topbar span {
        width: 0.68rem;
        height: 0.68rem;
    }

    .bdhc-hero__panel,
    .bdhc-hero__panel--primary {
        padding: 0.95rem;
    }
}

/* =========================================
   BRAND OVERVIEW SECTION - PREMIUM POLISHED
========================================= */

.bdbo-section,
.bdbo-section * {
    box-sizing: border-box;
}

.bdbo-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.bdbo-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdbo-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: .6;
}

.bdbo-section__orb--one {
    width: 220px;
    height: 220px;
    top: -40px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdbo-section__orb--two {
    width: 240px;
    height: 240px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdbo-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdbo-copy {
    position: relative;
    z-index: 2;
}

.bdbo-kicker {
    margin-bottom: 1rem;
}

.bdbo-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.35rem;
    max-width: 14ch;
}

.bdbo-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdbo-actions .btn {
    min-width: 220px;
    border-radius: 1rem;
    font-weight: 700;
    padding: .92rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bdbo-card-shell {
    position: relative;
    z-index: 2;
    padding: clamp(1.15rem, 2vw, 1.5rem);
    border-radius: 1.7rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,.92) 0%, rgba(245,250,255,.98) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.bdbo-card-shell__header {
    margin-bottom: 1rem;
}

.bdbo-card-shell__badge {
    display: inline-flex;
    align-items: center;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(18, 59, 143, 0.08);
    border: 1px solid rgba(18, 59, 143, 0.10);
    color: #123b8f;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: .85rem;
}

.bdbo-card-shell__header h3 {
    color: #0f172a;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 800;
    margin: 0 0 .45rem;
}

.bdbo-card-shell__header p {
    margin: 0;
    color: #64748b;
    font-size: .93rem;
    line-height: 1.75;
}

.bdbo-mini-card {
    position: relative;
    padding: 1.05rem 1rem;
    border-radius: 1.15rem;
    background:
        linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
    border: 1px solid rgba(18, 59, 143, 0.08);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}

.bdbo-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.08);
    border-color: rgba(18, 59, 143, 0.14);
}

.bdbo-mini-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdbo-mini-card__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 59, 143, 0.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .85rem;
}

.bdbo-mini-card h3 {
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .38rem;
}

.bdbo-mini-card p {
    margin: 0;
    color: #64748b;
    font-size: .88rem;
    line-height: 1.72;
}

.bdbo-highlight-box {
    position: relative;
    padding: 1.15rem 1.05rem;
    border-radius: 1.2rem;
    background:
        linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
    border: 1px solid rgba(99, 102, 241, 0.10);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
}

.bdbo-highlight-box__top {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .85rem;
}

.bdbo-highlight-box__icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.10);
    color: #4f46e5;
    font-size: 1rem;
    flex-shrink: 0;
}

.bdbo-highlight-box h3 {
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0;
}

.bdbo-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}

.bdbo-highlight-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.72;
}

.bdbo-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #123b8f 0%, #16a3b7 100%);
    box-shadow: 0 0 10px rgba(22,163,183,.35);
}

.bdbo-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .92rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 28px rgba(15,23,42,.10);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: bdboFloat 4.8s ease-in-out infinite;
}

.bdbo-floating-chip i {
    color: #123b8f;
}

.bdbo-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bdbo-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes bdboFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (max-width: 1199.98px) {
    .bdbo-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bdbo-title,
    .bdbo-text {
        max-width: 100%;
    }

    .bdbo-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdbo-section {
        padding: 2.8rem 0;
    }

    .bdbo-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .bdbo-text,
    .bdbo-mini-card p,
    .bdbo-highlight-list li,
    .bdbo-card-shell__header p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdbo-card-shell {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .bdbo-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdbo-floating-chip--one,
    .bdbo-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdbo-mini-card,
    .bdbo-highlight-box {
        padding: 1rem;
    }

    .bdbo-mini-card__icon,
    .bdbo-highlight-box__icon {
        width: 2.65rem;
        height: 2.65rem;
    }

    .bdbo-card-shell__header h3,
    .bdbo-highlight-box h3 {
        font-size: 1rem;
    }
}

/* =========================================
   CORE SOLUTIONS SECTION - PREMIUM POLISHED
========================================= */

.bdcs-section,
.bdcs-section * {
    box-sizing: border-box;
}

.bdcs-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdcs-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdcs-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: .6;
}

.bdcs-section__orb--one {
    width: 220px;
    height: 220px;
    left: -30px;
    top: -40px;
    background: rgba(18, 59, 143, 0.08);
}

.bdcs-section__orb--two {
    width: 240px;
    height: 240px;
    right: -40px;
    bottom: -50px;
    background: rgba(22, 163, 183, 0.10);
}

.bdcs-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdcs-heading {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.bdcs-kicker {
    margin-bottom: 1rem;
}

.bdcs-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1rem;
}

.bdcs-intro {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.85;
}

.bdcs-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    z-index: 2;
}

.bdcs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
}

.bdcs-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdcs-card--featured {
    padding: 1.65rem 1.45rem;
    background:
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(239,246,255,1) 0%, rgba(255,255,255,1) 100%);
    border-color: rgba(18, 59, 143, 0.10);
}

.bdcs-card--support {
    padding: 1.2rem 1.05rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdcs-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdcs-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdcs-card--tone-3 {
    background: linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdcs-card--tone-4 {
    background: linear-gradient(180deg, rgba(255,247,237,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdcs-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-bottom: 1rem;
}

.bdcs-card__icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 59, 143, 0.08);
    color: #123b8f;
    font-size: 1.08rem;
    flex-shrink: 0;
}

.bdcs-card__badge {
    display: inline-flex;
    align-items: center;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(18, 59, 143, 0.08);
    border: 1px solid rgba(18, 59, 143, 0.10);
    color: #123b8f;
    font-size: .74rem;
    font-weight: 700;
}

.bdcs-card__title {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .65rem;
}

.bdcs-card__title--featured {
    font-size: 1.45rem;
    line-height: 1.22;
}

.bdcs-card__text {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.78;
    margin: 0 0 1rem;
}

.bdcs-card__text--featured {
    font-size: .98rem;
}

.bdcs-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #123b8f;
    text-decoration: none;
    font-weight: 700;
}

.bdcs-card__link:hover {
    color: #0f2f73;
}

.bdcs-card__link i {
    font-size: 1.08rem;
}

@media (max-width: 991.98px) {
    .bdcs-title,
    .bdcs-intro {
        max-width: 100%;
    }

    .bdcs-card--featured {
        padding: 1.45rem 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .bdcs-section {
        padding: 2.8rem 0;
    }

    .bdcs-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .bdcs-intro,
    .bdcs-card__text,
    .bdcs-card__text--featured {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdcs-card--featured,
    .bdcs-card--support {
        padding: 1rem;
    }

    .bdcs-card__title--featured {
        font-size: 1.18rem;
    }

    .bdcs-card__title {
        font-size: 1rem;
    }

    .bdcs-card__top {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .bdcs-card__icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: .95rem;
    }

    .bdcs-card__badge {
        font-size: .7rem;
        padding: .38rem .65rem;
    }
}

/* =========================================
   HOSTING SECTION - PREMIUM POLISHED
========================================= */

.bdhs-section,
.bdhs-section * {
    box-sizing: border-box;
}

.bdhs-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdhs-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdhs-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
    opacity: .65;
}

.bdhs-section__orb--one {
    width: 260px;
    height: 260px;
    top: -40px;
    left: -40px;
    background: rgba(18, 59, 143, 0.10);
}

.bdhs-section__orb--two {
    width: 280px;
    height: 280px;
    right: -60px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.12);
}

.bdhs-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.9), transparent 82%);
}

.bdhs-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.9rem;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.18), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    z-index: 2;
}

.bdhs-copy {
    position: relative;
    z-index: 2;
}

.bdhs-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.3rem;
    max-width: 13ch;
}

.bdhs-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdhs-mini-title {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #ffffff;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.5;
}

.bdhs-mini-title::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7dd3fc 0%, #22d3ee 100%);
}

.bdhs-support-box {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1.1rem 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 100%);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.bdhs-support-box__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.bdhs-support-box__content h3 {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .45rem;
}

.bdhs-support-box__content p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .91rem;
    line-height: 1.72;
}

.bdhs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.bdhs-actions .btn {
    min-width: 220px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bdhs-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.15rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdhs-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.14);
}

.bdhs-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.5) 50%, rgba(125,211,252,0) 100%);
}

.bdhs-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdhs-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.14) 0%, rgba(255,255,255,.08) 100%);
}

.bdhs-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.13) 0%, rgba(255,255,255,.07) 100%);
}

.bdhs-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdhs-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bdhs-card__title {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdhs-card__text {
    color: rgba(255,255,255,.78);
    font-size: .91rem;
    line-height: 1.72;
    margin: 0 0 .9rem;
}

.bdhs-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.bdhs-card__link:hover {
    color: #dbeafe;
}

.bdhs-card__link i {
    font-size: 1.08rem;
}

.bdhs-bottom-chip {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.07) 100%);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    line-height: 1.65;
}

.bdhs-bottom-chip__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #7dd3fc;
    flex-shrink: 0;
}

.bdhs-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .92rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 30px rgba(15,23,42,.10);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: bdhsFloat 4.8s ease-in-out infinite;
}

.bdhs-floating-chip i {
    color: #123b8f;
}

.bdhs-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bdhs-floating-chip--two {
    bottom: 1rem;
    right: 10%;
    animation-delay: .9s;
}

@keyframes bdhsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (max-width: 1199.98px) {
    .bdhs-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bdhs-title,
    .bdhs-text {
        max-width: 100%;
    }

    .bdhs-actions .btn {
        min-width: 100%;
    }

    .bdhs-panel {
        border-radius: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .bdhs-section {
        padding: 2.8rem 0;
    }

    .bdhs-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdhs-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .bdhs-text,
    .bdhs-card__text,
    .bdhs-support-box__content p,
    .bdhs-bottom-chip {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdhs-support-box,
    .bdhs-card,
    .bdhs-bottom-chip {
        padding: 1rem;
    }

    .bdhs-card__title,
    .bdhs-support-box__content h3 {
        font-size: 1rem;
    }

    .bdhs-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdhs-floating-chip--one,
    .bdhs-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdhs-card__icon,
    .bdhs-support-box__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .95rem;
    }

    .bdhs-bottom-chip__icon {
        width: 2.2rem;
        height: 2.2rem;
    }
}

/* =========================================
   DEVELOPMENT SECTION - PREMIUM POLISHED
========================================= */

.bddv-section,
.bddv-section * {
    box-sizing: border-box;
}

.bddv-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bddv-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bddv-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bddv-section__orb--one {
    width: 220px;
    height: 220px;
    top: -50px;
    right: -20px;
    background: rgba(18, 59, 143, 0.08);
}

.bddv-section__orb--two {
    width: 240px;
    height: 240px;
    left: -40px;
    bottom: -50px;
    background: rgba(22, 163, 183, 0.10);
}

.bddv-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bddv-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
    overflow: hidden;
}

.bddv-copy {
    position: relative;
    z-index: 2;
}

.bddv-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bddv-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bddv-mini-title {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #0f172a;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.5;
}

.bddv-mini-title::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #123b8f 0%, #16a3b7 100%);
}

.bddv-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1.1rem 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
    border: 1px solid rgba(99, 102, 241, 0.10);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
}

.bddv-highlight-box__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.10);
    color: #4f46e5;
    font-size: 1rem;
    flex-shrink: 0;
}

.bddv-highlight-box__content h3 {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .4rem;
}

.bddv-highlight-box__content p {
    margin: 0;
    color: #64748b;
    font-size: .91rem;
    line-height: 1.72;
}

.bddv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.bddv-actions .btn {
    min-width: 220px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bddv-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.1rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bddv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.bddv-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bddv-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bddv-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bddv-card--tone-3 {
    background: linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bddv-card--tone-4 {
    background: linear-gradient(180deg, rgba(255,247,237,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bddv-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bddv-card__title {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bddv-card__text {
    color: #64748b;
    font-size: .91rem;
    line-height: 1.72;
    margin: 0 0 .9rem;
}

.bddv-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #123b8f;
    text-decoration: none;
    font-weight: 700;
}

.bddv-card__link:hover {
    color: #0f2f73;
}

.bddv-card__link i {
    font-size: 1.08rem;
}

.bddv-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .92rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 30px rgba(15,23,42,.10);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: bddvFloat 4.8s ease-in-out infinite;
}

.bddv-floating-chip i {
    color: #123b8f;
}

.bddv-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bddv-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes bddvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (max-width: 1199.98px) {
    .bddv-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bddv-title,
    .bddv-text {
        max-width: 100%;
    }

    .bddv-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bddv-section {
        padding: 2.8rem 0;
    }

    .bddv-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bddv-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .bddv-text,
    .bddv-card__text,
    .bddv-highlight-box__content p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bddv-card,
    .bddv-highlight-box {
        padding: 1rem;
    }

    .bddv-card__title,
    .bddv-highlight-box__content h3 {
        font-size: 1rem;
    }

    .bddv-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bddv-floating-chip--one,
    .bddv-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bddv-card__icon,
    .bddv-highlight-box__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .95rem;
    }
}

/* =========================================
   DOMAIN SECTION - PREMIUM POLISHED
========================================= */

.bddm-section,
.bddm-section * {
    box-sizing: border-box;
}

.bddm-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bddm-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bddm-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bddm-section__orb--one {
    width: 220px;
    height: 220px;
    top: -40px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bddm-section__orb--two {
    width: 240px;
    height: 240px;
    right: -40px;
    bottom: -50px;
    background: rgba(22, 163, 183, 0.10);
}

.bddm-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bddm-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
    overflow: hidden;
}

.bddm-copy {
    position: relative;
    z-index: 2;
}

.bddm-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bddm-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 60ch;
}

.bddm-actions .btn {
    min-width: 220px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bddm-side-shell {
    position: relative;
    padding: 1.15rem;
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 24%),
        linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(244,248,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 20px 44px rgba(15,23,42,.07);
    overflow: hidden;
}

.bddm-side-shell__badge {
    display: inline-flex;
    align-items: center;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(18,59,143,.08);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: .9rem;
}

.bddm-support-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.05rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
    border: 1px solid rgba(18,59,143,.08);
    box-shadow: 0 16px 28px rgba(15,23,42,.05);
}

.bddm-support-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bddm-support-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bddm-support-card__title {
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bddm-support-card__text {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.bddm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.bddm-tag {
    display: inline-flex;
    align-items: center;
    padding: .42rem .75rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .78rem;
    font-weight: 700;
}

.bddm-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .92rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 16px 30px rgba(15,23,42,.10);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: bddmFloat 4.8s ease-in-out infinite;
}

.bddm-floating-chip i {
    color: #123b8f;
}

.bddm-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bddm-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes bddmFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (max-width: 1199.98px) {
    .bddm-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bddm-title,
    .bddm-text {
        max-width: 100%;
    }

    .bddm-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bddm-section {
        padding: 2.8rem 0;
    }

    .bddm-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bddm-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bddm-text,
    .bddm-support-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bddm-side-shell,
    .bddm-support-card {
        padding: 1rem;
    }

    .bddm-support-card__title {
        font-size: 1rem;
    }

    .bddm-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bddm-floating-chip--one,
    .bddm-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bddm-support-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .95rem;
    }

    .bddm-tag {
        font-size: .76rem;
    }
}

/* =========================================
   MOBILE APP SECTION - PREMIUM POLISHED
========================================= */

.bdma-section,
.bdma-section * {
    box-sizing: border-box;
}

.bdma-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdma-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdma-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdma-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdma-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdma-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdma-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
    overflow: hidden;
}

.bdma-copy {
    position: relative;
    z-index: 2;
}

.bdma-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdma-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdma-feature-list {
    display: grid;
    gap: .72rem;
}

.bdma-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #1e293b;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.6;
}

.bdma-feature-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123b8f;
    flex-shrink: 0;
}

.bdma-service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.1rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bdma-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.bdma-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdma-service-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdma-service-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdma-service-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bdma-service-card__title {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdma-service-card__text {
    color: #64748b;
    font-size: .91rem;
    line-height: 1.72;
    margin: 0 0 .9rem;
}

.bdma-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #123b8f;
    text-decoration: none;
    font-weight: 700;
}

.bdma-service-card__link:hover {
    color: #0f2f73;
}

.bdma-service-card__link i {
    font-size: 1.08rem;
}

.bdma-support-line {
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
    margin: 0 0 1.2rem;
}

.bdma-actions .btn {
    min-width: 240px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bdma-visual {
    position: relative;
    z-index: 2;
}

.bdma-visual__card {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    padding: 1.2rem;
    border-radius: 1.7rem;
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.20), transparent 20%),
        linear-gradient(135deg, #081a38 0%, #0f2f73 58%, #114d5f 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
}

.bdma-visual__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    opacity: .7;
}

.bdma-visual__glow--one {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -20px;
    background: rgba(125,211,252,.18);
}

.bdma-visual__glow--two {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
    background: rgba(34,211,238,.14);
}

.bdma-device-row {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.bdma-device {
    position: relative;
    width: 220px;
    max-width: 42%;
    border-radius: 2rem;
    background: #061120;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 40px rgba(0,0,0,.26);
    overflow: hidden;
}

.bdma-device--front {
    transform: translateY(10px);
    z-index: 3;
    animation: bdmaFloatDevice 4.8s ease-in-out infinite;
}

.bdma-device--back {
    opacity: .92;
    transform: translateY(40px) scale(.94);
}

.bdma-device__notch {
    width: 34%;
    height: 16px;
    border-radius: 0 0 1rem 1rem;
    background: #020814;
    margin: 0 auto;
}

.bdma-device__screen {
    min-height: 360px;
    padding: 1rem .9rem 1.1rem;
    background:
        radial-gradient(circle at top center, rgba(125,211,252,.18), transparent 25%),
        linear-gradient(180deg, #0a2247 0%, #0a1b36 100%);
}

.bdma-ui-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bdma-ui-panel {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
}

.bdma-ui-panel h3 {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .45rem;
}

.bdma-ui-panel p {
    color: rgba(255,255,255,.76);
    margin: 0;
    font-size: .85rem;
    line-height: 1.65;
}

.bdma-ui-stats {
    display: grid;
    gap: .75rem;
}

.bdma-ui-stat {
    padding: .8rem .85rem;
    border-radius: .95rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.bdma-ui-stat strong {
    display: block;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.bdma-ui-stat small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}

.bdma-ui-card {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: .9rem .95rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.bdma-ui-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.bdma-ui-card strong {
    color: #ffffff;
    font-size: .92rem;
    font-weight: 800;
}

.bdma-ui-bars {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}

.bdma-ui-bars span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.bdma-ui-bars span:nth-child(1) { width: 84%; }
.bdma-ui-bars span:nth-child(2) { width: 68%; }
.bdma-ui-bars span:nth-child(3) { width: 52%; }

.bdma-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdmaFloatChip 4.4s ease-in-out infinite;
}

.bdma-floating-chip i {
    color: #123b8f;
}

.bdma-floating-chip--left {
    left: 1rem;
    top: 1.1rem;
    animation-delay: 0s;
}

.bdma-floating-chip--right {
    right: 1rem;
    bottom: 1.3rem;
    animation-delay: .9s;
}

@keyframes bdmaFloatDevice {
    0%, 100% { transform: translateY(10px); }
    50% { transform: translateY(0); }
}

@keyframes bdmaFloatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .bdma-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bdma-title,
    .bdma-text {
        max-width: 100%;
    }

    .bdma-actions .btn {
        min-width: 100%;
    }

    .bdma-visual__card {
        min-height: 480px;
    }
}

@media (max-width: 767.98px) {
    .bdma-section {
        padding: 2.8rem 0;
    }

    .bdma-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdma-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdma-text,
    .bdma-service-card__text,
    .bdma-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdma-service-card {
        padding: 1rem;
    }

    .bdma-service-card__title {
        font-size: 1rem;
    }

    .bdma-visual__card {
        min-height: auto;
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdma-device-row {
        gap: .75rem;
    }

    .bdma-device {
        width: 180px;
        max-width: 46%;
    }

    .bdma-device__screen {
        min-height: 300px;
        padding: .85rem .8rem 1rem;
    }

    .bdma-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdma-floating-chip--left,
    .bdma-floating-chip--right {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdma-service-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .95rem;
    }

    .bdma-visual__card {
        padding: .85rem;
    }

    .bdma-device {
        width: 150px;
    }

    .bdma-device__screen {
        min-height: 260px;
    }

    .bdma-ui-panel h3 {
        font-size: .95rem;
    }
}

/* =========================================
   GRAPHICS SECTION - PREMIUM POLISHED
========================================= */

.bdgr-section,
.bdgr-section * {
    box-sizing: border-box;
}

.bdgr-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdgr-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdgr-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdgr-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    right: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdgr-section__orb--two {
    width: 260px;
    height: 260px;
    left: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdgr-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdgr-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.10), transparent 18%),
        linear-gradient(135deg, #0b1220 0%, #102a62 58%, #134e5e 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdgr-copy {
    position: relative;
    z-index: 2;
}

.bdgr-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdgr-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdgr-feature-list {
    display: grid;
    gap: .72rem;
}

.bdgr-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.6;
}

.bdgr-feature-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    flex-shrink: 0;
}

.bdgr-support-line {
    color: rgba(255,255,255,.74);
    font-size: .95rem;
    line-height: 1.75;
    margin: 0 0 1.2rem;
}

.bdgr-actions .btn {
    min-width: 240px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bdgr-visual {
    position: relative;
    z-index: 2;
}

.bdgr-visual__card {
    position: relative;
    padding: 1.1rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    overflow: hidden;
}

.bdgr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
    position: relative;
    z-index: 2;
}

.bdgr-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255,255,255,.10);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdgr-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bdgr-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdgr-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdgr-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdgr-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bdgr-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bdgr-card__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: .9rem;
}

.bdgr-card__title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .5rem;
}

.bdgr-card__text {
    color: rgba(255,255,255,.76);
    font-size: .89rem;
    line-height: 1.7;
    margin: 0 0 .8rem;
}

.bdgr-card__link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.bdgr-card__link:hover {
    color: #dbeafe;
}

.bdgr-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdgrFloat 4.4s ease-in-out infinite;
}

.bdgr-floating-chip i {
    color: #123b8f;
}

.bdgr-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bdgr-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .8s;
}

.bdgr-floating-chip--three {
    top: 46%;
    right: -.25rem;
    animation-delay: 1.4s;
}

@keyframes bdgrFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .bdgr-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bdgr-title,
    .bdgr-text {
        max-width: 100%;
    }

    .bdgr-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdgr-section {
        padding: 2.8rem 0;
    }

    .bdgr-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdgr-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdgr-text,
    .bdgr-card__text,
    .bdgr-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdgr-grid {
        grid-template-columns: 1fr;
    }

    .bdgr-card {
        padding: 1rem;
    }

    .bdgr-card__title {
        font-size: 1rem;
    }

    .bdgr-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdgr-floating-chip--one,
    .bdgr-floating-chip--two,
    .bdgr-floating-chip--three {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdgr-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdgr-visual__card {
        padding: .9rem;
    }
}

/* =========================================
   DIGITAL MARKETING SECTION - PREMIUM POLISHED
========================================= */

.bddmkt-section,
.bddmkt-section * {
    box-sizing: border-box;
}

.bddmkt-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bddmkt-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bddmkt-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bddmkt-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bddmkt-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bddmkt-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bddmkt-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.bddmkt-copy {
    position: relative;
    z-index: 2;
}

.bddmkt-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bddmkt-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bddmkt-feature-list {
    display: grid;
    gap: .72rem;
}

.bddmkt-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #1e293b;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.6;
}

.bddmkt-feature-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123b8f;
    flex-shrink: 0;
}

.bddmkt-support-line {
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
    margin: 0 0 1.2rem;
}

.bddmkt-actions .btn {
    min-width: 240px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bddmkt-visual {
    position: relative;
    z-index: 2;
}

.bddmkt-visual__card {
    position: relative;
    padding: 1.1rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #081a38 0%, #0f2f73 58%, #114d5f 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
    overflow: hidden;
}

.bddmkt-visual__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(34,211,238,.10), transparent 20%);
    pointer-events: none;
}

.bddmkt-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}

.bddmkt-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bddmkt-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bddmkt-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bddmkt-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bddmkt-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bddmkt-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bddmkt-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bddmkt-card__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: .9rem;
}

.bddmkt-card__title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .5rem;
}

.bddmkt-card__text {
    color: rgba(255,255,255,.76);
    font-size: .89rem;
    line-height: 1.7;
    margin: 0 0 .8rem;
}

.bddmkt-card__link {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.bddmkt-card__link:hover {
    color: #dbeafe;
}

.bddmkt-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bddmktFloat 4.4s ease-in-out infinite;
}

.bddmkt-floating-chip i {
    color: #123b8f;
}

.bddmkt-floating-chip--top {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bddmkt-floating-chip--middle {
    top: 46%;
    left: -0.2rem;
    animation-delay: .8s;
}

.bddmkt-floating-chip--bottom {
    bottom: 1rem;
    right: 1rem;
    animation-delay: 1.4s;
}

@keyframes bddmktFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .bddmkt-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bddmkt-title,
    .bddmkt-text {
        max-width: 100%;
    }

    .bddmkt-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bddmkt-section {
        padding: 2.8rem 0;
    }

    .bddmkt-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bddmkt-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bddmkt-text,
    .bddmkt-card__text,
    .bddmkt-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bddmkt-grid {
        grid-template-columns: 1fr;
    }

    .bddmkt-card {
        padding: 1rem;
    }

    .bddmkt-card__title {
        font-size: 1rem;
    }

    .bddmkt-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bddmkt-floating-chip--top,
    .bddmkt-floating-chip--middle,
    .bddmkt-floating-chip--bottom {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bddmkt-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bddmkt-visual__card {
        padding: .9rem;
    }
}
/* =========================================
   AUDIENCES SECTION - PREMIUM POLISHED
========================================= */

.bdaud-section,
.bdaud-section * {
    box-sizing: border-box;
}

.bdaud-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdaud-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdaud-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdaud-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    right: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdaud-section__orb--two {
    width: 260px;
    height: 260px;
    left: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdaud-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdaud-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdaud-heading {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.bdaud-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .9rem;
}

.bdaud-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bdaud-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdaud-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bdaud-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdaud-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdaud-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdaud-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bdaud-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bdaud-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.bdaud-card__title {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdaud-card__text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.bdaud-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bdaud-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.bdaud-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdaud-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdaud-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdaudFloat 4.5s ease-in-out infinite;
}

.bdaud-floating-chip i {
    color: #123b8f;
}

.bdaud-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdaud-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdaudFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .bdaud-actions .btn {
        min-width: 100%;
    }

    .bdaud-title {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdaud-section {
        padding: 2.8rem 0;
    }

    .bdaud-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdaud-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdaud-intro,
    .bdaud-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdaud-card {
        padding: 1rem;
    }

    .bdaud-card__title {
        font-size: 1rem;
    }

    .bdaud-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdaud-floating-chip--one,
    .bdaud-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdaud-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdaud-chip {
        font-size: .76rem;
    }
}

/* =========================================
   WHY CHOOSE US SECTION - PREMIUM POLISHED
========================================= */

.bdwc-section,
.bdwc-section * {
    box-sizing: border-box;
}

.bdwc-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdwc-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdwc-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdwc-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdwc-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdwc-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdwc-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.bdwc-heading {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.bdwc-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .9rem;
}

.bdwc-intro {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bdwc-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdwc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18,59,143,.14);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
}

.bdwc-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdwc-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdwc-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdwc-card--tone-3 {
    background: linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdwc-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.bdwc-card__title {
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdwc-card__text {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.bdwc-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bdwc-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.bdwc-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .8rem;
    font-weight: 700;
}

.bdwc-actions .btn {
    min-width: 280px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdwc-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
    backdrop-filter: blur(10px);
    animation: bdwcFloat 4.5s ease-in-out infinite;
}

.bdwc-floating-chip i {
    color: #123b8f;
}

.bdwc-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdwc-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdwcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .bdwc-actions .btn {
        min-width: 100%;
    }

    .bdwc-title {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdwc-section {
        padding: 2.8rem 0;
    }

    .bdwc-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdwc-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdwc-intro,
    .bdwc-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdwc-card {
        padding: 1rem;
    }

    .bdwc-card__title {
        font-size: 1rem;
    }

    .bdwc-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdwc-floating-chip--one,
    .bdwc-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdwc-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdwc-chip {
        font-size: .76rem;
    }
}

/* =========================================
   PROCESS SECTION - PREMIUM POLISHED
========================================= */

.bdprc-section,
.bdprc-section * {
    box-sizing: border-box;
}

.bdprc-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdprc-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdprc-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdprc-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdprc-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdprc-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdprc-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdprc-heading {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.bdprc-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .9rem;
}

.bdprc-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bdprc-steps-row {
    position: relative;
    z-index: 2;
}

.bdprc-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdprc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bdprc-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdprc-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdprc-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdprc-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bdprc-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bdprc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .9rem;
}

.bdprc-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.bdprc-card__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    flex-shrink: 0;
}

.bdprc-card__title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdprc-card__text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.bdprc-support-box {
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
}

.bdprc-support-box__header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .7rem;
}

.bdprc-support-box__icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .95rem;
    flex-shrink: 0;
}

.bdprc-support-box h3 {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0;
}

.bdprc-support-box p {
    color: rgba(255,255,255,.78);
    font-size: .93rem;
    line-height: 1.75;
    margin: 0;
}

.bdprc-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdprc-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdprc-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdprc-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdprcFloat 4.5s ease-in-out infinite;
}

.bdprc-floating-chip i {
    color: #123b8f;
}

.bdprc-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdprc-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdprcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .bdprc-card__title {
        font-size: .96rem;
    }
}

@media (max-width: 991.98px) {
    .bdprc-actions .btn {
        min-width: 100%;
    }

    .bdprc-title {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdprc-section {
        padding: 2.8rem 0;
    }

    .bdprc-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdprc-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdprc-intro,
    .bdprc-card__text,
    .bdprc-support-box p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdprc-card,
    .bdprc-support-box {
        padding: 1rem;
    }

    .bdprc-card__title,
    .bdprc-support-box h3 {
        font-size: 1rem;
    }

    .bdprc-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdprc-floating-chip--one,
    .bdprc-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdprc-card__icon,
    .bdprc-support-box__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdprc-chip {
        font-size: .76rem;
    }
}

/* =========================================
   SUPPORT & MAINTENANCE SECTION - PREMIUM POLISHED
========================================= */

.bdsm-section,
.bdsm-section * {
    box-sizing: border-box;
}

.bdsm-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdsm-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdsm-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdsm-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    right: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdsm-section__orb--two {
    width: 260px;
    height: 260px;
    left: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdsm-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdsm-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdsm-copy {
    position: relative;
    z-index: 2;
}

.bdsm-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdsm-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdsm-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdsm-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdsm-actions .btn {
    min-width: 260px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdsm-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdsm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bdsm-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdsm-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdsm-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdsm-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bdsm-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bdsm-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .95rem;
}

.bdsm-card__title {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdsm-card__text {
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.bdsm-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdsmFloat 4.5s ease-in-out infinite;
}

.bdsm-floating-chip i {
    color: #123b8f;
}

.bdsm-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bdsm-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes bdsmFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .bdsm-title,
    .bdsm-text {
        max-width: 100%;
    }

    .bdsm-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdsm-section {
        padding: 2.8rem 0;
    }

    .bdsm-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdsm-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdsm-text,
    .bdsm-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdsm-card {
        padding: 1rem;
    }

    .bdsm-card__title {
        font-size: 1rem;
    }

    .bdsm-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdsm-floating-chip--one,
    .bdsm-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdsm-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdsm-chip {
        font-size: .76rem;
    }
}

/* =========================================
   SECURITY SECTION - PREMIUM POLISHED
========================================= */

.bdsec-section,
.bdsec-section * {
    box-sizing: border-box;
}

.bdsec-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdsec-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdsec-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdsec-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdsec-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdsec-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdsec-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.bdsec-copy {
    position: relative;
    z-index: 2;
}

.bdsec-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdsec-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdsec-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdsec-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(18,59,143,.06);
    border: 1px solid rgba(18,59,143,.10);
    color: #123b8f;
    font-size: .8rem;
    font-weight: 700;
}

.bdsec-actions .btn {
    min-width: 280px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdsec-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdsec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18,59,143,.14);
    box-shadow: 0 22px 40px rgba(15,23,42,.08);
}

.bdsec-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdsec-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdsec-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdsec-card--tone-3 {
    background: linear-gradient(180deg, rgba(245,243,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdsec-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    flex-shrink: 0;
}

.bdsec-card__content {
    min-width: 0;
}

.bdsec-card__title {
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .45rem;
}

.bdsec-card__text {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.bdsec-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
    backdrop-filter: blur(10px);
    animation: bdsecFloat 4.5s ease-in-out infinite;
}

.bdsec-floating-chip i {
    color: #123b8f;
}

.bdsec-floating-chip--one {
    top: 1rem;
    right: 1rem;
    animation-delay: 0s;
}

.bdsec-floating-chip--two {
    bottom: 1rem;
    left: 1rem;
    animation-delay: .9s;
}

@keyframes bdsecFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .bdsec-title,
    .bdsec-text {
        max-width: 100%;
    }

    .bdsec-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdsec-section {
        padding: 2.8rem 0;
    }

    .bdsec-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdsec-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdsec-text,
    .bdsec-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdsec-card {
        padding: 1rem;
        gap: .85rem;
    }

    .bdsec-card__title {
        font-size: 1rem;
    }

    .bdsec-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdsec-floating-chip--one,
    .bdsec-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdsec-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }

    .bdsec-chip {
        font-size: .76rem;
    }
}

/* =========================================
   PROOF SECTION - PREMIUM POLISHED
========================================= */

.bdpf-section,
.bdpf-section * {
    box-sizing: border-box;
}

.bdpf-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdpf-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdpf-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdpf-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdpf-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdpf-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdpf-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdpf-heading {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.bdpf-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .9rem;
}

.bdpf-intro,
.bdpf-support-text {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.bdpf-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bdpf-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 20px 32px rgba(0,0,0,.12);
}

.bdpf-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
    z-index: 1;
}

.bdpf-card--tone-1 {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
}

.bdpf-card--tone-2 {
    background: linear-gradient(180deg, rgba(125,211,252,.12) 0%, rgba(255,255,255,.07) 100%);
}

.bdpf-card--tone-3 {
    background: linear-gradient(180deg, rgba(34,211,238,.11) 0%, rgba(255,255,255,.07) 100%);
}

.bdpf-card--tone-4 {
    background: linear-gradient(180deg, rgba(129,140,248,.10) 0%, rgba(255,255,255,.07) 100%);
}

.bdpf-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}

.bdpf-card__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,8,23,.05) 0%, rgba(2,8,23,.35) 100%);
    pointer-events: none;
}

.bdpf-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.bdpf-card:hover .bdpf-card__image {
    transform: scale(1.05);
}

.bdpf-card__zoom {
    position: absolute;
    top: .85rem;
    right: .85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .78rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
}

.bdpf-card__body {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.bdpf-card__title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .85rem;
    min-height: 2.7rem;
}

.bdpf-card__actions {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.bdpf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: .62rem .85rem;
    border-radius: .9rem;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.bdpf-btn--view {
    background: rgba(255,255,255,.12);
    color: #ffffff;
    border-color: rgba(255,255,255,.14);
}

.bdpf-btn--visit {
    background: #ffffff;
    color: #0f172a;
}

.bdpf-btn--disabled {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.64);
    border-color: rgba(255,255,255,.08);
    cursor: default;
}

.bdpf-footer {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bdpf-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
}

.bdpf-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdpf-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
}

.bdpf-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdpfFloat 4.5s ease-in-out infinite;
}

.bdpf-floating-chip i {
    color: #123b8f;
}

.bdpf-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdpf-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdpfFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Lightbox */
.bdpf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
}

.bdpf-lightbox.is-open {
    display: block;
}

.bdpf-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, .72);
    backdrop-filter: blur(4px);
}

.bdpf-lightbox__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 980px);
    margin: 4vh auto;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.bdpf-lightbox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.bdpf-lightbox__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.bdpf-lightbox__close {
    border: 0;
    background: rgba(15,23,42,.06);
    color: #0f172a;
    border-radius: .8rem;
    padding: .55rem .85rem;
    font-size: .86rem;
    font-weight: 700;
}

.bdpf-lightbox__body {
    padding: 1rem;
    background: #f8fbff;
}

.bdpf-lightbox__body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: .9rem;
}

body.bdpf-lightbox-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .bdpf-actions .btn {
        min-width: 100%;
    }

    .bdpf-title {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdpf-section {
        padding: 2.8rem 0;
    }

    .bdpf-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdpf-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdpf-intro,
    .bdpf-support-text,
    .bdpf-card__text {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdpf-card__body {
        padding: .9rem;
    }

    .bdpf-card__title {
        font-size: .96rem;
        min-height: auto;
    }

    .bdpf-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdpf-floating-chip--one,
    .bdpf-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .bdpf-lightbox__dialog {
        width: calc(100vw - 20px);
        margin: 10px auto;
    }
}

@media (max-width: 575.98px) {
    .bdpf-btn {
        flex: 1 1 100%;
    }

    .bdpf-card__zoom span {
        display: none;
    }
}

/* =========================================
   FAQ SECTION - PREMIUM POLISHED
========================================= */

.bdfq-section,
.bdfq-section * {
    box-sizing: border-box;
}

.bdfq-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdfq-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdfq-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdfq-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    right: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdfq-section__orb--two {
    width: 260px;
    height: 260px;
    left: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdfq-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdfq-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.14), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdfq-heading {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.bdfq-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .9rem;
}

.bdfq-intro {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bdfq-accordion__item {
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .9rem;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
    box-shadow: none;
}

.bdfq-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: .96rem;
    line-height: 1.5;
    padding: 1.1rem 1.15rem;
    box-shadow: none !important;
}

.bdfq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,.05);
    color: #ffffff;
}

.bdfq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: .9;
}

.bdfq-accordion__question {
    display: block;
    padding-right: .6rem;
}

.bdfq-accordion__body {
    color: rgba(255,255,255,.80);
    font-size: .93rem;
    line-height: 1.8;
    background: rgba(255,255,255,.04);
}

.bdfq-side-card {
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.bdfq-side-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bdfq-side-card__title {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .6rem;
}

.bdfq-side-card__text {
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bdfq-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdfq-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdfq-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdfqFloat 4.5s ease-in-out infinite;
}

.bdfq-floating-chip i {
    color: #123b8f;
}

.bdfq-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdfq-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdfqFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 767.98px) {
    .bdfq-section {
        padding: 2.8rem 0;
    }

    .bdfq-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdfq-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdfq-intro,
    .bdfq-side-card__text,
    .bdfq-accordion__body {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdfq-accordion .accordion-button {
        font-size: .92rem;
        padding: 1rem;
    }

    .bdfq-side-card {
        padding: 1rem;
    }

    .bdfq-side-card__title {
        font-size: 1rem;
    }

    .bdfq-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdfq-floating-chip--one,
    .bdfq-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdfq-chip {
        font-size: .76rem;
    }

    .bdfq-side-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .92rem;
    }
}

/* =========================================
   FINAL CTA SECTION - PREMIUM POLISHED
========================================= */

.bdfcta-section,
.bdfcta-section * {
    box-sizing: border-box;
}

.bdfcta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdfcta-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdfcta-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
    opacity: .65;
}

.bdfcta-section__orb--one {
    width: 260px;
    height: 260px;
    top: -50px;
    left: -40px;
    background: rgba(18, 59, 143, 0.10);
}

.bdfcta-section__orb--two {
    width: 280px;
    height: 280px;
    right: -50px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.12);
}

.bdfcta-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.88), transparent 82%);
}

.bdfcta-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.7rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(125,211,252,.16), transparent 22%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.bdfcta-copy {
    position: relative;
    z-index: 2;
}

.bdfcta-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdfcta-text {
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 60ch;
}

.bdfcta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.bdfcta-actions .btn {
    min-width: 220px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
    font-weight: 700;
    padding: .92rem 1.2rem;
}

.bdfcta-contact-list {
    display: grid;
    gap: .8rem;
}

.bdfcta-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.6;
}

.bdfcta-contact-link:hover {
    color: #dbeafe;
}

.bdfcta-contact-link__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #7dd3fc;
    flex-shrink: 0;
}

.bdfcta-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdfcta-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.bdfcta-side-card {
    padding: 1.2rem 1.1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.bdfcta-side-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bdfcta-side-card__title {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: .8rem;
}

.bdfcta-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .75rem;
}

.bdfcta-side-list li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.75;
}

.bdfcta-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7dd3fc;
    box-shadow: 0 0 12px rgba(125,211,252,.55);
}

.bdfcta-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .68rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .8rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdfctaFloat 4.5s ease-in-out infinite;
}

.bdfcta-floating-chip i {
    color: #123b8f;
}

.bdfcta-floating-chip--one {
    top: 1rem;
    left: 1rem;
    animation-delay: 0s;
}

.bdfcta-floating-chip--two {
    bottom: 1rem;
    right: 1rem;
    animation-delay: .9s;
}

@keyframes bdfctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .bdfcta-title,
    .bdfcta-text {
        max-width: 100%;
    }

    .bdfcta-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bdfcta-section {
        padding: 2.8rem 0;
    }

    .bdfcta-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdfcta-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdfcta-text,
    .bdfcta-side-list li {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdfcta-side-card {
        padding: 1rem;
    }

    .bdfcta-side-card__title {
        font-size: 1rem;
    }

    .bdfcta-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdfcta-floating-chip--one,
    .bdfcta-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdfcta-chip {
        font-size: .76rem;
    }

    .bdfcta-contact-link__icon,
    .bdfcta-side-card__icon {
        width: 2.75rem;
        height: 2.75rem;
    }
}

/* =========================================
   MOBILE APP SECTION - CLEAN RESPONSIVE FIX
========================================= */

.bdma2-section,
.bdma2-section * {
    box-sizing: border-box;
}

.bdma2-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bdma2-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bdma2-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.bdma2-section__orb--one {
    width: 240px;
    height: 240px;
    top: -50px;
    left: -30px;
    background: rgba(18, 59, 143, 0.08);
}

.bdma2-section__orb--two {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
    background: rgba(22, 163, 183, 0.10);
}

.bdma2-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 143, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 143, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 80%);
}

.bdma2-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,251,255,.98) 100%);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
    overflow: hidden;
}

.bdma2-copy {
    position: relative;
    z-index: 2;
}

.bdma2-title {
    color: #0b1533;
    font-size: clamp(2rem, 4vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 1.25rem;
    max-width: 14ch;
}

.bdma2-text {
    color: #64748b;
    font-size: .98rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    max-width: 58ch;
}

.bdma2-feature-list {
    display: grid;
    gap: .72rem;
}

.bdma2-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #1e293b;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.6;
}

.bdma2-feature-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123b8f;
    flex-shrink: 0;
}

.bdma2-service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.1rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 34px rgba(15,23,42,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bdma2-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(15,23,42,.08);
    border-color: rgba(18,59,143,.14);
}

.bdma2-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(125,211,252,0) 0%, rgba(125,211,252,.45) 50%, rgba(125,211,252,0) 100%);
}

.bdma2-service-card--tone-1 {
    background: linear-gradient(180deg, rgba(239,246,255,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdma2-service-card--tone-2 {
    background: linear-gradient(180deg, rgba(240,253,250,.98) 0%, rgba(255,255,255,.98) 100%);
}

.bdma2-service-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18,59,143,.08);
    color: #123b8f;
    font-size: 1rem;
    margin-bottom: .9rem;
}

.bdma2-service-card__title {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .55rem;
}

.bdma2-service-card__text {
    color: #64748b;
    font-size: .91rem;
    line-height: 1.72;
    margin: 0 0 .9rem;
}

.bdma2-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #123b8f;
    text-decoration: none;
    font-weight: 700;
}

.bdma2-service-card__link:hover {
    color: #0f2f73;
}

.bdma2-support-line {
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
    margin: 0 0 1.2rem;
}

.bdma2-actions .btn {
    min-width: 240px;
    border-radius: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .92rem 1.2rem;
}

.bdma2-visual {
    position: relative;
    z-index: 2;
}

.bdma2-visual__card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 1rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(22,163,183,.18), transparent 20%),
        linear-gradient(135deg, #081a38 0%, #0f2f73 58%, #114d5f 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
}

.bdma2-visual__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    opacity: .7;
}

.bdma2-visual__glow--one {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -20px;
    background: rgba(125,211,252,.18);
}

.bdma2-visual__glow--two {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
    background: rgba(34,211,238,.14);
}

.bdma2-device-stack {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdma2-device {
    position: relative;
    border-radius: 2rem;
    background: #061120;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 40px rgba(0,0,0,.26);
    overflow: hidden;
}

.bdma2-device--front {
    width: min(290px, 82%);
    z-index: 3;
    animation: bdma2FloatDevice 4.8s ease-in-out infinite;
}

.bdma2-device--back {
    position: absolute;
    width: min(230px, 68%);
    left: 6%;
    top: 8%;
    opacity: .85;
    transform: scale(.92);
}

.bdma2-device__notch {
    width: 34%;
    height: 16px;
    border-radius: 0 0 1rem 1rem;
    background: #020814;
    margin: 0 auto;
}

.bdma2-device__screen {
    min-height: 390px;
    padding: 1rem .9rem 1.1rem;
    background:
        radial-gradient(circle at top center, rgba(125,211,252,.18), transparent 25%),
        linear-gradient(180deg, #0a2247 0%, #0a1b36 100%);
}

.bdma2-ui-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bdma2-ui-panel {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
}

.bdma2-ui-panel h3 {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 .45rem;
}

.bdma2-ui-panel p {
    color: rgba(255,255,255,.76);
    margin: 0;
    font-size: .85rem;
    line-height: 1.65;
}

.bdma2-ui-stats {
    display: grid;
    gap: .75rem;
}

.bdma2-ui-stat {
    padding: .8rem .85rem;
    border-radius: .95rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.bdma2-ui-stat strong {
    display: block;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.bdma2-ui-stat small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}

.bdma2-ui-card {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: .9rem .95rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.bdma2-ui-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.bdma2-ui-card strong {
    color: #ffffff;
    font-size: .92rem;
    font-weight: 800;
}

.bdma2-ui-bars {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}

.bdma2-ui-bars span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.bdma2-ui-bars span:nth-child(1) { width: 84%; }
.bdma2-ui-bars span:nth-child(2) { width: 68%; }
.bdma2-ui-bars span:nth-child(3) { width: 52%; }

.bdma2-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 16px 28px rgba(15,23,42,.12);
    backdrop-filter: blur(10px);
    animation: bdma2FloatChip 4.4s ease-in-out infinite;
}

.bdma2-floating-chip i {
    color: #123b8f;
}

.bdma2-floating-chip--one {
    left: 1rem;
    top: 1rem;
    animation-delay: 0s;
}

.bdma2-floating-chip--two {
    right: 1rem;
    bottom: 1rem;
    animation-delay: .9s;
}

@keyframes bdma2FloatDevice {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes bdma2FloatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1199.98px) {
    .bdma2-title {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bdma2-title,
    .bdma2-text {
        max-width: 100%;
    }

    .bdma2-actions .btn {
        min-width: 100%;
    }

    .bdma2-visual__card {
        min-height: 460px;
    }

    .bdma2-device-stack {
        min-height: 360px;
    }

    .bdma2-device--front {
        width: min(270px, 78%);
    }

    .bdma2-device--back {
        width: min(210px, 62%);
    }
}

@media (max-width: 767.98px) {
    .bdma2-section {
        padding: 2.8rem 0;
    }

    .bdma2-panel {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdma2-title {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .bdma2-text,
    .bdma2-service-card__text,
    .bdma2-support-line {
        font-size: .92rem;
        line-height: 1.75;
    }

    .bdma2-service-card {
        padding: 1rem;
    }

    .bdma2-service-card__title {
        font-size: 1rem;
    }

    .bdma2-visual__card {
        min-height: auto;
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .bdma2-device-stack {
        min-height: auto;
        display: block;
        text-align: center;
    }

    .bdma2-device--front {
        position: relative;
        width: min(260px, 92%);
        margin: 0 auto;
        animation: none;
    }

    .bdma2-device--back {
        display: none;
    }

    .bdma2-device__screen {
        min-height: 320px;
        padding: .9rem .8rem 1rem;
    }

    .bdma2-floating-chip {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: .75rem;
        animation: none;
    }

    .bdma2-floating-chip--one,
    .bdma2-floating-chip--two {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575.98px) {
    .bdma2-service-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: .95rem;
    }

    .bdma2-visual__card {
        padding: .85rem;
    }

    .bdma2-device--front {
        width: min(230px, 100%);
    }

    .bdma2-device__screen {
        min-height: 285px;
    }

    .bdma2-ui-panel h3 {
        font-size: .95rem;
    }

    .bdma2-floating-chip {
        font-size: .78rem;
        padding: .65rem .8rem;
    }
}

/* =========================================
   BD IT CENTER FOOTER - CLEAN FIXED VERSION
========================================= */

.bdicf-footer,
.bdicf-footer * {
    box-sizing: border-box;
}

.bdicf-footer {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.10), transparent 20%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 58%, #114d5f 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 0 0 2rem;
    overflow: hidden;
    margin: 0;
}

.bdicf-panel {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
    position: relative;
    z-index: 2;
}

.bdicf-brand-block,
.bdicf-links-block {
    position: relative;
    z-index: 2;
}

.bdicf-brand-block {
    max-width: 420px;
}

.bdicf-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.bdicf-logo {
    width: auto;
    height: 78px;
    max-width: 250px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* removed brand text block */
.bdicf-brand-copy,
.bdicf-brand-copy strong,
.bdicf-brand-copy small {
    display: none !important;
}

.bdicf-desc {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: 42ch;
}

.bdicf-contact-list {
    display: grid;
    gap: 0.9rem;
}

.bdicf-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bdicf-contact:hover {
    color: #dbeafe;
    transform: translateX(2px);
}

.bdicf-contact i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    color: #7dd3fc;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.bdicf-title {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 1rem;
}

.bdicf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.72rem;
}

.bdicf-links li {
    margin: 0;
    padding: 0;
}

.bdicf-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 0.94rem;
    line-height: 1.7;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bdicf-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.bdicf-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.10) 20%,
        rgba(125, 211, 252, 0.22) 50%,
        rgba(255, 255, 255, 0.10) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    margin: 2rem 0 1.15rem;
}

.bdicf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.bdicf-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bdicf-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem 1.1rem;
    flex-wrap: wrap;
}

.bdicf-bottom-link {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.bdicf-bottom-link:hover {
    color: #ffffff;
}

/* Optional subtle glow */
.bdicf-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.14) 0%, rgba(125, 211, 252, 0) 70%);
    pointer-events: none;
}

.bdicf-footer::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.10) 0%, rgba(34, 211, 238, 0) 70%);
    pointer-events: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199.98px) {
    .bdicf-logo {
        height: 70px;
        max-width: 220px;
    }
}

@media (max-width: 991.98px) {
    .bdicf-brand-block {
        max-width: 100%;
    }

    .bdicf-desc {
        max-width: 100%;
    }

    .bdicf-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .bdicf-bottom-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .bdicf-footer {
        padding-bottom: 1.4rem;
    }

    .bdicf-panel {
        padding-top: 1.6rem;
    }

    .bdicf-logo {
        height: 60px;
        max-width: 190px;
    }

    .bdicf-desc,
    .bdicf-contact,
    .bdicf-links a,
    .bdicf-copyright,
    .bdicf-bottom-link {
        font-size: 0.92rem;
    }

    .bdicf-title {
        font-size: 1rem;
        margin-bottom: 0.85rem;
    }

    .bdicf-divider {
        margin: 1.6rem 0 1rem;
    }
}

@media (max-width: 575.98px) {
    .bdicf-logo {
        height: 52px;
        max-width: 165px;
    }

    .bdicf-contact i {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 0.9rem;
    }

    .bdicf-links {
        gap: 0.62rem;
    }

    .bdicf-bottom {
        align-items: flex-start;
    }

    .bdicf-bottom-links {
        gap: 0.8rem 1rem;
    }
}

/* =====================================================
   BDIC HOSTING MODULE
===================================================== */

.bdic-hosting-page {
    overflow-x: hidden;
    background: #f8fbff;
}

.bdic-hosting-hero {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 78% 20%, rgba(22, 163, 184, .26), transparent 30%),
        linear-gradient(135deg, #07152e 0%, #0f2f73 55%, #114d5f 100%);
    color: #fff;
    overflow: hidden;
}

.bdic-hosting-hero--sub {
    padding-top: clamp(4.5rem, 7vw, 7rem);
}

.bdic-hosting-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.bdic-hosting-hero .container {
    position: relative;
    z-index: 2;
}

.bdic-hosting-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(125, 211, 252, .12);
    border: 1px solid rgba(125, 211, 252, .25);
    color: #bae6fd;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bdic-hosting-hero h1 {
    font-size: clamp(2.1rem, 5vw, 4.7rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.04em;
    margin: 0 0 1.25rem;
    color: #fff;
}

.bdic-hosting-hero__lead {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.85;
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.bdic-hosting-hero__actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.bdic-hosting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .78rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.2;
    transition: .25s ease;
    border: 1px solid transparent;
}

.bdic-hosting-btn--primary {
    background: linear-gradient(135deg, #22c7e8, #2563eb);
    color: #fff;
    box-shadow: 0 14px 35px rgba(37, 99, 235, .24);
}

.bdic-hosting-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.bdic-hosting-btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.bdic-hosting-btn--outline:hover {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.bdic-hosting-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bdic-hosting-trust span {
    padding: .42rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    font-size: .86rem;
    font-weight: 700;
}

.bdic-hosting-visual {
    display: flex;
    justify-content: center;
}

.bdic-hosting-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 26px;
    filter: drop-shadow(0 24px 50px rgba(0,0,0,.28));
}

.bdic-hosting-server-card {
    width: min(100%, 430px);
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.bdic-server-lines {
    display: grid;
    gap: .8rem;
    margin-bottom: 1.4rem;
}

.bdic-server-lines span {
    display: block;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(125,211,252,.28), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.14);
}

.bdic-hosting-server-card h2 {
    color: #fff;
    font-weight: 900;
    margin-bottom: .6rem;
}

.bdic-hosting-server-card p {
    color: rgba(255,255,255,.72);
    margin: 0;
    line-height: 1.7;
}

.bdic-hosting-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.bdic-hosting-section--soft {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .08), transparent 26%),
        #eef6ff;
}

.bdic-hosting-section-head {
    max-width: 760px;
    margin: 0 auto 2.3rem;
}

.bdic-hosting-section-head h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #0b1220;
    margin-bottom: .9rem;
}

.bdic-hosting-section-head p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-hosting-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 47, 115, .08);
    box-shadow: 0 16px 45px rgba(15, 47, 115, .07);
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

.bdic-hosting-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 47, 115, .12);
}

.bdic-hosting-service-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff6ff, #dff8ff);
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.bdic-hosting-service-card__icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.bdic-hosting-service-card__icon span {
    font-weight: 900;
    color: #0f2f73;
    font-size: 1.4rem;
}

.bdic-hosting-service-card h3 {
    color: #0b1220;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: .7rem;
}

.bdic-hosting-service-card p {
    color: #52627a;
    line-height: 1.75;
    margin-bottom: 1rem;
    flex: 1;
}

.bdic-hosting-card-link {
    color: #2563eb;
    font-weight: 900;
}

.bdic-hosting-feature-panel,
.bdic-hosting-mini-box,
.bdic-hosting-rich-content,
.bdic-hosting-plan-card,
.bdic-hosting-faq details {
    background: #fff;
    border: 1px solid rgba(15, 47, 115, .08);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15, 47, 115, .07);
}

.bdic-hosting-feature-panel {
    padding: 2rem;
}

.bdic-hosting-feature-panel h2 {
    color: #0b1220;
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 1rem;
}

.bdic-hosting-feature-panel p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-hosting-mini-box {
    padding: 1.35rem;
    height: 100%;
}

.bdic-hosting-mini-box h3 {
    color: #0b1220;
    font-weight: 900;
    font-size: 1.08rem;
    margin-bottom: .65rem;
}

.bdic-hosting-mini-box p {
    color: #52627a;
    line-height: 1.7;
    margin: 0;
}

.bdic-hosting-rich-content {
    padding: clamp(1.3rem, 4vw, 2.5rem);
    color: #334155;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.bdic-hosting-rich-content h1,
.bdic-hosting-rich-content h2,
.bdic-hosting-rich-content h3,
.bdic-hosting-rich-content h4 {
    color: #0b1220;
    font-weight: 900;
    line-height: 1.25;
    margin-top: 1.6rem;
    margin-bottom: .85rem;
}

.bdic-hosting-rich-content > h2:first-child {
    margin-top: 0;
}

.bdic-hosting-rich-content p {
    margin-bottom: 1rem;
}

.bdic-hosting-rich-content ul,
.bdic-hosting-rich-content ol {
    padding-left: 1.3rem;
    margin-bottom: 1.2rem;
}

.bdic-hosting-rich-content img,
.bdic-hosting-rich-content iframe,
.bdic-hosting-rich-content table {
    max-width: 100%;
}

.bdic-hosting-rich-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.bdic-hosting-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: .9rem;
}

.bdic-hosting-faq details {
    padding: 1.1rem 1.25rem;
}

.bdic-hosting-faq summary {
    cursor: pointer;
    color: #0b1220;
    font-weight: 900;
    line-height: 1.5;
}

.bdic-hosting-faq details div {
    color: #52627a;
    line-height: 1.8;
    margin-top: .9rem;
}

.bdic-hosting-plan-tabs {
    display: flex;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bdic-plan-tab {
    border: 1px solid rgba(37,99,235,.16);
    background: #fff;
    color: #2563eb;
    font-weight: 900;
    border-radius: 999px;
    padding: .72rem 1.1rem;
    cursor: pointer;
    transition: .2s ease;
}

.bdic-plan-tab.active,
.bdic-plan-tab:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37,99,235,.18);
}

.bdic-hosting-plan-card {
    height: 100%;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.bdic-hosting-plan-card.is-featured {
    border-color: rgba(37, 99, 235, .32);
    box-shadow: 0 24px 65px rgba(37, 99, 235, .16);
}

.bdic-plan-card-top {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    margin-bottom: 1rem;
}

.bdic-plan-card-top span,
.bdic-plan-card-top strong,
.bdic-plan-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .38rem .65rem;
    font-size: .76rem;
    font-weight: 900;
}

.bdic-plan-card-top span {
    background: #eff6ff;
    color: #0f2f73;
}

.bdic-plan-card-top strong {
    background: #dcfce7;
    color: #15803d;
}

.bdic-plan-badge {
    background: linear-gradient(135deg, #22c7e8, #2563eb);
    color: #fff;
    margin-bottom: .85rem;
}

.bdic-hosting-plan-card h3 {
    color: #0b1220;
    font-weight: 900;
    font-size: 1.35rem;
    margin-bottom: .65rem;
}

.bdic-plan-subtitle {
    color: #52627a;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.bdic-plan-price {
    margin: 1rem 0;
}

.bdic-plan-price del {
    color: #94a3b8;
    font-weight: 800;
    margin-right: .5rem;
}

.bdic-plan-price strong {
    color: #0b1220;
    font-size: 2.2rem;
    font-weight: 950;
    line-height: 1;
}

.bdic-plan-price span {
    color: #52627a;
    font-weight: 800;
}

.bdic-plan-order {
    width: 100%;
    margin-bottom: 1rem;
}

.bdic-plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .62rem;
}

.bdic-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #334155;
    line-height: 1.55;
    padding: .65rem .7rem;
    background: #f8fbff;
    border-radius: 14px;
}

.bdic-plan-features li span {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 999px;
    font-weight: 900;
}

.bdic-plan-features li.available span {
    background: #dcfce7;
    color: #15803d;
}

.bdic-plan-features li.unavailable {
    color: #94a3b8;
}

.bdic-plan-features li.unavailable span {
    background: #fee2e2;
    color: #dc2626;
}

@media (max-width: 991.98px) {
    .bdic-hosting-hero {
        text-align: center;
    }

    .bdic-hosting-hero__actions,
    .bdic-hosting-trust {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .bdic-hosting-hero {
        padding-top: 4rem;
    }

    .bdic-hosting-hero__actions {
        flex-direction: column;
    }

    .bdic-hosting-btn {
        width: 100%;
    }

    .bdic-plan-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .bdic-hosting-service-card,
    .bdic-hosting-plan-card,
    .bdic-hosting-feature-panel,
    .bdic-hosting-mini-box {
        border-radius: 18px;
    }
}

/* =====================================================
   BDIC WEB DEVELOPMENT MODULE
===================================================== */

.bdic-webdev-page {
    overflow-x: hidden;
    background: #f8fbff;
}

.bdic-webdev-hero {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 78% 20%, rgba(59, 130, 246, .16), transparent 28%),
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, .12), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 52%, #eaffff 100%);
    color: #0b1220;
    overflow: hidden;
}

.bdic-webdev-hero--sub {
    padding-top: clamp(4.5rem, 7vw, 7rem);
}

.bdic-webdev-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(18,59,143,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,59,143,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.bdic-webdev-hero .container {
    position: relative;
    z-index: 2;
}

.bdic-webdev-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .52rem .9rem;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #123b8f;
    font-weight: 900;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bdic-webdev-hero h1 {
    font-size: clamp(2.25rem, 5vw, 5rem);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -.05em;
    color: #080f2a;
    margin-bottom: 1.2rem;
}

.bdic-webdev-hero__lead {
    color: #52627a;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.85;
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.bdic-webdev-hero__actions,
.bdic-webdev-trust {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.bdic-webdev-hero__actions {
    margin-bottom: 1.3rem;
}

.bdic-webdev-trust span {
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7eef9;
    color: #52627a;
    font-weight: 800;
    font-size: .88rem;
}

.bdic-webdev-btn {
    min-height: 48px;
    padding: .78rem 1.12rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .22s ease;
    line-height: 1.2;
}

.bdic-webdev-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 14px 34px rgba(79, 70, 229, .22);
}

.bdic-webdev-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.bdic-webdev-btn--outline,
.bdic-webdev-btn--preview {
    color: #4f46e5;
    background: #fff;
    border-color: rgba(79,70,229,.24);
}

.bdic-webdev-btn--outline:hover,
.bdic-webdev-btn--preview:hover {
    color: #4f46e5;
    background: #f5f3ff;
}

.bdic-webdev-visual {
    display: flex;
    justify-content: center;
}

.bdic-webdev-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(15,47,115,.16);
}

.bdic-webdev-dashboard-card {
    width: min(100%, 450px);
    padding: 2rem;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e7eef9;
    box-shadow: 0 30px 80px rgba(15,47,115,.14);
}

.bdic-webdev-window {
    display: grid;
    gap: .8rem;
    margin-bottom: 1.3rem;
}

.bdic-webdev-window div {
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(90deg, #eef2ff, #e0f2fe);
    border: 1px solid #e7eef9;
}

.bdic-webdev-dashboard-card h2 {
    font-weight: 950;
    color: #080f2a;
}

.bdic-webdev-dashboard-card p {
    color: #52627a;
    margin: 0;
    line-height: 1.7;
}

.bdic-webdev-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.bdic-webdev-section--soft {
    background:
        radial-gradient(circle at top left, rgba(79,70,229,.08), transparent 28%),
        #eef6ff;
}

.bdic-webdev-section-head {
    max-width: 780px;
    margin: 0 auto 2.4rem;
}

.bdic-webdev-section-head h2 {
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.035em;
    color: #080f2a;
    margin-bottom: .9rem;
}

.bdic-webdev-section-head p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-webdev-service-card,
.bdic-webdev-info-panel,
.bdic-webdev-mini-box,
.bdic-webdev-rich-content,
.bdic-webdev-faq details,
.bdic-webdev-plan-card,
.bdic-webdev-plan-trust {
    background: #fff;
    border: 1px solid rgba(15,47,115,.08);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15,47,115,.07);
}

.bdic-webdev-service-card {
    height: 100%;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

.bdic-webdev-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15,47,115,.12);
}

.bdic-webdev-service-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef2ff, #e0f2fe);
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.bdic-webdev-service-card__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.bdic-webdev-service-card__icon span {
    color: #4f46e5;
    font-size: 1.35rem;
    font-weight: 950;
}

.bdic-webdev-service-card h3 {
    color: #080f2a;
    font-weight: 950;
    font-size: 1.18rem;
    margin-bottom: .7rem;
}

.bdic-webdev-service-card p {
    color: #52627a;
    line-height: 1.75;
    flex: 1;
}

.bdic-webdev-service-card strong {
    color: #4f46e5;
}

.bdic-webdev-info-panel,
.bdic-webdev-mini-box {
    padding: 1.55rem;
}

.bdic-webdev-info-panel h2,
.bdic-webdev-mini-box h3 {
    color: #080f2a;
    font-weight: 950;
}

.bdic-webdev-info-panel p,
.bdic-webdev-mini-box p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-webdev-rich-content {
    padding: clamp(1.3rem, 4vw, 2.5rem);
    color: #334155;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.bdic-webdev-rich-content h1,
.bdic-webdev-rich-content h2,
.bdic-webdev-rich-content h3,
.bdic-webdev-rich-content h4 {
    color: #080f2a;
    font-weight: 950;
    line-height: 1.25;
    margin-top: 1.6rem;
    margin-bottom: .85rem;
}

.bdic-webdev-rich-content > h2:first-child {
    margin-top: 0;
}

.bdic-webdev-rich-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.bdic-webdev-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: .9rem;
}

.bdic-webdev-faq details {
    padding: 1.1rem 1.25rem;
}

.bdic-webdev-faq summary {
    cursor: pointer;
    color: #080f2a;
    font-weight: 950;
}

.bdic-webdev-faq details div {
    color: #52627a;
    line-height: 1.8;
    margin-top: .9rem;
}

/* Website Plans */
.bdic-webdev-plan-tabs {
    width: min(520px, 100%);
    margin: 0 auto 2.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e7eef9;
    border-radius: 14px;
    padding: .35rem;
    box-shadow: 0 12px 32px rgba(15,47,115,.06);
}

.bdic-webdev-plan-tab {
    border: 0;
    background: transparent;
    color: #52627a;
    font-weight: 900;
    border-radius: 10px;
    padding: .85rem 1rem;
    cursor: pointer;
}

.bdic-webdev-plan-tab.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 12px 26px rgba(79,70,229,.22);
}

.bdic-webdev-plan-card {
    position: relative;
    height: 100%;
    padding: 1.25rem;
    overflow: hidden;
    transition: .25s ease;
}

.bdic-webdev-plan-card:hover {
    transform: translateY(-4px);
}

.bdic-webdev-plan-card.is-featured {
    border-color: rgba(124,58,237,.44);
    box-shadow: 0 24px 65px rgba(124,58,237,.16);
}

.bdic-webdev-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: .48rem 1.2rem;
    border-radius: 0 0 14px 14px;
    font-size: .78rem;
    font-weight: 950;
    z-index: 3;
}

.bdic-webdev-plan-top {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    margin-bottom: 1.1rem;
    padding-top: .4rem;
}

.bdic-webdev-plan-top span,
.bdic-webdev-plan-top strong {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: .38rem .62rem;
    font-size: .75rem;
    font-weight: 950;
}

.bdic-webdev-plan-top span {
    background: #eef2ff;
    color: #4f46e5;
}

.bdic-webdev-plan-top span.tech-wordpress {
    background: #dcfce7;
    color: #15803d;
}

.bdic-webdev-plan-top span.tech-raw-php {
    background: #dbeafe;
    color: #1d4ed8;
}

.bdic-webdev-plan-top strong {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-webdev-plan-card h3 {
    color: #080f2a;
    font-size: 1.25rem;
    font-weight: 950;
    text-align: center;
    margin-bottom: .65rem;
}

.bdic-webdev-plan-subtitle {
    color: #52627a;
    line-height: 1.65;
    text-align: center;
    min-height: 54px;
}

.bdic-webdev-plan-price {
    text-align: center;
    margin: 1rem 0;
}

.bdic-webdev-plan-price del {
    color: #94a3b8;
    font-weight: 800;
    margin-right: .5rem;
}

.bdic-webdev-plan-price strong {
    color: #4f46e5;
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.bdic-webdev-plan-price span {
    display: inline-flex;
    margin-top: .4rem;
    padding: .25rem .6rem;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-webdev-plan-image {
    height: 145px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e7eef9;
    margin-bottom: 1rem;
}

.bdic-webdev-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdic-webdev-plan-placeholder {
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #eef2ff, #e0f2fe);
}

.bdic-webdev-plan-placeholder span {
    color: #4f46e5;
    font-weight: 950;
}

.bdic-webdev-plan-placeholder strong {
    color: #080f2a;
    font-weight: 950;
}

.bdic-webdev-plan-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.bdic-webdev-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #334155;
    line-height: 1.5;
}

.bdic-webdev-plan-features li span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-webdev-plan-features li.available span {
    background: #dcfce7;
    color: #15803d;
}

.bdic-webdev-plan-features li.unavailable {
    color: #94a3b8;
}

.bdic-webdev-plan-features li.unavailable span {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-webdev-plan-order,
.bdic-webdev-btn--preview {
    width: 100%;
    margin-bottom: .7rem;
}

.bdic-webdev-preview-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .8rem;
}

.bdic-webdev-preview-thumbs div {
    text-align: center;
}

.bdic-webdev-preview-thumbs img,
.bdic-webdev-preview-thumbs div > div {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #eef2ff;
    border: 1px solid #e7eef9;
}

.bdic-webdev-preview-thumbs small {
    display: block;
    margin-top: .3rem;
    color: #52627a;
    font-weight: 800;
}

.bdic-webdev-plan-trust {
    margin-top: 1.5rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}

.bdic-webdev-plan-trust div {
    padding: .8rem;
    border-right: 1px solid #e7eef9;
}

.bdic-webdev-plan-trust div:last-child {
    border-right: 0;
}

.bdic-webdev-plan-trust strong {
    display: block;
    color: #080f2a;
    font-weight: 950;
}

.bdic-webdev-plan-trust span {
    color: #52627a;
    font-size: .88rem;
}

.bdic-webdev-preview-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.bdic-webdev-empty-preview {
    min-height: 240px;
    display: grid;
    place-items: center;
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    color: #64748b;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .bdic-webdev-hero {
        text-align: center;
    }

    .bdic-webdev-hero__actions,
    .bdic-webdev-trust {
        justify-content: center;
    }

    .bdic-webdev-plan-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .bdic-webdev-plan-trust div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .bdic-webdev-hero__actions {
        flex-direction: column;
    }

    .bdic-webdev-btn {
        width: 100%;
    }

    .bdic-webdev-plan-tabs {
        grid-template-columns: 1fr;
    }

    .bdic-webdev-plan-trust {
        grid-template-columns: 1fr;
    }

    .bdic-webdev-plan-trust div {
        border-right: 0;
        border-bottom: 1px solid #e7eef9;
    }

    .bdic-webdev-plan-trust div:last-child {
        border-bottom: 0;
    }
}

/* =====================================================
   BDIC MOBILE APP DEVELOPMENT MODULE
===================================================== */

.bdic-app-page {
    overflow-x: hidden;
    background: #f8fbff;
}

.bdic-app-hero {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .16), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(14, 165, 233, .13), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #ecfeff 100%);
    color: #0b1220;
    overflow: hidden;
}

.bdic-app-hero-sub {
    padding-top: clamp(4.5rem, 7vw, 7rem);
}

.bdic-app-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image:
        linear-gradient(rgba(18,59,143,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,59,143,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.bdic-app-hero .container {
    position: relative;
    z-index: 2;
}

.bdic-app-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .52rem .9rem;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #123b8f;
    font-weight: 950;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bdic-app-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -.05em;
    color: #080f2a;
    margin-bottom: 1.2rem;
}

.bdic-app-lead {
    color: #52627a;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.85;
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.bdic-app-actions,
.bdic-app-trust {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.bdic-app-actions {
    margin-bottom: 1.3rem;
}

.bdic-app-trust span {
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7eef9;
    color: #52627a;
    font-weight: 850;
    font-size: .88rem;
}

.bdic-app-btn {
    min-height: 48px;
    padding: .78rem 1.12rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .22s ease;
    line-height: 1.2;
}

.bdic-app-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    box-shadow: 0 14px 34px rgba(37, 99, 235, .22);
}

.bdic-app-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.bdic-app-btn-outline,
.bdic-app-btn-preview {
    color: #2563eb;
    background: #fff;
    border-color: rgba(37, 99, 235, .24);
}

.bdic-app-btn-outline:hover,
.bdic-app-btn-preview:hover {
    color: #2563eb;
    background: #eff6ff;
}

.bdic-app-visual {
    display: flex;
    justify-content: center;
}

.bdic-app-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(15,47,115,.16);
}

.bdic-app-phone-showcase {
    position: relative;
    width: min(100%, 460px);
    min-height: 420px;
    display: grid;
    place-items: center;
}

.bdic-app-phone {
    width: 220px;
    height: 410px;
    border-radius: 38px;
    background: #0b1220;
    padding: 14px;
    box-shadow: 0 35px 90px rgba(15,47,115,.22);
    border: 7px solid #111827;
}

.bdic-app-phone-top {
    width: 70px;
    height: 8px;
    border-radius: 999px;
    background: #1f2937;
    margin: 0 auto 12px;
}

.bdic-app-screen {
    height: calc(100% - 20px);
    border-radius: 28px;
    background: linear-gradient(180deg, #eff6ff, #ecfeff);
    padding: 18px;
}

.bdic-app-screen-card {
    height: 120px;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    margin-bottom: 18px;
}

.bdic-app-screen-line {
    height: 12px;
    border-radius: 999px;
    background: #cbd5e1;
    margin-bottom: 10px;
}

.bdic-app-screen-line.short {
    width: 70%;
}

.bdic-app-screen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.bdic-app-screen-grid span {
    height: 58px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dbeafe;
}

.bdic-app-dashboard-mini {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 230px;
    padding: 1.2rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e7eef9;
    box-shadow: 0 24px 70px rgba(15,47,115,.15);
}

.bdic-app-dashboard-mini strong {
    display: block;
    color: #080f2a;
    font-weight: 950;
    margin-bottom: .4rem;
}

.bdic-app-dashboard-mini span {
    color: #52627a;
    line-height: 1.6;
}

.bdic-app-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.bdic-app-section-soft {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 28%),
        #eef6ff;
}

.bdic-app-section-head {
    max-width: 780px;
    margin: 0 auto 2.4rem;
}

.bdic-app-section-head h2 {
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.035em;
    color: #080f2a;
    margin-bottom: .9rem;
}

.bdic-app-section-head p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-app-service-card,
.bdic-app-feature-box,
.bdic-app-rich-content,
.bdic-app-faq details,
.bdic-app-plan-card,
.bdic-app-plan-trust {
    background: #fff;
    border: 1px solid rgba(15,47,115,.08);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15,47,115,.07);
}

.bdic-app-service-card {
    height: 100%;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

.bdic-app-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15,47,115,.12);
}

.bdic-app-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.bdic-app-service-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.bdic-app-service-icon span {
    color: #2563eb;
    font-size: 1.35rem;
    font-weight: 950;
}

.bdic-app-service-card h3 {
    color: #080f2a;
    font-weight: 950;
    font-size: 1.18rem;
    margin-bottom: .7rem;
}

.bdic-app-service-card p {
    color: #52627a;
    line-height: 1.75;
    flex: 1;
}

.bdic-app-service-card strong {
    color: #2563eb;
}

.bdic-app-feature-box {
    padding: 1.4rem;
    height: 100%;
}

.bdic-app-feature-box h3 {
    color: #080f2a;
    font-weight: 950;
    font-size: 1.05rem;
}

.bdic-app-feature-box p {
    color: #52627a;
    line-height: 1.75;
    margin: 0;
}

.bdic-app-rich-content {
    padding: clamp(1.3rem, 4vw, 2.5rem);
    color: #334155;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.bdic-app-rich-content h1,
.bdic-app-rich-content h2,
.bdic-app-rich-content h3,
.bdic-app-rich-content h4 {
    color: #080f2a;
    font-weight: 950;
    line-height: 1.25;
    margin-top: 1.6rem;
    margin-bottom: .85rem;
}

.bdic-app-rich-content > h2:first-child {
    margin-top: 0;
}

.bdic-app-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: .9rem;
}

.bdic-app-faq details {
    padding: 1.1rem 1.25rem;
}

.bdic-app-faq summary {
    cursor: pointer;
    color: #080f2a;
    font-weight: 950;
}

.bdic-app-faq details div {
    color: #52627a;
    line-height: 1.8;
    margin-top: .9rem;
}

/* App Plans */
.bdic-app-plan-tabs {
    width: min(540px, 100%);
    margin: 0 auto 2.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e7eef9;
    border-radius: 14px;
    padding: .35rem;
    box-shadow: 0 12px 32px rgba(15,47,115,.06);
}

.bdic-app-plan-tab {
    border: 0;
    background: transparent;
    color: #52627a;
    font-weight: 950;
    border-radius: 10px;
    padding: .85rem 1rem;
    cursor: pointer;
}

.bdic-app-plan-tab.active {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    box-shadow: 0 12px 26px rgba(37,99,235,.22);
}

.bdic-app-plan-card {
    position: relative;
    height: 100%;
    padding: 1.25rem;
    overflow: hidden;
    transition: .25s ease;
}

.bdic-app-plan-card:hover {
    transform: translateY(-4px);
}

.bdic-app-plan-card.is-featured {
    border-color: rgba(79,70,229,.44);
    box-shadow: 0 24px 65px rgba(79,70,229,.16);
}

.bdic-app-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    padding: .48rem 1.2rem;
    border-radius: 0 0 14px 14px;
    font-size: .78rem;
    font-weight: 950;
    z-index: 3;
}

.bdic-app-plan-top {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    margin-bottom: 1.1rem;
    padding-top: .4rem;
}

.bdic-app-plan-top span,
.bdic-app-plan-top strong {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: .38rem .62rem;
    font-size: .75rem;
    font-weight: 950;
}

.bdic-app-plan-top span {
    background: #e0f2fe;
    color: #0369a1;
}

.bdic-app-plan-top span.tech-native-android {
    background: #dcfce7;
    color: #15803d;
}

.bdic-app-plan-top span.tech-flutter {
    background: #dbeafe;
    color: #2563eb;
}

.bdic-app-plan-top span.tech-react-native {
    background: #cffafe;
    color: #0891b2;
}

.bdic-app-plan-top strong {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-app-plan-card h3 {
    color: #080f2a;
    font-size: 1.2rem;
    font-weight: 950;
    text-align: center;
    margin-bottom: .8rem;
}

.bdic-app-plan-price {
    text-align: center;
    margin: 1rem 0;
}

.bdic-app-plan-price del {
    color: #94a3b8;
    font-weight: 850;
    margin-right: .5rem;
}

.bdic-app-plan-price strong {
    color: #2563eb;
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.bdic-app-plan-price span {
    display: inline-flex;
    margin-top: .4rem;
    padding: .25rem .6rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-app-plan-image {
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e7eef9;
    margin-bottom: 1rem;
}

.bdic-app-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdic-app-plan-placeholder {
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.bdic-app-plan-placeholder span {
    color: #2563eb;
    font-weight: 950;
}

.bdic-app-plan-placeholder strong {
    color: #080f2a;
    font-weight: 950;
}

.bdic-app-plan-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .52rem;
}

.bdic-app-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #334155;
    line-height: 1.5;
}

.bdic-app-plan-features li span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-app-plan-features li.available span {
    background: #dcfce7;
    color: #15803d;
}

.bdic-app-plan-features li.unavailable {
    color: #94a3b8;
}

.bdic-app-plan-features li.unavailable span {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-app-plan-order,
.bdic-app-btn-preview {
    width: 100%;
    margin-bottom: .7rem;
}

.bdic-app-preview-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .8rem;
}

.bdic-app-preview-thumbs div {
    text-align: center;
}

.bdic-app-preview-thumbs img,
.bdic-app-preview-thumbs div > div {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #eff6ff;
    border: 1px solid #e7eef9;
}

.bdic-app-preview-thumbs small {
    display: block;
    margin-top: .3rem;
    color: #52627a;
    font-weight: 850;
}

.bdic-app-plan-trust {
    margin-top: 1.5rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}

.bdic-app-plan-trust div {
    padding: .8rem;
    border-right: 1px solid #e7eef9;
}

.bdic-app-plan-trust div:last-child {
    border-right: 0;
}

.bdic-app-plan-trust strong {
    display: block;
    color: #080f2a;
    font-weight: 950;
}

.bdic-app-plan-trust span {
    color: #52627a;
    font-size: .88rem;
}

.bdic-app-preview-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.bdic-app-empty-preview {
    min-height: 240px;
    display: grid;
    place-items: center;
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    color: #64748b;
    font-weight: 950;
}

@media (max-width: 991.98px) {
    .bdic-app-hero {
        text-align: center;
    }

    .bdic-app-actions,
    .bdic-app-trust {
        justify-content: center;
    }

    .bdic-app-dashboard-mini {
        right: 50%;
        transform: translateX(50%);
    }

    .bdic-app-plan-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .bdic-app-plan-trust div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .bdic-app-actions {
        flex-direction: column;
    }

    .bdic-app-btn {
        width: 100%;
    }

    .bdic-app-plan-tabs {
        grid-template-columns: 1fr;
    }

    .bdic-app-plan-trust {
        grid-template-columns: 1fr;
    }

    .bdic-app-plan-trust div {
        border-right: 0;
        border-bottom: 1px solid #e7eef9;
    }

    .bdic-app-plan-trust div:last-child {
        border-bottom: 0;
    }

    .bdic-app-phone-showcase {
        min-height: 470px;
    }
}

/* =====================================================
   BDIC GRAPHICS DESIGN MODULE
===================================================== */

.bdic-graphics-page {
    overflow-x: hidden;
    background: #f8fbff;
}

.bdic-graphics-hero {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, .16), transparent 30%),
        radial-gradient(circle at 14% 18%, rgba(20, 184, 166, .12), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #f5f3ff 52%, #ecfeff 100%);
    color: #0b1220;
    overflow: hidden;
}

.bdic-graphics-hero-sub {
    padding-top: clamp(4.5rem, 7vw, 7rem);
}

.bdic-graphics-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .36;
    background-image:
        linear-gradient(rgba(124,58,237,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.bdic-graphics-hero .container {
    position: relative;
    z-index: 2;
}

.bdic-graphics-kicker {
    display: inline-flex;
    align-items: center;
    padding: .52rem .9rem;
    border-radius: 999px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    color: #6d28d9;
    font-weight: 950;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bdic-graphics-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -.05em;
    color: #080f2a;
    margin-bottom: 1.2rem;
}

.bdic-graphics-lead {
    color: #52627a;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.85;
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.bdic-graphics-actions,
.bdic-graphics-trust {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.bdic-graphics-actions {
    margin-bottom: 1.3rem;
}

.bdic-graphics-trust span {
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7eef9;
    color: #52627a;
    font-weight: 850;
    font-size: .88rem;
}

.bdic-graphics-btn {
    min-height: 48px;
    padding: .78rem 1.12rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .22s ease;
    line-height: 1.2;
}

.bdic-graphics-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 14px 34px rgba(124, 58, 237, .22);
}

.bdic-graphics-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.bdic-graphics-btn-outline,
.bdic-graphics-btn-preview {
    color: #6d28d9;
    background: #fff;
    border-color: rgba(124, 58, 237, .24);
}

.bdic-graphics-btn-outline:hover,
.bdic-graphics-btn-preview:hover {
    color: #6d28d9;
    background: #f5f3ff;
}

.bdic-graphics-visual {
    display: flex;
    justify-content: center;
}

.bdic-graphics-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(15,47,115,.16);
}

.bdic-graphics-showcase {
    position: relative;
    width: min(100%, 480px);
    min-height: 420px;
    display: grid;
    place-items: center;
}

.bdic-graphics-artboard {
    width: 390px;
    max-width: 100%;
    padding: 20px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e7eef9;
    box-shadow: 0 35px 90px rgba(15,47,115,.18);
}

.design-block {
    height: 82px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.design-block.dark {
    background: linear-gradient(135deg, #0f172a, #312e81);
}

.design-block.light {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border: 1px solid #e2e8f0;
}

.design-block.accent {
    background: linear-gradient(135deg, #7c3aed, #14b8a6);
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.design-grid span {
    height: 58px;
    border-radius: 16px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.bdic-graphics-floating-card {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 240px;
    padding: 1.2rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e7eef9;
    box-shadow: 0 24px 70px rgba(15,47,115,.15);
}

.bdic-graphics-floating-card strong {
    display: block;
    color: #080f2a;
    font-weight: 950;
    margin-bottom: .4rem;
}

.bdic-graphics-floating-card span {
    color: #52627a;
    line-height: 1.6;
}

.bdic-graphics-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.bdic-graphics-section-soft {
    background:
        radial-gradient(circle at top left, rgba(124,58,237,.08), transparent 28%),
        #f5f3ff;
}

.bdic-graphics-section-head {
    max-width: 780px;
    margin: 0 auto 2.4rem;
}

.bdic-graphics-section-head h2 {
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.035em;
    color: #080f2a;
    margin-bottom: .9rem;
}

.bdic-graphics-section-head p {
    color: #52627a;
    line-height: 1.8;
    margin: 0;
}

.bdic-graphics-service-card,
.bdic-graphics-feature-box,
.bdic-graphics-rich-content,
.bdic-graphics-faq details,
.bdic-graphics-plan-card,
.bdic-graphics-plan-trust {
    background: #fff;
    border: 1px solid rgba(15,47,115,.08);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15,47,115,.07);
}

.bdic-graphics-service-card {
    height: 100%;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

.bdic-graphics-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15,47,115,.12);
}

.bdic-graphics-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f5f3ff, #ccfbf1);
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.bdic-graphics-service-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.bdic-graphics-service-icon span {
    color: #7c3aed;
    font-size: 1.35rem;
    font-weight: 950;
}

.bdic-graphics-service-card h3 {
    color: #080f2a;
    font-weight: 950;
    font-size: 1.18rem;
    margin-bottom: .7rem;
}

.bdic-graphics-service-card p {
    color: #52627a;
    line-height: 1.75;
    flex: 1;
}

.bdic-graphics-service-card strong {
    color: #7c3aed;
}

.bdic-graphics-feature-box {
    padding: 1.4rem;
    height: 100%;
}

.bdic-graphics-feature-box h3 {
    color: #080f2a;
    font-weight: 950;
    font-size: 1.05rem;
}

.bdic-graphics-feature-box p {
    color: #52627a;
    line-height: 1.75;
    margin: 0;
}

.bdic-graphics-rich-content {
    padding: clamp(1.3rem, 4vw, 2.5rem);
    color: #334155;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.bdic-graphics-rich-content h1,
.bdic-graphics-rich-content h2,
.bdic-graphics-rich-content h3,
.bdic-graphics-rich-content h4 {
    color: #080f2a;
    font-weight: 950;
    line-height: 1.25;
    margin-top: 1.6rem;
    margin-bottom: .85rem;
}

.bdic-graphics-rich-content > h2:first-child {
    margin-top: 0;
}

.bdic-graphics-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: .9rem;
}

.bdic-graphics-faq details {
    padding: 1.1rem 1.25rem;
}

.bdic-graphics-faq summary {
    cursor: pointer;
    color: #080f2a;
    font-weight: 950;
}

.bdic-graphics-faq details div {
    color: #52627a;
    line-height: 1.8;
    margin-top: .9rem;
}

/* Graphics Plans */
.bdic-graphics-plan-tabs {
    width: min(540px, 100%);
    margin: 0 auto 2.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e7eef9;
    border-radius: 14px;
    padding: .35rem;
    box-shadow: 0 12px 32px rgba(15,47,115,.06);
}

.bdic-graphics-plan-tab {
    border: 0;
    background: transparent;
    color: #52627a;
    font-weight: 950;
    border-radius: 10px;
    padding: .85rem 1rem;
    cursor: pointer;
}

.bdic-graphics-plan-tab.active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 12px 26px rgba(124,58,237,.22);
}

.bdic-graphics-plan-card {
    position: relative;
    height: 100%;
    padding: 1.25rem;
    overflow: hidden;
    transition: .25s ease;
}

.bdic-graphics-plan-card:hover {
    transform: translateY(-4px);
}

.bdic-graphics-plan-card.is-featured {
    border-color: rgba(124,58,237,.44);
    box-shadow: 0 24px 65px rgba(124,58,237,.16);
}

.bdic-graphics-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    padding: .48rem 1.2rem;
    border-radius: 0 0 14px 14px;
    font-size: .78rem;
    font-weight: 950;
    z-index: 3;
}

.bdic-graphics-plan-top {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
    margin-bottom: 1.1rem;
    padding-top: .4rem;
}

.bdic-graphics-plan-top span,
.bdic-graphics-plan-top strong {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: .38rem .62rem;
    font-size: .75rem;
    font-weight: 950;
}

.bdic-graphics-plan-top span {
    background: #f5f3ff;
    color: #7c3aed;
}

.bdic-graphics-plan-top span.tool-photoshop {
    background: #dbeafe;
    color: #2563eb;
}

.bdic-graphics-plan-top span.tool-illustrator {
    background: #ede9fe;
    color: #7c3aed;
}

.bdic-graphics-plan-top span.tool-figma {
    background: #cffafe;
    color: #0891b2;
}

.bdic-graphics-plan-top span.tool-canva {
    background: #dcfce7;
    color: #15803d;
}

.bdic-graphics-plan-top strong {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-graphics-plan-card h3 {
    color: #080f2a;
    font-size: 1.2rem;
    font-weight: 950;
    text-align: center;
    margin-bottom: .8rem;
}

.bdic-graphics-plan-price {
    text-align: center;
    margin: 1rem 0;
}

.bdic-graphics-plan-price del {
    color: #94a3b8;
    font-weight: 850;
    margin-right: .5rem;
}

.bdic-graphics-plan-price strong {
    color: #4f46e5;
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.bdic-graphics-plan-price span {
    display: inline-flex;
    margin-top: .4rem;
    padding: .25rem .6rem;
    background: #f5f3ff;
    color: #7c3aed;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-graphics-plan-image {
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e7eef9;
    margin-bottom: 1rem;
}

.bdic-graphics-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdic-graphics-plan-placeholder {
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f5f3ff, #ccfbf1);
}

.bdic-graphics-plan-placeholder span {
    color: #7c3aed;
    font-weight: 950;
}

.bdic-graphics-plan-placeholder strong {
    color: #080f2a;
    font-weight: 950;
}

.bdic-graphics-plan-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .52rem;
}

.bdic-graphics-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #334155;
    line-height: 1.5;
}

.bdic-graphics-plan-features li span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 950;
}

.bdic-graphics-plan-features li.available span {
    background: #dcfce7;
    color: #15803d;
}

.bdic-graphics-plan-features li.unavailable {
    color: #94a3b8;
}

.bdic-graphics-plan-features li.unavailable span {
    background: #fee2e2;
    color: #dc2626;
}

.bdic-graphics-plan-order,
.bdic-graphics-btn-preview {
    width: 100%;
    margin-bottom: .7rem;
}

.bdic-graphics-preview-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .8rem;
}

.bdic-graphics-preview-thumbs div {
    text-align: center;
}

.bdic-graphics-preview-thumbs img,
.bdic-graphics-preview-thumbs div > div {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #f5f3ff;
    border: 1px solid #e7eef9;
}

.bdic-graphics-preview-thumbs small {
    display: block;
    margin-top: .3rem;
    color: #52627a;
    font-weight: 850;
}

.bdic-graphics-plan-trust {
    margin-top: 1.5rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}

.bdic-graphics-plan-trust div {
    padding: .8rem;
    border-right: 1px solid #e7eef9;
}

.bdic-graphics-plan-trust div:last-child {
    border-right: 0;
}

.bdic-graphics-plan-trust strong {
    display: block;
    color: #080f2a;
    font-weight: 950;
}

.bdic-graphics-plan-trust span {
    color: #52627a;
    font-size: .88rem;
}

.bdic-graphics-preview-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.bdic-graphics-empty-preview {
    min-height: 240px;
    display: grid;
    place-items: center;
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    color: #64748b;
    font-weight: 950;
}

@media (max-width: 991.98px) {
    .bdic-graphics-hero {
        text-align: center;
    }

    .bdic-graphics-actions,
    .bdic-graphics-trust {
        justify-content: center;
    }

    .bdic-graphics-floating-card {
        right: 50%;
        transform: translateX(50%);
    }

    .bdic-graphics-plan-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .bdic-graphics-plan-trust div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .bdic-graphics-actions {
        flex-direction: column;
    }

    .bdic-graphics-btn {
        width: 100%;
    }

    .bdic-graphics-plan-tabs {
        grid-template-columns: 1fr;
    }

    .bdic-graphics-plan-trust {
        grid-template-columns: 1fr;
    }

    .bdic-graphics-plan-trust div {
        border-right: 0;
        border-bottom: 1px solid #e7eef9;
    }

    .bdic-graphics-plan-trust div:last-child {
        border-bottom: 0;
    }

    .bdic-graphics-showcase {
        min-height: 470px;
    }
}
/* =====================================================
   BDIC DIGITAL MARKETING MODULE
===================================================== */

.bdic-marketing-page{overflow-x:hidden;background:#f8fbff}
.bdic-marketing-hero{position:relative;padding:clamp(5rem,8vw,8rem) 0 clamp(4rem,7vw,6rem);background:radial-gradient(circle at 80% 20%,rgba(37,99,235,.16),transparent 30%),radial-gradient(circle at 14% 18%,rgba(16,185,129,.12),transparent 28%),linear-gradient(135deg,#f8fbff 0%,#eef6ff 52%,#ecfdf5 100%);color:#0b1220;overflow:hidden}
.bdic-marketing-hero-sub{padding-top:clamp(4.5rem,7vw,7rem)}
.bdic-marketing-hero-pattern{position:absolute;inset:0;opacity:.36;background-image:linear-gradient(rgba(37,99,235,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(37,99,235,.08) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(to bottom,#000,transparent 92%)}
.bdic-marketing-hero .container{position:relative;z-index:2}
.bdic-marketing-kicker{display:inline-flex;align-items:center;padding:.52rem .9rem;border-radius:999px;background:#eff6ff;border:1px solid #dbeafe;color:#2563eb;font-weight:950;font-size:.8rem;letter-spacing:.04em;text-transform:uppercase;margin-bottom:1rem}
.bdic-marketing-hero h1{font-size:clamp(2.2rem,5vw,4.8rem);line-height:1.04;font-weight:950;letter-spacing:-.05em;color:#080f2a;margin-bottom:1.2rem}
.bdic-marketing-lead{color:#52627a;font-size:clamp(1rem,1.4vw,1.22rem);line-height:1.85;max-width:760px;margin-bottom:1.6rem}
.bdic-marketing-actions,.bdic-marketing-trust{display:flex;gap:.8rem;flex-wrap:wrap}
.bdic-marketing-actions{margin-bottom:1.3rem}
.bdic-marketing-trust span{padding:.45rem .75rem;border-radius:999px;background:#fff;border:1px solid #e7eef9;color:#52627a;font-weight:850;font-size:.88rem}
.bdic-marketing-btn{min-height:48px;padding:.78rem 1.12rem;border-radius:14px;text-decoration:none;font-weight:950;display:inline-flex;align-items:center;justify-content:center;border:1px solid transparent;transition:.22s ease;line-height:1.2}
.bdic-marketing-btn-primary{color:#fff;background:linear-gradient(135deg,#2563eb 0%,#6d28d9 100%);box-shadow:0 14px 34px rgba(37,99,235,.22)}
.bdic-marketing-btn-primary:hover{color:#fff;transform:translateY(-2px)}
.bdic-marketing-btn-outline,.bdic-marketing-btn-preview{color:#2563eb;background:#fff;border-color:rgba(37,99,235,.24)}
.bdic-marketing-btn-outline:hover,.bdic-marketing-btn-preview:hover{color:#2563eb;background:#eff6ff}
.bdic-marketing-visual{display:flex;justify-content:center}
.bdic-marketing-visual img{max-width:100%;height:auto;border-radius:30px;box-shadow:0 30px 80px rgba(15,47,115,.16)}
.bdic-marketing-showcase{position:relative;width:min(100%,480px);min-height:420px;display:grid;place-items:center}
.bdic-marketing-dashboard{width:390px;max-width:100%;padding:22px;border-radius:30px;background:#fff;border:1px solid #e7eef9;box-shadow:0 35px 90px rgba(15,47,115,.18)}
.metric-row{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:12px 14px;border-radius:16px;background:#f8fbff;border:1px solid #e7eef9;margin-bottom:12px}
.metric-row span{color:#52627a;font-weight:850}
.metric-row strong{color:#16a34a;font-weight:950}
.chart-line{height:120px;border-radius:22px;background:linear-gradient(135deg,#dbeafe,#ede9fe);position:relative;margin:16px 0}
.chart-line:after{content:"";position:absolute;left:22px;right:22px;top:50%;height:4px;border-radius:999px;background:linear-gradient(90deg,#2563eb,#16a34a);transform:rotate(-8deg)}
.chart-bars{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;align-items:end;height:88px}
.chart-bars span{border-radius:10px 10px 0 0;background:linear-gradient(180deg,#2563eb,#16a34a)}
.chart-bars span:nth-child(1){height:35%}.chart-bars span:nth-child(2){height:55%}.chart-bars span:nth-child(3){height:45%}.chart-bars span:nth-child(4){height:75%}.chart-bars span:nth-child(5){height:95%}
.bdic-marketing-floating-card{position:absolute;right:0;bottom:24px;width:240px;padding:1.2rem;border-radius:24px;background:#fff;border:1px solid #e7eef9;box-shadow:0 24px 70px rgba(15,47,115,.15)}
.bdic-marketing-floating-card strong{display:block;color:#080f2a;font-weight:950;margin-bottom:.4rem}
.bdic-marketing-floating-card span{color:#52627a;line-height:1.6}
.bdic-marketing-section{padding:clamp(3rem,6vw,5rem) 0}
.bdic-marketing-section-soft{background:radial-gradient(circle at top left,rgba(37,99,235,.08),transparent 28%),#eef6ff}
.bdic-marketing-section-head{max-width:780px;margin:0 auto 2.4rem}
.bdic-marketing-section-head h2{font-size:clamp(1.85rem,3vw,3rem);line-height:1.16;font-weight:950;letter-spacing:-.035em;color:#080f2a;margin-bottom:.9rem}
.bdic-marketing-section-head p{color:#52627a;line-height:1.8;margin:0}
.bdic-marketing-service-card,.bdic-marketing-feature-box,.bdic-marketing-rich-content,.bdic-marketing-faq details,.bdic-marketing-plan-card,.bdic-marketing-plan-trust{background:#fff;border:1px solid rgba(15,47,115,.08);border-radius:24px;box-shadow:0 16px 45px rgba(15,47,115,.07)}
.bdic-marketing-service-card{height:100%;padding:1.35rem;display:flex;flex-direction:column;text-decoration:none;color:inherit;transition:.25s ease}
.bdic-marketing-service-card:hover{transform:translateY(-5px);box-shadow:0 24px 60px rgba(15,47,115,.12)}
.bdic-marketing-service-icon{width:72px;height:72px;border-radius:22px;background:linear-gradient(135deg,#eff6ff,#dcfce7);display:grid;place-items:center;margin-bottom:1.1rem;overflow:hidden}
.bdic-marketing-service-icon img{width:54px;height:54px;object-fit:contain}
.bdic-marketing-service-icon span{color:#2563eb;font-size:1.35rem;font-weight:950}
.bdic-marketing-service-card h3{color:#080f2a;font-weight:950;font-size:1.18rem;margin-bottom:.7rem}
.bdic-marketing-service-card p{color:#52627a;line-height:1.75;flex:1}
.bdic-marketing-service-card strong{color:#2563eb}
.bdic-marketing-feature-box{padding:1.4rem;height:100%}
.bdic-marketing-feature-box h3{color:#080f2a;font-weight:950;font-size:1.05rem}
.bdic-marketing-feature-box p{color:#52627a;line-height:1.75;margin:0}
.bdic-marketing-rich-content{padding:clamp(1.3rem,4vw,2.5rem);color:#334155;line-height:1.9;overflow-wrap:break-word}
.bdic-marketing-rich-content h1,.bdic-marketing-rich-content h2,.bdic-marketing-rich-content h3,.bdic-marketing-rich-content h4{color:#080f2a;font-weight:950;line-height:1.25;margin-top:1.6rem;margin-bottom:.85rem}
.bdic-marketing-rich-content>h2:first-child{margin-top:0}
.bdic-marketing-faq{max-width:900px;margin:0 auto;display:grid;gap:.9rem}
.bdic-marketing-faq details{padding:1.1rem 1.25rem}
.bdic-marketing-faq summary{cursor:pointer;color:#080f2a;font-weight:950}
.bdic-marketing-faq details div{color:#52627a;line-height:1.8;margin-top:.9rem}

/* Marketing Plans */
.bdic-marketing-plan-tabs{width:min(540px,100%);margin:0 auto 2.4rem;display:grid;grid-template-columns:repeat(3,1fr);background:#fff;border:1px solid #e7eef9;border-radius:14px;padding:.35rem;box-shadow:0 12px 32px rgba(15,47,115,.06)}
.bdic-marketing-plan-tab{border:0;background:transparent;color:#52627a;font-weight:950;border-radius:10px;padding:.85rem 1rem;cursor:pointer}
.bdic-marketing-plan-tab.active{background:linear-gradient(135deg,#2563eb,#6d28d9);color:#fff;box-shadow:0 12px 26px rgba(37,99,235,.22)}
.bdic-marketing-plan-card{position:relative;height:100%;padding:1.25rem;overflow:hidden;transition:.25s ease}
.bdic-marketing-plan-card:hover{transform:translateY(-4px)}
.bdic-marketing-plan-card.is-featured{border-color:rgba(109,40,217,.44);box-shadow:0 24px 65px rgba(109,40,217,.16)}
.bdic-marketing-popular-badge{position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,#2563eb,#6d28d9);color:#fff;padding:.48rem 1.2rem;border-radius:0 0 14px 14px;font-size:.78rem;font-weight:950;z-index:3}
.bdic-marketing-plan-top{display:flex;justify-content:space-between;gap:.7rem;margin-bottom:1.1rem;padding-top:.4rem}
.bdic-marketing-plan-top span,.bdic-marketing-plan-top strong{display:inline-flex;align-items:center;border-radius:8px;padding:.38rem .62rem;font-size:.75rem;font-weight:950}
.bdic-marketing-plan-top span{background:#eff6ff;color:#2563eb}
.bdic-marketing-plan-top span.channel-seo{background:#dbeafe;color:#2563eb}
.bdic-marketing-plan-top span.channel-google-ads{background:#ede9fe;color:#6d28d9}
.bdic-marketing-plan-top span.channel-meta-ads{background:#cffafe;color:#0891b2}
.bdic-marketing-plan-top span.channel-youtube-marketing{background:#fee2e2;color:#dc2626}
.bdic-marketing-plan-top strong{background:#fee2e2;color:#dc2626}
.bdic-marketing-plan-card h3{color:#080f2a;font-size:1.2rem;font-weight:950;text-align:center;margin-bottom:.8rem}
.bdic-marketing-plan-price{text-align:center;margin:1rem 0}
.bdic-marketing-plan-price del{color:#94a3b8;font-weight:850;margin-right:.5rem}
.bdic-marketing-plan-price strong{color:#2563eb;font-size:2rem;font-weight:950;line-height:1}
.bdic-marketing-plan-price span{display:inline-flex;margin-top:.4rem;padding:.25rem .6rem;background:#eff6ff;color:#2563eb;border-radius:8px;font-size:.78rem;font-weight:950}
.bdic-marketing-plan-image{height:150px;border-radius:16px;overflow:hidden;background:#f8fbff;border:1px solid #e7eef9;margin-bottom:1rem}
.bdic-marketing-plan-image img{width:100%;height:100%;object-fit:cover}
.bdic-marketing-plan-placeholder{height:100%;display:grid;place-content:center;text-align:center;padding:1rem;background:linear-gradient(135deg,#eff6ff,#dcfce7)}
.bdic-marketing-plan-placeholder span{color:#2563eb;font-weight:950}
.bdic-marketing-plan-placeholder strong{color:#080f2a;font-weight:950}
.bdic-marketing-plan-features{list-style:none;margin:0 0 1rem;padding:0;display:grid;gap:.52rem}
.bdic-marketing-plan-features li{display:flex;align-items:flex-start;gap:.6rem;color:#334155;line-height:1.5}
.bdic-marketing-plan-features li span{width:20px;height:20px;border-radius:999px;display:inline-grid;place-items:center;flex:0 0 auto;font-size:.78rem;font-weight:950}
.bdic-marketing-plan-features li.available span{background:#dcfce7;color:#15803d}
.bdic-marketing-plan-features li.unavailable{color:#94a3b8}
.bdic-marketing-plan-features li.unavailable span{background:#fee2e2;color:#dc2626}
.bdic-marketing-plan-order,.bdic-marketing-btn-preview{width:100%;margin-bottom:.7rem}
.bdic-marketing-preview-thumbs{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin-top:.8rem}
.bdic-marketing-preview-thumbs div{text-align:center}
.bdic-marketing-preview-thumbs img,.bdic-marketing-preview-thumbs div>div{width:100%;height:52px;border-radius:10px;object-fit:cover;background:#eff6ff;border:1px solid #e7eef9}
.bdic-marketing-preview-thumbs small{display:block;margin-top:.3rem;color:#52627a;font-weight:850}
.bdic-marketing-plan-trust{margin-top:1.5rem;padding:1rem;display:grid;grid-template-columns:repeat(4,1fr);gap:.8rem}
.bdic-marketing-plan-trust div{padding:.8rem;border-right:1px solid #e7eef9}
.bdic-marketing-plan-trust div:last-child{border-right:0}
.bdic-marketing-plan-trust strong{display:block;color:#080f2a;font-weight:950}
.bdic-marketing-plan-trust span{color:#52627a;font-size:.88rem}
.bdic-marketing-preview-modal{border:0;border-radius:24px;overflow:hidden}
.bdic-marketing-empty-preview{min-height:240px;display:grid;place-items:center;background:#f8fbff;border:1px dashed #cbd5e1;border-radius:18px;color:#64748b;font-weight:950}

@media(max-width:991.98px){
    .bdic-marketing-hero{text-align:center}
    .bdic-marketing-actions,.bdic-marketing-trust{justify-content:center}
    .bdic-marketing-floating-card{right:50%;transform:translateX(50%)}
    .bdic-marketing-plan-trust{grid-template-columns:repeat(2,1fr)}
    .bdic-marketing-plan-trust div:nth-child(2){border-right:0}
}

@media(max-width:575.98px){
    .bdic-marketing-actions{flex-direction:column}
    .bdic-marketing-btn{width:100%}
    .bdic-marketing-plan-tabs{grid-template-columns:1fr}
    .bdic-marketing-plan-trust{grid-template-columns:1fr}
    .bdic-marketing-plan-trust div{border-right:0;border-bottom:1px solid #e7eef9}
    .bdic-marketing-plan-trust div:last-child{border-bottom:0}
    .bdic-marketing-showcase{min-height:470px}
}

/* Premium SEO Content System */
.bdic-premium-copy{max-width:1120px;margin:0 auto;color:#334155;font-size:17px;line-height:1.78;overflow-wrap:break-word}
.bdic-premium-copy :where(h1,h2,h3,h4){color:#07152e;font-weight:950;letter-spacing:0}
.bdic-premium-copy h1{font-size:clamp(30px,4vw,50px);line-height:1.08;margin:0 0 1rem}
.bdic-premium-copy h2{font-size:clamp(26px,3vw,42px);line-height:1.14;margin:2rem 0 .85rem}
.bdic-premium-copy h3{font-size:clamp(20px,2vw,28px);line-height:1.2;margin:1.5rem 0 .65rem}
.bdic-premium-copy h4{font-size:clamp(18px,1.7vw,22px);line-height:1.24;margin:1.2rem 0 .55rem}
.bdic-premium-copy p{margin:0 0 1.05rem;color:#334155;font-size:17px;line-height:1.78}
.bdic-premium-copy :where(ul,ol){margin:1rem 0 1.2rem;padding-left:1.25rem;color:#334155}
.bdic-premium-copy li{margin:.45rem 0;line-height:1.68}
.bdic-premium-copy a{color:#123b8f;font-weight:850;text-decoration-thickness:.08em;text-underline-offset:.16em}
.bdic-premium-copy img,.bdic-premium-copy iframe,.bdic-premium-copy table{max-width:100%;height:auto}
.bdic-premium-copy table{width:100%;border-collapse:collapse;margin:1.2rem 0;background:#fff;border:1px solid rgba(15,47,115,.1)}
.bdic-premium-copy :where(th,td){padding:.85rem;border:1px solid rgba(15,47,115,.1);vertical-align:top}
.bdic-premium-copy th{background:#f1f6ff;color:#07152e;font-weight:950}
.bdic-premium-copy .bdic-seo-lead{font-size:clamp(18px,2.2vw,22px);line-height:1.65;color:#263448;max-width:880px}
.bdic-seo-summary,.bdic-seo-callout,.bdic-seo-cta,.bdic-seo-card{border:1px solid rgba(15,47,115,.1);border-radius:10px;background:#fff;box-shadow:0 18px 42px rgba(15,47,115,.07)}
.bdic-seo-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;align-items:stretch;margin:1.35rem 0;padding:1rem;background:linear-gradient(135deg,#f8fbff,#eefaff)}
.bdic-seo-summary__box{padding:1rem;border-radius:8px;background:#fff;border:1px solid rgba(15,47,115,.08)}
.bdic-seo-summary__box strong{display:block;color:#07152e;font-size:1.05rem;font-weight:950;margin-bottom:.4rem}
.bdic-seo-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin:1.4rem 0}
.bdic-seo-card{padding:1.15rem}
.bdic-seo-card h3{margin-top:0}
.bdic-seo-callout{margin:1.35rem 0;padding:1.1rem 1.2rem;border-left:4px solid #0ea5c8;background:#eefaff;color:#07152e;font-weight:800}
.bdic-seo-cta{margin:1.5rem 0 0;padding:1.35rem;background:linear-gradient(135deg,#07152e,#123b8f 58%,#0f766e);color:#fff}
.bdic-seo-cta h2,.bdic-seo-cta h3{color:#fff;margin-top:0}
.bdic-seo-cta p{color:rgba(255,255,255,.84)}
.bdic-seo-cta a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin-top:.35rem;padding:.7rem 1rem;border-radius:8px;background:#fff;color:#123b8f;text-decoration:none;font-weight:950}
.bdic-seo-toc{margin:1.2rem 0;padding:1rem;border:1px solid rgba(15,47,115,.1);border-radius:10px;background:#f8fbff}
.bdic-seo-toc strong{display:block;margin-bottom:.5rem;color:#07152e;font-weight:950}
.bdic-seo-toc a{display:inline-flex;margin:.25rem .35rem .25rem 0;padding:.42rem .65rem;border-radius:8px;background:#fff;border:1px solid rgba(15,47,115,.1);text-decoration:none;color:#123b8f;font-size:.9rem;font-weight:850}
.bdic-seo-kicker{display:inline-flex;width:fit-content;margin:0 0 .75rem;padding:.45rem .65rem;border:1px solid rgba(18,59,143,.14);border-radius:8px;background:#f8fbff;color:#123b8f;font-size:.78rem;font-weight:950;text-transform:uppercase}
.bdic-seo-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.85rem;margin:1.2rem 0 1.5rem}
.bdic-seo-link-card{display:flex;min-height:104px;flex-direction:column;justify-content:space-between;gap:.55rem;padding:1rem;border:1px solid rgba(18,59,143,.14);border-radius:10px;background:linear-gradient(135deg,#fff,#f8fbff);text-decoration:none;color:#07152e;box-shadow:0 12px 30px rgba(15,47,115,.06);transition:.2s ease}
.bdic-seo-link-card:hover{transform:translateY(-3px);border-color:rgba(18,59,143,.32);color:#07152e;box-shadow:0 18px 44px rgba(15,47,115,.1)}
.bdic-seo-link-card strong{font-size:1rem;font-weight:950;line-height:1.25}
.bdic-seo-link-card span{color:#52627a;font-size:.9rem;font-weight:750;line-height:1.45}
.bdpl-section{padding:clamp(3rem,6vw,5rem) 0;background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%)}
.bdpl-heading{max-width:880px;margin:0 auto 2rem;text-align:center}
.bdpl-heading span{display:inline-flex;margin-bottom:.7rem;padding:.42rem .7rem;border-radius:999px;background:#eff6ff;border:1px solid #dbeafe;color:#123b8f;font-size:.78rem;font-weight:950;text-transform:uppercase}
.bdpl-heading h2{margin:0 0 .85rem;color:#07152e;font-size:clamp(2rem,4vw,3.2rem);font-weight:950;line-height:1.12;letter-spacing:0}
.bdpl-heading p{margin:0 auto;color:#52627a;font-size:1.05rem;line-height:1.8}
.bdpl-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.bdpl-card{height:100%;padding:1.25rem;border:1px solid rgba(15,47,115,.1);border-radius:12px;background:#fff;box-shadow:0 18px 48px rgba(15,47,115,.07)}
.bdpl-card__eyebrow{display:inline-flex;margin-bottom:.75rem;color:#0f766e;font-size:.78rem;font-weight:950;text-transform:uppercase}
.bdpl-card h3{margin:0 0 .65rem;color:#07152e;font-size:1.25rem;font-weight:950;line-height:1.2}
.bdpl-card p{margin:0 0 1rem;color:#52627a;line-height:1.7}
.bdpl-links{display:grid;gap:.55rem}
.bdpl-links a{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.7rem .75rem;border:1px solid rgba(18,59,143,.1);border-radius:8px;background:#f8fbff;color:#123b8f;text-decoration:none;font-weight:900;line-height:1.25}
.bdpl-links a:hover{background:#eff6ff;border-color:rgba(18,59,143,.28)}
.bdpl-links i{font-size:1.15rem;flex:0 0 auto}
.bdic-blog-shell{background:#f6f9ff}
.bdic-blog-article-grid{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:1.5rem;align-items:start}
.bdic-blog-aside{position:sticky;top:90px;display:grid;gap:1rem}
.bdic-blog-aside-card{padding:1rem;border:1px solid rgba(15,47,115,.1);border-radius:10px;background:#fff;box-shadow:0 14px 34px rgba(15,47,115,.06)}
.bdic-blog-aside-card h3{margin:0 0 .75rem;color:#07152e;font-size:1rem;font-weight:950}
.bdic-blog-aside-card a{display:block;padding:.55rem 0;border-top:1px solid rgba(15,47,115,.08);color:#334155;text-decoration:none;font-weight:800}
.bdic-blog-content{max-width:none}
.bdic-blog-content.bdic-premium-copy{padding:clamp(1.25rem,4vw,2.75rem)}

@media(max-width:991.98px){
    .bdic-seo-summary,.bdic-blog-article-grid{grid-template-columns:1fr}
    .bdic-seo-card-grid,.bdic-seo-link-grid,.bdpl-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .bdic-blog-aside{position:static}
}

@media(max-width:575.98px){
    .bdic-premium-copy{font-size:16px;line-height:1.72}
    .bdic-premium-copy p{font-size:16px;line-height:1.72}
    .bdic-premium-copy h1{font-size:30px}
    .bdic-premium-copy h2{font-size:25px}
    .bdic-premium-copy h3{font-size:20px}
    .bdic-seo-card-grid{grid-template-columns:1fr}
    .bdic-seo-link-grid,.bdpl-grid{grid-template-columns:1fr}
    .bdic-seo-summary,.bdic-seo-card,.bdic-seo-callout,.bdic-seo-cta{border-radius:8px}
}
.bdic-breadcrumb-wrap {
    background: #f6f9ff;
    border-top: 1px solid rgba(15, 47, 115, .08);
    border-bottom: 1px solid rgba(15, 47, 115, .08);
}

.bdic-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.bdic-breadcrumb li {
    align-items: center;
    color: #64748b;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.bdic-breadcrumb li:not(:last-child)::after {
    color: #94a3b8;
    content: "/";
    margin-left: 8px;
}

.bdic-breadcrumb a {
    color: #123b8f;
    text-decoration: none;
}

.bdic-breadcrumb a:hover {
    color: #0f766e;
}

.bdic-breadcrumb span {
    color: #07152e;
}
