/* =========================================================
   Momentos Photobooth — public student site
   Mobile-first registration experience (QR scans = phones).
   Brand: navy #243648 / teal #0e9e86 · #06c2a0
   ========================================================= */
:root {
    --navy: #243648;
    --navy-2: #1b2b3d;
    --teal: #0e9e86;
    --teal-2: #06c2a0;
    --teal-soft: rgba(14, 158, 134, 0.1);
    --ink: #16232f;
    --muted: #64748b;
    --line: #e7ecf0;
    --bg: #f3f7f6;
    --card: #ffffff;
    --danger: #ef4444;
    --shadow-sm:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 8px 24px -12px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 12px 36px -14px rgba(15, 23, 42, 0.2);
}
* {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}

.pub-container {
    width: min(960px, 92%);
    margin: 0 auto;
}

/* ---------- Header / footer ---------- */
.pub-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
}
.pub-header .pub-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pub-brand img {
    height: 42px;
    width: auto;
}
.pub-secure {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}
.ico-lock {
    width: 13px;
    height: 13px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: no-repeat center / contain;
    mask: no-repeat center / contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a3 3 0 0 0-3 3v2H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1V4a3 3 0 0 0-3-3zM6.5 4a1.5 1.5 0 0 1 3 0v2h-3V4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a3 3 0 0 0-3 3v2H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1V4a3 3 0 0 0-3-3zM6.5 4a1.5 1.5 0 0 1 3 0v2h-3V4z'/%3E%3C/svg%3E");
}
.pub-footer {
    padding: 26px 0 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.78rem;
}

/* ---------- School hero ---------- */
.hero {
    background: linear-gradient(
        135deg,
        var(--navy-2) 0%,
        #16544c 60%,
        var(--teal) 120%
    );
    color: #fff;
    padding: 30px 0 64px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.hero .pub-container {
    position: relative;
    z-index: 1;
}
.hero-school {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.hero-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    flex: none;
    background: #fff;
    padding: 6px;
    object-fit: contain;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.hero-logo.placeholder {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 1.4rem;
}
.hero-school .name {
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.02em;
}
.hero-school .school {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.hero h1 {
    font-size: 1.85rem;
    line-height: 1.12;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.hero p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.98rem;
    max-width: 38ch;
}
.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ---------- Wizard shell ---------- */
.wizard {
    width: min(640px, 94%);
    margin: -44px auto 0;
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
}
.wizard-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Stepper */
.stepper {
    display: flex;
    gap: 8px;
    padding: 18px 22px 0;
}
.stepper .seg {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stepper .bar {
    height: 6px;
    border-radius: 999px;
    background: #e9eef2;
    transition: background 0.25s;
}
.stepper .seg.done .bar,
.stepper .seg.active .bar {
    background: linear-gradient(90deg, var(--teal), var(--teal-2));
}
.stepper .lbl {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b3bfca;
    transition: color 0.2s;
}
.stepper .seg.active .lbl,
.stepper .seg.done .lbl {
    color: var(--teal);
}
.stepper .seg.clickable {
    cursor: pointer;
}
@media (max-width: 480px) {
    .stepper .lbl {
        display: none;
    }
    .stepper {
        padding-top: 16px;
    }
}

/* Panels */
.panel {
    padding: 22px;
    display: none;
}
.panel.active {
    display: block;
    animation: fade 0.25s ease;
}
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.panel-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.panel h2 {
    font-size: 1.35rem;
    margin: 0 0 4px;
    letter-spacing: -0.015em;
    font-weight: 800;
}
.panel .sub {
    color: var(--muted);
    margin: 0 0 20px;
    font-size: 0.92rem;
}

/* ---------- Class chips ---------- */
.class-search {
    position: relative;
    margin-bottom: 14px;
}
.class-search input {
    width: 100%;
    padding: 0.8rem 0.9rem 0.8rem 2.4rem;
    font-size: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fafb;
    color: var(--ink);
}
.class-search input:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px var(--teal-soft);
}
.class-search .ico {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa7b2;
}
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
}
.opt {
    position: relative;
}
.opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 56px;
    padding: 0.7rem 0.6rem;
    cursor: pointer;
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
    transition:
        border-color 0.15s,
        background 0.15s,
        transform 0.1s;
}
.chip:hover {
    border-color: #cdd8e0;
}
.opt input:checked + .chip {
    border-color: var(--teal);
    background: var(--teal-soft);
    color: var(--navy);
    box-shadow: 0 0 0 3px var(--teal-soft);
}
.chip:active {
    transform: scale(0.97);
}
.class-empty {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 1rem 0;
    text-align: center;
}

/* ---------- Detail fields ---------- */
.field {
    margin-bottom: 16px;
}
.field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #334155;
}
.field label .opt-tag {
    color: var(--muted);
    font-weight: 500;
}
.field input {
    width: 100%;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fafb;
    color: var(--ink);
}
.field input:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px var(--teal-soft);
}
.field input.invalid {
    border-color: var(--danger);
    background: #fef2f2;
}
.field .err {
    display: none;
    color: var(--danger);
    font-size: 0.78rem;
    margin-top: 5px;
    font-weight: 500;
}
.field .err.show {
    display: block;
}

