/**
 * Landing Page — RS Budiasih Serang
 * Modern medical-blue design system, fully responsive.
 * Scoped under .ln-page to avoid clashing with main.css template styles.
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
.ln-page {
    --ln-navy: #0a2464;
    --ln-navy-700: #123a8f;
    --ln-blue: #1a6dff;
    --ln-blue-dark: #0d4fd8;
    --ln-blue-soft: #5b95ff;
    --ln-blue-tint: #e8f1ff;
    --ln-sky: #f5f9ff;
    --ln-sky-2: #eef4ff;
    --ln-ink: #475569;
    --ln-muted: #7183a1;
    --ln-line: #e5edfb;
    --ln-green: #10b981;
    --ln-amber: #f59e0b;

    --ln-r-sm: 12px;
    --ln-r: 18px;
    --ln-r-lg: 26px;
    --ln-r-xl: 34px;

    --ln-sh-xs: 0 2px 10px rgba(10, 36, 100, .05);
    --ln-sh-sm: 0 6px 20px rgba(10, 36, 100, .07);
    --ln-sh: 0 14px 38px rgba(10, 36, 100, .10);
    --ln-sh-lg: 0 28px 70px rgba(10, 36, 100, .16);

    --ln-grad: linear-gradient(135deg, #1a6dff 0%, #0a2464 100%);
    --ln-grad-soft: linear-gradient(135deg, #5b95ff 0%, #1a6dff 100%);

    --ln-ease: cubic-bezier(.4, 0, .2, 1);

    overflow-x: clip;
}

/* ==========================================================================
   2. Shared primitives
   ========================================================================== */
.ln-page section {
    position: relative;
}

.ln-section {
    padding: clamp(56px, 7vw, 100px) 0;
}

.ln-section--tint {
    background: var(--ln-sky);
}

.ln-section--tint-2 {
    background: linear-gradient(180deg, #ffffff 0%, var(--ln-sky-2) 100%);
}

/* --- Section heading --- */
.ln-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4vw, 56px);
    text-align: center;
}

.ln-head--left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.ln-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue-dark);
    font-size: clamp(11px, 1.1vw, 12.5px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ln-eyebrow i {
    font-size: 13px;
}

.ln-title {
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ln-navy);
    margin: 0 0 14px;
}

.ln-title span {
    background: var(--ln-grad-soft);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ln-sub {
    font-size: clamp(14px, 1.5vw, 16.5px);
    line-height: 1.75;
    color: var(--ln-muted);
    margin: 0;
}

/* --- Buttons --- */
.ln-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: none;
    border-radius: 999px;
    font-size: clamp(13.5px, 1.3vw, 15px);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s var(--ln-ease), box-shadow .25s var(--ln-ease),
        background-color .25s var(--ln-ease), color .25s var(--ln-ease);
}

.ln-btn-primary {
    background: var(--ln-grad);
    color: #fff;
    box-shadow: 0 12px 28px rgba(26, 109, 255, .32);
    padding-right: 8px;
}

.ln-btn-primary:hover,
.ln-btn-primary:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(26, 109, 255, .42);
}

.ln-btn-primary .ln-btn-arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--ln-blue);
    font-size: 14px;
    flex: 0 0 34px;
    transition: transform .25s var(--ln-ease);
}

.ln-btn-primary:hover .ln-btn-arrow {
    transform: translateX(3px);
}

.ln-btn-ghost {
    background: #fff;
    color: var(--ln-navy);
    border: 1px solid var(--ln-line);
    box-shadow: var(--ln-sh-xs);
}

.ln-btn-ghost:hover,
.ln-btn-ghost:focus {
    color: var(--ln-blue-dark);
    border-color: rgba(26, 109, 255, .3);
    transform: translateY(-3px);
    box-shadow: var(--ln-sh-sm);
}

.ln-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ln-blue-dark);
    text-decoration: none;
    transition: gap .25s var(--ln-ease), color .25s var(--ln-ease);
}

.ln-btn-link:hover {
    gap: 13px;
    color: var(--ln-navy);
}

/* --- Decorative blobs --- */
.ln-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ln-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
}

.ln-blob-a {
    width: 460px;
    height: 460px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(91, 149, 255, .55), transparent 68%);
}

.ln-blob-b {
    width: 380px;
    height: 380px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(26, 109, 255, .32), transparent 68%);
}

.ln-blob-c {
    width: 300px;
    height: 300px;
    top: 38%;
    left: 44%;
    background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 68%);
}

