:root {
    --bg: #f6fbff;
    --surface: #ffffff;
    --surface-2: #eef6ff;
    --accent: #18b6f8;
    --accent-2: #35e2b3;
    --text: #0f172a;
    --muted: #52607a;
    --border: #d6e4f5;
    --pill: #2dd4bf;
    --danger: #f43f5e;
    --gradient-border: linear-gradient(120deg, #1fb6ff, #2ee6a6, #7c6bff);
    font-family: 'Newsreader', 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    background: radial-gradient(circle at 20% 20%, rgba(24, 182, 248, 0.12), transparent 35%), radial-gradient(circle at 80% 0%, rgba(46, 230, 166, 0.12), transparent 40%), var(--bg);
    line-height: 1.6;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    background: radial-gradient(circle at 20% 20%, rgba(24, 182, 248, 0.12), transparent 35%), radial-gradient(circle at 80% 10%, rgba(46, 230, 166, 0.12), transparent 40%), var(--bg);
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(199, 213, 229, 0.6);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(145deg, #19a8d6, #27d1c0);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(25, 168, 214, 0.25);
    color: #ffffff;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-label { margin: 0; font-weight: 700; font-size: 17px; }
.brand-sub { margin: 0; color: var(--muted); font-size: 13px; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
    color: #7b8794;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover { color: #0ea5e9; transform: translateY(-1px); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-login {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-login::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #0ea5e9;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}
.nav-login:hover {
    color: #0ea5e9;
    transform: translateY(-1px);
}
.nav-login:hover::after {
    transform: scaleX(1);
}
.nav-cta {
    background: hsl(195 85% 45%);
    background-image: none;
    border: none;
    border-radius: 999px;
    color: #ffffff;
    box-shadow: none;
    padding: 10px 18px;
}
.nav-cta.cta {
    background: hsl(195 85% 45%);
    background-image: none;
    border: none;
    color: #ffffff;
}
.nav-cta.cta::after { display: none; }
.nav-cta::after { display: none; }

.cta {
    position: relative;
    background: linear-gradient(120deg, rgba(24, 182, 248, 0.18), rgba(46, 230, 166, 0.18)) padding-box, var(--gradient-border) border-box;
    border: 2px solid transparent;
    color: #0b1c2b;
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(24, 182, 248, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-1px) scale(1.01); box-shadow: 0 18px 40px rgba(24, 182, 248, 0.28); }
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
    transform: translateX(-120%);
    animation: shimmer 6s ease-in-out infinite;
}
.ghost { transition: transform 0.2s ease, border-color 0.2s ease; }
.ghost:hover { transform: translateY(-1px); border-color: var(--accent); }

.ghost {
    color: var(--text);
    border: 2px solid transparent;
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient-border) border-box;
    padding: 10px 16px;
    border-radius: 14px;
    text-decoration: none;
}

.hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero-showcase {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(24, 182, 248, 0.12), transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(24, 182, 248, 0.12), transparent 55%);
    z-index: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24, 182, 248, 0.4), rgba(46, 230, 166, 0.25), transparent 70%);
    opacity: 0.12;
    filter: blur(40px);
    z-index: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(24, 182, 248, 0.12);
    border: 1px solid rgba(24, 182, 248, 0.25);
    animation: bubble-float 10s ease-in-out infinite;
}
.bubble-1 { width: 90px; height: 90px; top: 18%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 60px; height: 60px; top: 28%; right: 15%; animation-delay: 1s; }
.bubble-3 { width: 130px; height: 130px; bottom: 18%; left: 20%; animation-delay: 2s; }
.bubble-4 { width: 36px; height: 36px; top: 48%; left: 40%; animation-delay: 0.5s; }
.bubble-5 { width: 90px; height: 90px; bottom: 20%; right: 25%; animation-delay: 1.5s; }
.bubble-6 { width: 28px; height: 28px; top: 24%; right: 35%; animation-delay: 2.5s; }
.hero-showcase .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
.hero-content { max-width: 820px; transform: translateY(-10px); }

