/* ============================================================
   Contact Us - Premium Enterprise SaaS Experience
   All selectors are prefixed with cu- to avoid global leakage.
   ============================================================ */

.cu-page {
    --cu-blue: #2563eb;
    --cu-sky: #0ea5e9;
    --cu-cyan: #06b6d4;
    --cu-violet: #8b5cf6;
    --cu-teal: #14b8a6;
    --cu-rose: #e11d48;
    --cu-amber: #f59e0b;
    --cu-ink: #0f172a;
    --cu-muted: #64748b;
    --cu-soft: #f8fafc;
    --cu-line: #e2e8f0;
    --cu-card: rgba(255, 255, 255, .86);
    --cu-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    --cu-ease: cubic-bezier(.2, .8, .2, 1);
    color: var(--cu-ink);
    background: var(--cu-soft);
    font-family: Inter, Manrope, Poppins, Satoshi, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.cu-page *,
.cu-page *::before,
.cu-page *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.cu-page a {
    transition: color .2s var(--cu-ease), background .2s var(--cu-ease), border-color .2s var(--cu-ease), transform .2s var(--cu-ease), box-shadow .2s var(--cu-ease);
}

.cu-page img {
    max-width: 100%;
}

.cu-hero {
    position: relative;
    min-height: 720px;
    padding: 116px 0 92px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .42), transparent 34%),
        linear-gradient(225deg, rgba(20, 184, 166, .28), transparent 32%),
        linear-gradient(160deg, #07111f 0%, #0f172a 45%, #171133 100%);
}

.cu-hero::before {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: -3;
    background:
        conic-gradient(from 140deg at 28% 32%, rgba(6, 182, 212, .24), rgba(139, 92, 246, .20), transparent 36%, rgba(20, 184, 166, .18), transparent 70%, rgba(37, 99, 235, .22)),
        linear-gradient(115deg, rgba(255, 255, 255, .08), transparent 42%, rgba(255, 255, 255, .04));
    filter: blur(34px);
    opacity: .9;
    animation: cuMeshDrift 16s ease-in-out infinite alternate;
}

.cu-hero-mesh,
.cu-cta-mesh {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 100%),
        linear-gradient(20deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 100%);
    background-size: 120px 120px, 90px 90px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .58), transparent);
    opacity: .75;
}

.cu-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .35), transparent 82%);
}

.cu-hero-inner {
    position: relative;
    z-index: 2;
}

.cu-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    font-weight: 600;
}

.cu-breadcrumb a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
}

.cu-breadcrumb a:hover {
    color: #fff;
}

.cu-breadcrumb i {
    color: rgba(255, 255, 255, .34);
}

.cu-badge,
.cu-section-kicker,
.cu-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 12px 35px rgba(37, 99, 235, .10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cu-badge {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .10);
    color: #dbeafe;
    box-shadow: none;
}

.cu-h1 {
    max-width: 710px;
    margin: 18px 0 22px;
    color: #fff;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.04;
}

.cu-h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #7dd3fc, #c4b5fd 48%, #5eead4);
    -webkit-background-clip: text;
    background-clip: text;
}

.cu-sub {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(226, 232, 240, .82);
    font-size: 18px;
    line-height: 1.75;
}

.cu-hero-actions,
.cu-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 0 0 28px;
}

.cu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.cu-btn i {
    font-size: 18px;
    line-height: 1;
}

.cu-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-cyan));
    box-shadow: 0 16px 42px rgba(37, 99, 235, .34);
}

.cu-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(37, 99, 235, .42);
}

.cu-btn-secondary,
.cu-btn-dark {
    color: #eef2ff;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cu-btn-secondary:hover,
.cu-btn-dark:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}

.cu-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 680px;
    margin: 0 0 24px;
}

.cu-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .065);
    font-size: 13px;
    font-weight: 700;
}

.cu-trust-row i {
    color: #67e8f9;
}

