/* ══════════════════════════════════════════
   CONTACT US PAGE STYLES (sfv-theme-white)
   Theme: High Conversion. Frictionless. Trust.
══════════════════════════════════════════ */

/* ── Base Setup & Overrides ── */
#main {
    opacity: 1;
    animation: conFadeIn 0.8s ease-out forwards;
}



@keyframes conFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.con-section {
    padding: 100px 6vw;
    position: relative;
}

.bg-gray {
    background: #f8fafc;
}

.con-container {
    max-width: 1200px;
    margin: 0 auto;
}

.con-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mt-sm {
    margin-top: 16px;
}

.mt-md {
    margin-top: 24px;
}

.mb-lg {
    margin-bottom: 50px;
}

.con-heading {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

/* ── HERO & PRIMARY SPLIT ── */
.con-hero {
    padding: 100px 6vw;
    background: linear-gradient(180deg, #fdfbfb 0%, #f1f5f9 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.con-hero-split {
    display: flex;
    align-items: center;
    gap: 100px;
}

.ch-left {
    width: 52%;
}

.ch-right {
    width: 45%;
}

.ch-trust-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.ctb-icon {
    color: #16a34a;
    margin-right: 8px;
    font-weight: 900;
}

.con-title {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.con-title span {
    color: var(--blue-mid);
    display: inline-block;
    white-space: nowrap;
}

.con-subtitle {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.ch-benefits {
    margin-bottom: 40px;
}

.chb-item {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.chb-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    margin-right: 12px;
}

.ch-proof-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.cpm-avatars {
    display: flex;
}

.cpm-av,
.cpm-av-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid #fff;
    margin-left: -10px;
}

.cpm-av:first-child {
    margin-left: 0;
}

.cpm-av-num {
    background: #f1f5f9;
    color: var(--text-dark);
}

.ch-proof-mini p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* ── FORM CARD (FRICTION KILLER) ── */
.con-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    position: relative;
}

.cf-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 24px;
}

.cf-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cf-header p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.cf-step {
    transition: opacity 0.3s ease;
}

.cf-step.hidden {
    display: none;
    opacity: 0;
}

.cf-step-heading {
    font-weight: 700;
    color: var(--blue-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

/* Group Reveals */
#group-exp,
#group-insurance,
#group-other {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    overflow: hidden;
}

#group-exp.hidden,
#group-insurance.hidden,
#group-other.hidden {
    display: block !important;
    /* Override display:none to allow transition */
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.cf-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cf-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.cf-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.cf-chip:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.cf-chip.selected {
    background: #eff6ff;
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.cf-row {
    display: flex;
    gap: 20px;
}

.cf-row .cf-input-wrap {
    flex: 1;
}

.cf-phone-input {
    display: flex;
    gap: 8px;
}

.cf-select-ext {
    width: 100px;
    padding: 14px 8px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: #f8fafc;
    cursor: pointer;
}

.cf-phone-input input {
    flex: 1;
}

.cf-input-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-input-wrap textarea:focus {
    outline: none;
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cf-chip-group.small .cf-chip {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.cf-input-wrap {
    margin-bottom: 20px;
}

.cf-input-wrap label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.cf-input-wrap input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-input-wrap input:focus {
    outline: none;
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-con-primary {
    background: var(--text-dark);
    color: #fff;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-con-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.btn-con-primary.full {
    width: 100%;
}

.btn-glow {
    background: var(--blue-mid);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-glow:hover {
    background: var(--blue-deep);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.btn-text-sm {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    font-weight: 500;
    padding: 0;
}

.btn-text-sm:hover {
    color: var(--text-dark);
}

.cf-secure-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cfs-icon {
    font-size: 1rem;
}

.cf-error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
    display: none;
    animation: cfShake 0.4s ease-in-out;
}

@keyframes cfShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

.cf-input-wrap.has-error input,
.cf-input-wrap.has-error textarea,
.cf-input-wrap.has-error select {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.cf-input-wrap.has-error .cf-error-msg {
    display: block;
}

.cfs-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* ── QUICK CONTACT OPTIONS ── */
.cq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.cq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cq-card-highlight {
    border-color: #86efac;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.cq-card-highlight:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.cqc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.cqc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.bg-blue {
    background: #eff6ff;
    color: #2563eb;
}

.bg-green {
    background: #dcfce7;
    color: #16a34a;
}

.bg-gray-icon {
    background: #f1f5f9;
    color: #475569;
}

.cq-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cq-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
}

.cqc-action {
    font-weight: 700;
    font-size: 1.05rem;
}

.blue-text {
    color: #2563eb;
}

.green-text {
    color: #16a34a;
}

.gray-text {
    color: #475569;
    text-decoration: underline;
}

/* ── LOCATIONS ── */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cl-card {
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
}

.clc-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.clc-icon {
    font-size: 1.5rem;
    background: #f1f5f9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* margin-top: -6px; */
    flex-shrink: 0;
}

.clc-header h4 {
    font-size: 1.25rem;
    margin: 0;
}

.cl-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ── TRUST & FAQ ── */
.con-trust-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.ctb-icon-main {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.con-trust-block h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.con-trust-block p {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.con-trust-block-nspam {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    border: 1px solid #e2e8f0;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 10px 40px;
}

.con-accordion {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.ca-item {
    border-bottom: 1px solid var(--border);
}

.ca-item:last-child {
    border-bottom: none;
}

.ca-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ca-icon {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 300;
    transition: transform 0.3s;
}

.ca-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
    background: #fafafa;
}

.ca-content p {
    margin: 0;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.6;
}

.ca-item.is-open .ca-header {
    background: #fafafa;
}

.ca-item.is-open .ca-icon {
    transform: rotate(45deg);
    color: var(--text-dark);
}

.ca-item.is-open .ca-content {
    padding: 0 32px 24px 32px;
}

/* ── FINAL CTA ── */
.con-final {
    background: #f1f5f9;
    /* Soft light gray */
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.con-final-banner.island-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 40px;
    border-radius: 48px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--text-dark);
}

.con-final-banner.island-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

/* ── Beacon Pulse Animation (Symbolizing Contact) ── */
.con-beacon-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ripples-left,
.ripples-right {
    position: absolute;
    top: 50%;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    /* Center vertically */
}

.ripples-left {
    left: 0;
}

.ripples-right {
    right: 0;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(37, 99, 235, 0.4);
    /* Stronger blue */
    border-radius: 50%;
    opacity: 0;
}

.ripples-left .pulse-ring {
    animation: moveFromLeft 6s linear infinite;
}

.ripples-right .pulse-ring {
    animation: moveFromRight 6s linear infinite;
}

.pulse-ring:nth-child(1) {
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    animation-delay: 2s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 4s;
}

@keyframes moveFromLeft {
    0% {
        left: -600px;
        transform: scale(0.2);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        left: 50%;
        transform: translate(-50%, 0) scale(1.5);
        opacity: 0;
    }
}

@keyframes moveFromRight {
    0% {
        right: -600px;
        transform: scale(0.2);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        right: 50%;
        transform: translate(50%, 0) scale(1.5);
        opacity: 0;
    }
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--blue-mid);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
    z-index: 2;
}

@keyframes dotGlow {
    from {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.cfb-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cfb-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.cfb-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-con-solid-large {
    background: var(--slate-green);
    color: #fff;
    padding: 16px 20px 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-con-solid-large::before {
    content: '';
    position: absolute;
    top: var(--cy, 50%);
    left: var(--cx, 50%);
    width: 0;
    height: 0;
    background: var(--green-deep);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.btn-con-solid-large:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn-con-solid-large:hover::before {
    width: 600px;
    height: 600px;
}

.btn-circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--slate-green);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-con-solid-large:hover .btn-circle-icon {
    transform: translateX(4px);
}

/* ── FLOATING WHATSAPP ── */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    animation: bounceFloat 2s infinite ease-in-out;
    transition: transform 0.5s;
}

.floating-wa:hover {
    transform: scale(1.05) translateY(-5px);
    animation: none;
}

.floating-wa svg {
    width: 24px;
    height: 24px;
}

@keyframes bounceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ── STICKY MOBILE CTA BAR ── */
.sticky-cta-bar.floating-islands {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 24px;
    top: auto;
    left: auto;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    padding: 0;
}

.scb-circ {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.scb-circ:active {
    transform: scale(0.9);
}

.scb-circ svg {
    width: 28px;
    height: 28px;
}

.scb-phone {
    background: var(--text-dark);
}

.scb-wa {
    background: #25D366;
}

/* ── Responsive Overrides ── */
@media (max-width: 900px) {
    .con-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .con-hero-split {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .ch-left,
    .ch-right {
        width: 100%;
    }

    .ch-trust-badge {
        margin-inline: auto;
    }

    .con-subtitle {
        margin-inline: auto;
    }

    .ch-benefits {
        display: inline-block;
        text-align: left;
    }

    .ch-proof-mini {
        justify-content: center;
    }

    .con-form-card {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
        /* Keep form labels left-aligned */
    }



    .cq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cq-grid .cq-card:last-child {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        padding: 30px 40px;
    }

    .cq-grid .cq-card:last-child .cqc-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .cq-grid .cq-card:last-child .cqc-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .cq-grid .cq-card:last-child h4 {
        margin: 0;
    }

    .cq-grid .cq-card:last-child p {
        margin: 0;
        opacity: 0.8;
        font-size: 0.9rem;
    }

    .cq-grid .cq-card:last-child .cqc-action {
        margin-left: auto;
    }

    .cf-row {
        flex-direction: column;
        gap: 0;
    }

    .con-trust-block {
        padding: 30px 20px;
    }

    .con-final-banner {
        padding: 60px 20px;
    }

    .floating-wa {
        display: none;
    }

    /* Hide floating wa, use unified group */
    .sticky-cta-bar.floating-islands {
        display: flex;
        flex-direction: row;
        bottom: 95px;
        right: 60px;
        gap: 12px;
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — Contact Page
   Cozy, Contained, Native Feel. Desktop unaffected.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Global section padding ── */
    .con-section {
        padding: 60px 5vw;
    }

    /* ── Hero ── */
    .con-hero {
        padding: 100px 5vw 40px;
        min-height: auto;
        text-align: center;
        background: #fff;
    }

    .con-hero-split {
        flex-direction: column;
        gap: 40px;
    }

    .ch-left {
        width: 100%;
    }

    .ch-trust-badge {
        display: inline-flex;
        margin: 0 auto 24px;
        font-size: 0.75rem;
    }

    .con-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin-bottom: 20px;
    }

    .con-subtitle {
        font-size: 1.05rem;
        margin: 0 auto 32px;
        max-width: 100%;
    }

    .ch-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .chb-item {
        margin-bottom: 0;
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        max-width: none;
        display: flex;
        justify-content: center;
    }

    .ch-proof-mini {
        justify-content: center;
        padding-top: 24px;
        border-top: 1px solid #f1f5f9;
    }

    /* ── Form card (High Conversion) ── */
    .ch-right {
        width: 100%;
    }

    .con-form-card {
        padding: 30px 20px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .cf-header {
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .cf-header h3 {
        font-size: 1.35rem;
    }

    .cf-chip {
        padding: 12px 10px;
        font-size: 0.85rem;
        width: calc(50% - 5px);
        flex: 0 0 auto;
        text-align: center;
        border-radius: 36px;
    }

    .cf-chip-group {
        gap: 10px;
        justify-content: center;
    }

    .cf-input-wrap input,
    .cf-input-wrap textarea,
    .cf-select-ext {
        padding: 14px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .btn-con-primary {
        border-radius: 36px !important;
        padding: 18px;
        font-size: 1.05rem;
        margin-top: 10px;
    }

    /* ── Quick contact cards (Two-Line Grid for Phone) ── */
    .con-quick {
        padding: 60px 5vw;
    }

    .cq-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }

    .cq-card,
    .cq-grid .cq-card:last-child {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "icon title"
            "icon action" !important;
        align-items: center !important;
        justify-items: start !important;
        text-align: left !important;
        padding: 14px 20px !important;
        gap: 2px 16px !important;
        border-radius: 16px;
        width: 100%;
        grid-column: auto;
    }

    .cqc-icon {
        grid-area: icon;
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        flex-shrink: 0;
        font-size: 1.2rem;
    }

    .cq-card h4 {
        grid-area: title;
        font-size: 0.85rem;
        margin: 0;
        color: #64748b;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .cq-card p {
        display: none;
        /* Keep it thin */
    }

    .cqc-action {
        grid-area: action;
        font-size: 1rem;
        font-weight: 700;
        margin: 0 !important;
        word-break: normal;
        text-align: left !important;
        justify-self: start !important;
        max-width: none;
    }

    .cqc-badge {
        font-size: 0.6rem;
        top: -8px;
        padding: 2px 8px;
    }

    /* ── Location cards ── */
    .cl-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cl-card {
        padding: 30px 24px;
        border-radius: 20px;
        text-align: center;
    }

    .clc-header {
        justify-content: center;
    }

    /* ── Trust & FAQ ── */
    .con-trust-block {
        padding: 32px 20px;
        border-radius: 24px;
        margin-bottom: 60px;
    }

    .con-trust-block h3 {
        font-size: 1.4rem;
    }

    .con-trust-block-nspam {
        padding: 20px;
        font-size: 0.95rem;
    }

    .con-accordion {
        border-radius: 20px;
    }

    .ca-header {
        padding: 20px;
        font-size: 1.05rem;
    }

    .ca-content {
        padding: 0 20px;
    }

    .ca-item.is-open .ca-content {
        padding: 0 20px 20px;
    }

    /* ── Final CTA banner ── */
    .con-final {
        padding: 80px 5vw;
    }

    .con-final-banner.island-card {
        padding: 60px 24px;
        border-radius: 32px;
    }

    .cfb-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .cfb-content p {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .btn-con-solid-large {
        padding: 18px 40px;
        font-size: 1.1rem;
        border-radius: 36px !important;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* ── Sticky CTA bar (Circular Group) ── */
    .sticky-cta-bar.floating-islands {
        bottom: 95px;
        /* Elevated to clear bottom navbar */
        right: 30px;
        flex-direction: row;
        gap: 12px;
    }

    .scb-circ {
        width: 52px;
        height: 52px;
    }

    .scb-btn {
        padding: 14px;
        border-radius: 36px;
        font-size: 0.95rem;
    }

    .con-heading {
        font-size: clamp(1.6rem, 5vw, 2.1rem);
        text-align: center;
    }
}

/* ── Extra-small phones ── */
@media (max-width: 400px) {
    .con-title {
        font-size: 1.8rem;
    }

    .cf-chip {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .cfb-content h2 {
        font-size: 1.5rem;
    }
}

/* ══════════════════════════════════════════
   LOCALIZED ICON SYSTEM (sfv-icon-box)
══════════════════════════════════════════ */
.sfv-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    color: var(--blue-mid, #2563eb);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border, #e5e7eb);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sfv-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sfv-icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light, #dbeafe);
}

.sfv-icon-box:hover::before {
    opacity: 1;
}

.sfv-icon-box i,
.sfv-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    position: relative;
    z-index: 1;
}

.sfv-icon-box--sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sfv-icon-box--sm i,
.sfv-icon-box--sm svg {
    width: 20px;
    height: 20px;
}

.sfv-icon-box--lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.sfv-icon-box--lg i,
.sfv-icon-box--lg svg {
    width: 28px;
    height: 28px;
}

.icon-inline {
    display: inline-flex;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;

}

.sfv-icon-box--blue {
    color: var(--blue-mid, #2563eb);
}

.sfv-icon-box--green {
    color: var(--slate-green, #22c55e);
}

.sfv-icon-box--amber {
    color: #f59e0b;
}

.sfv-icon-box--indigo {
    color: #4f46e5;
}

.sfv-icon-box--red {
    color: #ef4444;
}