/*
 * ESA funnel landing page (first screen of /esa/funnel).
 *
 * Content is adapted from the waggy.pet marketing page, but the look is 100%
 * Verify.Dog: white cards on the console background, yellow (#FDD000) primary
 * with black text, coral (#ff6935) decorative accent. Wider marketing-grade
 * layout with real two-column hero / testimonial and multi-column grids, then
 * it hands off to the question wizard on "Start free assessment".
 */

.esa-landing {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 20px 100px;
}

/* Standard section card. */
.esa-lp-card {
    background: #fff;
    border: 1px solid var(--esa-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 27, 45, 0.06);
    padding: 32px 24px;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .esa-lp-card { padding: 48px 44px; }
}

.esa-lp-card > *:last-child { margin-bottom: 0; }

/* Section eyebrow / intro / titles ------------------------------------- */
.esa-lp-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
    font-weight: 800;
    color: var(--esa-accent);
    margin: 0 auto 10px;
}
.esa-lp-eyebrow--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.esa-landing .esa-step__title,
.esa-lp-section-title {
    font-size: clamp(24px, 3.4vw, 32px);
}

.esa-lp-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 640px;
    margin: 0 auto 28px;
}

/* ---- Hero -------------------------------------------------------------- */
.esa-lp-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
        "copytop visual"
        "cta     cta";
    column-gap: 40px;
    row-gap: 20px;
    align-items: stretch;
    background: radial-gradient(120% 130% at 100% 0%, #fff2bf 0%, #fffdf3 46%, #ffffff 100%);
    border: 1px solid #f0e7bf;
    border-radius: 28px;
    padding: 48px;
    margin-bottom: 24px;
}
.esa-lp-hero__copytop {
    grid-area: copytop;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
}
/*
 * Three positioned blocks (spacing INSIDE each block is sacred):
 *  1) .esa-lp-hero__head  — eyebrow + title
 *  2) .esa-lp-hero__lead  — body copy
 *  3) .esa-hero__badges   — guarantee + rating
 * space-between pins (1) to image top and (3) to image bottom.
 */
.esa-lp-hero__head {
    flex: 0 0 auto;
    margin-top: 35px;
}
.esa-lp-hero__copytop > .esa-lp-hero__lead {
    flex: 0 0 auto;
    margin: 0;
}
.esa-lp-hero__copytop > .esa-hero__badges {
    flex: 0 0 auto;
    margin: 0 0 35px;
    width: 100%;
    max-width: none;
}
/* PSD letter hero nudges (after base so they win cleanly) */
.esa-lp-hero--psd .esa-lp-hero__head {
    margin-top: 20px;
}
.esa-lp-hero--psd .esa-lp-hero__copytop > .esa-lp-hero__lead {
    margin-top: 20px;
}
.esa-lp-hero--psd .esa-lp-hero__copytop > .esa-hero__badges {
    margin: 20px 0 15px;
}
/* Service dog registration — fixed 20px between head / lead / badges */
.esa-lp-hero--sd .esa-lp-hero__copytop {
    justify-content: flex-start;
    gap: 20px;
    height: auto;
    min-height: 0;
}
.esa-lp-hero--sd .esa-lp-hero__head {
    margin-top: 0;
}
.esa-lp-hero--sd .esa-lp-hero__copytop > .esa-lp-hero__lead {
    margin: 0;
}
.esa-lp-hero--sd .esa-lp-hero__copytop > .esa-hero__badges {
    margin: 0;
}
.esa-lp-hero__cta {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
}
.esa-lp-hero__visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.esa-lp-hero__title {
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.12;
    font-weight: 800;
    color: var(--esa-ink);
    margin: 6px 0 14px;
}
/* Drop only the space-after-title when lead is a separate positioned sibling */
.esa-lp-hero__head .esa-lp-hero__title {
    margin-bottom: 0;
}

.esa-lp-hero__lead {
    font-size: 18px;
    line-height: 1.55;
    color: #45505f;
    margin: 0;
    max-width: 520px;
}

.esa-lp-hero__actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
}
.esa-lp-hero__actions .esa-btn,
.esa-lp-guarantee__cta .esa-btn,
.esa-lp-testimonial__cta .esa-btn,
.esa-lp-cta .esa-btn {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.esa-lp-hero__img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 26px rgba(15, 27, 45, 0.12));
}
.esa-lp-hero__img--a {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 860px) {
    .esa-lp-hero__img--a { width: 100%; }
}