/* ---------- Package cards ---------- */
.pkg-group {
    margin-bottom: 18px;
}
.pkg-group h3 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--danger);
    margin: 0 0 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.pkg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 420px) {
    .pkg-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.pkg {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 2px solid var(--line);
    border-radius: 16px;
    padding: 0.85rem 0.7rem 0.9rem;
    background: #fff;
    transition:
        border-color 0.15s,
        background 0.15s,
        transform 0.1s;
}
.pkg:hover {
    border-color: #cdd8e0;
}
.pkg .qty {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.pkg .sub {
    font-size: 0.72rem;
    color: var(--muted);
}
.pkg .price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 6px;
    letter-spacing: -0.02em;
}
.pkg .check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.15s;
}
.opt input:checked + .pkg {
    border-color: var(--teal);
    background: var(--teal-soft);
    box-shadow: 0 0 0 3px var(--teal-soft);
}
.opt input:checked + .pkg .price {
    color: var(--teal);
}
.opt input:checked + .pkg .check {
    opacity: 1;
    transform: scale(1);
    background: var(--teal);
    border-color: var(--teal);
}
.pkg .check svg {
    width: 11px;
    height: 11px;
}
.pkg:active {
    transform: scale(0.98);
}
.pkg-popular {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pkg-hint {
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ---------- Review ---------- */
.review-block {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}
.review-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}
.review-row:last-child {
    border-bottom: 0;
}
.review-row .k {
    color: var(--muted);
    font-weight: 500;
}
.review-row .v {
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}
.review-pkgs {
    padding: 0.4rem 1rem 0.6rem;
}
.review-pkgs .line {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    font-size: 0.92rem;
    border-bottom: 1px dashed var(--line);
}
.review-pkgs .line:last-child {
    border-bottom: 0;
}
.review-edit {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
}

/* ---------- Buttons & sticky action bar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 14px;
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition:
        transform 0.1s,
        box-shadow 0.15s,
        background 0.15s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(14, 158, 134, 0.8);
}
.btn-primary:hover {
    transform: translateY(-1px);
}
.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-ghost {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
}
.btn-block {
    width: 100%;
}

.actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}
.actionbar .pub-container {
    display: flex;
    align-items: center;
    gap: 14px;
}
.actionbar .total {
    flex: none;
}
.actionbar .total .lbl {
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.actionbar .total .amt {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.actionbar .btn {
    flex: 1;
}
.actionbar .back {
    flex: none;
    padding: 0.95rem 1rem;
}

/* ---------- Closed / error state ---------- */
.state-wrap {
    width: min(520px, 92%);
    margin: 60px auto;
    text-align: center;
}
.state-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px 28px;
    box-shadow: var(--shadow-sm);
}
.state-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
}
.state-card h1 {
    font-size: 1.4rem;
    margin: 0 0 8px;
}
.state-card p {
    color: var(--muted);
    margin: 0;
}

/* =========================================================
   Header navigation (landing pages)
   ========================================================= */
.pub-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.pub-nav .links {
    display: flex;
    align-items: center;
    gap: 26px;
}
.pub-nav .links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.15s;
}
.pub-nav .links a:hover {
    color: var(--navy);
}
.pub-nav .btn-sm {
    padding: 0.55rem 1.05rem;
    font-size: 0.88rem;
    border-radius: 11px;
}
@media (max-width: 720px) {
    .pub-nav .links {
        display: none;
    }
}

.btn-outline {
    background: #fff;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    font-weight: 700;
}
.btn-outline:hover {
    background: var(--teal-soft);
    transform: translateY(-1px);
}