.cu-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.cu-stats-row div {
    min-width: 0;
    padding: 18px 16px;
    background: rgba(15, 23, 42, .52);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cu-stats-row strong,
.cu-stats-row span {
    display: block;
}

.cu-stats-row strong {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
}

.cu-stats-row span {
    margin-top: 5px;
    color: rgba(226, 232, 240, .72);
    font-size: 12px;
    font-weight: 700;
}

.cu-hero-visual {
    position: relative;
    min-height: 540px;
    max-width: 540px;
    margin-left: auto;
}

.cu-visual-panel,
.cu-float-card,
.cu-info-card,
.cu-form-wrap,
.cu-sb-card,
.cu-why-card,
.cu-faq-item {
    border-radius: 8px;
}

.cu-visual-panel {
    position: absolute;
    inset: 32px 24px 26px 64px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .30);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.cu-visual-top,
.cu-routing-head,
.cu-route-row,
.cu-chat-preview,
.cu-float-card {
    display: flex;
    align-items: center;
}

.cu-visual-top {
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
}

.cu-visual-top div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cu-visual-top strong {
    padding: 5px 10px;
    border-radius: 999px;
    color: #bbf7d0;
    background: rgba(20, 184, 166, .14);
    font-size: 12px;
}

.cu-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .14);
}

.cu-team-strip {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.cu-team-strip img,
.cu-team-strip span {
    width: 48px;
    height: 48px;
    margin-right: -10px;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .24);
}

.cu-team-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-violet));
    font-size: 13px;
    font-weight: 900;
}

.cu-routing-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(15, 23, 42, .36);
}

.cu-routing-head {
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.cu-routing-head i {
    color: #67e8f9;
    font-size: 20px;
}

.cu-route-row {
    justify-content: space-between;
    gap: 12px;
    color: rgba(226, 232, 240, .78);
    font-size: 13px;
    font-weight: 700;
}

.cu-route-row strong {
    color: #fff;
}

.cu-progress {
    height: 8px;
    margin: 8px 0 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
}

.cu-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cu-blue), var(--cu-cyan));
}

.cu-progress-alt span {
    background: linear-gradient(90deg, var(--cu-violet), var(--cu-teal));
}

.cu-chat-preview {
    gap: 13px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .10);
}

.cu-chat-icon,
.cu-float-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--cu-teal), var(--cu-blue));
    font-size: 20px;
}

.cu-chat-preview strong,
.cu-float-card strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cu-chat-preview p,
.cu-float-card span {
    display: block;
    margin: 4px 0 0;
    color: rgba(226, 232, 240, .70);
    font-size: 12px;
    line-height: 1.45;
}

.cu-float-card {
    position: absolute;
    z-index: 3;
    gap: 12px;
    width: 250px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(15, 23, 42, .62);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cu-float-card-one {
    top: 0;
    left: 0;
    animation: cuFloatSoft 6s ease-in-out infinite;
}

.cu-float-card-two {
    right: 0;
    bottom: 52px;
    animation: cuFloatSoft 7s ease-in-out infinite reverse;
}

.cu-float-card-two > i {
    background: linear-gradient(135deg, var(--cu-violet), var(--cu-rose));
}

.cu-hero-curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    background: var(--cu-soft);
    clip-path: ellipse(68% 55% at 50% 100%);
}

.cu-info-section,
.cu-main,
.cu-why,
.cu-faq,
.cu-cta {
    position: relative;
}