/* ==========================================================================
   3. Hero
   ========================================================================== */
.ln-hero {
    padding: clamp(120px, 13vw, 168px) 0 clamp(48px, 6vw, 72px);
    background:
        radial-gradient(1100px 520px at 88% -8%, rgba(91, 149, 255, .20), transparent 62%),
        radial-gradient(900px 460px at 4% 8%, rgba(26, 109, 255, .10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    overflow: hidden;
}

.ln-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 109, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 109, 255, .045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.ln-hero > .container {
    position: relative;
    z-index: 2;
}

.ln-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

/* --- Hero copy --- */
.ln-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px 7px 7px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ln-line);
    box-shadow: var(--ln-sh-xs);
    font-size: clamp(11.5px, 1.2vw, 13.5px);
    font-weight: 600;
    color: var(--ln-navy);
    margin-bottom: clamp(18px, 2.4vw, 26px);
}

.ln-hero-pill-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ln-grad);
    color: #fff;
    font-size: 13px;
    flex: 0 0 28px;
}

.ln-hero-title {
    font-size: clamp(32px, 5.4vw, 62px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ln-navy);
    margin: 0 0 clamp(16px, 2vw, 22px);
}

.ln-hero-title .ln-hl {
    display: block;
    background: linear-gradient(100deg, #1a6dff 0%, #4f8dff 50%, #0d4fd8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ln-hero-text {
    font-size: clamp(14.5px, 1.6vw, 17px);
    line-height: 1.8;
    color: var(--ln-muted);
    max-width: 520px;
    margin: 0 0 clamp(24px, 3vw, 34px);
}

.ln-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: clamp(28px, 3.6vw, 44px);
}

/* --- Hero stat row --- */
.ln-hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(14px, 2.2vw, 26px);
}

.ln-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ln-hero-stat-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue);
    font-size: 18px;
    flex: 0 0 42px;
}

.ln-hero-stat-text {
    min-width: 0;
}

.ln-hero-stat-text > b {
    display: block;
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ln-navy);
    letter-spacing: -.02em;
    white-space: nowrap;
}

/* Label sits under the figure — scoped to a direct child so the
   purecounter <span> inside <b> keeps the figure's own type scale. */
.ln-hero-stat-text > span {
    display: block;
    font-size: clamp(11px, 1.15vw, 12.5px);
    line-height: 1.35;
    color: var(--ln-muted);
    font-weight: 500;
}

.ln-hero-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--ln-line);
}

/* --- Hero visual --- */
.ln-hero-visual {
    position: relative;
    padding-bottom: 34px;
}

.ln-hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% -6% 6% 6%;
    background: var(--ln-grad-soft);
    filter: blur(56px);
    opacity: .28;
    border-radius: 50%;
    z-index: 0;
}

.ln-hero-media {
    position: relative;
    z-index: 1;
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--ln-sh-lg);
}

.ln-hero-media .carousel,
.ln-hero-media .carousel-inner,
.ln-hero-media .carousel-item {
    height: 100%;
}

.ln-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ln-hero-media .carousel-indicators {
    margin-bottom: 12px;
}

.ln-hero-media .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .6);
    opacity: 1;
    transition: width .3s var(--ln-ease), background .3s var(--ln-ease);
}

.ln-hero-media .carousel-indicators .active {
    width: 24px;
    border-radius: 999px;
    background: #fff;
}

.ln-hero-media .carousel-control-prev,
.ln-hero-media .carousel-control-next {
    width: 44px;
    opacity: 0;
    transition: opacity .3s var(--ln-ease);
}

.ln-hero-media:hover .carousel-control-prev,
.ln-hero-media:hover .carousel-control-next {
    opacity: .9;
}

/* Floating chip — top left */
.ln-hero-chip {
    position: absolute;
    top: 22px;
    left: -18px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    box-shadow: var(--ln-sh);
    border: 1px solid rgba(255, 255, 255, .9);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ln-navy);
    white-space: nowrap;
}

.ln-hero-chip .ln-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ln-green);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
    animation: lnPulse 2s infinite;
}

@keyframes lnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Floating stat card — bottom right (like reference) */
.ln-hero-float {
    position: absolute;
    right: -14px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 16px 22px;
    border-radius: var(--ln-r);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: var(--ln-sh-lg);
}

.ln-hero-float-item {
    text-align: center;
}

