:root {
    --ink: #10261f;
    --ink-soft: #4b635b;
    --muted: #7b928a;
    --line: #d8ebe2;
    --paper: #ffffff;
    --wash: #f2fff8;
    --wash-strong: #d8ffe9;
    --navy: #10312a;
    --teal: #00c781;
    --green: #31f28f;
    --green-deep: #00a86b;
    --mint: #dfffe9;
    --coral: #ff6f61;
    --amber: #ffe066;
    --violet: #8a7cff;
    --shadow: 0 24px 70px rgba(8, 61, 43, 0.16);
    --shadow-green: 0 18px 44px rgba(0, 199, 129, 0.28);
}

@keyframes softRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #f7fff9 0%, #ffffff 28%, #f7fff9 100%);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(216, 235, 226, 0.85);
    background: rgba(255, 255, 255, 0.96);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 850;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #073526;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 199, 129, 0.25);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(3, 18, 12, 0.18);
    border-radius: inherit;
}

.brand-mark::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: 5px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(56, 255, 153, 0.7);
}

.brand-mark span {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.brand-word {
    color: inherit;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #294f43;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    white-space: nowrap;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
    color: var(--green-deep);
    transform: translateY(-1px);
}

.nav-muted {
    color: var(--muted);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 52%, #00aef0 100%);
    color: #063526;
    box-shadow: var(--shadow-green);
}

.btn-dark {
    background: linear-gradient(135deg, var(--navy), #0b5b44);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(16, 49, 42, 0.25);
}

.btn-ghost {
    border-color: rgba(0, 199, 129, 0.3);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(8, 61, 43, 0.08);
}

.btn-danger {
    border-color: rgba(255, 118, 95, 0.34);
    background: linear-gradient(135deg, #ff7b66, #ffb06b);
    color: #310b06;
    box-shadow: 0 16px 36px rgba(255, 118, 95, 0.18);
}

.btn-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.wide {
    width: 100%;
}

.message-wrap {
    position: fixed;
    top: 86px;
    right: 20px;
    z-index: 60;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100% - 40px));
}

.message {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
    color: var(--ink);
    font-weight: 700;
}

.message-success {
    border-color: rgba(22, 184, 166, 0.4);
}

.message-error {
    border-color: rgba(255, 118, 95, 0.45);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 72px);
    padding: 96px 0 78px;
    background:
        linear-gradient(118deg, rgba(230, 255, 239, 0.96) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(230, 255, 250, 0.88) 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.hero::before {
    top: 0;
    right: -18%;
    width: 72%;
    height: 100%;
    background:
        repeating-linear-gradient(
            118deg,
            rgba(49, 242, 143, 0.14) 0 14px,
            rgba(255, 255, 255, 0) 14px 46px
        );
    transform: skewX(-10deg);
}

.hero::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--green), var(--amber), var(--teal), var(--violet));
    background-size: 100% 100%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 560px);
    gap: 58px;
    align-items: center;
}

.hero-copy,
.form-panel,
.page-hero-inner,
.auth-copy {
    animation: softRise 0.52s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(0, 199, 129, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #05805b;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 10px 28px rgba(0, 199, 129, 0.1);
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(49, 242, 143, 0.16);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    max-width: 680px;
    margin: 22px 0 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: 0;
}

.accent-text {
    display: inline;
    background: linear-gradient(110deg, var(--green-deep), var(--teal), #00aef0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 640px;
    color: var(--ink-soft);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    color: #31594b;
    font-size: 14px;
    font-weight: 800;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(0, 199, 129, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-points span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.form-panel,
.order-summary,
.metric,
.detail-panel,
.detail-side,
.empty-state,
.pricing-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.hero-visual {
    position: relative;
    margin: 0;
    animation: softRise 0.7s ease both;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 16% 5% -5% 14%;
    z-index: -1;
    border-radius: 8px;
    background:
        radial-gradient(circle at 40% 30%, rgba(49, 242, 143, 0.34), transparent 62%),
        radial-gradient(circle at 75% 62%, rgba(0, 174, 240, 0.18), transparent 58%);
}

.hero-preview-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(8, 61, 43, 0.16);
}

.hero-brand-overlay {
    position: absolute;
    top: 18.4%;
    left: 19%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 31%;
    height: 8%;
    padding: 0 2.2%;
    border-radius: 12px;
    background: #ffffff;
    color: #0bbf73;
    font-size: clamp(10px, 1.55vw, 18px);
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.hero-brand-overlay span {
    display: grid;
    flex: 0 0 auto;
    width: 2.05em;
    height: 2.05em;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #073526;
    font-weight: 950;
}

.hero-brand-overlay strong {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
}

.metric span,
.summary-block span,
.data-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.section {
    padding: 96px 0;
}

.section-tint {
    background:
        linear-gradient(135deg, rgba(242, 255, 248, 0.98), rgba(232, 251, 255, 0.9));
}

.section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-head.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head h2,
.pricing-copy h2 {
    margin: 12px 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
    letter-spacing: 0;
}

.section-head p,
.pricing-copy p {
    color: var(--ink-soft);
    font-size: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(0, 199, 129, 0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(8, 61, 43, 0.08);
}

.process-grid article {
    position: relative;
    min-height: 220px;
    padding: 28px;
    background:
        linear-gradient(180deg, #ffffff, #f8fffb);
    transition: transform 0.2s ease, background 0.2s ease;
}

.process-grid article::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--amber));
    opacity: 0.7;
}

.process-grid article:hover {
    transform: translateY(-4px);
    background:
        linear-gradient(180deg, #ffffff, #effff5);
}

.process-grid article + article {
    border-left: 1px solid var(--line);
}

.icon-box {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #073526;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 199, 129, 0.22);
}

.process-grid h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.process-grid p,
.feature-list span,
.faq-list p,
.site-footer p,
.site-footer a,
.site-footer span {
    color: var(--ink-soft);
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-list div {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 22px;
    border: 1px solid rgba(0, 199, 129, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f7fffb);
    box-shadow: 0 12px 32px rgba(8, 61, 43, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-list div::before {
    content: "";
    width: 34px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--violet));
}

.feature-list div:hover {
    transform: translateX(6px);
    border-color: rgba(0, 199, 129, 0.38);
    box-shadow: 0 18px 44px rgba(0, 199, 129, 0.12);
}

.feature-list strong {
    font-size: 18px;
    color: var(--navy);
}

.pricing-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 40px;
    align-items: center;
    padding: 42px;
    border-color: rgba(0, 199, 129, 0.2);
    background:
        linear-gradient(120deg, #ffffff 0%, #effff5 48%, #fff8da 100%);
}

.pricing-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--amber), var(--teal));
}

.price-box {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(0, 199, 129, 0.25);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f7fff4);
    box-shadow: 0 18px 44px rgba(8, 61, 43, 0.08);
}

.price-box span {
    color: var(--green-deep);
    font-weight: 850;
}

.price-box strong {
    font-size: 24px;
    color: var(--navy);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 48px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid rgba(0, 199, 129, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(8, 61, 43, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-list details:hover,
.faq-list details[open] {
    transform: translateY(-2px);
    border-color: rgba(0, 199, 129, 0.38);
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 850;
    color: var(--navy);
}

.faq-list p {
    margin: 0;
    padding: 0 22px 20px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(242, 255, 248, 1), rgba(255, 255, 255, 0.94), rgba(232, 251, 255, 0.9));
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--amber), var(--teal));
}

.page-hero.compact {
    padding: 54px 0;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.page-hero h1,
.auth-copy h1 {
    margin: 12px 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.18;
    letter-spacing: 0;
}

.page-hero p,
.auth-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.auth-section {
    min-height: calc(100vh - 72px);
    padding: 76px 0;
    background:
        linear-gradient(115deg, var(--wash) 0%, #ffffff 58%, #f1fff8 100%);
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 70px;
    align-items: center;
}

.auth-note {
    display: grid;
    gap: 4px;
    max-width: 460px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid rgba(0, 199, 129, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #ffffff, #f2fff7);
    box-shadow: 0 16px 38px rgba(0, 199, 129, 0.1);
}

.auth-note strong {
    color: var(--green-deep);
}

.auth-note span {
    color: var(--ink-soft);
}

.form-panel {
    padding: 30px;
    border-color: rgba(0, 199, 129, 0.18);
}

.form-head {
    margin-bottom: 24px;
}

.form-head h2 {
    margin-bottom: 6px;
    font-size: 28px;
}

.form-head p {
    margin: 0;
    color: var(--muted);
}

.form-head a,
.field-error,
.form-errors {
    color: #d14d3d;
    font-weight: 800;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field span {
    color: #285548;
    font-size: 14px;
    font-weight: 850;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 199, 129, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

textarea.form-control {
    resize: vertical;
}

.form-control:focus {
    border-color: var(--green-deep);
    box-shadow: 0 0 0 5px rgba(49, 242, 143, 0.18);
    transform: translateY(-1px);
}

.form-errors {
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 118, 95, 0.35);
    border-radius: 18px;
    background: #fff4f1;
}

.field-error {
    font-size: 13px;
}

.balance-chip {
    display: grid;
    gap: 2px;
    min-width: 170px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 199, 129, 0.22);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0, 199, 129, 0.1);
}

.balance-chip span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.balance-chip strong {
    font-size: 24px;
    color: var(--green-deep);
}

.order-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.order-form {
    display: grid;
    gap: 26px;
}

.form-section {
    display: grid;
    gap: 20px;
}

.form-section + .form-section {
    padding-top: 26px;
    border-top: 1px dashed rgba(0, 199, 129, 0.25);
}

.form-section-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.form-section-head > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #073526;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 199, 129, 0.2);
}

.form-section-head h2 {
    margin-bottom: 4px;
    font-size: 24px;
}

.form-section-head p {
    margin: 0;
    color: var(--muted);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-grid .field {
    margin-bottom: 0;
}

.span-2 {
    grid-column: span 2;
}

.mode-field {
    gap: 12px;
}

.mode-radio-grid > .mode-radio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mode-radio-grid > .mode-radio > div {
    min-width: 0;
}

.mode-radio-grid label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 199, 129, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 255, 249, 0.92));
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mode-radio-grid label:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 199, 129, 0.34);
    box-shadow: 0 12px 28px rgba(0, 199, 129, 0.12);
}

.mode-radio-grid input {
    width: 18px;
    height: 18px;
    accent-color: var(--green-deep);
}

.mode-radio-grid label:has(input:checked) {
    border-color: rgba(49, 242, 143, 0.8);
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
    box-shadow: 0 18px 42px rgba(49, 242, 143, 0.18);
}

.lookup-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.lookup-button {
    min-width: 96px;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
}

.lookup-button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.lookup-message {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.reserved-picker-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px 92px;
    gap: 10px;
}