@media (max-width: 860px) {
    .esa-lp-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copytop"
            "visual"
            "cta";
        row-gap: 22px;
        padding: 32px 22px;
        text-align: center;
    }
    .esa-lp-hero__copytop,
    .esa-lp-hero__cta { align-self: auto; }
    .esa-lp-hero__copytop {
        justify-content: flex-start;
        height: auto;
        min-height: 0;
        gap: 22px;
    }
    .esa-lp-eyebrow--left { text-align: center; }
    .esa-lp-hero__lead { margin-left: auto; margin-right: auto; }
    .esa-lp-hero__visual { max-width: 460px; margin: 0 auto; }
    .esa-lp-hero__cta .esa-hero__badges--left,
    .esa-lp-hero__copytop .esa-hero__badges--left {
        align-items: flex-start;
        text-align: left;
    }
}

/* Hero trust badges sit above the CTA button — left-aligned */
.esa-lp-hero__cta .esa-hero__badges {
    margin: 0;
    width: 100%;
}
.esa-hero__badges--left {
    align-items: flex-start;
    align-self: stretch;
    margin-left: 0;
    margin-right: auto;
    max-width: none;
    text-align: left;
}

/* ---- Credibility / trust strip — four horizontal cards ---------------- */
.esa-lp-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 24px;
}
.esa-lp-trust__card {
    background: #fff;
    border: 1px solid #f0e7bf;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 27, 45, 0.06);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.esa-lp-trust__body {
    min-width: 0;
}
.esa-lp-trust__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--esa-ink);
    line-height: 1.3;
}
.esa-lp-trust__sub {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--esa-muted);
    line-height: 1.35;
}
.esa-lp-trust__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.esa-lp-trust__meta b {
    font-size: 21px;
    font-weight: 800;
    color: var(--esa-ink);
    letter-spacing: -0.02em;
}
.esa-lp-trust__meta em {
    font-style: normal;
    color: var(--esa-accent);
}
.esa-lp-trust__meta > span {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 500;
    color: var(--esa-muted);
}

/* Circular icon badges — brand yellow / black only. */
.esa-lp-trust__ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff3bf;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 27px 27px;
}
.esa-lp-trust__ico--brand { background-color: var(--esa-yellow); }
.esa-lp-ico--paw { background-size: 30px 30px; }

@media (max-width: 992px) {
    .esa-lp-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .esa-lp-trust {
        grid-template-columns: 1fr;
    }
}

.esa-lp-ico--shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.5-3 7.6-7 9-4-1.4-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.esa-lp-ico--doc { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6v20h12V6z'/%3E%3Cpath d='M14 2v4h4'/%3E%3Cpath d='M9 13h6M9 17h6'/%3E%3C/svg%3E"); }
.esa-lp-ico--user { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5.5 20c0-3.6 2.9-6 6.5-6s6.5 2.4 6.5 6'/%3E%3C/svg%3E"); }
.esa-lp-ico--paw { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3E%3Ccircle cx='6' cy='10.5' r='2'/%3E%3Ccircle cx='10' cy='6.8' r='2'/%3E%3Ccircle cx='14' cy='6.8' r='2'/%3E%3Ccircle cx='18' cy='10.5' r='2'/%3E%3Cpath d='M12 11.2c-2.8 0-5 1.9-5 4.1 0 1.6 1.3 2.3 2.7 2.3 1 0 1.6-.5 2.3-.5s1.3.5 2.3.5c1.4 0 2.7-.7 2.7-2.3 0-2.2-2.2-4.1-5-4.1z'/%3E%3C/svg%3E"); }
.esa-lp-ico--cal { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5' width='17' height='16' rx='2'/%3E%3Cpath d='M3.5 9h17M8 3v4M16 3v4'/%3E%3C/svg%3E"); }


/* ---- 3 simple steps ---------------------------------------------------- */
.esa-lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 0 auto 28px;
}

.esa-lp-step {
    position: relative;
    background: #fbfbfc;
    border: 1px solid var(--esa-line);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
}
.esa-lp-step__icon {
    display: block;
    width: 134px;
    height: 134px;
    object-fit: contain;
    margin: 4px auto 14px;
}
.esa-lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--esa-yellow);
    color: #000;
    font-weight: 800;
    font-size: 23px;
    margin-bottom: 6px;
    box-shadow: 0 6px 16px rgba(253, 208, 0, 0.4);
}
.esa-lp-step h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--esa-ink);
    margin: 0 0 8px;
}
.esa-lp-step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--esa-muted);
    margin: 0;
}