.ln-hero-float-item b {
    display: block;
    font-size: clamp(19px, 2.2vw, 26px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: var(--ln-grad-soft);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ln-hero-float-item > span {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ln-muted);
    margin-top: 2px;
    white-space: nowrap;
}

.ln-hero-float-item .ln-stars {
    color: var(--ln-amber);
    font-size: 11px;
    letter-spacing: 1px;
}

.ln-hero-float-sep {
    width: 1px;
    background: var(--ln-line);
    flex: 0 0 1px;
}

/* --- Hero feature strip --- */
.ln-hero-features {
    position: relative;
    z-index: 2;
    margin-top: clamp(38px, 5vw, 64px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--ln-r-lg);
    box-shadow: var(--ln-sh);
    overflow: hidden;
}

.ln-hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px clamp(16px, 2vw, 26px);
    border-right: 1px solid var(--ln-line);
    transition: background .25s var(--ln-ease);
}

.ln-hero-feature:last-child {
    border-right: none;
}

.ln-hero-feature:hover {
    background: rgba(232, 241, 255, .6);
}

.ln-hero-feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue);
    font-size: 19px;
    flex: 0 0 44px;
    transition: background .25s var(--ln-ease), color .25s var(--ln-ease);
}

.ln-hero-feature:hover .ln-hero-feature-icon {
    background: var(--ln-grad);
    color: #fff;
}

.ln-hero-feature-text strong {
    display: block;
    font-size: clamp(13px, 1.35vw, 15px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--ln-navy);
}

.ln-hero-feature-text span {
    display: block;
    font-size: 11.5px;
    color: var(--ln-muted);
    margin-top: 2px;
}

/* ==========================================================================
   4. Doctor schedule search
   ========================================================================== */
.ln-search-card {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    box-shadow: var(--ln-sh);
    background: #fff;
}

.ln-search-info {
    position: relative;
    padding: clamp(28px, 3.6vw, 46px);
    background: var(--ln-grad);
    color: #fff;
    overflow: hidden;
}

.ln-search-info::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.ln-search-info::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.ln-search-info > * {
    position: relative;
    z-index: 1;
}

.ln-search-badge {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 23px;
    margin-bottom: 20px;
}

.ln-search-info h2 {
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 12px;
}

.ln-search-info p {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 24px;
}

.ln-search-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ln-search-fact {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
}

.ln-search-fact i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .14);
    font-size: 13px;
    flex: 0 0 30px;
}

.ln-search-form {
    padding: clamp(26px, 3.4vw, 44px);
}

.ln-field {
    margin-bottom: 20px;
}

.ln-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ln-navy);
    margin-bottom: 9px;
}

.ln-label i {
    color: var(--ln-blue);
    font-size: 13px;
}

.ln-input-wrap {
    position: relative;
}

.ln-input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ln-muted);
    font-size: 14px;
    pointer-events: none;
}

.ln-input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 42px;
    border: 1.5px solid var(--ln-line);
    border-radius: var(--ln-r-sm);
    background: var(--ln-sky);
    font-size: 14px;
    color: var(--ln-navy);
    outline: none;
    transition: border-color .2s var(--ln-ease), background .2s var(--ln-ease), box-shadow .2s var(--ln-ease);
    -webkit-appearance: none;
    appearance: none;
}

.ln-input::placeholder {
    color: #9aa9c2;
}

.ln-input:focus {
    border-color: var(--ln-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 109, 255, .12);
}

select.ln-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237183a1'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

.ln-days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ln-day {
    cursor: pointer;
    margin: 0;
}

.ln-day span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1.5px solid var(--ln-line);
    background: var(--ln-sky);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ln-ink);
    transition: all .2s var(--ln-ease);
    user-select: none;
}

.ln-day:hover span {
    border-color: var(--ln-blue-soft);
    color: var(--ln-blue-dark);
}

.ln-day input:checked + span {
    background: var(--ln-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(26, 109, 255, .3);
}

.ln-submit {
    width: 100%;
    margin-top: 6px;
    padding: 15px 24px;
}

/* ==========================================================================
   5. About — offset photo plate + tabbed Profil / Visi / Misi
   ========================================================================== */
.ln-ab {
    position: relative;
    padding: clamp(64px, 8vw, 116px) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--ln-sky) 55%, #ffffff 100%);
    overflow: hidden;
}

.ln-ab-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    width: min(900px, 90vw);
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(91, 149, 255, .18), transparent 68%);
    filter: blur(40px);
    pointer-events: none;
}

.ln-ab > .container {
    position: relative;
    z-index: 1;
}

.ln-ab-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(40px, 5vw, 76px);
    align-items: center;
}