h1 { font-size: clamp(38px, 6vw, 62px); margin: 12px 0; line-height: 1.1; }
h2 { margin: 8px 0; }
.lead { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 18px; }
.eyebrow { color: #0ea5e9; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; font-size: 12px; display: inline-flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 14px; padding: 8px 16px; background: rgba(24, 182, 248, 0.08); border-radius: 999px; }
.eyebrow .spark { color: #0ea5e9; }
.accent-text { background: linear-gradient(120deg, #18b6f8, #35e2b3); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-actions { display: flex; gap: 14px; margin: 26px 0 18px; justify-content: center; }
.hero-cta {
    background: linear-gradient(120deg, #18b6f8, #35e2b3);
    color: #ffffff;
    border: none;
    box-shadow: 0 18px 35px rgba(24, 182, 248, 0.25);
}
.hero-cta::after { display: none; }
.hero-ghost {
    border: 2px solid #18b6f8;
    color: #0ea5e9;
    background: #ffffff;
}
.hero-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 34px;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot-teal { background: #34d399; }
.dot-blue { background: #38bdf8; }
.dot-lilac { background: #c084fc; }

.hero-card {
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient-border) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
    animation: float 9s ease-in-out infinite;
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(124,107,255,0.18) 0%, rgba(0,0,0,0) 60%);
    filter: blur(40px);
    z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

.service-list { display: flex; flex-direction: column; gap: 14px; }
.service-row { display: flex; justify-content: space-between; align-items: center; }
.service-name { margin: 0; font-weight: 700; }
.service-name iconify-icon { margin-right: 6px; color: var(--accent); vertical-align: -2px; }
.price { font-weight: 700; }
.price.big { font-size: 24px; }
.lead, .muted { color: var(--muted); }
.small { font-size: 13px; }

.section { padding: 60px 0; border-top: 1px solid var(--border); }
.order-section {
    background: var(--surface-2);
    border-top: none;
}

.schedule-banner {
    background: linear-gradient(120deg, #1ea0d8, #2dd4bf);
    border-radius: 26px;
    padding: 60px 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(24, 182, 248, 0.25);
    position: relative;
    overflow: hidden;
}
.schedule-banner::before,
.schedule-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.schedule-banner::before { width: 60px; height: 60px; top: -12px; left: 40px; }
.schedule-banner::after { width: 80px; height: 80px; bottom: -30px; right: 80px; }
.schedule-banner h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
    color: #ffffff;
}
.schedule-banner p {
    margin: 0 auto 26px;
    max-width: 640px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}
.schedule-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.schedule-cta {
    background: #ffffff;
    color: #1992d4;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}
.schedule-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 22px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 600;
}
.phone-icon { font-size: 16px; }

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.modal.is-open { display: flex; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}
.modal-panel {
    position: relative;
    width: min(900px, 92vw);
    max-height: 85vh;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
    z-index: 1;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px 10px;
    border-bottom: none;
}
.modal-title { margin: 0 0 6px; font-size: 22px; color: #0f172a; }
.modal-subtitle { margin: 0; color: #64748b; font-size: 14px; }
.modal-close {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.modal-body {
    max-height: calc(85vh - 96px);
    overflow: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 0 26px 26px;
    background: #ffffff;
}
.modal-messages {
    margin-bottom: 12px;
}
.modal-messages .message {
    margin-bottom: 8px;
}
.modal-body .form-grid {
    gap: 10px 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.modal-label {
    color: #0f172a;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.modal-label iconify-icon { color: #0ea5e9; font-size: 16px; }
.modal-body .field input,
.modal-body .field select,
.modal-body .field textarea {
    background: #f8fbff;
    border: 1px solid #d7e5f3;
    border-radius: 14px;
    padding: 10px 12px;
}
.modal-body .field input:focus,
.modal-body .field select:focus,
.modal-body .field textarea:focus {
    outline: 2px solid rgba(30, 160, 216, 0.25);
    border-color: #1ea0d8;
}
.modal-body details {
    background: #f8fbff;
    border: 1px solid #d7e5f3;
    border-radius: 14px;
    padding: 10px 12px;
}
.modal-body details summary { list-style: none; }
.modal-body details summary::-webkit-details-marker { display: none; }
.modal-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0f172a;
}
.modal-summary iconify-icon { color: #0ea5e9; font-size: 16px; }
.modal-body .services-field ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}
.modal-body .services-field li {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.modal-body .services-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0f172a;
    width: 100%;
    padding: 7px 10px;
    border-radius: 12px;
    cursor: pointer;
}
.modal-body .services-field .modal-label {
    margin-bottom: 4px;
}
.modal-body .services-field input {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid #1ea0d8;
    background: #ffffff;
    display: grid;
    place-items: center;
    margin: 0;
}
.modal-body .services-field input:checked {
    background: #1ea0d8;
    box-shadow: inset 0 0 0 4px #ffffff;
}
.modal-body .services-field li:hover {
    border-color: #1ea0d8;
    box-shadow: 0 10px 18px rgba(30, 160, 216, 0.12);
}

.modal-submit {
    width: min(60%, 560px);
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, #1ea0d8, #2dd4bf);
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 16px 30px rgba(24, 182, 248, 0.2);
    margin: 8px auto 0;
}
.modal-submit::after { display: none; }
.modal-body .services-field li:hover {
    border-color: #1ea0d8;
    box-shadow: 0 10px 18px rgba(30, 160, 216, 0.12);
}
}
.section.light { background: var(--surface-2); border-bottom: 1px solid var(--border); }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }

.services-section {
    background: #f7fbff;
    border-top: 1px solid #e6edf4;
    padding: 80px 0;
}
.services-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.services-eyebrow {
    color: #0ea5e9;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 12px;
    margin: 0 0 12px;
}
.services-head h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin: 0 0 12px;
}
.services-subtitle {
    color: #6b7280;
    font-size: 18px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}
.service-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef4fb;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #ecf7ff;
    color: #0ea5e9;
    margin-bottom: 18px;
}
.service-icon iconify-icon { font-size: 26px; }
.service-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
    color: #0f172a;
}
.service-desc {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.how-section {
    background: #ffffff;
    padding: 90px 0 120px;
}
.how-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}
.how-head h2 {
    font-size: clamp(34px, 4vw, 48px);
    margin: 0 0 12px;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.how-line {
    position: absolute;
    left: 11%;
    right: 11%;
    top: 46px;
    height: 2px;
    background: linear-gradient(90deg, rgba(24,182,248,0.15), rgba(24,182,248,0.4), rgba(24,182,248,0.15));
    z-index: 0;
}
.how-step {
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}
.how-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}
.how-icon {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(145deg, #18b6f8, #2dd4bf);
    display: grid;
    place-items: center;
    margin: 0 auto;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(24, 182, 248, 0.2);
}
.how-icon iconify-icon { font-size: 34px; }
.how-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -6px;
    margin: 0;
}
.how-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
    color: #0f172a;
}
.how-desc {
    color: #6b7280;
    margin: 0 auto;
    max-width: 220px;
    line-height: 1.6;
}

.trust { padding: 40px 0; border-top: none; }
.trust-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.logo-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.logo-row iconify-icon { font-size: 32px; filter: saturate(1.1); opacity: 0.8; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient-border) border-box;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(24, 182, 248, 0.14); }
.gradient-card { background: linear-gradient(145deg, rgba(24,182,248,0.18), rgba(46,230,166,0.16)); border: 1px solid rgba(24,182,248,0.35); }

.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(24, 182, 248, 0.12);
    color: var(--accent);
    margin-bottom: 12px;
}
.icon-badge iconify-icon { font-size: 22px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 22px; }
.step { padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); }
.step-number { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(46, 230, 166, 0.16); color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.step-number iconify-icon { font-size: 22px; }
.step-title { margin: 0 0 4px; font-weight: 700; }

.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; align-items: start; }
.bullets { padding-left: 18px; color: var(--muted); }
.bullets li { margin-bottom: 6px; }

.form-card form { display: flex; flex-direction: column; gap: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 14px; }
.field input, .field select, .field textarea { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text); font-size: 14px; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 1px solid var(--accent); }
.field.full { grid-column: 1 / -1; }
.services-field ul { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 8px; }
.errorlist { list-style: none; padding: 0; margin: 4px 0 0; color: #fda4af; font-size: 13px; }
.services-field li { display: flex; gap: 10px; align-items: center; }
.services-field input { width: 16px; height: 16px; }
button.cta { width: fit-content; }

.recent { margin-top: 20px; }
.recent-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface-2); }
.pill { background: rgba(46, 230, 166, 0.16); color: var(--accent); padding: 6px 10px; border-radius: 999px; font-weight: 700; }