.cu-info-section {
    padding: 76px 0 84px;
    background:
        linear-gradient(180deg, var(--cu-soft), #fff 54%, var(--cu-soft));
}

.cu-section-head {
    max-width: 760px;
    margin: 0 0 42px;
}

.cu-section-head.text-center {
    margin-right: auto;
    margin-left: auto;
}

.cu-section-head h2,
.cu-form-head h2,
.cu-cta h2 {
    margin: 14px 0 12px;
    color: var(--cu-ink);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
}

.cu-section-head p,
.cu-form-head p {
    margin: 0;
    color: var(--cu-muted);
    font-size: 17px;
    line-height: 1.72;
}

.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.cu-info-card,
.cu-why-card,
.cu-sb-card,
.cu-form-wrap,
.cu-faq-item {
    border: 1px solid rgba(148, 163, 184, .22);
    background: var(--cu-card);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cu-info-card {
    position: relative;
    min-height: 225px;
    padding: 24px;
    overflow: hidden;
}

.cu-info-card::before,
.cu-why-card::before,
.cu-sb-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(37, 99, 235, .10), transparent 34%, rgba(20, 184, 166, .08));
    opacity: 0;
    transition: opacity .25s var(--cu-ease);
}

.cu-info-card:hover,
.cu-why-card:hover,
.cu-sb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .28);
    box-shadow: var(--cu-shadow);
}

.cu-info-card:hover::before,
.cu-why-card:hover::before,
.cu-sb-card:hover::before {
    opacity: 1;
}

.cu-info-icon,
.cu-why-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
}

.cu-icon-blue { background: linear-gradient(135deg, var(--cu-blue), var(--cu-sky)); }
.cu-icon-teal { background: linear-gradient(135deg, #0f766e, var(--cu-teal)); }
.cu-icon-violet { background: linear-gradient(135deg, #6d28d9, var(--cu-violet)); }
.cu-icon-amber { background: linear-gradient(135deg, #b45309, var(--cu-amber)); }
.cu-icon-rose { background: linear-gradient(135deg, #be123c, var(--cu-rose)); }

.cu-info-card h3,
.cu-why-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--cu-ink);
    font-size: 16px;
    font-weight: 900;
}

.cu-info-card p,
.cu-info-card a,
.cu-why-card p {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 6px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.cu-info-card a:hover {
    color: var(--cu-blue);
}

.cu-main {
    padding: 18px 0 96px;
    background:
        linear-gradient(180deg, var(--cu-soft), #fff 46%, var(--cu-soft));
}

.cu-form-wrap {
    padding: 38px;
}

.cu-form-head {
    margin-bottom: 28px;
}

.cu-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.cu-alert i {
    flex: 0 0 auto;
    font-size: 18px;
}

.cu-alert-success {
    color: #166534;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.cu-alert-error {
    color: #be123c;
    border: 1px solid #fecdd3;
    background: #fff1f2;
}

.cu-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cu-field .form-control,
.cu-field .form-select {
    min-height: 62px;
    border: 1px solid rgba(148, 163, 184, .34);
    border-radius: 10px;
    color: var(--cu-ink);
    background: rgba(248, 250, 252, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .80);
    font-size: 15px;
    font-weight: 650;
    transition: border-color .2s var(--cu-ease), box-shadow .2s var(--cu-ease), background .2s var(--cu-ease);
}

.cu-field textarea.form-control {
    min-height: 178px;
    resize: vertical;
}

.cu-field label {
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.cu-field .form-control:focus,
.cu-field .form-select:focus {
    border-color: rgba(37, 99, 235, .72);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12), 0 16px 42px rgba(37, 99, 235, .10);
}

.cu-select-field .form-select {
    cursor: pointer;
}

.cu-consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin: 2px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}

.cu-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cu-consent-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    color: #fff;
    background: #fff;
    transition: background .2s var(--cu-ease), border-color .2s var(--cu-ease), box-shadow .2s var(--cu-ease);
}

.cu-consent-box i {
    opacity: 0;
    font-size: 16px;
    transition: opacity .2s var(--cu-ease);
}

.cu-consent input:checked + .cu-consent-box {
    border-color: transparent;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-cyan));
    box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}

.cu-consent input:checked + .cu-consent-box i {
    opacity: 1;
}

.cu-consent input:focus-visible + .cu-consent-box {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
}

.cu-consent a {
    color: var(--cu-blue);
    font-weight: 800;
    text-decoration: none;
}

.cu-consent a:hover {
    text-decoration: underline;
}

.cu-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    max-width: 100%;
    padding: 15px 28px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-cyan));
    box-shadow: 0 18px 44px rgba(37, 99, 235, .28);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .2s var(--cu-ease), box-shadow .2s var(--cu-ease), opacity .2s var(--cu-ease);
}

.cu-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(37, 99, 235, .36);
}

