:root {
    --accent: #6fa81f;
    --accent-strong: #4f7f14;
    --accent-soft: #edf7df;
    --blue: #2563eb;
    --blue-soft: #e8f0ff;
    --border: #dbe4ea;
    --dark: #10202a;
    --muted: #647484;
    --panel: #ffffff;
    --soft: #f5f8fb;
    --text: #172331;
    --warning: #b7791f;
}

* {
    box-sizing: border-box;
}

html {
    background: #ffffff;
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.58;
    margin: 0;
}

body.is-nav-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    height: auto;
    max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
    color: var(--dark);
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.25rem, 4.6vw, 4.8rem);
    line-height: 1.03;
}

h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.8rem);
    line-height: 1.12;
}

h3 {
    font-size: clamp(1.08rem, 1.2vw, 1.28rem);
    line-height: 1.24;
}

h4 {
    font-size: 1rem;
    line-height: 1.28;
}

.container {
    margin-inline: auto;
    width: min(1180px, 92%);
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 228, 234, 0.8);
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 80;
}

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

.logo {
    align-items: center;
    display: inline-flex;
    min-width: 126px;
    text-decoration: none;
}

.logo img,
.logo svg {
    display: block;
    max-height: 42px;
    width: auto;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 22px;
}

.site-nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--accent-strong);
}

.nav-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 42px;
    position: relative;
    width: 42px;
}

.nav-toggle span {
    background: var(--text);
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 9px;
    position: absolute;
    right: 9px;
    transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle span:first-child {
    top: 15px;
}

.nav-toggle span:last-child {
    top: 25px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.hero,
.page-hero {
    background:
        linear-gradient(135deg, rgba(237, 247, 223, 0.92), rgba(255, 255, 255, 0.98) 48%, rgba(232, 240, 255, 0.74));
}

.hero-grid,
.split {
    align-items: center;
    display: grid;
    gap: clamp(24px, 4vw, 58px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.lead {
    color: #354657;
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
    line-height: 1.68;
}

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

.eyebrow {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section {
    padding: 68px 0;
}

.soft {
    background: var(--soft);
}

.section-head {
    margin-bottom: 30px;
    max-width: 850px;
}

.section-head p {
    font-size: 1.04rem;
}

.section-actions,
.card-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 20px;
}

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

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

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 32, 42, 0.06);
    padding: 24px;
}

.card h3,
.card h4 {
    margin-bottom: 9px;
}

.card.highlight {
    background: linear-gradient(135deg, #ffffff, var(--accent-soft));
    border-color: rgba(111, 168, 31, 0.32);
}

.feature-card {
    display: grid;
    gap: 14px;
}

.feature-card__icon {
    align-items: center;
    background: var(--accent-soft);
    border: 1px solid rgba(111, 168, 31, 0.2);
    border-radius: 8px;
    color: var(--accent-strong);
    display: inline-flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.feature-card--primary {
    background: linear-gradient(135deg, #ffffff, #f4fff0);
    border-color: rgba(111, 168, 31, 0.38);
}

.feature-card--blue {
    background: linear-gradient(135deg, #ffffff, var(--blue-soft));
    border-color: rgba(37, 99, 235, 0.22);
}

.btn,
.text-link {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    text-decoration: none;
}

.btn {
    border-radius: 8px;
    border: 1px solid transparent;
    gap: 8px;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

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

.btn-primary {
    background: var(--accent);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-ghost {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text) !important;
}

.btn-ghost:hover {
    border-color: rgba(111, 168, 31, 0.46);
    color: var(--accent-strong) !important;
}

.text-link {
    color: var(--accent-strong);
}

.text-link:hover {
    color: var(--blue);
}

.checklist {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
}

.checklist li::before {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent-strong);
    content: "\2713";
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 900;
    height: 18px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 3px;
    width: 18px;
}

.checklist.compact {
    gap: 7px;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.tag {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 7px 10px;
}

.stat-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.stat-grid > div {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
}

.stat-grid h3 {
    color: var(--accent-strong);
    font-size: 1.55rem;
}

form {
    display: grid;
    gap: 14px;
}

label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

input,
select,
textarea {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    min-height: 46px;
    padding: 11px 13px;
    width: 100%;
}

textarea {
    min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(111, 168, 31, 0.14);
    outline: none;
}

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

.form-card {
    box-shadow: 0 22px 56px rgba(16, 32, 42, 0.08);
}

.notice {
    background: var(--accent-soft);
    border: 1px solid rgba(111, 168, 31, 0.3);
    border-radius: 8px;
    color: var(--accent-strong);
    font-weight: 800;
    padding: 12px 14px;
}

.error {
    color: #b42318;
    font-weight: 800;
}

.is-hidden {
    display: none !important;
}

.option-grid,
.product-select-grid,
.seat-grid {
    display: grid;
    gap: 12px;
}

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

.product-select-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-item {
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 12px;
}

.option-item input {
    margin-top: 4px;
    min-height: 0;
    width: auto;
}

.option-item strong,
.option-item small {
    display: block;
}

.option-item small {
    color: var(--muted);
    margin-top: 2px;
}

.option-item.is-selected {
    background: var(--accent-soft);
    border-color: rgba(111, 168, 31, 0.48);
}

.form-section {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 20px;
}

.suggestion-card {
    margin: 8px 0;
}

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

.seat-item {
    display: grid;
    gap: 7px;
}

.site-footer {
    background: #0e1b24;
    color: #d7e0e8;
}

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

.site-footer a {
    color: #d7e0e8;
    text-decoration: none;
}

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

.site-footer ul {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.footer-base {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-top: 18px;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border-radius: 999px;
    bottom: 18px;
    box-shadow: 0 12px 30px rgba(16, 32, 42, 0.18);
    color: #ffffff;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 900;
    min-height: 46px;
    padding: 0 16px;
    position: fixed;
    right: 18px;
    text-decoration: none;
    z-index: 60;
}

.whatsapp-float:hover {
    background: #1faa55;
}

.reviews-embed {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.result-table-wrap {
    overflow-x: auto;
}

.result-table {
    border-collapse: collapse;
    min-width: 640px;
    width: 100%;
}

.result-table th,
.result-table td {
    border-bottom: 1px solid var(--border);
    padding: 10px;
    text-align: left;
}

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

.status-item {
    align-items: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 10px;
}

.status {
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 5px 9px;
}

.status.good {
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.status.warn,
.status.warning {
    background: #fff7e6;
    color: var(--warning);
}

.status.bad,
.status.danger {
    background: #fff1f1;
    color: #b42318;
}

.info-trigger {
    align-items: center;
    background: var(--blue-soft);
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    margin-left: 6px;
    width: 22px;
}

@media (max-width: 1080px) {
    .grid-3,
    .product-select-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        align-items: stretch;
        background: #ffffff;
        border-top: 1px solid var(--border);
        bottom: 0;
        display: none;
        flex-direction: column;
        gap: 14px;
        left: 0;
        overflow-y: auto;
        padding: 22px;
        position: fixed;
        right: 0;
        top: 76px;
    }

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

    .site-nav a {
        font-size: 1.06rem;
    }

    .hero-grid,
    .split,
    .grid-2,
    .grid-3,
    .option-grid,
    .product-select-grid,
    .seat-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-base {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 46px 0;
    }

    .card {
        padding: 20px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 12px;
        right: 12px;
    }
}
