/* EasyWeb by b3soft — brand stylesheet
   Palette + type per EasyWeb_BrandIdentity: calm, competent, AI-native.
   Deep Navy #0f1b35 · Electric Blue #1d6ef5 · Teal Spark #00c4b4
   Warm Off-White #f5f5f3 · Sky Tint #e8f0fe */

:root {
    --navy: #0f1b35;
    --navy-soft: #1b2a4a;
    --blue: #1d6ef5;
    --blue-dark: #155ad0;
    --teal: #00c4b4;
    --offwhite: #f5f5f3;
    --sky: #e8f0fe;
    --ink: #16203a;
    --ink-soft: #4a5570;
    --line: #dfe3ec;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 18px 45px -22px rgba(15, 27, 53, 0.35);
    --shadow-sm: 0 8px 24px -16px rgba(15, 27, 53, 0.4);
    --maxw: 1120px;
    --font: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--offwhite);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); margin: 0 0 0.4em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.5em; }
h3 { font-size: 1.22rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.eyebrow {
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 0.78rem; color: var(--blue); margin: 0 0 0.9rem;
}
.eyebrow.center { text-align: center; }
.lead { font-size: 1.16rem; color: var(--ink-soft); }
.section-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 640px; margin: -0.2rem auto 2.4rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
    padding: 0.72rem 1.4rem; border-radius: var(--radius-sm); border: 2px solid transparent;
    cursor: pointer; transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
    text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.btn-accent { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(29, 110, 245, 0.7); }
.btn-accent:hover { background: var(--blue-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; }
.btn-ghost:hover { color: var(--blue); background: rgba(29, 110, 245, 0.07); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { font-size: 1.08rem; padding: 0.95rem 1.7rem; }
.btn-sm { font-size: 0.92rem; padding: 0.55rem 1.05rem; }
.btn-block { display: flex; width: 100%; }
.link-arrow { font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(245, 245, 243, 0.86); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: baseline; gap: 0.5rem; }
.brand-mark { font-weight: 800; letter-spacing: -0.04em; font-size: 1.35rem; color: var(--navy); }
.brand-mark-sm { font-size: 1.1rem; }
.brand-mark-reversed { color: #fff; }
.brand-sub { font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.62rem; color: var(--blue); }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav > a:not(.btn) { color: var(--navy); font-weight: 500; font-size: 0.98rem; }
.site-nav > a:not(.btn):hover { color: var(--blue); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tint { background: var(--sky); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy .eyebrow { color: #fff; }
.section-navy .eyebrow { color: var(--teal); }

/* ---------- Hero ---------- */
.hero {
    padding: 76px 0 88px;
    background:
        radial-gradient(1100px 460px at 80% -8%, rgba(0, 196, 180, 0.10), transparent 60%),
        radial-gradient(900px 420px at 8% 6%, rgba(29, 110, 245, 0.10), transparent 55%),
        var(--offwhite);
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: 0.5em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.1rem; }
.hero-trust { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

.offer-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px; box-shadow: var(--shadow);
}
.offer-card-title { font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-bottom: 1.1rem; letter-spacing: -0.01em; }
.offer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.offer-list li {
    display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 0.7rem; row-gap: 0.1rem;
    padding-bottom: 1rem; border-bottom: 1px dashed var(--line);
}
.offer-list li:last-child { border-bottom: none; padding-bottom: 0; }
.offer-amt { font-weight: 800; font-size: 1.7rem; letter-spacing: -0.03em; color: var(--navy); }
.offer-amt small { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); }
.offer-when { font-weight: 700; color: var(--blue); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.offer-desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.96rem; }
.offer-foot { margin: 1.2rem 0 0; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Cards grid (problems) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.6rem; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.35em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.card-quiet { display: flex; flex-direction: column; justify-content: center; gap: 0.4rem; background: linear-gradient(155deg, var(--navy), var(--navy-soft)); border: none; }
.card-kicker { color: #fff; font-weight: 700; font-size: 1.1rem; }
.card-quiet .link-arrow { color: var(--teal); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 2.6rem; }
.step { position: relative; padding: 26px 26px 26px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; margin-bottom: 0.7rem;
    background: var(--sky); color: var(--blue); font-weight: 800; font-size: 1.15rem;
}
.step h3 { margin-bottom: 0.3em; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Compare table (on navy) ---------- */
.compare { margin-top: 2.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; padding: 15px 22px; color: #eaf0ff; align-items: center; }
.compare-row + .compare-row { border-top: 1px solid rgba(255,255,255,0.10); }
.compare-head { background: rgba(255,255,255,0.05); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.76rem; color: #aebbdd; }
.compare-row .good { color: var(--teal); font-weight: 700; }
.compare-total { background: rgba(0, 196, 180, 0.10); font-weight: 800; font-size: 1.05rem; color: #fff; }
.compare-total .good { font-size: 1.15rem; }
.compare-note { margin-top: 1.6rem; color: #cfd9f2; }
.section-navy strong { color: #fff; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 2.6rem 0 1.6rem; }
.price-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm);
}
.price-card-accent { border: 2px solid var(--blue); box-shadow: 0 22px 50px -26px rgba(29,110,245,0.55); }
.price-amt { display: block; font-weight: 800; font-size: 2.7rem; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.price-amt small { font-size: 1.05rem; font-weight: 700; color: var(--ink-soft); }
.price-tag { display: inline-block; margin: 0.7rem 0 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--blue); }
.price-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.price-deadline { margin: 0.6rem auto 2rem; color: var(--ink-soft); max-width: 560px; }
.guarantee {
    max-width: 660px; margin: 0 auto 1.6rem; background: #fff; border: 1px solid var(--line);
    border-left: 4px solid var(--teal); border-radius: var(--radius-sm); padding: 18px 22px;
    display: flex; gap: 16px; align-items: center; box-shadow: var(--shadow-sm);
}
.guarantee-badge { flex: none; font-weight: 800; color: #058a7e; background: rgba(0,196,180,0.14); padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.82rem; white-space: nowrap; }
.guarantee p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 620px) { .guarantee { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ---------- Reserve wizard ---------- */
.reserve-card {
    max-width: 560px; margin: 2.4rem auto 0; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 34px 30px; box-shadow: var(--shadow);
}
.step-label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--blue); margin-bottom: 1.2rem; }
.field { margin-bottom: 1.15rem; display: flex; flex-direction: column; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.35rem; }
.input {
    font-family: var(--font); font-size: 1rem; color: var(--ink); background: var(--offwhite);
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0.72rem 0.9rem; width: 100%;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(29,110,245,0.12); }
.input.invalid { border-color: #e0403f; }
.field-hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }
.validation-message { color: #e0403f; font-size: 0.85rem; margin-top: 0.3rem; }
.reserve-fineprint { font-size: 0.86rem; color: var(--ink-soft); margin: 1rem 0 0; }
.reserve-h { margin-bottom: 0.3em; }
.reserve-sub { color: var(--ink-soft); }
.pay-options { display: grid; gap: 0.8rem; margin: 1.4rem 0 0.4rem; }
.reserve-done { text-align: center; }
.done-badge {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,196,180,0.14); color: var(--teal); font-size: 1.8rem; font-weight: 800;
}
.reserve-done .btn { margin-top: 0.6rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; margin-top: 2.4rem; }
.faq-item h3 { margin-bottom: 0.25em; }
.faq-item p { margin: 0; color: var(--ink-soft); }
.faq-cta { margin-top: 2.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cfd9f2; padding: 54px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { max-width: 420px; }
.footer-tagline { margin: 0.7rem 0 0; color: #9fb0d6; font-size: 0.96rem; }
.footer-meta { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; font-size: 0.94rem; }
.footer-meta a { color: var(--teal); }

/* ---------- Admin ---------- */
.admin-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem; }
.admin-count { color: var(--ink-soft); font-weight: 700; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.admin-table th { background: var(--sky); font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; }
.admin-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.badge-new { background: var(--sky); color: var(--blue); }
.badge-paymentinitiated { background: rgba(0,196,180,0.16); color: #058a7e; }
.badge-invoicerequested { background: #fff2d8; color: #9a6a00; }
.admin-login { max-width: 420px; }
.login-error { color: #e0403f; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .faq { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .section { padding: 60px 0; }
    .hero { padding: 52px 0 64px; }
    .site-nav { gap: 0.9rem; }
    .site-nav > a:not(.btn) { display: none; }
    .card-grid, .steps { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1.3fr 1fr; }
    .compare-row > span:nth-child(2) { display: none; }
    .compare-head > span:nth-child(2) { display: none; }
    .reserve-card { padding: 26px 22px; }
    .footer-inner { flex-direction: column; }
    .footer-meta { text-align: left; }
}