/* --- Visual --- */
.ln-ab-visual {
    position: relative;
    padding: 22px 0 46px 22px;
}

/* Dotted plate peeking out behind the photo. */
.ln-ab-plate {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 58%;
    border-radius: var(--ln-r-lg);
    background-image: radial-gradient(var(--ln-blue-soft) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    opacity: .35;
}

.ln-ab-frame {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    background: #fff;
    padding: 8px;
    box-shadow: var(--ln-sh-lg);
}

.ln-ab-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    border-radius: calc(var(--ln-r-xl) - 8px);
}

.ln-ab-caption {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ln-navy);
    box-shadow: var(--ln-sh-xs);
}

.ln-ab-caption i {
    color: var(--ln-blue);
    font-size: 12px;
}

/* Figures card overlapping the bottom of the photo. */
.ln-ab-figures {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: clamp(14px, 1.8vw, 24px);
    padding: 16px clamp(16px, 2vw, 24px);
    border-radius: var(--ln-r);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: var(--ln-sh-lg);
}

.ln-ab-figure {
    text-align: center;
}

.ln-ab-figure > b {
    display: block;
    font-size: clamp(20px, 2.3vw, 27px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--ln-navy);
}

.ln-ab-figure > b em {
    font-style: normal;
    color: var(--ln-blue);
}

.ln-ab-figure > span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ln-muted);
    white-space: nowrap;
}

.ln-ab-figure-sep {
    width: 1px;
    background: var(--ln-line);
    flex: 0 0 1px;
}

/* --- Copy --- */
.ln-ab-copy .ln-title {
    margin-bottom: clamp(20px, 2.4vw, 28px);
}

/* --- Tabs --- */
.ln-ab-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    border: none;
}

.ln-ab-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--ln-line);
    border-radius: 999px;
    background: #fff;
    color: var(--ln-ink);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .25s var(--ln-ease);
}

.ln-ab-tab i {
    font-size: 14px;
    color: var(--ln-blue);
    transition: color .25s var(--ln-ease);
}

.ln-ab-tab:hover {
    border-color: rgba(26, 109, 255, .35);
    color: var(--ln-blue-dark);
}

.ln-ab-tab.active {
    background: var(--ln-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(26, 109, 255, .3);
}

.ln-ab-tab.active i {
    color: #fff;
}

/* --- Tab panes --- */
/* Just enough floor to stop the shortest pane (Visi) from collapsing, without
   leaving dead space under it. Taller panes grow naturally. */
.ln-ab-panes {
    min-height: 160px;
    margin-bottom: 26px;
}

.ln-ab-text {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.9;
    color: var(--ln-muted);
    margin: 0;
}

.ln-ab-quote {
    position: relative;
    margin: 0;
    padding: 28px 30px 30px 32px;
    border-radius: var(--ln-r);
    background: linear-gradient(135deg, rgba(26, 109, 255, .07), rgba(10, 36, 100, .05));
    border-left: 4px solid var(--ln-blue);
}

.ln-ab-quote > i {
    display: block;
    font-size: 26px;
    line-height: 1;
    color: var(--ln-blue-soft);
    margin-bottom: 6px;
}

.ln-ab-quote .ln-ab-rich p {
    font-size: clamp(15px, 1.7vw, 19px);
    font-weight: 700;
    line-height: 1.6;
    color: var(--ln-navy);
    letter-spacing: -.01em;
}

/* Rich text coming from the CMS (vision / mission). */
.ln-ab-rich :last-child {
    margin-bottom: 0;
}

.ln-ab-rich p {
    font-size: clamp(13.5px, 1.45vw, 15px);
    line-height: 1.85;
    color: var(--ln-muted);
    margin: 0 0 10px;
    text-align: left !important;
}

.ln-ab-rich--list ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ln-ab-mission;
}

.ln-ab-rich--list li {
    position: relative;
    padding-left: 38px;
    counter-increment: ln-ab-mission;
}

.ln-ab-rich--list li::before {
    content: counter(ln-ab-mission);
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.ln-ab-rich--list li p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.75;
}

/* --- Chips + actions --- */
.ln-ab-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ln-ab-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--ln-line);
    font-size: 12px;
    font-weight: 600;
    color: var(--ln-navy);
    box-shadow: var(--ln-sh-xs);
}

.ln-ab-chip i {
    color: var(--ln-blue);
    font-size: 13px;
}

.ln-ab-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ==========================================================================
   6. Doctors
   ========================================================================== */