/* =========================================================
   Landing page
   ========================================================= */
.lp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            900px circle at 88% -10%,
            rgba(6, 194, 160, 0.18),
            transparent 55%
        ),
        radial-gradient(
            700px circle at 0% 110%,
            rgba(14, 158, 134, 0.14),
            transparent 55%
        ),
        linear-gradient(160deg, #fbfdfd 0%, #eef6f4 70%, #e6f3f0 100%);
    border-bottom: 1px solid var(--line);
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0 72px;
}
@media (max-width: 880px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 44px 0 52px;
    }
}
.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--teal-soft);
    color: var(--teal);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 18px;
}
.lp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 16px;
}
.lp-hero h1 .accent {
    color: var(--teal);
}
.lp-hero .lead {
    font-size: 1.08rem;
    color: var(--muted);
    margin: 0 0 26px;
    max-width: 46ch;
}
.lp-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.lp-hero .btn {
    padding: 0.95rem 1.4rem;
}
.lp-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.lp-note b {
    color: var(--navy);
}

/* Hero phone mockup */
.lp-phone-wrap {
    display: grid;
    place-items: center;
}
.lp-phone {
    width: 280px;
    max-width: 80vw;
    background: #fff;
    border-radius: 34px;
    border: 1px solid var(--line);
    padding: 14px;
    box-shadow:
        0 40px 80px -30px rgba(15, 23, 42, 0.45),
        0 0 0 8px rgba(36, 54, 72, 0.04);
    transform: rotate(2deg);
}
.lp-phone-screen {
    background: linear-gradient(170deg, var(--navy-2), #16544c 130%);
    border-radius: 24px;
    padding: 22px 18px;
    color: #fff;
}
.lp-phone-screen .pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lp-phone-screen h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.lp-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 10px;
}
.lp-mini .n {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
}
.lp-mini .t {
    font-size: 0.86rem;
    font-weight: 600;
}
.lp-mini .t span {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.7;
}
.lp-qr-chip {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--navy);
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
}
.lp-qr-chip .qr {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 9px;
    background:
        linear-gradient(90deg, var(--navy) 2px, transparent 2px) 0 0 / 7px 7px,
        linear-gradient(0deg, var(--navy) 2px, transparent 2px) 0 0 / 7px 7px,
        #fff;
    border: 2px solid var(--navy);
}
.lp-qr-chip .t {
    font-size: 0.78rem;
    font-weight: 700;
}
.lp-qr-chip .t span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
}

/* Stats strip */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
    width: min(960px, 92%);
}
@media (max-width: 720px) {
    .lp-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -28px;
    }
}
.lp-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.lp-stat .num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.lp-stat .lbl {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 600;
}

/* Generic section */
.lp-section {
    padding: 64px 0;
}
.lp-section.alt {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.lp-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}
.lp-head .eyebrow {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 10px;
}
.lp-head h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--ink);
}
.lp-head p {
    color: var(--muted);
    margin: 0;
    font-size: 1rem;
}

/* How it works */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 820px) {
    .lp-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.lp-step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition:
        transform 0.15s,
        box-shadow 0.2s;
}
.lp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.lp-step-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 12px 22px -10px rgba(14, 158, 134, 0.8);
}
.lp-step-card .step-no {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--line);
    line-height: 1;
}
.lp-step-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.lp-step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Package preview */
.lp-pkg-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 820px) {
    .lp-pkg-cols {
        grid-template-columns: 1fr;
    }
}
.lp-pkg-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.lp-pkg-card .head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.lp-pkg-card .head .ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none;
}
.lp-pkg-card .head .ic.print {
    background: rgba(36, 54, 72, 0.08);
    color: var(--navy);
}
.lp-pkg-card .head .ic.digi {
    background: var(--teal-soft);
    color: var(--teal);
}
.lp-pkg-card .head h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
}
.lp-pkg-card .head p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}
.lp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.95rem;
}
.lp-price-row:last-child {
    border-bottom: 0;
}
.lp-price-row .name {
    font-weight: 600;
}
.lp-price-row .name span {
    display: block;
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 400;
}
.lp-price-row .amt {
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
}
.lp-pkg-foot {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 14px;
}