.messages { margin: 10px auto; }
.message { padding: 12px 14px; border-radius: 12px; margin-bottom: 8px; border: 1px solid var(--border); }
.message.success { border-color: var(--accent); background: rgba(46, 230, 166, 0.12); color: var(--accent); }
.message.error { border-color: var(--danger); background: rgba(244, 63, 94, 0.08); color: #fda4af; }

.status-section {
    background: #f7fbff;
    border-top: 1px solid #e6edf4;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: center;
}
.status-head {
    text-align: left;
}
.status-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.status-cta {
    background: hsl(195 85% 45%);
    background-image: none;
    border: none;
    color: #ffffff;
}
.status-cta::after { display: none; }
.status-ghost {
    background: #ffffff;
    border: 2px solid #cfe3f5;
    color: #0f172a;
}
.status-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #eef4fb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.status-title {
    font-weight: 700;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
}
.status-title iconify-icon { color: #0ea5e9; font-size: 18px; }
.status-flow {
    color: #6b7280;
    margin: 0 0 10px;
    font-size: 14px;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(24, 182, 248, 0.12);
    color: #0ea5e9;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 10px;
}
.status-note {
    color: #6b7280;
    margin: 0;
}

.auth-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fbff;
    padding: 60px 0;
}
.auth-card {
    width: min(420px, 92vw);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5eef7;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 32px 30px;
    text-align: center;
}
.auth-logo {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: linear-gradient(145deg, #19a8d6, #27d1c0);
    display: grid;
    place-items: center;
    color: #ffffff;
}
.auth-logo svg { width: 24px; height: 24px; }
.auth-title {
    font-size: 22px;
    margin: 0 0 6px;
    color: #0f172a;
}
.auth-subtitle {
    color: #64748b;
    margin: 0 0 18px;
    font-size: 14px;
}
.auth-form {
    text-align: left;
}
.auth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 10px;
}
.auth-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.auth-form .field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}
.auth-form .field input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d7e5f3;
    background: #f8fbff;
    padding: 10px 12px;
    font-size: 14px;
    color: #0f172a;
}
.auth-form .field input:focus {
    outline: 2px solid rgba(30, 160, 216, 0.2);
    border-color: #1ea0d8;
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 16px;
    font-size: 13px;
    color: #64748b;
}
.auth-check input { width: 16px; height: 16px; accent-color: #1ea0d8; }
.auth-check a { color: #1ea0d8; text-decoration: none; }
.auth-submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 12px 16px;
    background: hsl(195 85% 45%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}
.auth-footer {
    margin: 16px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}
.auth-footer a { color: #1ea0d8; text-decoration: none; }
.toggle-row { align-items: center; }
.toggle-label { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; }
details summary { cursor: pointer; color: var(--text); font-weight: 600; }
details[open] summary { color: var(--accent); }

.track-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.track-container {
    text-align: center;
    max-width: 760px;
    position: relative;
    z-index: 1;
}
.track-container h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 0 0 10px;
}
.track-container .lead {
    margin: 0 auto 28px;
    max-width: 520px;
    font-size: 18px;
}
.track-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.track-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    align-items: stretch;
    width: min(520px, 100%);
}
.track-inputs .field input {
    border-radius: 14px;
    border: 1px solid #d5e2f1;
    background: #ffffff;
    padding: 14px 16px;
    font-size: 15px;
}
.track-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(195 85% 45%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    height: 44px;
}
.track-icon svg { width: 14px; height: 14px; }
.track-result {
    margin-top: 24px;
    text-align: left;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.track-result-panel {
    background: #ffffff;
    border: 1px solid #e3edf7;
    border-radius: 18px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}
.track-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: start;
}
.track-label {
    margin: 0 0 4px;
    font-size: 13px;
    color: #64748b;
}
.track-value {
    margin: 0;
    font-weight: 700;
    color: #0f172a;
}
.track-accent { color: #0ea5e9; }
.track-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    text-align: center;
}
.track-total {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
}
.track-total .track-value { font-size: 18px; }
.track-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    align-items: center;
}
.track-services-label {
    margin-right: 8px;
}
.track-chip {
    background: #eef6ff;
    color: #0f172a;
    border: 1px solid #dbe7f3;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.track-line {
    position: absolute;
    top: 22px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: #dbe7f3;
}
.track-step {
    position: relative;
    z-index: 1;
    color: #64748b;
    font-size: 13px;
}
.track-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #e6eef6;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    color: #64748b;
}
.track-icon iconify-icon { font-size: 20px; }
.track-step.is-active .track-icon {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}
.track-step.is-active { color: #0f172a; }
.track-sub {
    display: block;
    margin-top: 4px;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 600;
}

.site-footer {
    padding: 50px 0 36px;
    border-top: 1px solid #1f2d3d;
    background: #162637;
    color: #e6edf4;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(145deg, #19a8d6, #27d1c0);
    display: grid;
    place-items: center;
    color: #ffffff;
}
.footer-logo svg { width: 22px; height: 22px; }
.footer-title { margin: 0 0 12px; font-weight: 700; color: #ffffff; }
.site-footer .muted { color: #a5b4c3; }
.footer-note {
    text-align: center;
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid #243447;
    color: #a5b4c3;
}

@media (max-width: 640px) {
    .nav { flex-direction: column; gap: 10px; align-items: flex-start; }
    .nav-links { flex-wrap: wrap; }
    .hero { padding-top: 40px; }
    .hero-actions { flex-wrap: wrap; }
    .trust-grid { justify-content: center; text-align: center; }
    .logo-row { justify-content: center; }
    .nav-actions { width: 100%; justify-content: flex-start; }
    .hero-orb { width: 360px; height: 360px; }
    .hero-badges { gap: 20px; }
    .services-section { padding: 60px 0; }
    .services-grid { gap: 18px; }
    .how-section { padding: 70px 0 90px; }
    .how-steps { grid-template-columns: 1fr; gap: 32px; }
    .how-line { display: none; }
    .schedule-banner { padding: 46px 24px; }
    .schedule-actions { flex-direction: column; }
    .track-form { flex-direction: column; align-items: stretch; }
    .track-inputs { grid-template-columns: 1fr; width: 100%; }
    .track-button { width: 100%; justify-content: center; }
    .track-summary { grid-template-columns: 1fr; text-align: left; }
    .track-timeline { grid-template-columns: 1fr; gap: 18px; }
    .track-line { display: none; }
    .status-grid { grid-template-columns: 1fr; text-align: center; }
    .status-head { text-align: center; }
    .status-actions { justify-content: center; }
    .status-card { text-align: left; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { transform: translateX(-120%); }
    40%, 100% { transform: translateX(120%); }
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.9; }
    50% { transform: translateY(-26px) scale(1.08); opacity: 0.6; }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-fade {
    opacity: 0;
    animation: fade-in-up 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
