:root {
    --navy: #061B5F;
    --deep-navy: #03113F;
    --royal-blue: #0B3D91;
    --turquoise: #18D6D0;
    --soft-turquoise: #E8FBFA;
    --white: #FFFFFF;
    --soft-gray: #F6F8FB;
    --text: #172033;
    --muted-text: #64748B;
    --soft-gold: #C6A75B;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --border: rgba(6, 27, 95, .12);
    --shadow: 0 24px 60px rgba(3, 17, 63, .12);
    --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.narrow { max-width: 850px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--royal-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--turquoise);
    border-radius: 999px;
}
.eyebrow.light { color: var(--white); }
.eyebrow.light::before { background: var(--turquoise); }
h1, h2, h3 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.05;
    margin: 0 0 18px;
}
h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.055em; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.045em; }
h3 { font-size: 22px; letter-spacing: -.025em; }
p { margin: 0 0 20px; color: var(--muted-text); }
.lead { font-size: 20px; max-width: 650px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--turquoise); color: var(--navy); box-shadow: 0 14px 28px rgba(24, 214, 208, .28); }
.btn-primary:hover { box-shadow: 0 20px 36px rgba(24, 214, 208, .34); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: rgba(6, 27, 95, .20); box-shadow: 0 10px 24px rgba(3, 17, 63, .05); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(6, 27, 95, .08);
}
.header-inner {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--navy); font-weight: 700; font-size: 15px; }
.main-nav a { position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--turquoise); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.header-cta { padding: 13px 22px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 800; box-shadow: 0 12px 24px rgba(6, 27, 95, .18); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 9px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; border-radius: 999px; }
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 16%, rgba(24,214,208,.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: auto -12% -25% auto;
    width: 520px;
    height: 520px;
    background: rgba(24, 214, 208, .12);
    border-radius: 999px;
    filter: blur(10px);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 62px;
    align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
    display: inline-flex;
    padding: 10px 16px;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(3, 17, 63, .04);
}
.hero-visual { position: relative; z-index: 2; }
.hero-card {
    position: relative;
    width: min(470px, 100%);
    margin-left: auto;
    border-radius: 36px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(232,251,250,.58));
    box-shadow: var(--shadow);
    border: 1px solid rgba(6, 27, 95, .10);
}
.hero-card > img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    object-position: 52% 24%;
    border-radius: 26px;
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(6, 27, 95, .10);
    box-shadow: 0 18px 36px rgba(3, 17, 63, .12);
    border-radius: 20px;
    padding: 15px 18px;
    color: var(--navy);
    backdrop-filter: blur(10px);
}
.floating-card strong { display: block; font-size: 16px; font-weight: 900; }
.floating-card span { color: var(--muted-text); font-size: 14px; font-weight: 700; }
.floating-card-top { top: 34px; left: -44px; }
.floating-card-bottom { right: -24px; bottom: 48px; }
.brand-strip { background: var(--deep-navy); color: var(--white); padding: 24px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strip-grid div { padding: 8px 0; }
.strip-grid strong { display: block; font-weight: 900; font-size: 18px; }
.strip-grid span { color: rgba(255,255,255,.72); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .detail-card, .testimonial-card, .contact-card, .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(3, 17, 63, .06);
}
.service-card { padding: 32px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card svg, .detail-card svg, .clean-list svg {
    width: 42px;
    height: 42px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card svg { background: var(--soft-turquoise); border-radius: 16px; padding: 9px; margin-bottom: 20px; }
.service-card a { color: var(--royal-blue); font-weight: 900; }
.accident-band {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(24,214,208,.20), transparent 30%),
        linear-gradient(135deg, var(--deep-navy), var(--navy));
}
.accident-band h2, .accident-band p { color: var(--white); }
.accident-band p { color: rgba(255,255,255,.76); max-width: 600px; }
.accident-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.accident-steps { display: grid; gap: 16px; }
.accident-steps div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    padding: 24px;
}
.accident-steps span, .steps-list span { color: var(--turquoise); font-family: 'Manrope'; font-weight: 900; letter-spacing: .08em; }
.accident-steps strong { display: block; font-size: 21px; margin: 7px 0; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center; }
.photo-frame { border-radius: 36px; padding: 16px; border: 1px solid var(--border); background: linear-gradient(145deg, #fff, var(--soft-turquoise)); box-shadow: var(--shadow); }
.photo-frame img { border-radius: 26px; height: 620px; width: 100%; object-fit: cover; object-position: 50% 25%; }
.clean-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.clean-list li { display: flex; gap: 12px; align-items: center; color: var(--navy); font-weight: 800; }
.clean-list svg { width: 22px; height: 22px; stroke: var(--turquoise); }
.soft-section { background: var(--soft-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 30px; }
.testimonial-card p { color: var(--text); font-size: 18px; }
.testimonial-card strong { color: var(--navy); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 48px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.accordion button {
    width: 100%;
    padding: 22px 24px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 20px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 900;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.accordion button span { color: var(--turquoise); }
.accordion div {
    display: none;
    padding: 0 24px 20px;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--border);
    border-top: 0;
    margin-top: -18px;
}
.accordion div.is-open { display: block; }
.accordion.large button { font-size: 20px; }
.cta-section { padding: 84px 0; background: var(--white); }
.cta-box {
    border-radius: 36px;
    background: linear-gradient(135deg, var(--deep-navy), var(--navy));
    color: var(--white);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow);
}
.cta-box h2, .cta-box p { color: var(--white); }
.cta-box p { color: rgba(255,255,255,.74); }
.page-hero {
    padding: 98px 0 78px;
    background:
        radial-gradient(circle at 88% 18%, rgba(24,214,208,.16), transparent 30%),
        linear-gradient(180deg, #fff, #f8fbff);
    border-bottom: 1px solid var(--border);
}
.page-hero .container { max-width: 880px; }
.page-hero p { font-size: 20px; max-width: 730px; }
.dark-page { background: linear-gradient(135deg, var(--deep-navy), var(--navy)); }
.dark-page h1, .dark-page p { color: var(--white); }
.dark-page p { color: rgba(255,255,255,.76); }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card { padding: 36px; }
.detail-card svg { margin-bottom: 20px; background: var(--soft-turquoise); border-radius: 18px; padding: 10px; }
.detail-card.wide { grid-column: 1 / -1; }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.steps-list { display: grid; gap: 18px; }
.steps-list div { padding: 24px 26px; border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 16px 36px rgba(3,17,63,.05); }
.mini-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-card-grid div { padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: 22px; color: var(--navy); font-weight: 900; text-align: center; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.contact-card, .form-card { padding: 34px; }
.contact-line { display: flex; padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--navy); font-weight: 900; }
.mini-disclaimer, .form-note { font-size: 13px; margin-top: 20px; }
.form-card { display: grid; gap: 16px; }
.form-card label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
.form-card input, .form-card select, .form-card textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    color: var(--text);
    outline: none;
    background: var(--white);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(24,214,208,.16); }
.legal-copy h2 { font-size: 28px; margin-top: 30px; }
.site-footer { background: var(--deep-navy); color: var(--white); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.25fr; gap: 36px; }
.footer-logo { width: 220px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer h3 { color: var(--white); font-size: 18px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer a { display: block; margin-bottom: 10px; }
.footer-social a { color: var(--turquoise); font-weight: 800; }
.footer-disclaimer { font-size: 13px; }
.footer-bottom { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; color: rgba(255,255,255,.62); font-size: 14px; }
.mobile-action-bar { display: none; }
@media (max-width: 1040px) {
    .header-cta { display: none; }
    .brand img { width: 136px; }
    .main-nav { gap: 18px; font-size: 14px; }
    .hero-grid, .about-grid, .accident-grid, .faq-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
    .hero-card { margin: 20px auto 0; }
    .floating-card-top { left: 12px; }
    .floating-card-bottom { right: 12px; }
    .service-grid, .testimonial-grid, .mini-card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    body { padding-bottom: 72px; }
    .container { width: min(100% - 28px, 1160px); }
    .section-pad { padding: 68px 0; }
    .header-inner { height: 88px; }
    .brand img { width: 118px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 88px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 14px; border-radius: 14px; }
    .main-nav a:hover { background: var(--soft-gray); }
    h1 { font-size: clamp(38px, 12vw, 58px); }
    h2 { font-size: clamp(30px, 9vw, 44px); }
    .lead, .page-hero p { font-size: 18px; }
    .hero-grid { gap: 34px; }
    .hero-card > img { height: 560px; object-position: 52% 20%; }
    .floating-card { position: static; margin-top: 12px; }
    .brand-strip { padding: 12px 0; }
    .strip-grid, .service-grid, .testimonial-grid, .detail-grid, .mini-card-grid, .footer-grid { grid-template-columns: 1fr; }
    .detail-card.wide { grid-column: auto; }
    .service-card, .detail-card, .contact-card, .form-card { padding: 26px; }
    .photo-frame img { height: 540px; object-position: 50% 18%; }
    .cta-box { flex-direction: column; align-items: flex-start; padding: 32px; }
    .mobile-action-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 70;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        background: rgba(255,255,255,.92);
        border: 1px solid var(--border);
        border-radius: 999px;
        box-shadow: 0 18px 45px rgba(3,17,63,.18);
        backdrop-filter: blur(16px);
    }
    .mobile-action-bar a {
        min-height: 48px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 900;
        color: var(--navy);
    }
    .mobile-action-bar a:first-child { background: var(--soft-gray); }
    .mobile-action-bar a:last-child { background: var(--turquoise); }
}
@media (max-width: 430px) {
    .hero-card > img { height: 500px; }
    .photo-frame img { height: 500px; }
    .hero-actions .btn { width: 100%; }
}


/* V1.0.2 refinements: social icons, WhatsApp mobile action, partner module */
.btn-with-icon { gap: 10px; }
.btn-with-icon svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.social-inline,
.contact-line-icon {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}
.social-inline svg,
.contact-line-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}
.instagram-inline {
    color: var(--turquoise) !important;
    font-weight: 900;
}
.contact-line-icon svg { fill: var(--royal-blue); }
.partner-feature {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(24,214,208,.12), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.partner-highlight {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 38px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.partner-copy {
    padding: clamp(28px, 4vw, 52px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 12%, rgba(24,214,208,.18), transparent 26%),
        linear-gradient(135deg, var(--deep-navy), var(--navy));
    color: var(--white);
}
.partner-copy h3 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
}
.partner-copy p { color: rgba(255,255,255,.78); }
.partner-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(24,214,208,.14);
    color: var(--turquoise);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    margin-bottom: 22px;
}
.partner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}
.partner-pills span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
}
.partner-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.partner-contact-row a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--turquoise);
    color: var(--navy);
    font-weight: 900;
}
.partner-copy .mini-disclaimer {
    color: rgba(255,255,255,.60);
    max-width: 680px;
}
.partner-visual-card {
    position: relative;
    min-height: 620px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, #fff, var(--soft-turquoise));
}
.partner-person {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center top;
}
.partner-logo-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 22px;
    padding: 18px 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 38px rgba(3,17,63,.16);
    backdrop-filter: blur(14px);
}
.partner-logo-badge img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}
.partner-carousel-wrap { margin-top: 34px; }
.partner-carousel {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,.70);
    border: 1px solid var(--border);
    box-shadow: 0 18px 48px rgba(3,17,63,.06);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partner-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 18px;
    animation: partnerMarquee 34s linear infinite;
}
.partner-carousel:hover .partner-track { animation-play-state: paused; }
.partner-logo-card {
    width: 245px;
    min-height: 132px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(6,27,95,.10);
    color: var(--navy);
    text-align: center;
}
.partner-logo-card img {
    max-width: 190px;
    width: 100%;
    height: 62px;
    object-fit: contain;
    border-radius: 0;
}
.partner-logo-card span {
    color: var(--muted-text);
    font-size: 13px;
    font-weight: 800;
}
.logo-card-dark { background: var(--deep-navy); }
.logo-card-dark span { color: rgba(255,255,255,.72); }