.cu-submit-btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.cu-submit-btn i {
    font-size: 18px;
}

.cu-form-status {
    display: none;
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.cu-form-status--success {
    display: block;
    color: #166534;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.cu-form-status--error {
    display: block;
    color: #be123c;
    border: 1px solid #fecdd3;
    background: #fff1f2;
}

.cu-form-shake {
    animation: cuFormShake .32s ease-in-out;
}

.cu-sidebar {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cu-sb-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.cu-sb-lead {
    color: #fff;
    border-color: rgba(255, 255, 255, .10);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .96), rgba(15, 23, 42, .96) 52%, rgba(20, 184, 166, .82));
    box-shadow: 0 24px 70px rgba(37, 99, 235, .20);
}

.cu-sb-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, .10);
    font-size: 12px;
    font-weight: 900;
}

.cu-sb-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
}

.cu-sb-lead h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.18;
}

.cu-sb-lead p {
    position: relative;
    z-index: 1;
    margin: 12px 0 20px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.65;
}

.cu-sb-actions,
.cu-service-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cu-sb-actions a,
.cu-service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 12px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.cu-sb-actions a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .10);
}

.cu-sb-actions a:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .18);
    transform: translateX(3px);
}

.cu-sb-actions i {
    flex: 0 0 auto;
    font-size: 18px;
}

.cu-sb-actions span,
.cu-service-links span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.cu-sb-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--cu-ink);
    font-size: 15px;
    font-weight: 900;
}

.cu-sb-title i {
    color: var(--cu-blue);
    font-size: 19px;
}

.cu-service-links a {
    color: #334155;
    background: rgba(248, 250, 252, .88);
}

.cu-service-links a i {
    flex: 0 0 auto;
    color: #94a3b8;
    transition: transform .2s var(--cu-ease), color .2s var(--cu-ease);
}

.cu-service-links a:hover {
    color: var(--cu-blue);
    background: #eff6ff;
    transform: translateX(3px);
}

.cu-service-links a:hover i {
    color: var(--cu-blue);
    transform: translateX(2px);
}

.cu-sb-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cu-sb-metrics div {
    min-width: 0;
    padding: 15px 12px;
    border: 1px solid rgba(226, 232, 240, .88);
    border-radius: 8px;
    background: #f8fafc;
}

.cu-sb-metrics strong {
    display: block;
    color: transparent;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-teal));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.08;
}

.cu-sb-metrics span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.cu-why {
    padding: 96px 0;
    background: #fff;
}

.cu-why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.cu-why-card {
    position: relative;
    min-height: 270px;
    padding: 24px;
    overflow: hidden;
}

.cu-why-card p {
    color: #64748b;
}