/* ---- Comparison table (3 providers) ------------------------------------ */
.esa-lp-compare__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto 20px;
}
.esa-lp-compare {
    width: 100%;
    min-width: 520px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
}
.esa-lp-compare th,
.esa-lp-compare td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--esa-line);
    vertical-align: middle;
}
.esa-lp-compare thead th {
    font-size: 13px;
    color: var(--esa-muted);
    font-weight: 700;
    border-bottom: 2px solid var(--esa-line);
}
.esa-lp-compare tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--esa-ink);
    white-space: nowrap;
}
.esa-lp-compare tbody th a {
    color: var(--esa-accent, #ff6935);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}
.esa-lp-compare tbody th a:visited {
    color: var(--esa-accent, #ff6935);
}
.esa-lp-compare tbody th a:hover,
.esa-lp-compare tbody th a:focus-visible {
    color: #c9451f;
}
.esa-lp-compare__us { background: #fffbe6; }
.esa-lp-compare thead th.esa-lp-compare__us {
    background: var(--esa-yellow);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}
.esa-lp-compare tbody tr:last-child td,
.esa-lp-compare tbody tr:last-child th { border-bottom: none; }
.esa-lp-compare tbody tr:last-child .esa-lp-compare__us { border-radius: 0 0 12px 12px; }

.esa-lp-yes { color: #128a3a; font-weight: 800; font-size: 17px; }
.esa-lp-no { color: #dc2626; font-weight: 800; font-size: 17px; }
.esa-lp-strong { color: #000; font-weight: 800; }

.esa-lp-swipe {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--esa-muted);
    margin-bottom: 10px;
}
@media (min-width: 700px) {
    .esa-lp-swipe { display: none; }
    .esa-lp-compare { min-width: 0; }
}

/* ---- Clinicians -------------------------------------------------------- */
.esa-lp-clins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 0 auto 22px;
}
.esa-lp-clin {
    background: #fbfbfc;
    border: 1px solid var(--esa-line);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}
.esa-lp-clin__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 6px 18px rgba(15, 27, 45, 0.14);
}
.esa-lp-clin__role {
    display: block;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 11px;
    font-weight: 800;
    color: var(--esa-accent);
    margin-bottom: 5px;
}
.esa-lp-clin__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--esa-ink);
    margin: 0 0 2px;
}
.esa-lp-clin__cred {
    font-size: 12.5px;
    color: var(--esa-muted);
    margin: 0 0 12px;
}
.esa-lp-clin__quote {
    font-size: 14.5px;
    line-height: 1.6;
    font-style: italic;
    color: #2e3644;
    margin: 0;
}
.esa-lp-trustline {
    text-align: center;
    font-size: 13px;
    color: var(--esa-muted);
    margin: 4px 0 0;
}

/* Trust pills / badges. */
.esa-lp-pills {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
}
.esa-lp-pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #f0e7bf;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--esa-ink);
    box-shadow: 0 2px 8px rgba(15, 27, 45, 0.05);
}
.esa-lp-pills li::before {
    content: "";
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--esa-yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}

/* ---- Testimonial (2-column) ------------------------------------------- */
.esa-lp-testimonial {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
        "media content"
        "cta cta";
    gap: 36px;
    align-items: center;
    background: #fffdf2;
    border-color: #f0e7bf;
}
.esa-lp-testimonial__media { grid-area: media; }
.esa-lp-testimonial__content { grid-area: content; }
.esa-lp-testimonial__cta { grid-area: cta; }
.esa-lp-testimonial__media img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 12px 28px rgba(15, 27, 45, 0.12);
}
.esa-lp-quote {
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.3;
    font-weight: 800;
    color: var(--esa-ink);
    margin: 6px 0 16px;
}
.esa-lp-testimonial__body {
    font-size: 16px;
    line-height: 1.65;
    font-style: italic;
    color: #2e3644;
    margin: 0 0 16px;
}
.esa-lp-testimonial__by {
    font-size: 14px;
    font-weight: 800;
    color: var(--esa-ink);
    margin: 0;
}
.esa-lp-testimonial__by span {
    display: block;
    font-weight: 600;
    color: var(--esa-muted);
    margin-top: 3px;
}
.esa-lp-testimonial__cta {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}
@media (max-width: 760px) {
    .esa-lp-testimonial__cta .esa-btn { width: 100%; max-width: 300px; }
}
@media (max-width: 760px) {
    .esa-lp-testimonial { grid-template-columns: 1fr; gap: 22px; text-align: center; }
    .esa-lp-eyebrow--left { text-align: center; }
}