.martinez-card-gold {
    background: linear-gradient(135deg, var(--deep-navy), var(--navy));
    border-color: rgba(198,167,91,.30);
}
.martinez-card-gold img {
    max-width: 202px;
    height: 70px;
}
.martinez-card-gold span { color: rgba(255,255,255,.78); }
.martinez-card-navy {
    background: var(--white);
    border-color: rgba(6,27,95,.12);
}
.martinez-card-navy img {
    max-width: 202px;
    height: 70px;
}
.partner-text-card strong {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.05;
}
.partner-text-card::before {
    content: '';
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--turquoise);
}
.service-partner-mini {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    margin-top: 16px;
    border-radius: 22px;
    background: var(--soft-gray);
    border: 1px solid var(--border);
}
.service-partner-mini img {
    width: 100%;
    height: 78px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    background: var(--white);
    padding: 8px;
}
.service-partner-mini strong {
    display: block;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 4px;
}
.service-partner-mini span {
    display: block;
    color: var(--muted-text);
}
@keyframes partnerMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 1040px) {
    .partner-highlight { grid-template-columns: 1fr; }
    .partner-visual-card, .partner-person { min-height: 560px; }
}
@media (max-width: 760px) {
    body { padding-bottom: 84px; }
    .partner-highlight { padding: 12px; border-radius: 30px; }
    .partner-copy { padding: 28px; }
    .partner-contact-row a { width: 100%; justify-content: center; font-size: 13px; }
    .partner-visual-card, .partner-person { min-height: 500px; }
    .partner-logo-badge img { height: 76px; }
    .partner-logo-card { width: 210px; min-height: 118px; }
    .partner-track { animation-duration: 28s; }
    .service-partner-mini { grid-template-columns: 1fr; text-align: left; }
    .service-partner-mini img { max-width: 260px; }
    .mobile-action-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .mobile-action-bar svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        flex: 0 0 auto;
    }
    .mobile-action-bar a:first-child,
    .mobile-action-bar .mobile-call {
        background: var(--soft-gray);
        color: var(--navy);
    }
    .mobile-action-bar a:last-child,
    .mobile-action-bar .mobile-whatsapp {
        background: var(--whatsapp);
        color: var(--white);
        box-shadow: 0 12px 24px rgba(37, 211, 102, .30);
    }
}
@media (max-width: 430px) {
    .partner-visual-card, .partner-person { min-height: 440px; }
    .partner-logo-badge { left: 14px; right: 14px; bottom: 14px; }
}

/* V1.0.3: carousel lives in Services, Home keeps only the featured partner block */
.services-partner-carousel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 18%, rgba(24,214,208,.12), transparent 26%),
        linear-gradient(180deg, var(--white) 0%, var(--soft-gray) 100%);
    border-top: 1px solid rgba(6,27,95,.06);
}
.services-partner-carousel .section-head {
    max-width: 860px;
}
.services-partner-carousel .partner-carousel {
    background: rgba(255,255,255,.88);
}