/* CTA band */
.lp-band {
    background: linear-gradient(
        135deg,
        var(--navy-2) 0%,
        #16544c 70%,
        var(--teal) 130%
    );
    color: #fff;
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-band::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.lp-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.lp-band p {
    margin: 0 auto 22px;
    opacity: 0.9;
    max-width: 52ch;
}
.lp-band .qr-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 14px 18px;
    position: relative;
    z-index: 1;
}
.lp-band .qr-box .qr {
    width: 54px;
    height: 54px;
    flex: none;
    border-radius: 10px;
    background:
        linear-gradient(90deg, #fff 3px, transparent 3px) 0 0 / 9px 9px,
        linear-gradient(0deg, #fff 3px, transparent 3px) 0 0 / 9px 9px,
        var(--navy);
    border: 3px solid #fff;
}
.lp-band .qr-box .txt {
    text-align: left;
    font-size: 0.86rem;
    font-weight: 700;
}
.lp-band .qr-box .txt span {
    display: block;
    font-weight: 400;
    opacity: 0.85;
    font-size: 0.78rem;
}

/* FAQ */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.lp-faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 18px;
    transition: border-color 0.15s;
}
.lp-faq details[open] {
    border-color: var(--teal);
}
.lp-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 0;
    font-weight: 700;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lp-faq summary::-webkit-details-marker {
    display: none;
}
.lp-faq summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--teal);
    font-weight: 400;
    line-height: 1;
}
.lp-faq details[open] summary::after {
    content: "\2013";
}
.lp-faq .body {
    padding: 0 0 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

/* =========================================================
   Registration v2 — stepped flow + sticky live summary
   (inspired by the Camp Enrollment /packages layout)
   ========================================================= */
.reg-shell {
    width: min(1080px, 94%);
    margin: -44px auto 0;
    position: relative;
    z-index: 2;
    padding-bottom: 130px;
}
.reg-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 920px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }
}