/* ---- Guarantee (centered, large badge) -------------------------------- */
.esa-lp-guarantee {
    background: #fffdf2;
    border-color: #f0e7bf;
    text-align: center;
}
.esa-lp-guarantee__title {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 800;
    color: var(--esa-ink);
    margin: 6px 0 12px;
}
.esa-lp-guarantee__text {
    font-size: 16px;
    line-height: 1.6;
    color: #45505f;
    margin: 0 auto 24px;
    /* Constrain the measure and let the browser split into two even lines
       instead of one long line + a short stub. */
    max-width: 760px;
    text-wrap: balance;
}
.esa-lp-guarantee__badge {
    width: 375px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 4px auto 0;
}

/* ---- FAQ --------------------------------------------------------------- */
.esa-lp-faq { max-width: 780px; margin: 0 auto; }
.esa-lp-faq__item {
    border: 1px solid var(--esa-line);
    border-radius: 14px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.esa-lp-faq__item:last-child { margin-bottom: 0; }
.esa-lp-faq__item[open] {
    border-color: #f0e7bf;
    box-shadow: 0 8px 20px rgba(15, 27, 45, 0.05);
}
.esa-lp-faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--esa-ink);
}
.esa-lp-faq__item summary::-webkit-details-marker { display: none; }
.esa-lp-faq__item summary:after {
    content: "+";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--esa-yellow);
    color: #000;
    font-weight: 800;
    font-size: 19px;
    line-height: 1;
}
.esa-lp-faq__item[open] summary:after { content: "\2212"; }
.esa-lp-faq__answer {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #2e3644;
    margin: 0;
}