.ln-grid-doctors {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.ln-doc {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-r-lg);
    overflow: hidden;
    box-shadow: var(--ln-sh-xs);
    transition: transform .3s var(--ln-ease), box-shadow .3s var(--ln-ease), border-color .3s var(--ln-ease);
}

.ln-doc:hover {
    transform: translateY(-7px);
    box-shadow: var(--ln-sh);
    border-color: rgba(26, 109, 255, .25);
}

.ln-doc-media {
    position: relative;
    background: linear-gradient(160deg, var(--ln-sky-2), #dfeaff);
}

.ln-doc-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .5s var(--ln-ease);
}

.ln-doc:hover .ln-doc-media img {
    transform: scale(1.05);
}

/* Shown instead of a photo when a doctor has no portrait on file. */
.ln-doc-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    color: #b9cdf2;
    font-size: clamp(48px, 7vw, 76px);
}

.ln-doc-status {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ln-navy);
    box-shadow: var(--ln-sh-xs);
}

.ln-doc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
}

.ln-doc-dot.is-on {
    background: var(--ln-green);
}

.ln-doc-dot.is-off {
    background: #cbd5e1;
}

.ln-doc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px clamp(13px, 1.4vw, 18px) 18px;
}

.ln-doc-name {
    font-size: clamp(13.5px, 1.4vw, 15.5px);
    font-weight: 800;
    line-height: 1.35;
    color: var(--ln-navy);
    margin: 0 0 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ln-doc-spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue-dark);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ln-doc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--ln-muted);
    margin-bottom: 14px;
}

.ln-doc-meta i {
    color: var(--ln-blue);
    font-size: 12px;
}

.ln-doc-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 999px;
    background: var(--ln-sky-2);
    color: var(--ln-blue-dark);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--ln-line);
    transition: all .25s var(--ln-ease);
}

.ln-doc-btn:hover {
    background: var(--ln-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(26, 109, 255, .3);
}

/* ==========================================================================
   7. Services
   ========================================================================== */
.ln-svc-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 30px);
    align-items: stretch;
}

.ln-svc-main {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    box-shadow: var(--ln-sh-sm);
}

.ln-svc-video {
    position: relative;
    background: #0a2464;
}

.ln-svc-video iframe {
    display: block;
    border: 0;
}

.ln-svc-main-body {
    padding: clamp(22px, 2.6vw, 34px);
}

.ln-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue-dark);
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ln-svc-main-title {
    font-size: clamp(18px, 2.2vw, 25px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
    color: var(--ln-navy);
    margin: 0 0 14px;
}

.ln-svc-main-desc {
    font-size: clamp(13.5px, 1.45vw, 15px);
    line-height: 1.85;
    color: var(--ln-muted);
    margin: 0 0 14px;
}

.ln-svc-side {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    box-shadow: var(--ln-sh-sm);
}

.ln-svc-side-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: var(--ln-grad);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.ln-svc-side-body {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
}

.ln-svc-item {
    display: flex;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--ln-line);
    transition: background .25s var(--ln-ease);
}

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

.ln-svc-item:hover {
    background: var(--ln-sky);
}

.ln-svc-item-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue);
    font-size: 18px;
    flex: 0 0 42px;
    transition: background .25s var(--ln-ease), color .25s var(--ln-ease);
}

.ln-svc-item:hover .ln-svc-item-icon {
    background: var(--ln-grad);
    color: #fff;
}

.ln-svc-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ln-navy);
    margin: 0 0 5px;
}

.ln-svc-item p {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--ln-muted);
    margin: 0 0 8px;
}

/* ==========================================================================
   8. Promo — posters shown whole on a blurred plate of themselves
   ========================================================================== */
.ln-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.ln-promo {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--ln-r-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ln-line);
    box-shadow: var(--ln-sh-xs);
    text-decoration: none;
    transition: transform .35s var(--ln-ease), box-shadow .35s var(--ln-ease),
        border-color .35s var(--ln-ease);
}

.ln-promo:hover {
    transform: translateY(-7px);
    box-shadow: var(--ln-sh-lg);
    border-color: rgba(26, 109, 255, .25);
}

/* --- Media --- */
.ln-promo-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(160deg, var(--ln-sky-2), #dfeaff);
}

/* A blown-up, blurred copy of the poster fills the frame so the contained
   poster never sits on dead letterbox bars — and nothing gets cropped. */
.ln-promo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    filter: blur(26px) saturate(1.5);
    opacity: .55;
}

.ln-promo-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s var(--ln-ease);
}

.ln-promo:hover .ln-promo-img {
    transform: scale(1.04);
}