.date-picker-popover {
    position: absolute;
    z-index: 80;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(0, 199, 129, 0.22);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(7, 53, 38, 0.18);
}

.date-picker-head {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
    align-items: center;
}

.date-picker-head strong {
    text-align: center;
    color: var(--ink);
    font-size: 15px;
}

.date-picker-head button,
.date-picker-day {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.date-picker-head button {
    width: 38px;
    height: 38px;
    background: var(--wash);
    color: var(--green-deep);
}

.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.date-picker-weekday {
    display: grid;
    height: 26px;
    place-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.date-picker-day {
    display: grid;
    height: 36px;
    place-items: center;
    background: transparent;
    color: var(--ink-soft);
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.date-picker-day:hover {
    transform: translateY(-1px);
    background: rgba(0, 199, 129, 0.12);
    color: var(--green-deep);
}

.date-picker-day[data-today] {
    box-shadow: inset 0 0 0 1px rgba(0, 199, 129, 0.34);
}

.date-picker-day[data-selected] {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
    box-shadow: 0 10px 24px rgba(0, 199, 129, 0.2);
}

.date-picker-day:disabled {
    cursor: not-allowed;
    opacity: 0.28;
    transform: none;
}

.place-result-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(0, 199, 129, 0.2);
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 0%, rgba(49, 242, 143, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 255, 249, 0.9));
    box-shadow: 0 18px 44px rgba(0, 199, 129, 0.1);
}

.place-result-card[hidden] {
    display: none;
}

.place-result-head,
.place-result-body {
    display: grid;
    gap: 8px;
}

.place-result-head span,
.place-result-body span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.place-result-head strong {
    color: var(--ink);
    font-size: 22px;
}

.place-result-body {
    grid-template-columns: 1.5fr repeat(2, minmax(0, 0.75fr));
}

.place-result-body > div {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(0, 199, 129, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
}

.place-result-body strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 15px;
}

.advanced-options {
    padding-top: 22px;
    border-top: 1px dashed rgba(0, 199, 129, 0.25);
}

.advanced-options summary {
    cursor: pointer;
    margin-bottom: 20px;
    color: var(--green-deep);
    font-size: 18px;
    font-weight: 900;
}

.check-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 199, 129, 0.2);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, var(--wash));
    font-weight: 850;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--green-deep);
}

.form-submit-bar {
    padding-top: 4px;
}

.order-summary,
.detail-side {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 14px;
    padding: 22px;
    border-color: rgba(0, 199, 129, 0.2);
    background:
        linear-gradient(180deg, #ffffff, #f6fff9);
}

.summary-block {
    display: grid;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 199, 129, 0.15);
}

.summary-block:last-child {
    border-bottom: 0;
}

.summary-block strong {
    font-size: 24px;
    color: var(--green-deep);
}

.refund-preview {
    padding: 16px;
    border: 1px solid rgba(255, 118, 95, 0.22);
    border-radius: 18px;
    background: rgba(255, 118, 95, 0.08);
}

.refund-preview form {
    margin-top: 8px;
}

.summary-block.muted {
    color: var(--ink-soft);
}

.order-summary p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 44px;
}

.metric {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 22px;
    overflow: hidden;
    border-color: rgba(0, 199, 129, 0.16);
    background:
        linear-gradient(180deg, #ffffff, #f6fff9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.metric strong {
    font-size: 32px;
    color: var(--green-deep);
}

.metric small,
.order-row small,
.summary-block small,
.history-item small {
    color: var(--muted);
}

.list-head,
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.list-head h2,
.panel-head h2 {
    margin-bottom: 4px;
}

.list-head p {
    margin: 0;
    color: var(--muted);
}

.order-table {
    overflow: hidden;
    border: 1px solid rgba(0, 199, 129, 0.18);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(8, 61, 43, 0.08);
}

.order-row {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) 120px minmax(180px, 0.8fr) 110px 128px;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.order-row:not(.order-row-head):hover {
    background: #f6fff9;
    transform: translateX(3px);
}

.order-row + .order-row {
    border-top: 1px solid var(--line);
}

.order-row-head {
    background: linear-gradient(90deg, var(--wash), #e9fff1);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.order-row strong,
.order-row small {
    display: block;
}

.order-row > a,
.order-actions > a,
.history-item > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--green-deep);
    font-weight: 900;
}

.order-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-actions form {
    margin: 0;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    background: rgba(255, 118, 95, 0.12);
    color: #c74835;
}

.danger-link {
    box-shadow: inset 0 0 0 1px rgba(255, 118, 95, 0.24);
}

.danger-link:hover {
    background: rgba(255, 118, 95, 0.18);
}

.status-pill {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    min-width: 72px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mint), #ffffff);
    color: var(--green-deep);
    font-size: 13px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(0, 199, 129, 0.18);
}

.status-completed {
    background: linear-gradient(135deg, var(--navy), var(--green-deep));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 199, 129, 0.2);
}

.status-failed,
.status-canceled {
    background: #fff4f1;
    color: #c74835;
}

.status-in_progress {
    background: #fff8da;
    color: #876000;
    box-shadow: inset 0 0 0 1px rgba(255, 224, 102, 0.65);
}

.progress-cell {
    display: grid;
    gap: 6px;
}

.progress-bar {
    overflow: hidden;
    width: 100%;
    height: 9px;
    border-radius: 999px;
    background: #e2f2ea;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 44px;
    text-align: center;
    border-color: rgba(0, 199, 129, 0.18);
    background:
        linear-gradient(180deg, #ffffff, #f6fff9);
}

.empty-state p {
    margin: 0;
    color: var(--ink-soft);
}

.compact-empty {
    padding: 24px;
    box-shadow: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 20px;
}

.detail-panel {
    padding: 26px;
    border-color: rgba(0, 199, 129, 0.16);
    background:
        linear-gradient(180deg, #ffffff, #fbfffc);
}

.detail-panel h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.data-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 0;
}

.data-list div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: #f7fff9;
}

.data-list dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 750;
}

.text-block + .text-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 199, 129, 0.14);
}

.text-block p {
    margin: 6px 0 0;
    color: var(--ink-soft);
}

.history-list {
    display: grid;
    gap: 10px;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(0, 199, 129, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, var(--wash));
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.history-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 199, 129, 0.1);
}

.muted-text {
    color: var(--muted);
    font-weight: 800;
}

