* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #061735;
    background: #edf5ff;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; }
.demo-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px clamp(18px, 4vw, 64px);
    background: linear-gradient(135deg, #061a3d, var(--primary));
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.demo-action-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.4;
}
.demo-action-copy strong {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}
.demo-action-copy span {
    color: rgba(255, 255, 255, .78);
}
.demo-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.demo-action-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.demo-action-buttons a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .38);
}
.demo-action-buttons .demo-buy {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.demo-action-buttons .demo-buy:hover {
    background: #eaf3ff;
    border-color: #eaf3ff;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
    min-height: 78px;
    padding: 12px clamp(18px, 5vw, 72px);
    background: #061735;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 48px rgba(6, 23, 53, .16);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: none;
}
.brand-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #c8ddfb;
    background: #fff;
}
.brand strong {
    display: block;
    color: #061735;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 700;
}
.brand small {
    display: block;
    color: #547097;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 2px;
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateY(-1px);
}
.header-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.header-cta, .btn-primary {
    background: linear-gradient(135deg, var(--secondary), #174ea6);
    color: #fff;
    box-shadow: 0 16px 28px rgba(37, 99, 235, .22);
}
.header-cta {
    min-width: 132px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: #1f6bff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .28);
}
.btn-secondary {
    background: rgba(255, 255, 255, .72);
    color: var(--secondary);
    border-color: #bdd5f8;
    box-shadow: 0 10px 24px rgba(11, 45, 102, .05);
}
.btn:hover, .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(37, 99, 235, .24);
}
.btn-secondary:hover {
    background: #fff;
    border-color: var(--secondary);
    color: #0b2d66;
    box-shadow: 0 18px 34px rgba(11, 45, 102, .12);
}
.btn:focus-visible, .header-cta:focus-visible, .site-nav a:focus-visible, .popup-action:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .24);
    outline-offset: 3px;
}
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .36);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: clamp(54px, 7vw, 96px) 0; }
.section-soft { background: #f8fbff; }
.page-hero {
    padding: clamp(54px, 7vw, 90px) 0;
    background: radial-gradient(circle at 80% 20%, #dbeafe, transparent 34%), #edf5ff;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    background: #eaf3ff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; color: #021939; }
h1 {
    max-width: 760px;
    margin-top: 18px;
    font-size: clamp(40px, 4.7vw, 62px);
    font-weight: 700;
}
h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 650; }
p { color: #31537b; margin: 0; }
.lead {
    font-size: clamp(16px, 1.35vw, 18px);
    margin-top: 22px;
    max-width: 720px;
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card {
    position: relative;
    padding: 18px;
    border: 1px solid #c8ddfb;
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 24px 80px rgba(11, 45, 102, .12);
}
.hero-card img { border-radius: 24px; width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; }
.hero-note {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #dbeafe;
    backdrop-filter: blur(10px);
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
    border: 1px solid #cfe1f7;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(11, 45, 102, .08);
}
.metric-card, .service-card, .value-card, .testimonial-card, .faq-card {
    padding: 24px;
}
.metric-card strong { display: block; font-size: 30px; font-weight: 700; color: var(--secondary); line-height: 1; }
.metric-card span { color: #45658d; font-weight: 600; font-size: 14px; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}
.section-head p { max-width: 620px; }
.icon-box {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: var(--secondary);
    background: #eff6ff;
    border: 1px solid #c8ddfb;
    margin-bottom: 18px;
}
.service-card h3, .value-card h3 { margin-bottom: 10px; }
.project-card, .blog-card, .gallery-card {
    overflow: hidden;
}
.project-card img, .blog-card img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; }
.gallery-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card-body { padding: 22px; }
.pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 650;
}
.client-strip {
    display: flex;
    gap: 12px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid #cfe1f7;
    border-radius: 22px;
    background: #fff;
}
.client-strip span {
    flex: 0 0 auto;
    min-width: 180px;
    text-align: center;
    color: #577092;
    font-weight: 650;
    padding: 14px 18px;
    border-radius: 16px;
    background: #f5f9ff;
}
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: start; }
.panel { padding: clamp(24px, 4vw, 40px); }
.list-clean { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.list-clean li { display: flex; gap: 12px; color: #31537b; }
.list-clean li::before { content: ""; width: 8px; height: 8px; margin-top: 11px; border-radius: 50%; background: var(--secondary); flex: 0 0 auto; }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid #cfe1f7; }
.timeline-item strong { color: var(--secondary); }
.stars { color: #f59e0b; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.faq-item { border-bottom: 1px solid #dbeafe; }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 0;
    background: transparent;
    color: #061735;
    font-size: 17px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.faq-question:hover { background: #f5f9ff; color: var(--secondary); }
.faq-answer { display: none; padding: 0 22px 22px; }
.faq-item.open .faq-answer { display: block; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; color: #0b2d66; font-size: 13px; font-weight: 700; }
input, textarea, select {
    width: 100%;
    border: 1px solid #c8ddfb;
    border-radius: 14px;
    min-height: 48px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
    color: #061735;
}
textarea { min-height: 130px; resize: vertical; }
.span-2 { grid-column: span 2; }
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 56px clamp(18px, 4vw, 64px) 26px;
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, .34), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(20, 184, 166, .2), transparent 28%),
        #061735;
    color: #fff;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 20px 24px auto auto;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    pointer-events: none;
}
.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-brand-block {
    max-width: 540px;
}
.footer-brand {
    min-width: 0;
    margin-bottom: 18px;
}
.footer-brand .brand-mark,
.footer-brand .brand-logo-img {
    box-shadow: none;
}
.footer-brand strong {
    color: #fff;
}
.footer-brand small {
    color: #95add0;
}
.site-footer p,
.site-footer span {
    color: #c8d8f0;
}
.footer-brand-block p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.75;
}
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.footer-primary,
.footer-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.footer-primary {
    background: #fff;
    color: #0b2d66;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}
.footer-secondary {
    border: 1px solid rgba(255, 255, 255, .22);
    color: #eaf3ff;
    background: rgba(255, 255, 255, .06);
}
.footer-primary:hover,
.footer-secondary:hover {
    transform: translateY(-2px);
}
.footer-secondary:hover {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .12);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.footer-grid section {
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 210px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
}
.footer-grid h4 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-grid a,
.footer-grid span {
    width: fit-content;
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.5;
}
.footer-grid a {
    position: relative;
    transition: color .18s ease, transform .18s ease;
}
.footer-grid a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 1280px;
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background: #16a34a;
    box-shadow: 0 18px 40px rgba(22, 163, 74, .3);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.whatsapp-float .whatsapp-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #12843d;
    box-shadow: 0 22px 48px rgba(22, 163, 74, .36);
}
.mobile-bottom-nav {
    display: none;
}
.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(6, 23, 53, .58);
    backdrop-filter: blur(8px);
}
.promo-popup-card {
    position: relative;
    width: min(520px, 100%);
    padding: 32px;
    border: 1px solid #d7e6fb;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(6, 23, 53, .28);
}
.promo-popup-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(90deg, var(--secondary), #14b8a6);
}
.promo-popup-card button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #c8ddfb;
    background: #fff;
    color: #0b2d66;
    cursor: pointer;
}
.promo-popup-card button:hover {
    background: #eef5ff;
}
.popup-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eef5ff;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.promo-popup-card h3 {
    margin-top: 16px;
    padding-right: 54px;
    font-size: clamp(23px, 3vw, 30px);
    line-height: 1.16;
    letter-spacing: 0;
}
.promo-popup-card p {
    margin-top: 12px;
    max-width: 430px;
    color: #35577f;
    font-size: 15px;
    line-height: 1.72;
}
.popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 22px;
    padding: 11px 18px;
    border: 1px solid #b9d2f7;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), #174ea6);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}
.popup-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, .28);
}
.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 280px;
    border: 1px dashed #9fc3f4;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff6ff, #fff);
    color: #31537b;
    font-weight: 650;
}