/* --- Meta pills --- */
.ln-promo-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
}

.ln-promo-tag,
.ln-promo-until {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .03em;
    white-space: nowrap;
}

.ln-promo-tag {
    background: var(--ln-grad);
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 5px 14px rgba(26, 109, 255, .3);
}

.ln-promo-until {
    background: var(--ln-sky-2);
    border: 1px solid var(--ln-line);
    color: var(--ln-navy);
    letter-spacing: 0;
    font-weight: 700;
}

.ln-promo-until i {
    color: var(--ln-blue);
    font-size: 12px;
}

.ln-promo-until--soon {
    background: #fff4e5;
    color: #b45309;
}

.ln-promo-until--soon i {
    color: var(--ln-amber);
}

/* --- Body --- */
.ln-promo-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px clamp(15px, 1.6vw, 20px) 20px;
}

.ln-promo-title {
    font-size: clamp(14.5px, 1.5vw, 16.5px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--ln-navy);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .25s var(--ln-ease);
}

.ln-promo:hover .ln-promo-title {
    color: var(--ln-blue-dark);
}

.ln-promo-excerpt {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--ln-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ln-promo-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--ln-line);
}

.ln-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ln-blue-dark);
    transition: gap .25s var(--ln-ease);
}

.ln-promo:hover .ln-promo-cta {
    gap: 12px;
}

.ln-promo-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ln-sky-2);
    color: var(--ln-blue-dark);
    font-size: 13px;
    flex: 0 0 32px;
    transition: background .3s var(--ln-ease), color .3s var(--ln-ease),
        transform .3s var(--ln-ease);
}

.ln-promo:hover .ln-promo-arrow {
    background: var(--ln-grad);
    color: #fff;
    transform: translateX(3px);
}

/* Hint shown under the mobile swipe rail. */
.ln-promo-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ln-muted);
}


/* ==========================================================================
   9. Articles
   ========================================================================== */
.ln-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 3.6vw, 48px);
}

.ln-grid-articles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.ln-art {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-r-lg);
    overflow: hidden;
    box-shadow: var(--ln-sh-xs);
    text-decoration: none;
    transition: transform .3s var(--ln-ease), box-shadow .3s var(--ln-ease), border-color .3s var(--ln-ease);
}

.ln-art:hover {
    transform: translateY(-7px);
    box-shadow: var(--ln-sh);
    border-color: rgba(26, 109, 255, .25);
}

.ln-art-media {
    position: relative;
    overflow: hidden;
}

.ln-art-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .5s var(--ln-ease);
}

.ln-art:hover .ln-art-media img {
    transform: scale(1.06);
}

/* Shown instead of a cover when an article has no image on file. */
.ln-art-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(160deg, var(--ln-sky-2), #dfeaff);
    color: #a9c4f0;
    font-size: clamp(34px, 5vw, 46px);
}

.ln-art-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ln-blue-dark);
    box-shadow: var(--ln-sh-xs);
}

.ln-art-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
}

.ln-art-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    color: var(--ln-muted);
    margin-bottom: 10px;
}

.ln-art-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ln-art-meta i {
    color: var(--ln-blue);
    font-size: 12px;
}

.ln-art-title {
    font-size: clamp(14px, 1.45vw, 15.5px);
    font-weight: 800;
    line-height: 1.45;
    color: var(--ln-navy);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .25s var(--ln-ease);
}

.ln-art:hover .ln-art-title {
    color: var(--ln-blue-dark);
}

.ln-art-excerpt {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--ln-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ln-art-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--ln-line);
}

.ln-art-author {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ln-avatar {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ln-grad);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 28px;
    text-transform: uppercase;
}

/* Scoped by class so it does not also restyle the .ln-avatar initial. */
.ln-art-author-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ln-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ln-art-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ln-blue-dark);
    white-space: nowrap;
    transition: gap .25s var(--ln-ease);
}

.ln-art:hover .ln-art-more {
    gap: 9px;
}

/* ==========================================================================
   10. Emergency CTA band
   ========================================================================== */
.ln-cta {
    padding: clamp(44px, 5vw, 68px) 0;
}

.ln-cta-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(22px, 3vw, 40px);
    padding: clamp(28px, 3.6vw, 48px) clamp(24px, 3.6vw, 54px);
    border-radius: var(--ln-r-xl);
    background: var(--ln-grad);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(10, 36, 100, .28);
}

.ln-cta-band::before,
.ln-cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.ln-cta-band::before {
    width: 300px;
    height: 300px;
    right: -80px;
    top: -140px;
}