.reg-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Step block */
.reg-step {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    transition:
        opacity 0.25s,
        filter 0.25s;
}
.reg-step.locked {
    opacity: 0.5;
    filter: grayscale(0.2);
    pointer-events: none;
    user-select: none;
}
.reg-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.reg-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: #eef2f5;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.92rem;
    transition: 0.2s;
}
.reg-step.active .reg-step-num,
.reg-step.done .reg-step-num {
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(14, 158, 134, 0.9);
}
.reg-step-head .t h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.reg-step-head .t p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}
.reg-step-head .badge-done {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    display: none;
}
.reg-step.done .reg-step-head .badge-done {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Live summary */
.reg-summary {
    position: sticky;
    top: 76px;
}
@media (max-width: 920px) {
    .reg-summary {
        position: static;
    }
}
.summary-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.summary-card .sc-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--navy-2), #16544c 140%);
    color: #fff;
}
.summary-card .sc-head img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    flex: none;
}
.summary-card .sc-head .ph {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    flex: none;
    font-size: 1.1rem;
}
.summary-card .sc-head .nm {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.summary-card .sc-head .sch {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.15;
}
.summary-card .sc-body {
    padding: 18px 20px;
}
.sc-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
    padding: 0.35rem 0;
}
.sc-line .k {
    color: var(--muted);
}
.sc-line .v {
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}
.sc-line .v.empty {
    color: #b3bfca;
    font-weight: 500;
}
.sc-divider {
    height: 1px;
    background: var(--line);
    margin: 12px 0;
}
.sc-subhead {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 6px;
}
.sc-pkgs:empty + .sc-pkgs-empty {
    display: block;
}
.sc-pkgs-empty {
    display: none;
    color: #b3bfca;
    font-size: 0.86rem;
    padding: 0.3rem 0;
}
.sc-pkg {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    border-bottom: 1px dashed var(--line);
}
.sc-pkg:last-child {
    border-bottom: 0;
}
.sc-pkg .nm span {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
}
.sc-pkg .pr {
    font-weight: 700;
    white-space: nowrap;
}
.sc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 16px;
}
.sc-total .lbl {
    font-weight: 700;
}
.sc-total .amt {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.sc-hint {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ---------- Searchable select (Select2-style, vanilla, no deps) ---------- */
.ss {
    position: relative;
}
/* Native <select> fallback (used when JS is off), styled like a normal field. */
.ss-native {
    width: 100%;
    padding: 0.72rem 0.85rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #f8fafb;
    color: var(--ink);
}
.ss-native:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px var(--teal-soft);
}
/* When enhanced, hide the native select but keep it submittable. */
.ss.is-enhanced .ss-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    clip: rect(0 0 0 0);
}
.ss-control {
    display: none;
}
.ss.is-enhanced .ss-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0.72rem 0.85rem;
    font-size: 0.95rem;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #f8fafb;
    color: var(--ink);
    transition:
        border-color 0.15s,
        background 0.15s,
        box-shadow 0.15s;
}
.ss.is-enhanced .ss-control:hover {
    border-color: #cdd8e0;
}
.ss-control[aria-expanded="true"] {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px var(--teal-soft);
}
.ss-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
.ss-value.placeholder {
    color: var(--muted);
    font-weight: 500;
}
.ss-caret {
    color: var(--muted);
    font-size: 0.7rem;
    flex: none;
}
.ss-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.ss-search {
    position: relative;
    padding: 9px;
    border-bottom: 1px solid var(--line);
}
.ss-search .ico {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa7b2;
}
.ss-search input {
    width: 100%;
    padding: 0.55rem 0.7rem 0.55rem 2.05rem;
    font-size: 0.92rem;
    font-family: inherit;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafb;
    color: var(--ink);
}
.ss-search input:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px var(--teal-soft);
}
.ss-list {
    list-style: none;
    margin: 0;
    padding: 6px;
    max-height: 230px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.ss-item {
    padding: 0.58rem 0.7rem;
    border-radius: 9px;
    font-size: 0.92rem;
    cursor: pointer;
    color: var(--ink);
}
.ss-item:hover {
    background: var(--teal-soft);
}
.ss-item.is-sel {
    background: var(--teal-soft);
    color: var(--navy);
    font-weight: 700;
}
.ss-none {
    padding: 0.85rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.86rem;
}

/* Mobile sticky action bar (mirrors the summary CTA) */
.reg-mobilebar {
    display: none;
}
@media (max-width: 920px) {
    .reg-mobilebar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 25;
        align-items: center;
        gap: 14px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
        padding: 12px 4% calc(12px + env(safe-area-inset-bottom));
    }
    .reg-mobilebar .total .lbl {
        font-size: 0.66rem;
        color: var(--muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .reg-mobilebar .total .amt {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1.1;
    }
    .reg-mobilebar .btn {
        flex: 1;
    }
}

/* =========================================================
   Compact pass — tighter, more minimalistic registration UI
   (slightly smaller on desktop, noticeably smaller on phones)
   ========================================================= */
.hero-sm {
    padding: 24px 0 52px;
}
.hero-sm h1 {
    font-size: 1.55rem;
}
.hero-sm p {
    font-size: 0.92rem;
}

.reg-shell {
    margin-top: -38px;
}
.reg-step {
    padding: 18px 20px;
    border-radius: 18px;
}
.reg-step-head {
    margin-bottom: 14px;
}
.reg-step-head .t h2 {
    font-size: 1.02rem;
}
.reg-step-head .t p {
    font-size: 0.8rem;
}
.reg-step-num {
    width: 27px;
    height: 27px;
    font-size: 0.85rem;
}
.chip {
    min-height: 48px;
    font-size: 0.92rem;
    border-radius: 12px;
}
.class-grid {
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 8px;
}
.field {
    margin-bottom: 14px;
}
.field label {
    font-size: 0.82rem;
}
.field input {
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
    border-radius: 11px;
}
.pkg {
    padding: 0.7rem 0.6rem 0.75rem;
    border-radius: 13px;
}
.pkg .qty {
    font-size: 0.9rem;
}
.pkg .price {
    font-size: 1.05rem;
}
.summary-card .sc-head {
    padding: 14px 16px;
}
.summary-card .sc-body {
    padding: 16px;
}
.sc-total .amt {
    font-size: 1.35rem;
}
.summary-card .btn,
.reg-mobilebar .btn {
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
}

@media (max-width: 560px) {
    .hero-sm {
        padding: 20px 0 46px;
    }
    .hero-sm h1 {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }
    .hero-sm p {
        font-size: 0.88rem;
    }
    .hero-school {
        margin-bottom: 14px;
    }
    .hero-school .school {
        font-size: 1.02rem;
    }
    .reg-shell {
        margin-top: -34px;
        padding-bottom: 112px;
    }
    .reg-grid {
        gap: 14px;
    }
    .reg-main {
        gap: 14px;
    }
    .reg-step {
        padding: 14px 14px;
        border-radius: 15px;
    }
    .reg-step-head {
        margin-bottom: 12px;
        gap: 10px;
    }
    .reg-step-head .t h2 {
        font-size: 0.96rem;
    }
    .reg-step-head .t p {
        font-size: 0.76rem;
    }
    .reg-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.78rem;
    }
    .chip {
        min-height: 42px;
        font-size: 0.88rem;
        border-radius: 10px;
        padding: 0.5rem 0.5rem;
    }
    .class-grid {
        grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
        gap: 7px;
    }
    .field {
        margin-bottom: 12px;
    }
    .field label {
        font-size: 0.8rem;
    }
    .field input {
        padding: 0.62rem 0.75rem;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    .pkg-group {
        margin-bottom: 14px;
    }
    .pkg-group h3 {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    .pkg-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }
    .pkg {
        padding: 0.6rem 0.5rem 0.65rem;
        border-radius: 11px;
    }
    .pkg .qty {
        font-size: 0.85rem;
    }
    .pkg .sub {
        font-size: 0.68rem;
    }
    .pkg .price {
        font-size: 0.98rem;
    }
    .summary-card .sc-body {
        padding: 14px;
    }
    .sc-line {
        font-size: 0.84rem;
    }
    .sc-total .amt {
        font-size: 1.25rem;
    }
    .ss.is-enhanced .ss-control,
    .ss-native {
        padding: 0.62rem 0.75rem;
        font-size: 0.92rem;
    }
}

/* =========================================================
   Checkout — payment method selection
   ========================================================= */
.pay-list {
    display: grid;
    gap: 10px;
}
.pay-opt {
    position: relative;
}
.pay {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0.85rem 0.9rem;
    transition:
        border-color 0.15s,
        background 0.15s;
}
.pay:hover {
    border-color: #cdd8e0;
}
.opt input:checked + .pay {
    border-color: var(--teal);
    background: var(--teal-soft);
    box-shadow: 0 0 0 3px var(--teal-soft);
}
.pay-ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(36, 54, 72, 0.07);
    font-size: 1.3rem;
}
.opt input:checked + .pay .pay-ic {
    background: #fff;
}
.pay-meta {
    flex: 1;
    min-width: 0;
}
.pay-meta .nm {
    display: block;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
}
.pay-meta .sub {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}
.pay-tick {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    border: 2px solid var(--line);
    background: #fff;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.15s;
}
.pay-tick svg {
    width: 12px;
    height: 12px;
}
.opt input:checked + .pay .pay-tick {
    opacity: 1;
    transform: scale(1);
    background: var(--teal);
    border-color: var(--teal);
}

/* =========================================================
   Order confirmation / result
   ========================================================= */
.confirm-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.confirm-ic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 800;
}
.confirm-ic.ok {
    background: var(--teal-soft);
    color: var(--teal);
}
.confirm-ic.wait {
    background: #fff5e1;
    color: #c98a04;
}
.confirm-order {
    flex: 1;
    min-width: 0;
}
.confirm-order .lbl {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 700;
}
.confirm-order .num {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    white-space: nowrap;
}
@media (max-width: 560px) {
    .confirm-top {
        gap: 10px;
    }
    .confirm-ic {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    .confirm-order .num {
        font-size: 1.02rem;
    }
    .status-pill {
        font-size: 0.64rem;
        padding: 0.28rem 0.5rem;
    }
    .qr-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    .qr-box img {
        width: 140px;
        height: 140px;
        margin: 0 auto 10px;
    }
}
.status-pill {
    flex: none;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.status-pill.paid {
    background: var(--teal-soft);
    color: var(--teal);
}
.status-pill.pending {
    background: #fff5e1;
    color: #c98a04;
}
.qr-box {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    background: #fcfdfd;
    text-align: left;
}
.qr-box img {
    width: 100px;
    height: 100px;
    margin: 0;
    flex: none;
}
.qr-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}
.qr-box h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--ink);
}
.note {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    margin-top: 14px;
    font-size: 0.9rem;
    background: #f8fafb;
}
.note.ok {
    background: var(--teal-soft);
    border-color: rgba(14, 158, 134, 0.25);
    color: #0a6f5e;
}
.note h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
}
.note .review-row {
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.9rem;
}
.note .review-row:last-of-type {
    border-bottom: 0;
}
.note-hint {
    margin: 10px 0 0;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}
.confirm-keep {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin: 18px 0 4px;
}
.lp-photo-banner {
    padding: 48px 0;
    text-align: center;
}
.lp-photo-banner img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