@media (max-width: 980px) {
    .demo-action-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px 18px;
    }
    .demo-action-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
    .demo-action-buttons {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }
    .demo-action-buttons a {
        flex: 1 0 auto;
        min-width: max-content;
    }
    .site-header {
        min-height: 76px;
        padding: 12px 16px;
    }
    .brand {
        min-width: 0;
        max-width: calc(100% - 60px);
        padding: 7px 9px;
        box-shadow: none;
    }
    .nav-toggle { display: grid; place-items: center; margin-left: auto; }
    .site-nav {
        position: fixed;
        top: 88px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 20px;
        background: #071b3f;
        box-shadow: 0 24px 70px rgba(11, 45, 102, .16);
    }
    .site-nav.open { display: flex; }
    .header-cta { display: none; }
    .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    body {
        padding-bottom: 82px;
    }
    .demo-action-bar {
        gap: 8px;
        padding: 10px 14px 12px;
    }
    .demo-action-copy strong {
        font-size: 13px;
        line-height: 1.2;
    }
    .demo-action-copy span {
        display: -webkit-box;
        max-width: 330px;
        overflow: hidden;
        color: rgba(255, 255, 255, .78);
        font-size: 11px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .demo-action-buttons {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        overflow: visible;
        padding: 0;
    }
    .demo-action-buttons a {
        width: 100%;
        min-width: 0;
        min-height: 34px;
        padding: 7px 9px;
        font-size: 11px;
        white-space: nowrap;
    }
    .site-header { min-height: 74px; }
    .brand { min-width: 0; }
    .brand strong { font-size: 16px; }
    .brand small { display: none; }
    h1 { font-size: 32px; line-height: 1.14; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section-head { display: grid; }
    .hero-note { position: static; margin-top: 14px; }
    .form-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: auto; }
    .timeline-item { grid-template-columns: 1fr; }
    .client-strip { overflow-x: auto; }
    .site-footer { padding: 42px 18px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid section { min-height: auto; padding: 18px; }
    .footer-actions { display: grid; }
    .footer-primary, .footer-secondary { width: 100%; }
    .footer-bottom {
        display: grid;
        gap: 8px;
        margin-top: 24px;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        min-height: 72px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid #c8ddfb;
        background: rgba(248, 251, 255, .94);
        box-shadow: 0 -18px 42px rgba(11, 45, 102, .12);
        backdrop-filter: blur(18px);
    }
    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 4px;
        min-width: 0;
        min-height: 54px;
        border-radius: 16px;
        color: #60799e;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.1;
        transition: background .18s ease, color .18s ease, transform .18s ease;
    }
    .mobile-bottom-nav a svg {
        width: 20px;
        height: 20px;
    }
    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav a.active {
        color: var(--secondary);
        background: #eaf3ff;
        transform: translateY(-1px);
    }
    .mobile-bottom-nav span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .whatsapp-float {
        left: auto;
        right: 16px;
        bottom: calc(88px + env(safe-area-inset-bottom));
        width: 58px;
        height: 58px;
        padding: 0;
        border: 4px solid rgba(255, 255, 255, .92);
        background: #16a34a;
        box-shadow: 0 18px 36px rgba(22, 163, 74, .34);
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
    .promo-popup { padding: 14px; }
    .promo-popup-card {
        padding: 26px 22px 22px;
        border-radius: 22px;
    }
    .promo-popup-card h3 { padding-right: 42px; }
    .promo-popup-card p { font-size: 14px; }
    .popup-action { width: 100%; }
}