.site-footer {
    padding: 58px 0;
    border-top: 0;
    background:
        linear-gradient(135deg, #0d2b24 0%, #0b4b37 58%, #047653 100%);
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand {
    color: #ffffff;
}

.footer-brand .brand-mark {
    background: linear-gradient(135deg, var(--green), var(--amber));
    color: #053532;
}

.site-footer div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer strong {
    color: #ffffff;
}

@media (max-width: 980px) {
    .hero-grid,
    .feature-layout,
    .pricing-panel,
    .faq-layout,
    .auth-grid,
    .order-form-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 64px 0;
    }

    .order-summary,
    .detail-side {
        position: static;
    }

    .process-grid,
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid article + article {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .order-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .order-row-head {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 64px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 64px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(0, 199, 129, 0.18);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 10px;
    }

    .hero h1,
    .page-hero h1,
    .auth-copy h1 {
        font-size: 34px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-actions,
    .page-hero-inner,
    .list-head,
    .panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .section {
        padding: 64px 0;
    }

    .process-grid,
    .metric-grid,
    .field-grid,
    .mode-radio-grid > .mode-radio,
    .place-result-body,
    .data-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .lookup-input-row {
        grid-template-columns: 1fr;
    }

    .reserved-picker-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reserved-picker-grid > input {
        grid-column: span 2;
    }

    .lookup-button {
        width: 100%;
    }

    .span-2 {
        grid-column: span 1;
    }

    .form-panel,
    .detail-panel,
    .pricing-panel,
    .empty-state {
        padding: 22px;
    }

    .message-wrap {
        top: 76px;
        right: 14px;
        left: 14px;
        width: auto;
    }
}

/* Dark customer theme */
:root {
    --ink: #f2fff6;
    --ink-soft: #bfd7cb;
    --muted: #7f9a8d;
    --line: rgba(99, 255, 170, 0.18);
    --paper: #0b1510;
    --wash: #07130e;
    --wash-strong: #10241a;
    --navy: #07110d;
    --teal: #00d084;
    --green: #38ff99;
    --green-deep: #19d47e;
    --mint: rgba(56, 255, 153, 0.14);
    --coral: #ff7b66;
    --amber: #ffd166;
    --violet: #9d8cff;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    --shadow-green: 0 20px 52px rgba(56, 255, 153, 0.22);
}

body {
    background:
        radial-gradient(circle at 16% 8%, rgba(56, 255, 153, 0.16), transparent 32%),
        radial-gradient(circle at 84% 16%, rgba(0, 208, 132, 0.11), transparent 30%),
        linear-gradient(180deg, #050907 0%, #08110d 42%, #050907 100%);
    color: var(--ink);
}

body::selection {
    background: rgba(56, 255, 153, 0.34);
    color: #ffffff;
}

.site-header {
    border-bottom: 1px solid rgba(99, 255, 170, 0.16);
    background: rgba(5, 10, 8, 0.94);
}

.brand {
    color: var(--ink);
}

.brand-mark {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #04100b;
    box-shadow: 0 0 0 1px rgba(56, 255, 153, 0.35), 0 12px 34px rgba(56, 255, 153, 0.28);
}

.brand-mark::before {
    border-color: rgba(5, 18, 12, 0.28);
}

.brand-mark::after {
    border-color: #06100c;
}

.brand-word {
    color: #f4fff7;
    text-shadow: 0 0 22px rgba(56, 255, 153, 0.1);
}

.site-nav {
    color: #c7ded2;
}

.site-nav a:hover,
.form-head a,
.order-row > a,
.order-actions > a,
.history-item > a {
    color: var(--green);
}

.nav-toggle {
    border-color: rgba(99, 255, 170, 0.2);
    background: #0c1712;
}

.nav-toggle span {
    background: var(--ink);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
    box-shadow: 0 16px 42px rgba(56, 255, 153, 0.32);
}

.btn-dark,
.btn-ghost {
    border-color: rgba(99, 255, 170, 0.22);
    background: rgba(14, 28, 21, 0.92);
    color: var(--ink);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.btn-ghost:hover,
.btn-dark:hover {
    border-color: rgba(56, 255, 153, 0.52);
    box-shadow: 0 18px 42px rgba(56, 255, 153, 0.14);
}

.btn-danger {
    border-color: rgba(255, 123, 102, 0.32);
    background: rgba(255, 123, 102, 0.13);
    color: var(--coral);
    box-shadow: 0 16px 36px rgba(255, 123, 102, 0.12);
}

.btn-danger:hover {
    border-color: rgba(255, 123, 102, 0.56);
    box-shadow: 0 18px 42px rgba(255, 123, 102, 0.16);
}

.link-button {
    background: rgba(255, 123, 102, 0.11);
    color: var(--coral);
}

.danger-link {
    box-shadow: inset 0 0 0 1px rgba(255, 123, 102, 0.24);
}

.danger-link:hover {
    background: rgba(255, 123, 102, 0.18);
}

.message {
    border-color: rgba(99, 255, 170, 0.22);
    background: #0c1712;
    color: var(--ink);
}

.hero {
    background:
        radial-gradient(circle at 18% 22%, rgba(56, 255, 153, 0.2), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(0, 208, 132, 0.14), transparent 36%),
        linear-gradient(135deg, #050907 0%, #0b1711 54%, #06100c 100%);
}

.hero::before {
    display: none;
}

.hero::after,
.page-hero::after,
.pricing-panel::before {
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.eyebrow {
    border-color: rgba(56, 255, 153, 0.28);
    background: rgba(11, 25, 18, 0.78);
    color: var(--green);
    box-shadow: 0 12px 30px rgba(56, 255, 153, 0.08);
}

.eyebrow::before {
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(56, 255, 153, 0.12), 0 0 18px rgba(56, 255, 153, 0.7);
}

.accent-text {
    background: linear-gradient(110deg, var(--green), var(--teal), #b7ffd9);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p,
.section-head p,
.pricing-copy p,
.page-hero p,
.auth-copy p,
.process-grid p,
.feature-list span,
.faq-list p,
.site-footer p,
.site-footer a,
.site-footer span,
.order-summary p,
.empty-state p,
.text-block p {
    color: var(--ink-soft);
}

.hero-points span {
    border-color: rgba(56, 255, 153, 0.22);
    background: rgba(11, 25, 18, 0.7);
    color: #d9ffea;
}

.hero-visual::before {
    inset: 4% -5% -12% -3%;
    background:
        radial-gradient(circle at 48% 48%, rgba(56, 255, 153, 0.2), transparent 55%),
        radial-gradient(circle at 76% 58%, rgba(0, 208, 132, 0.16), transparent 50%);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 22px;
    background:
        radial-gradient(ellipse at center, transparent 58%, rgba(5, 9, 7, 0.1) 78%, rgba(5, 9, 7, 0.62) 100%),
        linear-gradient(90deg, rgba(5, 9, 7, 0.24), transparent 22%, transparent 82%, rgba(5, 9, 7, 0.3));
}

.hero-preview-image {
    position: relative;
    z-index: 0;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
    opacity: 0.98;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, transparent 100%);
}

.section-tint,
.page-hero,
.auth-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(56, 255, 153, 0.12), transparent 34%),
        linear-gradient(180deg, #07100c, #050907);
}

.form-panel,
.order-summary,
.metric,
.detail-panel,
.detail-side,
.empty-state,
.pricing-panel,
.process-grid,
.order-table {
    border-color: rgba(99, 255, 170, 0.16);
    background: rgba(10, 20, 15, 0.86);
    box-shadow: var(--shadow);
}

.process-grid {
    background: rgba(10, 20, 15, 0.88);
}

.process-grid article,
.feature-list div,
.price-box,
.faq-list details,
.auth-note,
.check-field,
.metric,
.detail-panel,
.data-list div,
.history-item,
.balance-chip {
    border-color: rgba(99, 255, 170, 0.16);
    background:
        linear-gradient(180deg, rgba(17, 34, 25, 0.94), rgba(9, 18, 14, 0.94));
}

.process-grid article:hover,
.feature-list div:hover,
.faq-list details:hover,
.faq-list details[open],
.metric:hover,
.history-item:hover {
    border-color: rgba(56, 255, 153, 0.36);
    background:
        linear-gradient(180deg, rgba(22, 43, 32, 0.96), rgba(10, 22, 16, 0.96));
}

.icon-box,
.form-section-head > span {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
    box-shadow: 0 14px 34px rgba(56, 255, 153, 0.25);
}

.feature-list strong,
.price-box strong,
.faq-list summary,
.form-section-head h2,
.detail-panel h2,
.list-head h2,
.panel-head h2,
.order-row strong,
.text-block strong {
    color: var(--ink);
}

.pricing-panel {
    background:
        linear-gradient(135deg, rgba(13, 27, 20, 0.96), rgba(8, 18, 13, 0.96)),
        radial-gradient(circle at 90% 8%, rgba(56, 255, 153, 0.24), transparent 35%);
}

.price-box span,
.summary-block strong,
.metric strong,
.balance-chip strong,
.console-stats strong {
    color: var(--green);
}

.form-control {
    border-color: rgba(99, 255, 170, 0.18);
    background: rgba(4, 12, 8, 0.78);
    color: var(--ink);
}

.form-control::placeholder {
    color: rgba(191, 215, 203, 0.5);
}

.form-control:focus {
    border-color: rgba(56, 255, 153, 0.72);
    box-shadow: 0 0 0 5px rgba(56, 255, 153, 0.12);
}

select.form-control option {
    background: #0a1510;
    color: var(--ink);
}

.mode-radio-grid label {
    border-color: rgba(99, 255, 170, 0.18);
    background:
        linear-gradient(180deg, rgba(13, 31, 21, 0.92), rgba(6, 18, 11, 0.92));
    color: var(--ink);
}

.mode-radio-grid label:hover {
    border-color: rgba(56, 255, 153, 0.4);
    box-shadow: 0 14px 32px rgba(0, 255, 140, 0.12);
}

.mode-radio-grid label:has(input:checked) {
    border-color: rgba(56, 255, 153, 0.82);
    background: linear-gradient(135deg, var(--green), #08d889);
    color: #03120c;
    box-shadow: 0 18px 42px rgba(56, 255, 153, 0.2);
}

.date-picker-popover {
    border-color: rgba(99, 255, 170, 0.22);
    background:
        radial-gradient(circle at 18% 0%, rgba(56, 255, 153, 0.12), transparent 40%),
        linear-gradient(180deg, #0a1710, #06110b);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
}

.date-picker-head strong {
    color: var(--ink);
}

.date-picker-head button {
    border: 1px solid rgba(99, 255, 170, 0.14);
    background: rgba(56, 255, 153, 0.08);
    color: var(--green);
}

.date-picker-day {
    color: var(--ink-soft);
}

.date-picker-day:hover {
    background: rgba(56, 255, 153, 0.12);
    color: var(--green);
}

.date-picker-day[data-today] {
    box-shadow: inset 0 0 0 1px rgba(56, 255, 153, 0.36);
}

.place-result-card {
    border-color: rgba(99, 255, 170, 0.2);
    background:
        radial-gradient(circle at 8% 0%, rgba(56, 255, 153, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(12, 32, 20, 0.96), rgba(5, 17, 10, 0.96));
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.place-result-head strong,
.place-result-body strong {
    color: var(--ink);
}

.place-result-body > div {
    border-color: rgba(99, 255, 170, 0.12);
    background: rgba(56, 255, 153, 0.06);
}

.field span,
.metric span,
.summary-block span,
.data-list dt,
.balance-chip span,
.order-row-head {
    color: var(--muted);
}

.form-section + .form-section,
.advanced-options,
.summary-block,
.text-block + .text-block,
.order-row + .order-row {
    border-color: rgba(99, 255, 170, 0.14);
}

.refund-preview {
    border-color: rgba(255, 123, 102, 0.24);
    background: rgba(255, 123, 102, 0.07);
}

.advanced-options summary {
    color: var(--green);
}

.order-row-head {
    background: rgba(56, 255, 153, 0.08);
}

.order-row:not(.order-row-head):hover {
    background: rgba(56, 255, 153, 0.06);
}

.order-row > a,
.order-actions > a,
.history-item > a {
    background: rgba(56, 255, 153, 0.12);
}

.status-pill {
    background: rgba(56, 255, 153, 0.12);
    color: var(--green);
    box-shadow: inset 0 0 0 1px rgba(56, 255, 153, 0.25);
}

.status-completed {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
}

.status-in_progress {
    background: rgba(255, 209, 102, 0.13);
    color: var(--amber);
}

.status-failed,
.status-canceled {
    background: rgba(255, 123, 102, 0.12);
    color: var(--coral);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
    background: linear-gradient(90deg, var(--green), var(--teal));
}

.form-errors {
    border-color: rgba(255, 123, 102, 0.3);
    background: rgba(255, 123, 102, 0.12);
}

.site-footer {
    background:
        radial-gradient(circle at 78% 0%, rgba(56, 255, 153, 0.16), transparent 34%),
        linear-gradient(135deg, #050907, #081510 58%, #092216);
}

.site-footer strong,
.footer-brand {
    color: var(--ink);
}

.footer-brand .brand-mark {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #04100b;
}

.footer-brand .brand-word {
    color: var(--ink);
}

.auth-section {
    min-height: calc(100vh - 72px);
    padding: 72px 0 110px;
    background:
        radial-gradient(circle at 50% 4%, rgba(56, 255, 153, 0.16), transparent 34%),
        radial-gradient(circle at 18% 28%, rgba(56, 255, 153, 0.1), transparent 30%),
        linear-gradient(180deg, #050907, #07100c 54%, #050907);
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
}

.auth-copy {
    width: min(760px, 100%);
    text-align: center;
}

.auth-copy .eyebrow {
    margin-bottom: 14px;
}

.auth-copy h1 {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 4vw, 56px);
}

.auth-copy p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.auth-note {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 520px;
    margin: 24px auto 0;
    padding: 18px 22px;
    text-align: center;
}

.auth-form {
    position: relative;
    overflow: hidden;
    width: min(520px, 100%);
    padding: 36px;
    border: 1px solid rgba(99, 255, 170, 0.2);
    background:
        linear-gradient(180deg, rgba(14, 29, 21, 0.96), rgba(7, 15, 11, 0.96));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(56, 255, 153, 0.04);
}

.auth-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.auth-form::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 255, 153, 0.16), transparent 68%);
    pointer-events: none;
}

.auth-form .form-head {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    text-align: center;
}

.auth-form .form-head h2 {
    margin-bottom: 8px;
    font-size: 32px;
    letter-spacing: 0;
}

.auth-form .form-head p {
    color: var(--muted);
}

.auth-form .field {
    position: relative;
    z-index: 1;
    gap: 9px;
    margin-bottom: 18px;
}

.auth-form .field span {
    padding-left: 4px;
    color: #b9d6ca;
    font-size: 14px;
}

.auth-input {
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(99, 255, 170, 0.2);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-input:hover {
    border-color: rgba(56, 255, 153, 0.34);
}

.auth-input:focus {
    border-color: rgba(56, 255, 153, 0.76);
    background: rgba(9, 22, 15, 0.92);
    box-shadow: 0 0 0 5px rgba(56, 255, 153, 0.1), 0 16px 38px rgba(0, 0, 0, 0.24);
}

.auth-form .btn {
    position: relative;
    z-index: 1;
    min-height: 58px;
    margin-top: 8px;
    font-size: 17px;
}

.auth-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.auth-meta span {
    padding: 7px 10px;
    border: 1px solid rgba(99, 255, 170, 0.14);
    border-radius: 999px;
    background: rgba(56, 255, 153, 0.06);
    color: #a7c5b8;
    font-size: 12px;
    font-weight: 850;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s ease, transform 0.72s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
}

.metric-link,
.balance-chip a,
.summary-block a {
    color: var(--green);
    font-weight: 900;
}

.metric-link {
    width: fit-content;
    margin-top: 6px;
    padding: 7px 11px;
    border: 1px solid rgba(56, 255, 153, 0.22);
    border-radius: 999px;
    background: rgba(56, 255, 153, 0.08);
    font-size: 13px;
}

.balance-chip {
    border-radius: 24px;
}

.balance-chip a {
    margin-top: 4px;
    font-size: 13px;
}

.charge-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.charge-form {
    position: relative;
    overflow: hidden;
}

.charge-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.charge-side {
    position: sticky;
    top: 94px;
}

.deposit-account-card {
    display: grid;
    gap: 10px;
    margin: 14px 0;
    padding: 18px;
    border: 1px solid rgba(56, 255, 153, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(56, 255, 153, 0.18), transparent 44%),
        rgba(56, 255, 153, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.deposit-label,
.deposit-account-card small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.deposit-account-card strong {
    color: var(--text);
    font-size: 18px;
    font-weight: 950;
}

.deposit-account-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.deposit-account-number span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--green);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: 0;
}

.deposit-account-number button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(56, 255, 153, 0.34);
    border-radius: 999px;
    background: rgba(56, 255, 153, 0.1);
    color: var(--green);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.deposit-account-number button:hover {
    border-color: rgba(56, 255, 153, 0.62);
    background: rgba(56, 255, 153, 0.18);
    color: #c9ffe0;
    transform: translateY(-1px);
}

.deposit-account-number button:focus-visible {
    outline: 2px solid rgba(56, 255, 153, 0.46);
    outline-offset: 3px;
}

.charge-request-table .order-row {
    grid-template-columns: minmax(240px, 1.2fr) 120px 120px minmax(220px, 1fr);
}

.point-history-table .order-row {
    grid-template-columns: minmax(240px, 1.3fr) 120px 120px 150px;
}

.status-charge-pending {
    background: #fff8da;
    color: #876000;
    box-shadow: inset 0 0 0 1px rgba(255, 224, 102, 0.62);
}

.status-charge-approved {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #03120c;
}

.status-charge-rejected,
.status-charge-canceled {
    background: #fff4f1;
    color: #c74835;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 8%, rgba(56, 255, 153, 0.14), transparent 34%),
        radial-gradient(circle at 84% 42%, rgba(0, 208, 132, 0.1), transparent 30%),
        linear-gradient(180deg, #050907 0%, #07120d 54%, #050907 100%);
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 255, 153, 0.48), transparent);
}

.testimonial-slider {
    position: relative;
    width: min(100%, 1040px);
    margin: 0 auto;
}

.testimonial-viewport {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.testimonial-track {
    display: flex;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonial-card {
    position: relative;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
    min-height: 336px;
    padding: 40px;
    border: 1px solid rgba(99, 255, 170, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(17, 34, 25, 0.96), rgba(7, 16, 11, 0.98)),
        radial-gradient(circle at 88% 18%, rgba(56, 255, 153, 0.18), transparent 34%);
}

.testimonial-card::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 30px;
    width: 86px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
    opacity: 0.72;
}

.testimonial-score {
    display: grid;
    align-content: start;
    gap: 8px;
    padding-right: 30px;
    border-right: 1px solid rgba(99, 255, 170, 0.16);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 24px rgba(255, 209, 102, 0.18);
}

.testimonial-score strong {
    color: var(--green);
    font-size: clamp(54px, 6vw, 80px);
    font-weight: 950;
    line-height: 1;
}

.testimonial-score span:last-child {
    color: #b9d6ca;
    font-size: 15px;
    font-weight: 850;
}

.testimonial-copy {
    display: grid;
    align-content: center;
    gap: 26px;
}

.testimonial-copy p {
    max-width: 700px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.36;
}

.testimonial-copy dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.testimonial-copy dl div {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(99, 255, 170, 0.16);
}

.testimonial-copy dt,
.testimonial-copy dd {
    margin: 0;
}

.testimonial-copy dt {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.testimonial-copy dd {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 750;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.testimonial-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(99, 255, 170, 0.22);
    border-radius: 999px;
    background: rgba(12, 25, 18, 0.9);
    color: var(--green);
    cursor: pointer;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.testimonial-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 255, 153, 0.56);
    background: rgba(56, 255, 153, 0.12);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(99, 255, 170, 0.16);
    border-radius: 999px;
    background: rgba(6, 14, 10, 0.72);
}

.testimonial-dots button {
    width: 26px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(191, 215, 203, 0.24);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
}

.testimonial-dots button.is-active,
.testimonial-dots button[aria-current="true"] {
    width: 46px;
    background: linear-gradient(90deg, var(--green), var(--teal));
}

@media (max-width: 760px) {
    .site-nav {
        background: #09130e;
        border-color: rgba(99, 255, 170, 0.18);
    }

    .inline-actions,
    .charge-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .charge-side {
        position: static;
    }

    .charge-request-table .order-row,
    .point-history-table .order-row {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 28px;
    }

    .testimonial-score {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(99, 255, 170, 0.16);
    }

    .testimonial-copy dl {
        grid-template-columns: 1fr;
    }

    .testimonial-controls {
        gap: 10px;
    }

    .testimonial-arrow {
        width: 44px;
        height: 44px;
    }

    .auth-section {
        padding: 46px 0 72px;
    }

    .auth-grid {
        gap: 26px;
    }

    .auth-copy {
        text-align: left;
    }

    .auth-copy h1,
    .auth-copy p,
    .auth-note {
        margin-right: 0;
        margin-left: 0;
    }

    .auth-note {
        justify-items: start;
        text-align: left;
    }

    .auth-form {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ReviewDay visual refresh */
:root {
    --rd-ink: #11251d;
    --rd-ink-soft: #526a60;
    --rd-muted: #789087;
    --rd-line: #d8ece2;
    --rd-paper: #ffffff;
    --rd-wash: #f6fff9;
    --rd-mint: #dffbe9;
    --rd-green: #19d37d;
    --rd-green-deep: #07985a;
    --rd-lime: #c8f56c;
    --rd-sky: #dff6ff;
    --rd-coral: #ff816b;
    --rd-yellow: #ffef9a;
    --rd-shadow: 0 20px 60px rgba(17, 79, 52, 0.12);
    --rd-shadow-soft: 0 12px 34px rgba(17, 79, 52, 0.09);
}

body {
    background: linear-gradient(180deg, #fbfffd 0%, #f6fff9 44%, #ffffff 100%);
    color: var(--rd-ink);
}

.container {
    width: min(1160px, calc(100% - 36px));
}

.site-header {
    border-bottom: 1px solid rgba(216, 236, 226, 0.86);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 70px;
}

.brand {
    gap: 10px;
    color: var(--rd-ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #d8ff7a 0%, var(--rd-green) 58%, #04b9a0 100%);
    color: #08271b;
    box-shadow: 0 12px 28px rgba(25, 211, 125, 0.22);
}

.brand-mark::before {
    inset: 4px;
    border-color: rgba(4, 64, 39, 0.16);
}

.brand-mark::after {
    right: -4px;
    bottom: -3px;
    width: 13px;
    height: 13px;
    border-width: 3px;
    background: var(--rd-yellow);
    box-shadow: none;
}

.brand-word {
    font-size: 23px;
}

.site-nav {
    gap: 18px;
    color: #2f5648;
}

.site-nav a {
    padding: 8px 2px;
    border-radius: 999px;
}

.site-nav a:hover {
    color: var(--rd-green-deep);
}

.btn {
    min-height: 46px;
    border-radius: 8px;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #bff45f 0%, var(--rd-green) 48%, #08b98d 100%);
    color: #062719;
    box-shadow: 0 16px 34px rgba(25, 211, 125, 0.22);
}

.btn-dark {
    background: #10251b;
    color: #ffffff;
}

.btn-ghost {
    border-color: rgba(25, 211, 125, 0.24);
    background: #ffffff;
    color: var(--rd-ink);
}

.btn-danger {
    border-color: rgba(255, 129, 107, 0.34);
    background: linear-gradient(135deg, #ffb199, var(--rd-coral));
    color: #3d120a;
}

.hero {
    min-height: auto;
    padding: 84px 0 72px;
    background: linear-gradient(145deg, rgba(241, 255, 246, 0.96) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(224, 250, 234, 0.92) 100%);
}

.hero::before {
    display: none;
}

.hero::after {
    height: 5px;
    background: linear-gradient(90deg, var(--rd-green), var(--rd-lime), #8fe7ff, var(--rd-coral));
}

.hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(430px, 560px);
    gap: 56px;
}

.eyebrow {
    min-height: 34px;
    padding: 7px 12px;
    border-color: rgba(25, 211, 125, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: var(--rd-green-deep);
    box-shadow: 0 10px 24px rgba(25, 211, 125, 0.09);
}

.hero h1,
.page-hero h1 {
    color: var(--rd-ink);
}

.hero h1 {
    max-width: 690px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
}

.accent-text {
    background: linear-gradient(110deg, #067c4d, var(--rd-green), #00aeb4);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p {
    max-width: 620px;
    color: var(--rd-ink-soft);
    font-size: 18px;
}

.hero-points span {
    border-color: rgba(25, 211, 125, 0.18);
    background: #ffffff;
    color: #275244;
}

.hero-photo-stack {
    position: relative;
    min-height: 560px;
}

.hero-photo-card {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(216, 236, 226, 0.88);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--rd-shadow);
}

.hero-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-card.is-main {
    right: 44px;
    bottom: 32px;
    z-index: 2;
    width: 74%;
    height: 390px;
}

.hero-photo-card.is-main::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(0deg, rgba(12, 36, 25, 0.74), transparent);
}

.hero-photo-card.is-main figcaption {
    position: absolute;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 1;
    display: grid;
    gap: 4px;
    color: #ffffff;
}

.hero-photo-card.is-main figcaption span {
    color: #d6ff83;
    font-size: 12px;
    font-weight: 900;
}

.hero-photo-card.is-main figcaption strong {
    font-size: 20px;
    line-height: 1.28;
}

.hero-photo-card.is-top {
    top: 16px;
    left: 0;
    z-index: 1;
    width: 48%;
    height: 238px;
    transform: rotate(-4deg);
}

.hero-photo-card.is-bottom {
    right: 0;
    top: 62px;
    z-index: 3;
    width: 42%;
    height: 218px;
    transform: rotate(4deg);
}

.hero-live-card {
    position: absolute;
    left: 8px;
    bottom: 74px;
    z-index: 4;
    display: grid;
    gap: 2px;
    width: 184px;
    padding: 18px;
    border: 1px solid rgba(25, 211, 125, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--rd-shadow-soft);
    backdrop-filter: blur(14px);
}

.hero-live-card span,
.hero-live-card small {
    color: var(--rd-muted);
    font-size: 12px;
    font-weight: 850;
}

.hero-live-card strong {
    color: var(--rd-green-deep);
    font-size: 34px;
    line-height: 1;
}

.section {
    padding: 88px 0;
}

.section-tint {
    background: linear-gradient(180deg, rgba(241, 255, 246, 0.92), rgba(255, 255, 255, 0.92));
}

.section-head h2,
.pricing-copy h2,
.list-head h2,
.detail-panel h2,
.form-section-head h2 {
    color: var(--rd-ink);
}

.section-head p,
.pricing-copy p,
.page-hero p,
.list-head p {
    color: var(--rd-ink-soft);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article,
.feature-list > div,
.metric,
.form-panel,
.order-summary,
.detail-panel,
.detail-side,
.empty-state,
.pricing-panel,
.price-box,
.preview-panel,
.scene-card-grid article {
    border: 1px solid rgba(216, 236, 226, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--rd-shadow-soft);
}

.process-grid article {
    padding: 24px;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rd-lime), var(--rd-green));
    color: #0b2a1d;
}

.scene-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.scene-card-grid article {
    overflow: hidden;
    display: grid;
    align-content: start;
}

.scene-card-grid img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.scene-card-grid strong {
    padding: 18px 18px 4px;
    color: var(--rd-ink);
    font-size: 19px;
}

.scene-card-grid span {
    padding: 0 18px 18px;
    color: var(--rd-ink-soft);
    font-weight: 750;
}

.industry-note {
    display: block;
    max-width: 580px;
    margin-top: 14px;
    color: #7b9087;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
    gap: 42px;
    align-items: center;
}

.preview-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.preview-panel > div {
    min-height: 130px;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(223, 251, 233, 0.8), rgba(255, 255, 255, 0.92));
}

.preview-panel span {
    color: var(--rd-green-deep);
    font-size: 13px;
    font-weight: 900;
}

.preview-panel strong {
    display: block;
    margin-top: 22px;
    color: var(--rd-ink);
    font-size: 21px;
}

.pricing-panel {
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff 0%, #f1fff6 58%, #e4fff0 100%);
}

.price-box {
    border-radius: 8px;
    background: #ffffff;
}

.metric-grid {
    gap: 16px;
}

.metric strong,
.summary-block strong,
.price-box strong {
    color: var(--rd-ink);
}

.metric-link,
.order-actions a,
.history-item a,
.summary-block a {
    color: var(--rd-green-deep);
}

.page-hero {
    background: linear-gradient(135deg, #f5fff8 0%, #ffffff 48%, #eafff1 100%);
}

.page-hero::after {
    background: linear-gradient(90deg, var(--rd-green), var(--rd-lime), #95ecff);
}

.balance-chip,
.status-pill {
    border-radius: 8px;
}

.status-pill {
    background: #edf9f2;
    color: #0b7c4c;
}

.order-table {
    overflow: hidden;
    border: 1px solid rgba(216, 236, 226, 0.92);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--rd-shadow-soft);
}

.order-row {
    border-bottom-color: rgba(216, 236, 226, 0.86);
}

.order-row-head {
    background: #f4fff8;
    color: #40705c;
}

.progress-bar {
    background: #e6f5ed;
}

.progress-bar span {
    background: linear-gradient(90deg, var(--rd-green), var(--rd-lime));
}

.order-form-grid,
.charge-grid {
    align-items: start;
}

.form-panel {
    padding: 28px;
}

.form-section,
.advanced-options {
    border-color: rgba(216, 236, 226, 0.9);
    border-radius: 8px;
    background: #ffffff;
}

.form-section-head > span {
    background: linear-gradient(135deg, var(--rd-lime), var(--rd-green));
    color: #0c2a1d;
}

.field span,
.check-field span {
    color: #315f4e;
}

.form-control,
.field input,
.field select,
.field textarea {
    border-color: rgba(188, 222, 205, 0.95);
    border-radius: 8px;
    background: #fbfffd;
}

.form-control:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(25, 211, 125, 0.7);
    box-shadow: 0 0 0 4px rgba(25, 211, 125, 0.13);
}

.place-result-card,
.deposit-account-card {
    border-color: rgba(25, 211, 125, 0.22);
    border-radius: 8px;
    background: #f3fff8;
}

.auth-section {
    background: linear-gradient(135deg, #f4fff8, #ffffff);
}

.auth-note {
    border-color: rgba(25, 211, 125, 0.2);
    border-radius: 8px;
    background: #ffffff;
}

.site-footer {
    border-top: 1px solid rgba(216, 236, 226, 0.9);
    background: #f7fff9;
}

@media (max-width: 1020px) {
    .hero-grid,
    .dashboard-preview-grid,
    .feature-layout,
    .pricing-panel {
        grid-template-columns: 1fr;
    }

    .hero-photo-stack {
        min-height: 520px;
        max-width: 660px;
    }

    .process-grid,
    .scene-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 58px 0 54px;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .hero-photo-stack {
        min-height: 430px;
    }

    .hero-photo-card.is-main {
        right: 0;
        bottom: 24px;
        width: 84%;
        height: 300px;
    }

    .hero-photo-card.is-top {
        width: 54%;
        height: 170px;
    }

    .hero-photo-card.is-bottom {
        width: 48%;
        height: 160px;
    }

    .hero-live-card {
        bottom: 50px;
        width: 154px;
    }

    .process-grid,
    .scene-card-grid,
    .preview-panel {
        grid-template-columns: 1fr;
    }

    .site-nav {
        border-color: rgba(216, 236, 226, 0.96);
        border-radius: 8px;
        background: #ffffff;
    }
}

/* ReviewDay contrast and polish pass */
:root {
    --ink: #11251d;
    --ink-soft: #4b6359;
    --muted: #6e857b;
    --line: #d7ebe1;
    --paper: #ffffff;
    --wash: #f5fff8;
    --wash-strong: #e7faef;
    --navy: #11251d;
    --teal: #10b98b;
    --green: #19d37d;
    --green-deep: #078b55;
    --mint: #e7faef;
    --shadow: 0 18px 44px rgba(18, 78, 48, 0.1);
    --shadow-green: 0 16px 34px rgba(25, 211, 125, 0.16);
}

body {
    background: linear-gradient(180deg, #fbfffd 0%, #f7fff9 42%, #ffffff 100%);
    color: var(--rd-ink);
}

.section {
    background: transparent;
}

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

.hero-copy p,
.section-head p,
.pricing-copy p,
.page-hero p,
.auth-copy p,
.process-grid p,
.scene-card-grid span,
.preview-panel span,
.faq-list p,
.site-footer p,
.site-footer a,
.site-footer span,
.order-summary p,
.empty-state p,
.text-block p,
.form-section-head p,
.list-head p,
.price-box p {
    color: #4c685d;
}

.section-head h2,
.pricing-copy h2,
.faq-list summary,
.process-grid h3,
.scene-card-grid strong,
.preview-panel strong,
.site-footer strong {
    color: #11251d;
}

.eyebrow {
    border-color: rgba(25, 211, 125, 0.26);
    background: rgba(255, 255, 255, 0.86);
    color: #067d4d;
    box-shadow: 0 10px 24px rgba(25, 211, 125, 0.08);
}

.process-grid {
    overflow: hidden;
    border: 1px solid #cfe8db;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(20, 88, 53, 0.1);
}

.process-grid article {
    border-color: transparent;
    background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
    box-shadow: none;
}

.process-grid article + article {
    border-left: 1px solid #dceee5;
}

.process-grid article:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f2fff7 100%);
    transform: translateY(-3px);
}

.process-grid article::after {
    opacity: 0.85;
    background: linear-gradient(90deg, #63eda1, #ffe783);
}

.icon-box {
    background: linear-gradient(135deg, #bff45f 0%, #32dc88 62%, #11b98b 100%);
    color: #0d2b1e;
    box-shadow: 0 14px 30px rgba(25, 211, 125, 0.18);
}

.reviewday-flow .process-grid {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
}

.reviewday-flow .section-head {
    max-width: 860px;
}

.reviewday-flow .process-grid::before {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 18px;
    left: 28px;
    z-index: 2;
    height: 5px;
    border-radius: 999px;
    background: #e6f6ee;
}

.reviewday-flow .process-grid::after {
    content: "";
    position: absolute;
    bottom: 18px;
    left: 28px;
    z-index: 3;
    width: calc(100% - 56px);
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #19d37d 0%, #bff45f 58%, #ffd86c 100%);
    box-shadow: 0 0 22px rgba(25, 211, 125, 0.32);
    transform: scaleX(0.08);
    transform-origin: left center;
    animation: processFlowRail 7.2s ease-in-out infinite;
}

.reviewday-flow .process-grid article {
    z-index: 1;
    padding-bottom: 48px;
    animation: processStepGlow 7.2s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s);
}

.reviewday-flow .process-grid article:nth-child(1) {
    --flow-delay: 0s;
}

.reviewday-flow .process-grid article:nth-child(2) {
    --flow-delay: 1.8s;
}

.reviewday-flow .process-grid article:nth-child(3) {
    --flow-delay: 3.6s;
}

.reviewday-flow .process-grid article:nth-child(4) {
    --flow-delay: 5.4s;
}

.reviewday-flow .process-grid article::before {
    content: ">";
    position: absolute;
    top: 52px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(25, 211, 125, 0.24);
    border-radius: 999px;
    background: #ffffff;
    color: #07985a;
    font-size: 16px;
    font-weight: 950;
    box-shadow: 0 10px 20px rgba(20, 88, 53, 0.08);
}

.reviewday-flow .process-grid article:last-child::before {
    display: none;
}

.reviewday-flow .process-grid article::after {
    right: 28px;
    bottom: 18px;
    left: 28px;
    z-index: 4;
    width: auto;
    height: 5px;
    opacity: 1;
    background: linear-gradient(90deg, #19d37d, #bff45f, #ffd86c);
    box-shadow: 0 0 16px rgba(25, 211, 125, 0.24);
    transform: scaleX(0.16);
    transform-origin: left center;
    animation: processStepFill 7.2s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s);
}

.reviewday-flow .icon-box {
    position: relative;
    animation: processIconPulse 7.2s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s);
}

.reviewday-flow .icon-box::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(25, 211, 125, 0.22);
    border-radius: inherit;
    opacity: 0;
    animation: processIconRing 7.2s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s);
}

@keyframes processFlowRail {
    0%,
    8% {
        transform: scaleX(0.08);
    }
    82% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes processStepGlow {
    0%,
    24%,
    100% {
        background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
        box-shadow: none;
    }
    7%,
    18% {
        background: linear-gradient(180deg, #ffffff 0%, #effff5 100%);
        box-shadow: inset 0 0 0 1px rgba(25, 211, 125, 0.18), 0 18px 36px rgba(20, 88, 53, 0.08);
    }
}

@keyframes processStepFill {
    0%,
    24%,
    100% {
        opacity: 0.42;
        transform: scaleX(0.16);
    }
    7%,
    18% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes processIconPulse {
    0%,
    24%,
    100% {
        transform: translateY(0);
        box-shadow: 0 14px 30px rgba(25, 211, 125, 0.18);
    }
    7%,
    18% {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(25, 211, 125, 0.28);
    }
}

@keyframes processIconRing {
    0%,
    24%,
    100% {
        opacity: 0;
        transform: scale(0.92);
    }
    8%,
    18% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.faq-list details {
    border: 1px solid #d3eade;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(20, 88, 53, 0.08);
}

.faq-list details:hover,
.faq-list details[open] {
    border-color: rgba(25, 211, 125, 0.34);
    background: #fbfffd;
    box-shadow: 0 18px 42px rgba(20, 88, 53, 0.11);
}

.faq-list summary {
    color: #143327;
}

.faq-list p {
    color: #4c685d;
    font-weight: 750;
}

.pricing-panel,
.price-box,
.preview-panel,
.preview-panel > div,
.scene-card-grid article,
.form-panel,
.order-summary,
.metric,
.detail-panel,
.detail-side,
.empty-state,
.order-table {
    border-color: #d7ebe1;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(20, 88, 53, 0.08);
}

.pricing-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f4fff8 58%, #edfdf3 100%);
}

.preview-panel > div {
    background: linear-gradient(180deg, #f4fff8 0%, #ffffff 100%);
}

.site-footer {
    border-top: 1px solid #d9ece2;
    background: linear-gradient(180deg, #f8fffa 0%, #f1fbf5 100%);
    color: #11251d;
}

.footer-brand,
.footer-brand .brand-word {
    color: #11251d;
}

.site-header .brand,
.site-header .brand-word {
    color: #10251b;
    text-shadow: none;
}

.reviewday-dashboard-preview {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
}

.reviewday-published-showcase {
    overflow: hidden;
    padding: 94px 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fffa 100%);
}

.showcase-head {
    margin-bottom: 44px;
}

.showcase-head h2 {
    max-width: 920px;
    margin: 0 0 22px;
    color: #0d1825;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
    letter-spacing: 0;
}

.showcase-head p {
    max-width: 560px;
    margin: 0;
    color: #6a7b72;
    font-size: 18px;
    font-weight: 800;
}

.published-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.published-carousel::before,
.published-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: min(120px, 12vw);
    height: 100%;
    pointer-events: none;
}

.published-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.published-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.published-track {
    display: flex;
    width: max-content;
    gap: 24px;
    padding: 8px 24px 26px;
    animation: publishedSlide 42s linear infinite;
}

.published-carousel:hover .published-track {
    animation-play-state: paused;
}

.published-card {
    position: relative;
    overflow: hidden;
    display: grid;
    width: 330px;
    min-height: 350px;
    flex: 0 0 330px;
    border: 1px solid #dde8e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(20, 88, 53, 0.08);
}

.published-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.published-card > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px 20px 18px;
}

.published-card h3 {
    grid-column: 1 / -1;
    min-height: 50px;
    margin: 2px 0 10px;
    color: #25362f;
    font-size: 17px;
    line-height: 1.45;
}

.published-card p {
    align-self: end;
    margin: 0;
    color: #8a9a93;
    font-size: 13px;
    font-weight: 850;
}

.published-card strong {
    align-self: end;
    min-width: 52px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf4ff;
    color: #4784ff;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
}

.blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #07a65c;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 8px 20px rgba(20, 88, 53, 0.1);
}

.blog-badge::before {
    content: "N";
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 5px;
    background: #19d37d;
    color: #ffffff;
    font-size: 12px;
}

@keyframes publishedSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.dashboard-preview-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(440px, 0.9fr);
    gap: 58px;
}

.reviewday-dashboard-preview .section-head {
    margin-bottom: 0;
}

.reviewday-dashboard-preview .section-head h2 {
    max-width: 640px;
}

.preview-panel {
    position: relative;
    gap: 14px;
    padding: 18px;
    border: 1px solid #d1e9dd;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
    box-shadow: 0 22px 54px rgba(20, 88, 53, 0.1);
}

.preview-panel::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #19d37d, #bff45f);
}

.preview-panel > div {
    min-height: 156px;
    padding: 22px 22px 22px 28px;
    border: 1px solid #e0f0e7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(20, 88, 53, 0.06);
}

.preview-panel span {
    color: #078b55;
    font-size: 13px;
    font-weight: 950;
}

.preview-panel strong {
    margin-top: 18px;
    color: #10251b;
    font-size: 24px;
    line-height: 1.22;
}

.preview-panel small {
    display: block;
    margin-top: 10px;
    color: #5e766b;
    font-weight: 750;
    line-height: 1.55;
}

.reviewday-order-plan {
    overflow: hidden;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 430px);
    border-color: #cfe8db;
    background:
        linear-gradient(135deg, #ffffff 0%, #f5fff8 56%, #effbf4 100%);
}

.reviewday-order-plan::before {
    height: 6px;
    background: linear-gradient(90deg, #19d37d, #bff45f, #ffd86c);
}

.reviewday-order-plan .pricing-copy h2 {
    max-width: 740px;
}

.reviewday-order-plan .price-box {
    gap: 18px;
    border-color: #d4eadf;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(20, 88, 53, 0.1);
}

.reviewday-order-plan .price-box span {
    color: #078b55;
}

.reviewday-order-plan .price-box strong {
    color: #10251b;
    font-size: 32px;
}

.plan-note-list {
    display: grid;
    gap: 8px;
    margin: 2px 0 4px;
}

.plan-note-list small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4c685d;
    font-weight: 800;
}

.plan-note-list small::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background: #19d37d;
}

.site-footer a:hover {
    color: #067d4d;
}

@media (max-width: 1020px) {
    .dashboard-preview-grid,
    .reviewday-order-plan {
        grid-template-columns: 1fr;
    }

    .reviewday-dashboard-preview .section-head {
        margin-bottom: 28px;
    }

    .published-card {
        width: 310px;
        flex-basis: 310px;
    }

    .published-card img {
        height: 198px;
    }
}

@media (max-width: 700px) {
    .process-grid article + article {
        border-top: 1px solid #dceee5;
        border-left: 0;
    }

    .reviewday-flow .process-grid::before,
    .reviewday-flow .process-grid::after,
    .reviewday-flow .process-grid article::before {
        display: none;
    }

    .reviewday-flow .process-grid article {
        padding-bottom: 44px;
    }

    .dashboard-preview-grid,
    .reviewday-order-plan {
        grid-template-columns: 1fr;
    }

    .preview-panel {
        grid-template-columns: 1fr;
    }

    .reviewday-published-showcase {
        padding: 70px 0 76px;
    }

    .showcase-head {
        margin-bottom: 30px;
    }

    .showcase-head h2 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .published-track {
        gap: 14px;
        padding: 4px 18px 20px;
        animation-duration: 34s;
    }

    .published-card {
        width: 276px;
        min-height: 336px;
        flex-basis: 276px;
    }

    .published-card img {
        height: 176px;
    }

    .published-card h3 {
        font-size: 16px;
    }
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.footer-brand .brand-mark {
    background: transparent;
    box-shadow: none;
}

.brand-mark::before,
.brand-mark::after {
    display: none;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.site-header .site-nav {
    gap: 22px;
    color: #315f4e;
    font-size: 15px;
    font-weight: 850;
}

.site-header .site-nav a {
    padding: 10px 3px;
}

.site-header .site-nav .btn-small {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.site-header .site-nav .btn-dark {
    background: #10291d;
    box-shadow: 0 0 0 1px rgba(25, 211, 125, 0.2), 0 14px 28px rgba(16, 41, 29, 0.16);
}

.reviewday-price-story {
    padding: 74px 0 78px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fffa 100%);
}

.price-story-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    gap: 48px;
    align-items: start;
    margin-bottom: 34px;
}

.price-story-head h2 {
    max-width: 760px;
    margin: 18px 0 0;
    color: #102033;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.14;
    letter-spacing: 0;
}

.price-story-head p {
    margin: 44px 0 0;
    color: #617689;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.6;
}

.reviewday-price-card {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: stretch;
    padding: 0;
    border: 1px solid #cfe4ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(16, 72, 94, 0.12);
}

.reviewday-price-card::before {
    display: none;
}

.price-amount-panel {
    display: grid;
    align-content: center;
    min-height: 340px;
    padding: 38px 44px;
    background:
        linear-gradient(145deg, rgba(25, 211, 125, 0.92), rgba(17, 151, 172, 0.94) 52%, rgba(14, 82, 122, 0.98));
    color: #ffffff;
}

.price-amount-panel > span,
.price-included-panel > span {
    color: inherit;
    font-size: 16px;
    font-weight: 950;
}

.price-amount-panel > strong {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 18px;
    font-size: clamp(52px, 5.8vw, 74px);
    line-height: 0.95;
    letter-spacing: 0;
}

.price-amount-panel > strong em {
    margin-bottom: 10px;
    font-size: 18px;
    font-style: normal;
}

.price-amount-panel > p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 750;
}

.price-example {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.price-example span,
.price-example small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 850;
}

.price-example strong {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.price-included-panel {
    display: grid;
    align-content: center;
    padding: 38px 44px;
    background: #ffffff;
}

.price-included-panel > span {
    color: #07985a;
}

.price-included-panel h3 {
    max-width: 620px;
    margin: 16px 0 22px;
    color: #102033;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: 0;
}

.included-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.included-list li {
    position: relative;
    min-height: 30px;
    padding-left: 40px;
    color: #2e4a5c;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.45;
}

.included-list li::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #e2f6ff;
}

.included-list li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    width: 11px;
    height: 7px;
    border-bottom: 3px solid #1389d6;
    border-left: 3px solid #1389d6;
    transform: rotate(-45deg);
}

.price-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin: 0 0 18px;
    padding-top: 18px;
    border-top: 1px solid #dbe9ef;
    color: #6a7b87;
    font-weight: 850;
}

.price-included-panel .btn {
    max-width: 620px;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #19d37d 0%, #0fb997 48%, #48afe5 100%);
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 18px 34px rgba(16, 130, 118, 0.22);
}

.price-included-panel > small {
    margin-top: 14px;
    color: #94a4ae;
    font-weight: 800;
    text-align: center;
}

.reviewday-faq-section {
    padding: 74px 0 78px;
    background: #edf8ff;
}

.reviewday-faq-layout {
    grid-template-columns: minmax(420px, 0.74fr) minmax(0, 1fr);
    gap: 58px;
    align-items: start;
}

.faq-copy {
    max-width: 560px;
    margin: 0;
}

.faq-copy .eyebrow {
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(25, 211, 125, 0.26);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(25, 211, 125, 0.08);
    color: #067d4d;
}

.faq-copy .eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #19d37d;
}

.faq-copy h2 {
    margin: 34px 0 26px;
    color: #102b42;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.14;
}

.faq-copy h2 span {
    color: #1b8dd8;
}

.faq-copy p {
    color: #60778d;
    font-size: 19px;
    font-weight: 750;
    line-height: 1.75;
}

.reviewday-faq-list {
    gap: 16px;
}

.reviewday-faq-list details {
    border: 1px solid #cce1f1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.reviewday-faq-list details:hover,
.reviewday-faq-list details[open] {
    transform: none;
    border-color: #b9d9f0;
    box-shadow: 0 16px 34px rgba(30, 104, 150, 0.08);
}

.reviewday-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 24px 72px 24px 30px;
    color: #102b42;
    font-size: 21px;
    font-weight: 950;
    list-style: none;
}

.reviewday-faq-list summary::-webkit-details-marker {
    display: none;
}

.reviewday-faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 28px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #c6def1;
    border-radius: 999px;
    color: #6d88a0;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
}

.reviewday-faq-list details[open] summary::after {
    content: "-";
    padding-bottom: 4px;
}

.reviewday-faq-list p {
    margin: 0;
    padding: 0 30px 28px;
    color: #60778d;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.7;
}

@media (max-width: 1020px) {
    .price-story-head,
    .reviewday-price-card,
    .reviewday-faq-layout {
        grid-template-columns: 1fr;
    }

    .price-story-head p {
        margin-top: 0;
    }

    .price-amount-panel,
    .price-included-panel {
        min-height: auto;
        padding: 44px;
    }
}

@media (max-width: 700px) {
    .price-story-head {
        gap: 24px;
        margin-bottom: 30px;
    }

    .price-story-head h2,
    .faq-copy h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .price-amount-panel,
    .price-included-panel {
        padding: 30px;
    }

    .price-amount-panel > strong {
        font-size: clamp(56px, 18vw, 76px);
    }

    .included-list {
        grid-template-columns: 1fr;
    }

    .reviewday-faq-layout {
        gap: 34px;
    }

    .reviewday-faq-list summary {
        min-height: 68px;
        padding: 20px 62px 20px 22px;
        font-size: 17px;
    }

    .reviewday-faq-list summary::after {
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

body .reveal {
    opacity: 1;
    transform: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body .hero-copy,
body .page-hero-inner,
body .auth-copy {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Final light-theme hardening for form-heavy customer screens. */
body .balance-chip,
body .check-field,
body .mode-radio-grid label,
body .date-picker-popover {
    border-color: #c8e9d8;
    background: #ffffff;
    color: #143327;
    box-shadow: 0 12px 28px rgba(20, 88, 53, 0.08);
}

body .balance-chip span,
body .check-field span,
body .mode-radio-grid label {
    color: #143327;
}

body .balance-chip strong {
    color: #07985a;
}

body .balance-chip a,
body .summary-block a,
body .metric-link {
    color: #078b55;
}

body .mode-radio-grid label {
    min-width: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6fff9 100%);
}

body .mode-radio-grid label:hover {
    border-color: rgba(25, 211, 125, 0.52);
    background: #f1fff6;
    box-shadow: 0 12px 28px rgba(20, 88, 53, 0.11);
}

body .mode-radio-grid label:has(input:checked) {
    border-color: rgba(25, 211, 125, 0.72);
    background: linear-gradient(135deg, #bff45f 0%, #19d37d 58%, #10b98b 100%);
    color: #0b2a1d;
    box-shadow: 0 16px 34px rgba(25, 211, 125, 0.2);
}

body .mode-radio-grid input[type="radio"],
body .form-check-input {
    accent-color: #07985a;
    background: #ffffff;
}

body .form-control,
body .field input:not([type="checkbox"]):not([type="radio"]),
body .field select,
body .field textarea,
body .auth-input {
    border-color: #bcdecd;
    background: #ffffff;
    color: #143327;
}

body .form-control::placeholder,
body .field input::placeholder,
body .field textarea::placeholder,
body .auth-input::placeholder,
body input::placeholder,
body textarea::placeholder {
    color: #7b9589;
    opacity: 1;
}

body .form-control:focus,
body .field input:not([type="checkbox"]):not([type="radio"]):focus,
body .field select:focus,
body .field textarea:focus,
body .auth-input:focus {
    border-color: rgba(25, 211, 125, 0.72);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(25, 211, 125, 0.14);
}

body select.form-control option,
body .field select option {
    background: #ffffff;
    color: #143327;
}

body .date-picker-popover {
    background: #ffffff;
}

body .date-picker-head strong,
body .date-picker-day {
    color: #143327;
}

body .date-picker-head button {
    border-color: #c8e9d8;
    background: #f1fff6;
    color: #078b55;
}

body .date-picker-day:hover,
body .date-picker-day.is-selected {
    background: #eafff1;
    color: #067d4d;
}

body .message-wrap {
    z-index: 90;
    width: min(520px, calc(100% - 40px));
}

body .message {
    position: relative;
    overflow: hidden;
    padding: 17px 20px 17px 22px;
    border: 1px solid #bfe8d1;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fffa 100%);
    color: #143327;
    box-shadow: 0 18px 44px rgba(20, 88, 53, 0.13);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

body .message::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #19d37d, #08b98d);
}

body .message-success {
    border-color: #ace8ca;
    background: linear-gradient(180deg, #ffffff 0%, #f1fff6 100%);
    color: #11382a;
}

body .message-error {
    border-color: #ffc7be;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f5 100%);
    color: #4b1c14;
}

body .message-error::before {
    background: linear-gradient(180deg, #ff806b, #ffb06b);
}

body .message-warning {
    border-color: #ffe4a3;
    background: linear-gradient(180deg, #ffffff 0%, #fffbea 100%);
    color: #443010;
}

body .message-warning::before {
    background: linear-gradient(180deg, #ffe066, #ffb54a);
}

body .message-info {
    border-color: #b8e7f2;
    background: linear-gradient(180deg, #ffffff 0%, #f2fcff 100%);
    color: #123542;
}

body .message-info::before {
    background: linear-gradient(180deg, #5be3f0, #18a9c7);
}

@media (prefers-reduced-motion: reduce) {
    .published-track,
    .reviewday-flow .process-grid::after,
    .reviewday-flow .process-grid article,
    .reviewday-flow .process-grid article::after,
    .reviewday-flow .icon-box,
    .reviewday-flow .icon-box::after {
        animation: none;
    }
}

@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15.5px;
    }

    body .container {
        width: min(100% - 32px, 1180px);
    }

    body .site-header {
        background: #ffffff;
    }

    body .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    body .site-header .brand {
        min-width: 0;
        gap: 9px;
    }

    body .site-header .brand-mark {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    body .site-header .brand-word {
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1;
    }

    body .site-header .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        place-items: center;
        border: 1px solid #bfe8d1;
        border-radius: 999px;
        background: linear-gradient(180deg, #ffffff 0%, #f1fff6 100%);
        box-shadow: 0 8px 18px rgba(20, 88, 53, 0.1);
    }

    body .site-header .nav-toggle span {
        width: 20px;
        height: 2px;
        margin: 2.5px auto;
        border-radius: 999px;
        background: #078b55;
    }

    body .site-header .nav-toggle:hover,
    body .site-header .nav-toggle:focus-visible {
        border-color: rgba(25, 211, 125, 0.62);
        background: #eafff1;
        box-shadow: 0 0 0 3px rgba(25, 211, 125, 0.12), 0 8px 18px rgba(20, 88, 53, 0.1);
        outline: none;
    }

    body .site-header .site-nav {
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        gap: 6px;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: 12px;
        border-color: #c8e9d8;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 18px 42px rgba(20, 88, 53, 0.14);
    }

    body .site-header .site-nav a {
        min-height: 44px;
        padding: 11px 13px;
        border-radius: 8px;
        color: #214c3b;
        font-size: 15px;
    }

    body .site-header .site-nav a:hover,
    body .site-header .site-nav a:focus-visible {
        background: #f1fff6;
        transform: none;
    }

    body .site-header .site-nav .btn-small {
        width: 100%;
        min-height: 46px;
        padding: 0 16px;
    }

    body .site-header .site-nav .btn-dark {
        background: #10291d;
        color: #ffffff;
    }

    body .site-header .site-nav .btn-dark:hover,
    body .site-header .site-nav .btn-dark:focus-visible {
        background: #123726;
        color: #ffffff;
    }

    body .hero {
        padding: 50px 0 58px;
    }

    body .page-hero {
        padding: 44px 0;
    }

    body .page-hero.compact {
        padding: 40px 0;
    }

    body .hero-grid,
    body .page-hero-inner,
    body .dashboard-preview-grid,
    body .feature-layout,
    body .pricing-panel,
    body .faq-layout,
    body .auth-grid,
    body .order-form-grid,
    body .detail-grid,
    body .charge-grid,
    body .reviewday-order-plan,
    body .reviewday-faq-layout,
    body .price-story-head {
        grid-template-columns: 1fr;
    }

    body .hero-grid {
        gap: 34px;
    }

    body .hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 11.5vw, 50px);
        line-height: 1.12;
    }

    body .page-hero h1,
    body .auth-copy h1,
    body .section-head h2,
    body .showcase-head h2,
    body .price-story-head h2,
    body .pricing-copy h2,
    body .faq-copy h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.2;
    }

    body .hero-copy p,
    body .page-hero p,
    body .auth-copy p,
    body .section-head p,
    body .showcase-head p,
    body .price-story-head p,
    body .pricing-copy p,
    body .faq-copy p {
        max-width: 100%;
        font-size: clamp(16px, 4.5vw, 20px);
        line-height: 1.75;
    }

    body .hero-actions,
    body .inline-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body .hero-actions .btn,
    body .inline-actions .btn,
    body .auth-form .btn,
    body .form-submit-bar .btn {
        width: 100%;
        min-height: 54px;
    }

    body .hero-points {
        gap: 10px;
    }

    body .hero-points span {
        min-height: 46px;
        padding: 10px 16px;
        font-size: 15px;
    }

    body .hero-photo-stack {
        min-height: 390px;
    }

    body .hero-photo-card.is-main {
        width: 86%;
        height: 270px;
    }

    body .hero-photo-card.is-top {
        width: 54%;
        height: 150px;
    }

    body .hero-photo-card.is-bottom {
        width: 48%;
        height: 146px;
    }

    body .hero-live-card {
        right: 12px;
        bottom: 34px;
        width: 142px;
    }

    body .section {
        padding: 58px 0;
    }

    body .reviewday-published-showcase,
    body .reviewday-price-story,
    body .reviewday-faq-section {
        padding: 62px 0;
    }

    body .showcase-head,
    body .price-story-head {
        margin-bottom: 28px;
    }

    body .published-carousel {
        margin-right: -16px;
        margin-left: -16px;
    }

    body .published-track {
        gap: 14px;
        padding: 4px 16px 18px;
    }

    body .published-card {
        width: min(78vw, 278px);
        min-height: 318px;
        flex-basis: min(78vw, 278px);
    }

    body .published-card img {
        height: 164px;
    }

    body .process-grid,
    body .scene-card-grid,
    body .metric-grid,
    body .field-grid,
    body .place-result-body,
    body .data-list,
    body .included-list,
    body .footer-grid {
        grid-template-columns: 1fr;
    }

    body .reviewday-flow .process-grid {
        gap: 14px;
    }

    body .reviewday-flow .process-grid article {
        min-height: auto;
        padding: 24px;
    }

    body .process-grid article + article {
        border-left: 0;
    }

    body .scene-card-grid article,
    body .price-amount-panel,
    body .price-included-panel,
    body .form-panel,
    body .order-summary,
    body .detail-panel,
    body .detail-side,
    body .auth-form,
    body .metric,
    body .empty-state,
    body .order-table {
        padding: 22px;
    }

    body .price-amount-panel > strong {
        font-size: clamp(52px, 17vw, 72px);
    }

    body .reviewday-faq-list summary {
        min-height: 62px;
        padding: 18px 56px 18px 18px;
        font-size: 16px;
        line-height: 1.4;
    }

    body .reviewday-faq-list summary::after {
        right: 18px;
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    body .lookup-input-row,
    body .reserved-picker-grid {
        grid-template-columns: 1fr;
    }

    body .reserved-picker-grid > input {
        grid-column: auto;
    }

    body .mode-radio-grid > .mode-radio {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body .mode-radio-grid label,
    body .check-field,
    body .form-control,
    body .field input:not([type="checkbox"]):not([type="radio"]),
    body .field select,
    body .field textarea,
    body .auth-input {
        min-width: 0;
    }

    body .mode-radio-grid label,
    body .check-field {
        min-height: 50px;
        padding: 12px 16px;
        overflow-wrap: anywhere;
    }

    body .lookup-button {
        width: 100%;
        min-height: 52px;
    }

    body .order-summary,
    body .detail-side {
        position: static;
    }

    body .order-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    body .order-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body .message-wrap {
        top: 78px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

@media (max-width: 480px) {
    body .container {
        width: min(100% - 28px, 1180px);
    }

    body .header-inner {
        min-height: 64px;
    }

    body .site-header .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    body .site-header .brand-word {
        font-size: clamp(22px, 7.4vw, 28px);
    }

    body .site-header .nav-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    body .site-header .nav-toggle span {
        width: 18px;
        margin: 2px auto;
    }

    body .hero h1 {
        font-size: clamp(36px, 11vw, 46px);
    }

    body .hero-copy p,
    body .page-hero p,
    body .section-head p {
        font-size: 16px;
    }

    body .hero-photo-stack {
        min-height: 360px;
    }

    body .hero-photo-card.is-main {
        height: 248px;
    }

    body .hero-live-card {
        width: 132px;
    }

    body .section,
    body .reviewday-published-showcase,
    body .reviewday-price-story,
    body .reviewday-faq-section {
        padding: 52px 0;
    }

    body .scene-card-grid article,
    body .price-amount-panel,
    body .price-included-panel,
    body .form-panel,
    body .order-summary,
    body .detail-panel,
    body .detail-side,
    body .auth-form,
    body .metric,
    body .empty-state,
    body .order-table {
        padding: 20px;
    }

    body .published-card {
        width: min(82vw, 268px);
        flex-basis: min(82vw, 268px);
    }
}

/* Final legacy dark-theme reset for all customer-facing screens. */
:root {
    --ink: #10261f;
    --ink-soft: #4b635b;
    --muted: #6f8a7e;
    --line: #d8ebe2;
    --paper: #ffffff;
    --wash: #f2fff8;
    --wash-strong: #d8ffe9;
    --navy: #10312a;
    --teal: #00c781;
    --green: #31f28f;
    --green-deep: #078b55;
    --mint: #dfffe9;
    --shadow: 0 18px 44px rgba(18, 78, 48, 0.1);
    --shadow-green: 0 18px 38px rgba(25, 211, 125, 0.2);
}

body {
    background: linear-gradient(180deg, #fbfffd 0%, #f7fff9 42%, #ffffff 100%) !important;
    color: #10261f !important;
}

body .site-header,
body .site-nav,
body .site-footer,
body .page-hero,
body .auth-section,
body .section,
body .section-tint,
body .reviewday-published-showcase,
body .reviewday-flow,
body .reviewday-scenes,
body .reviewday-price-story,
body .reviewday-faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fff9 100%) !important;
    color: #10261f !important;
}

body .hero,
body .reviewday-hero {
    background: linear-gradient(145deg, rgba(241, 255, 246, 0.96) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(224, 250, 234, 0.92) 100%) !important;
    color: #10261f !important;
}

body .hero::before,
body .page-hero::before,
body .auth-section::before,
body .reviewday-flow .process-grid::before,
body .reviewday-flow .process-grid::after {
    background: transparent !important;
    box-shadow: none !important;
}

body .hero::after,
body .page-hero::after {
    background: linear-gradient(90deg, #19d37d, #bff45f, #95ecff) !important;
}

body .hero h1,
body .page-hero h1,
body .auth-copy h1,
body .section-head h2,
body .showcase-head h2,
body .price-story-head h2,
body .pricing-copy h2,
body .faq-copy h2,
body .form-head h2,
body .form-section-head h2,
body .detail-panel h2,
body .panel-head h2,
body .site-footer strong,
body .brand-word {
    color: #10261f !important;
}

body .hero-copy p,
body .page-hero p,
body .auth-copy p,
body .section-head p,
body .showcase-head p,
body .price-story-head p,
body .pricing-copy p,
body .faq-copy p,
body .form-head p,
body .form-section-head p,
body .detail-panel p,
body .site-footer p,
body .site-footer a,
body .site-footer span,
body .card-copy,
body .muted-text,
body .text-block,
body .lookup-message,
body .field small,
body .summary-block small {
    color: #4b635b !important;
}

body .eyebrow {
    border-color: #bff0d3 !important;
    background: #ffffff !important;
    color: #078b55 !important;
    box-shadow: 0 12px 28px rgba(20, 88, 53, 0.08) !important;
}

body .form-panel,
body .auth-form,
body .order-summary,
body .detail-panel,
body .detail-side,
body .metric,
body .empty-state,
body .order-table,
body .process-grid,
body .process-grid article,
body .reviewday-flow .process-grid,
body .reviewday-flow .process-grid article,
body .scene-card-grid article,
body .published-card,
body .pricing-panel,
body .price-amount-panel,
body .price-included-panel,
body .price-box,
body .price-example,
body .preview-panel,
body .preview-panel > div,
body .faq-list details,
body .reviewday-faq-list details,
body .feature-list div,
body .auth-note,
body .balance-chip,
body .place-result-card,
body .deposit-account-card,
body .history-item,
body .data-list div,
body .summary-block,
body .refund-preview,
body .text-block,
body .advanced-options,
body .message,
body .hero-live-card,
body .hero-brand-overlay,
body .testimonial-card {
    border-color: #d7ebe1 !important;
    background: #ffffff !important;
    color: #10261f !important;
    box-shadow: 0 16px 38px rgba(20, 88, 53, 0.08) !important;
}

body .process-grid article + article,
body .reviewday-flow .process-grid article + article {
    border-left-color: #d7ebe1 !important;
    border-top-color: #d7ebe1 !important;
}

body .process-grid h3,
body .scene-card-grid strong,
body .published-card h3,
body .price-included-panel h3,
body .reviewday-faq-list summary,
body .faq-list summary,
body .summary-block strong,
body .metric strong,
body .data-list strong,
body .history-item strong,
body .place-result-card strong,
body .balance-chip strong,
body .deposit-account-number,
body .field span,
body .check-field span,
body .mode-radio-grid label {
    color: #143327 !important;
}

body .process-grid p,
body .scene-card-grid span,
body .published-card p,
body .price-amount-panel p,
body .price-footnote,
body .included-list li,
body .faq-list p,
body .reviewday-faq-list p,
body .history-item span,
body .data-list span,
body .summary-block span,
body .metric span,
body .place-result-card span {
    color: #4b635b !important;
}

body .form-control,
body .field input:not([type="checkbox"]):not([type="radio"]),
body .field select,
body .field textarea,
body .auth-input,
body .mode-radio-grid label,
body .check-field,
body .date-picker-popover,
body .date-picker-day,
body .date-picker-head button {
    border-color: #bcdecd !important;
    background: #ffffff !important;
    color: #143327 !important;
}

body .mode-radio-grid label:has(input:checked),
body .date-picker-day.is-selected {
    border-color: rgba(25, 211, 125, 0.72) !important;
    background: linear-gradient(135deg, #bff45f 0%, #19d37d 58%, #10b98b 100%) !important;
    color: #0b2a1d !important;
}

body .status-pill,
body .blog-badge,
body .metric-link,
body .balance-chip a,
body .summary-block a,
body .price-footnote span {
    border-color: #c8e9d8 !important;
    background: #eafff1 !important;
    color: #078b55 !important;
}

body .btn-ghost,
body .link-button {
    border-color: #c8e9d8 !important;
    background: #ffffff !important;
    color: #143327 !important;
}

body .price-example {
    border-color: #c8e9d8 !important;
    background: #fbfffd !important;
}

body .price-example span,
body .price-example small,
body .price-included-panel > small {
    color: #4b635b !important;
}

body .price-example strong {
    color: #143327 !important;
}