.ln-cta-band::after {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -120px;
}

.ln-cta-copy {
    position: relative;
    z-index: 1;
}

.ln-cta-copy h3 {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 10px;
}

.ln-cta-copy p {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    max-width: 560px;
}

.ln-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ln-btn-white {
    background: #fff;
    color: var(--ln-navy);
}

.ln-btn-white:hover {
    color: var(--ln-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.ln-btn-outline-white {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.ln-btn-outline-white:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   11. Location
   ========================================================================== */
.ln-loc-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(20px, 2.4vw, 30px);
    align-items: stretch;
}

.ln-loc-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 2.6vw, 32px);
    background: #fff;
    border: 1px solid var(--ln-line);
    border-radius: var(--ln-r-xl);
    box-shadow: var(--ln-sh-sm);
}

.ln-loc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ln-line);
    margin-bottom: 20px;
}

.ln-loc-logo {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--ln-grad);
    color: #fff;
    font-size: 22px;
    flex: 0 0 50px;
}

.ln-loc-head h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ln-navy);
    margin: 0 0 5px;
}

.ln-loc-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .1);
    color: #047857;
    font-size: 11px;
    font-weight: 700;
}

.ln-loc-open i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ln-green);
}

.ln-loc-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.ln-loc-item {
    display: flex;
    gap: 13px;
}

.ln-loc-item-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--ln-blue-tint);
    color: var(--ln-blue);
    font-size: 15px;
    flex: 0 0 38px;
}

.ln-loc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ln-muted);
    margin-bottom: 3px;
}

.ln-loc-value {
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ln-navy);
    word-break: break-word;
}

.ln-loc-value a {
    color: var(--ln-navy);
    text-decoration: none;
}

.ln-loc-value a:hover {
    color: var(--ln-blue);
}

.ln-loc-btn {
    margin-top: 22px;
    width: 100%;
}

.ln-loc-map {
    position: relative;
    border-radius: var(--ln-r-xl);
    overflow: hidden;
    box-shadow: var(--ln-sh);
    min-height: 340px;
    border: 1px solid var(--ln-line);
}

.ln-loc-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.15);
}

.ln-loc-map-btn {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
}

.ln-loc-map-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    color: var(--ln-navy);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--ln-sh);
    transition: all .25s var(--ln-ease);
}

.ln-loc-map-btn a:hover {
    background: var(--ln-blue);
    color: #fff;
}

/* ==========================================================================
   12. Floating WhatsApp / call button
   ========================================================================== */
.ln-fab {
    position: fixed;
    /* Sits above the template's scroll-to-top button (right:15px, bottom:15px, 44px). */
    right: 20px;
    bottom: 74px;
    z-index: 996;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ln-grad);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(26, 109, 255, .42);
    transition: transform .25s var(--ln-ease), box-shadow .25s var(--ln-ease);
}

.ln-fab::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(26, 109, 255, .5);
    animation: lnRing 2.2s ease-out infinite;
}