.cu-faq {
    padding: 96px 0;
    background:
        linear-gradient(180deg, var(--cu-soft), #eef6ff 100%);
}

.cu-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cu-faq-item {
    overflow: hidden;
}

.cu-faq-item .accordion-button {
    min-height: 66px;
    padding: 20px 22px;
    color: var(--cu-ink);
    background: rgba(255, 255, 255, .90);
    box-shadow: none;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

.cu-faq-item .accordion-button:not(.collapsed) {
    color: var(--cu-blue);
    background: #fff;
    box-shadow: inset 0 -1px 0 rgba(226, 232, 240, .92);
}

.cu-faq-item .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.cu-faq-item .accordion-button::after {
    flex: 0 0 auto;
}

.cu-faq-item .accordion-body {
    padding: 18px 22px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    background: rgba(255, 255, 255, .92);
}

.cu-cta {
    overflow: hidden;
    padding: 104px 0;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(120deg, rgba(37, 99, 235, .34), transparent 34%),
        linear-gradient(240deg, rgba(225, 29, 72, .16), transparent 30%),
        linear-gradient(160deg, #07111f 0%, #0f172a 48%, #151033 100%);
}

.cu-cta::before {
    content: "";
    position: absolute;
    inset: -12%;
    z-index: 0;
    background:
        conic-gradient(from 220deg at 50% 45%, rgba(6, 182, 212, .22), rgba(139, 92, 246, .18), transparent 42%, rgba(245, 158, 11, .12), rgba(20, 184, 166, .20), transparent 80%);
    filter: blur(38px);
    opacity: .92;
    animation: cuMeshDrift 18s ease-in-out infinite alternate-reverse;
}

.cu-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cu-cta-badge {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .10);
    color: #dbeafe;
}

.cu-cta h2 {
    color: #fff;
    font-size: 48px;
}

.cu-cta p {
    max-width: 640px;
    margin: 0 auto 30px;
    color: rgba(226, 232, 240, .78);
    font-size: 18px;
    line-height: 1.72;
}

.cu-cta-actions {
    justify-content: center;
    margin-bottom: 0;
}

@keyframes cuMeshDrift {
    0% { transform: translate3d(-1%, -1%, 0) rotate(0deg) scale(1); }
    100% { transform: translate3d(1.5%, 1%, 0) rotate(4deg) scale(1.03); }
}

@keyframes cuFloatSoft {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes cuFormShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

@media (max-width: 1199.98px) {
    .cu-h1 { font-size: 56px; }
    .cu-info-grid,
    .cu-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cu-hero-visual { min-height: 500px; }
    .cu-visual-panel { inset: 42px 18px 18px 40px; }
    .cu-section-head h2,
    .cu-form-head h2 { font-size: 38px; }
}

@media (max-width: 991.98px) {
    .cu-hero {
        min-height: 0;
        padding: 104px 0 88px;
    }

    .cu-h1 { font-size: 46px; }
    .cu-sub { font-size: 17px; }
    .cu-hero-visual {
        min-height: 480px;
        margin: 0 auto;
    }
    .cu-info-grid,
    .cu-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cu-sidebar {
        position: static;
    }
    .cu-section-head h2,
    .cu-form-head h2 { font-size: 34px; }
    .cu-cta h2 { font-size: 40px; }
}

@media (max-width: 767.98px) {
    .cu-hero {
        padding: 92px 0 76px;
    }

    .cu-h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .cu-hero-actions,
    .cu-cta-actions {
        align-items: stretch;
    }

    .cu-btn,
    .cu-submit-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .cu-trust-row span {
        width: 100%;
    }

    .cu-stats-row {
        grid-template-columns: 1fr;
    }

    .cu-stats-row div {
        padding: 16px;
    }

    .cu-hero-visual {
        min-height: 430px;
    }

    .cu-visual-panel {
        inset: 34px 0 0;
        padding: 18px;
    }

    .cu-float-card {
        width: 230px;
    }

    .cu-float-card-one {
        left: 8px;
    }

    .cu-float-card-two {
        right: 8px;
        bottom: 20px;
    }

    .cu-info-section,
    .cu-main,
    .cu-why,
    .cu-faq,
    .cu-cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .cu-info-grid,
    .cu-why-grid {
        grid-template-columns: 1fr;
    }

    .cu-form-wrap {
        padding: 24px;
    }

    .cu-section-head h2,
    .cu-form-head h2 {
        font-size: 30px;
    }

    .cu-cta h2 {
        font-size: 34px;
    }
}

@media (max-width: 575.98px) {
    .cu-hero {
        padding: 84px 0 66px;
    }

    .cu-h1 {
        font-size: 34px;
    }

    .cu-sub,
    .cu-section-head p,
    .cu-form-head p,
    .cu-cta p {
        font-size: 15px;
    }

    .cu-badge,
    .cu-section-kicker,
    .cu-cta-badge {
        max-width: 100%;
        align-items: flex-start;
        border-radius: 8px;
    }

    .cu-hero-visual {
        min-height: 390px;
    }

    .cu-visual-panel {
        position: relative;
        inset: auto;
    }

    .cu-float-card {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 12px;
        animation: none;
    }

    .cu-team-strip img,
    .cu-team-strip span {
        width: 42px;
        height: 42px;
    }

    .cu-info-card,
    .cu-why-card,
    .cu-sb-card,
    .cu-form-wrap {
        padding: 20px;
    }

    .cu-field .form-control,
    .cu-field .form-select {
        min-height: 58px;
        font-size: 14px;
    }

    .cu-field label {
        font-size: 13px;
    }

    .cu-sb-metrics {
        grid-template-columns: 1fr;
    }

    .cu-section-head h2,
    .cu-form-head h2 {
        font-size: 28px;
    }

    .cu-cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 374.98px) {
    .cu-h1 {
        font-size: 31px;
    }

    .cu-form-wrap,
    .cu-info-card,
    .cu-why-card,
    .cu-sb-card {
        padding: 18px;
    }

    .cu-faq-item .accordion-button {
        padding: 18px;
        font-size: 15px;
    }
}

/* ── Map Section ── */
.cu-map-section {
    padding: 0 0 96px;
    background:
        linear-gradient(180deg, var(--cu-soft), #fff 60%, var(--cu-soft));
}

.cu-map-head {
    max-width: 660px;
    margin: 0 0 40px;
}

.cu-map-wrap {
    position: relative;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.cu-map-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.cu-map-info {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, .14);
    max-width: 270px;
}

.cu-map-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(135deg, var(--cu-blue), var(--cu-cyan));
}

.cu-map-info h4 {
    margin: 0 0 6px;
    color: var(--cu-ink);
    font-size: 14px;
    font-weight: 900;
}

.cu-map-info p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

/* ── Social strip inside sidebar card ── */
.cu-social-strip {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.cu-social-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(148, 163, 184, .30);
    border-radius: 8px;
    color: #475569;
    font-size: 18px;
    text-decoration: none;
    transition: background .2s var(--cu-ease), color .2s var(--cu-ease), border-color .2s var(--cu-ease), transform .2s var(--cu-ease);
}

.cu-social-strip a:hover {
    color: #fff;
    background: var(--cu-blue);
    border-color: var(--cu-blue);
    transform: translateY(-2px);
}

/* ── Hours row inside sidebar ── */
.cu-hours-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, .80);
    font-size: 14px;
}

.cu-hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cu-hours-row i {
    flex: 0 0 auto;
    font-size: 18px;
    color: var(--cu-blue);
}

.cu-hours-row span {
    color: #475569;
    font-weight: 600;
}

/* ── WhatsApp CTA ── */
.cu-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s var(--cu-ease), box-shadow .2s var(--cu-ease), opacity .2s var(--cu-ease);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .26);
    margin-top: 14px;
}

.cu-wa-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, .34);
    text-decoration: none;
}

.cu-wa-btn i {
    font-size: 20px;
}

@media (max-width: 767.98px) {
    .cu-map-section { padding-bottom: 68px; }
    .cu-map-wrap iframe { height: 360px; }
    .cu-map-info { max-width: 200px; padding: 14px 16px; }
    .cu-map-info h4 { font-size: 13px; }
}

@media (max-width: 575.98px) {
    .cu-map-info { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .cu-page *,
    .cu-page *::before,
    .cu-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