/* ---- Repeated CTA groups ---------------------------------------------- */
.esa-lp-cta {
    max-width: 460px;
    width: 100%;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.esa-lp-cta__note {
    font-size: 13px;
    color: var(--esa-muted);
    margin: 12px 0 0;
}
.esa-lp-cta .esa-lp-pills { margin-top: 16px; }
/* Keep the CTA badges on a single line on anything larger than mobile. */
@media (min-width: 576px) {
    .esa-lp-cta .esa-lp-pills { flex-wrap: nowrap; }
    .esa-lp-cta .esa-lp-pills li { white-space: nowrap; }
}

/* Landing fine print is plain, centered body copy — not a gray "card in a
   card". Keeps every stacked block on the same visual boundary. */
.esa-landing .esa-fineprint {
    background: transparent;
    padding: 0;
    max-width: 680px;
    margin: 24px auto 0;
    text-align: center;
}
.esa-landing .esa-fineprint p {
    color: var(--esa-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Modest Scan & Go showcase (scaled home section) */
.sdr-sg {
    --sdrSgYellow: #FDD000;
    --sdrSgText: #121212;
    --sdrSgMuted: #5f5f5f;
    --sdrSgLine: #dddddd;
    --sdrSgCard: #ffffff;
    overflow: hidden;
}
.sdr-sg__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
.sdr-sg__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--sdrSgYellow);
    color: var(--sdrSgText);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
.sdr-sg__title {
    margin: 0;
    color: var(--sdrSgText);
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
}
.sdr-sg__squiggle {
    width: 64px;
    color: var(--sdrSgYellow);
    margin: 12px 0 14px;
}
.sdr-sg__squiggle svg {
    display: block;
    width: 100%;
    height: auto;
}
.sdr-sg__intro {
    margin: 0;
    color: var(--sdrSgText);
    font-size: 15px;
    line-height: 1.5;
}
.sdr-sg__intro--second {
    margin-top: 8px;
}
.sdr-sg__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}
.sdr-sg__feature {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
}
.sdr-sg__feature-icon,
.sdr-sg__card-icon {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--sdrSgYellow);
    color: var(--sdrSgText);
    flex: 0 0 auto;
}
.sdr-sg__feature-icon {
    width: 38px;
    height: 38px;
}
.sdr-sg__feature-icon svg,
.sdr-sg__card-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sdr-sg__feature h3,
.sdr-sg__card h3 {
    margin: 0;
    color: var(--sdrSgText);
    font-weight: 800;
}
.sdr-sg__feature h3 {
    font-size: 14px;
    line-height: 1.25;
}
.sdr-sg__feature p {
    margin: 4px 0 0;
    color: var(--sdrSgMuted);
    font-size: 12.5px;
    line-height: 1.35;
}
.sdr-sg__cta {
    margin-top: 20px;
}
.sdr-sg__visual {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}
.sdr-sg__phone-wrap {
    position: relative;
    z-index: 2;
    min-width: 0;
}
.sdr-sg__phone {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 1122 / 1500;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0,0,0,0.14));
}
.sdr-sg__cards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.sdr-sg__card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--sdrSgCard);
    box-shadow: 0 8px 18px rgba(0,0,0,0.07);
}
.sdr-sg__card-icon {
    width: 36px;
    height: 36px;
    background: #ffe37a;
}
.sdr-sg__card h3 {
    font-size: 13px;
    line-height: 1.2;
}
.sdr-sg__card p {
    margin: 2px 0 0;
    color: var(--sdrSgMuted);
    font-size: 11px;
    line-height: 1.3;
}
.sdr-sg__connector {
    display: none;
}
@media (min-width: 768px) {
    .sdr-sg__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 28px;
    }
    .sdr-sg__title {
        font-size: 36px;
    }
    .sdr-sg__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }
    .sdr-sg__feature {
        padding: 0 10px;
        border-right: 1px solid var(--sdrSgLine);
    }
    .sdr-sg__feature:first-child {
        padding-left: 0;
    }
    .sdr-sg__feature:last-child {
        padding-right: 0;
        border-right: 0;
    }
    .sdr-sg__visual {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 180px);
        gap: 10px;
    }
    .sdr-sg__phone {
        max-width: 300px;
        margin-left: auto;
        margin-right: 0;
    }
    .sdr-sg__cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .sdr-sg__connector {
        display: block;
        position: absolute;
        z-index: 1;
        top: 4%;
        left: 24%;
        width: 58%;
        height: 92%;
        color: var(--sdrSgYellow);
        pointer-events: none;
    }
}
@media (max-width: 767.98px) {
    .sdr-sg__copy {
        text-align: center;
    }
    .sdr-sg__eyebrow,
    .sdr-sg__squiggle {
        margin-left: auto;
        margin-right: auto;
    }
    .sdr-sg__features {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .sdr-sg__cta {
        width: 100%;
        max-width: 360px;
    }
}
@media (max-width: 520px) {
    .sdr-sg__title {
        font-size: 28px;
    }
    .sdr-sg__cards {
        grid-template-columns: 1fr;
    }
}

/* ---- Verified customer testimonial carousel --------------------------- */
.sg-tcarousel { margin: 0 0 24px; }
.sg-tcarousel__viewport { overflow: hidden; }
.sg-tcarousel__track {
    display: flex;
    transition: transform .35s ease;
}
.sg-tcarousel__slide {
    flex: 0 0 100%;
    margin: 0;
    min-width: 0;
}
.sg-tcarousel__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.sg-tcarousel__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ece4c4;
    border-radius: 50%;
    background: #fff;
    color: #0f1b2d;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 27, 45, .12);
}
.sg-tcarousel__nav:hover { background: #FDD000; }
.sg-tcarousel__nav:disabled { opacity: .35; cursor: default; }
.sg-tcarousel__nav:disabled:hover { background: #fff; }
.sg-tcarousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sg-tcarousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #d9cf9f;
    background: #fff;
    cursor: pointer;
}
.sg-tcarousel__dot.is-active {
    background: #FDD000;
    border-color: #FDD000;
    transform: scale(1.2);
}

/* ---- Go together places grid (Scan & Go / PSD / Service Dog) ---------- */
.sdr-places {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 auto 28px;
}
.sdr-places__title {
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
}
.sdr-places__item {
    margin: 0;
    background: #fbfbfc;
    border: 1px solid var(--esa-line, #e5e7eb);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}
.sdr-places__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.sdr-places__item figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 12px 10px 14px;
}
.sdr-places__place {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--esa-accent, #ff6935);
}
.sdr-places__outcome {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--esa-ink, #111);
}
@media (max-width: 767px) {
    .sdr-places {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sdr-places__item figcaption {
        padding: 10px 8px 12px;
    }
}