@keyframes lnRing {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.ln-fab:hover {
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 18px 36px rgba(26, 109, 255, .5);
}

/* ==========================================================================
   13. Responsive
   ========================================================================== */

/* ≤ 1199px — tablets landscape */
@media (max-width: 1199.98px) {
    .ln-grid-doctors,
    .ln-grid-articles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ln-hero-title {
        font-size: clamp(30px, 4.6vw, 46px);
    }

    .ln-hero-float {
        right: 0;
        padding: 14px 18px;
        gap: 16px;
    }

    .ln-hero-chip {
        left: 0;
    }
}

/* ≤ 991px — tablets portrait: collapse all two-column layouts */
@media (max-width: 991.98px) {
    .ln-hero {
        padding-top: clamp(112px, 18vw, 140px);
        text-align: center;
    }

    .ln-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    .ln-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .ln-hero-cta,
    .ln-hero-stats {
        justify-content: center;
    }

    .ln-hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .ln-hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ln-hero-feature {
        text-align: left;
    }

    .ln-hero-feature:nth-child(2n) {
        border-right: none;
    }

    .ln-hero-feature:nth-child(-n+2) {
        border-bottom: 1px solid var(--ln-line);
    }

    .ln-search-card,
    .ln-ab-grid,
    .ln-svc-grid,
    .ln-loc-grid,
    .ln-cta-band {
        grid-template-columns: minmax(0, 1fr);
    }

    .ln-ab-visual {
        order: -1;
        max-width: 580px;
        margin: 0 auto;
    }

    .ln-ab-panes {
        min-height: 0;
    }

    .ln-cta-band {
        text-align: center;
    }

    .ln-cta-copy p {
        margin-inline: auto;
    }

    .ln-cta-actions {
        justify-content: center;
    }

    .ln-loc-map {
        min-height: 380px;
    }

    .ln-svc-side-body {
        max-height: none;
    }
}

/* ≤ 767px — phones landscape / small tablets */
@media (max-width: 767.98px) {
    .ln-grid-doctors,
    .ln-grid-articles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Posters are tall, so stacking them vertically buries the section.
       Swipe rail instead: one card at a time, snapped. */
    .ln-promo-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -.5);
        padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5);
        padding-bottom: 4px;
    }

    .ln-promo-grid::-webkit-scrollbar {
        display: none;
    }

    .ln-promo {
        flex: 0 0 78%;
        max-width: 340px;
        scroll-snap-align: center;
    }

    .ln-promo-hint {
        display: flex;
    }

    .ln-hero-stats {
        gap: 12px 18px;
    }

    .ln-hero-stat-sep {
        display: none;
    }

    .ln-hero-stat {
        flex: 0 1 auto;
    }

    .ln-check-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .ln-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .ln-hero-float {
        position: static;
        right: auto;
        bottom: auto;
        margin: -22px auto 0;
        width: max-content;
        max-width: 100%;
    }

    .ln-hero-visual {
        padding-bottom: 0;
    }

    .ln-hero-chip {
        top: 12px;
        left: 12px;
        padding: 8px 13px;
        font-size: 11.5px;
    }

    /* Figures move under the photo so they stop covering it. */
    .ln-ab-visual {
        padding: 18px 0 0 18px;
    }

    /* relative + z-index, not static: the frame sets z-index 1, so a static
       card would slide underneath the photo instead of over it. */
    .ln-ab-figures {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 2;
        margin-top: -26px;
        margin-left: -18px;
        justify-content: space-between;
        gap: 10px;
    }

    .ln-ab-figure > span {
        white-space: normal;
    }

    .ln-loc-map {
        min-height: 300px;
    }
}

/* ≤ 575px — phones */
@media (max-width: 575.98px) {
    .ln-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .ln-hero-cta .ln-btn {
        width: 100%;
    }

    .ln-hero-features {
        grid-template-columns: minmax(0, 1fr);
    }

    .ln-hero-feature {
        border-right: none;
        border-bottom: 1px solid var(--ln-line);
        padding: 16px 18px;
    }

    .ln-hero-feature:last-child {
        border-bottom: none;
    }

    .ln-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        text-align: left;
    }

    .ln-hero-stat:last-child {
        grid-column: span 2;
    }

    .ln-ab-visual {
        padding: 14px 0 0 14px;
    }

    .ln-ab-figures {
        margin-left: -14px;
        padding: 14px 12px;
        gap: 6px;
    }

    .ln-ab-figure > span {
        font-size: 10px;
    }

    .ln-ab-quote {
        padding: 18px 18px 18px 22px;
    }

    /* Tabs scroll sideways instead of wrapping onto three rows. */
    .ln-ab-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        margin-inline: -12px;
        padding-inline: 12px;
    }

    .ln-ab-tabs::-webkit-scrollbar {
        display: none;
    }

    .ln-ab-tab {
        flex: 0 0 auto;
        padding: 9px 16px;
    }

    .ln-ab-actions .ln-btn {
        width: 100%;
    }

    .ln-grid-articles {
        grid-template-columns: minmax(0, 1fr);
    }

    .ln-promo {
        flex-basis: 82%;
    }

    .ln-days {
        gap: 6px;
    }

    .ln-day span {
        padding: 8px 12px;
        font-size: 12px;
    }

    .ln-svc-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .ln-loc-panel,
    .ln-search-form,
    .ln-search-info {
        padding: 22px 18px;
    }

    .ln-fab {
        width: 48px;
        height: 48px;
        font-size: 20px;
        right: 18px;
        bottom: 70px;
    }
}

/* ≤ 419px — very small phones. Doctor cards stay two-up: they are compact
   enough, and a single column makes the page punishingly long to scroll. */
@media (max-width: 419.98px) {
    .ln-hero-title {
        font-size: 28px;
    }

    .ln-doc-body {
        padding: 12px 10px 14px;
    }

    .ln-doc-spec {
        font-size: 10px;
    }

    .ln-hero-float {
        gap: 12px;
        padding: 12px 14px;
    }
}

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