@font-face {
    font-family: 'StagSans-Book';
    src: url('/promo/fonts/StagSans-Book.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Stag Sans';
    src: url('/promo/fonts/StagSans-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body.harvest-frontend {
    font-family: 'StagSans-Book', Arial, sans-serif;
    color: #1a1a1a;
    background:
        radial-gradient(circle at top right, rgba(249,161,27,.14), transparent 32%),
        linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.harvest-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px;
}

.harvest-card,
.status-card,
.check-card,
.reward-card,
.notice-card,
.tnc-block,
.tnc-highlight {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

.hero-card {
    overflow: hidden;
    animation: fadeUp .8s ease both;
}

.hero-media,
.check-banner {
    background: linear-gradient(180deg, #fff7e7 0%, #fff 100%);
}

.hero-media picture,
.hero-media img,
.check-banner picture,
.check-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.check-banner {
    padding: 14px 14px 0;
}

.check-banner img {
    border-radius: 22px;
}

.hero-copy {
    padding: 30px;
    background: linear-gradient(135deg, #f9a11b 0%, #ffb642 100%);
    color: #111;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #111;
    color: #f9a11b;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    margin: 0;
    font-size: 46px;
    line-height: 1.02;
}

.hero-subtitle {
    margin: 12px 0 0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 780px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.meta-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 700;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    margin-top: 22px;
}

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

.section-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.15;
    animation: fadeUp .8s ease both;
}

.section-title:after {
    content: '';
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: #f9a11b;
    animation: underlineGrow .7s ease .2s both;
}

.reward-wrap,
.info-wrap,
.status-wrap,
.tnc-wrap {
    padding: 24px;
    animation: fadeUp .8s ease both;
}

.reward-card {
    padding: 22px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.reward-card:hover,
.notice-card:hover,
.check-card:hover,
.status-card:hover,
.tnc-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(0,0,0,.14);
}

.reward-card:before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: #f9a11b;
}

.reward-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.reward-card p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.6;
}

.reward-value {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.reward-helper {
    font-size: 14px;
    color: #666;
}

.cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.cta-stack.centered {
    justify-content: center;
}

.cta-note,
.cta-helper {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: rgba(17,17,17,.72);
}

.btn-harvest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 0;
    background: #f9a11b;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    box-shadow: 0 10px 24px rgba(249, 161, 27, .35);
    position: relative;
    overflow: hidden;
}

.btn-harvest:after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,.35);
    transform: skewX(-18deg);
    transition: left .45s ease;
}

.btn-harvest:hover {
    transform: translateY(-2px);
    background: #ef9809;
    box-shadow: 0 16px 34px rgba(249,161,27,.42);
}

.btn-harvest:hover:after {
    left: 130%;
}

.btn-harvest.dark {
    background: #111;
    color: #fff;
    box-shadow: 0 10px 24px rgba(17,17,17,.22);
}

.btn-harvest.dark:hover {
    background: #262626;
}

.btn-harvest.outline {
    background: #fff;
    color: #111;
    border: 2px solid rgba(17,17,17,.10);
    box-shadow: 0 8px 20px rgba(17,17,17,.08);
}

.btn-harvest.outline:hover {
    border-color: rgba(17,17,17,.25);
    background: #fff8ef;
}

.btn-harvest.primary-cta {
    min-height: 64px;
    padding: 17px 28px;
    font-size: 19px;
    font-weight: 900;
    border: 3px solid rgba(17,17,17,.12);
    box-shadow: 0 18px 40px rgba(249,161,27,.42);
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-harvest.primary-cta .cta-arrow {
    font-size: 20px;
    line-height: 1;
}

.notice-card,
.tnc-highlight {
    padding: 20px 22px;
}

.notice-card p,
.tnc-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

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

.tnc-block {
    padding: 24px;
    animation: fadeUp .8s ease both;
}

.tnc-block h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.tnc-block p,
.tnc-block li {
    font-size: 15px;
    line-height: 1.75;
    color: #404040;
}

.tnc-block ul {
    margin: 0;
    padding-left: 18px;
}

.check-page-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.check-page-card {
    margin-top: 22px;
    padding: 0;
    overflow: hidden;
}

.check-card {
    padding: 30px;
}

.check-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a5a00;
    margin-bottom: 10px;
}

.check-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.08;
}

.check-copy {
    margin: 14px 0 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-row {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.harvest-input {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #d9d9d9;
    font-size: 17px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    outline: none;
    background: #fff;
}

.harvest-input:focus {
    border-color: #f9a11b;
    box-shadow: 0 0 0 4px rgba(249,161,27,.18);
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.inline-note,
.inline-error,
.inline-success {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.inline-note { color: #666; }
.inline-error { color: #b42318; font-weight: 700; }
.inline-success { color: #027a48; font-weight: 700; }

.hidden {
    display: none !important;
}

.status-output {
    margin-top: 22px;
}

.status-card {
    padding: 18px 20px;
    margin-bottom: 14px;
    border-left: 6px solid #d0d5dd;
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.status-card.approved { border-left-color: #12b76a; }
.status-card.pending { border-left-color: #f79009; }
.status-card.rejected { border-left-color: #f04438; }
.status-card.sent { border-left-color: #155eef; }

.status-top {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.status-vehicle {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.status-card.pending .status-badge {
    background: #fff7e8;
    color: #8a5a00;
}

.status-card.approved .status-badge {
    background: #ecfdf3;
    color: #027a48;
}

.status-card.rejected .status-badge {
    background: #fef3f2;
    color: #b42318;
}

.status-card.sent .status-badge {
    background: #eff8ff;
    color: #175cd3;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-top: 10px;
}

.status-line {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.status-note {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
}

.code-chip {
    display: inline-block;
    margin: 8px 8px 0 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eff8ff;
    color: #175cd3;
    font-size: 14px;
    font-weight: 800;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17,17,17,.55);
    z-index: 999;
    padding: 20px;
}

.popup-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
    animation: popIn .25s ease both;
}

.popup-card img {
    max-width: 180px;
    width: 100%;
    margin: 12px auto 0;
    display: block;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(4px);
    z-index: 998;
}

.loader-dot {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 6px solid rgba(249,161,27,.22);
    border-top-color: #f9a11b;
    animation: spin .85s linear infinite;
}

.text-center {
    text-align: center;
}

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

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 72px; }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(.96); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 18px 40px rgba(249,161,27,.42); }
    50% { box-shadow: 0 22px 50px rgba(249,161,27,.62); }
}

@media (max-width: 980px) {
    .harvest-shell { padding: 12px; }
    .grid-2,
    .grid-3,
    .tnc-grid,
    .status-grid { grid-template-columns: 1fr; }
    .hero-copy,
    .check-card,
    .reward-wrap,
    .info-wrap,
    .status-wrap,
    .tnc-wrap,
    .tnc-block { padding: 20px; }
    .hero-title { font-size: 34px; }
    .check-title { font-size: 28px; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 24px; }
    .check-title { font-size: 24px; }
    .harvest-input { font-size: 16px; min-height: 52px; }
    .cta-stack,
    .form-actions { display: block; }
    .cta-stack .btn-harvest,
    .form-actions .btn-harvest { width: 100%; margin-bottom: 12px; }
    .status-vehicle { font-size: 21px; }
    .btn-harvest.primary-cta { font-size: 18px; min-height: 60px; }
}


.hero-media-top,
.check-banner-top {
    background: linear-gradient(180deg, #fff4dc 0%, #fff9f2 100%);
}

.hero-media-top img,
.check-banner-top img,
.hero-media-bottom img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-card-bottom {
    background: #fff4dc;
}

.cta-stack-home {
    align-items: stretch;
}

.primary-cta-home {
    min-width: 340px;
}

.btn-harvest.primary-cta {
    background: #111;
    color: #f9a11b;
    border-color: rgba(249,161,27,.35);
    box-shadow: 0 20px 44px rgba(17,17,17,.22), 0 0 0 6px rgba(249,161,27,.12);
}

.btn-harvest.primary-cta:hover {
    background: #1f1f1f;
    color: #ffd18a;
}

.btn-harvest.primary-cta .cta-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(249,161,27,.16);
    color: #ffd18a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.notice-card,
.tnc-highlight,
.status-card,
.reward-card,
.check-card {
    backdrop-filter: blur(6px);
}

.check-page-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.inline-note {
    display: block;
}

.tnc-article {
    max-width: 940px;
    margin: 0 auto;
}

.tnc-article-section + .tnc-article-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(17,17,17,.08);
}

.tnc-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a5a00;
}

.tnc-article-section h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.15;
}

.tnc-article-section p,
.tnc-article-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #383838;
}

.tnc-article-section ul {
    margin: 0;
    padding-left: 22px;
}

.tnc-tier-table-wrap {
    overflow-x: auto;
    margin: 8px 0 18px;
}

.tnc-tier-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(17,17,17,.08);
    background: #fff;
}

.tnc-tier-table th,
.tnc-tier-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(17,17,17,.08);
}

.tnc-tier-table thead th {
    background: #111;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tnc-tier-table tbody tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 980px) {
    .primary-cta-home {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .btn-harvest.primary-cta .cta-kicker {
        min-width: 66px;
        min-height: 28px;
        font-size: 11px;
    }

    .tnc-article-section h2 {
        font-size: 24px;
    }
}

/* Round 4 simple consumer layout updates */
.simple-home-shell,
.simple-check-shell {
    max-width: 1180px;
}

.simple-hero-card,
.simple-check-card,
.simple-bottom-banner {
    border-radius: 26px;
}

.simple-hero-copy {
    padding: 30px 34px 34px;
}

.simple-subtitle {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    max-width: 760px;
}

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

.simple-reward-pill {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(17,17,17,.08);
}

.simple-reward-pill strong,
.simple-reward-pill span {
    display: block;
}

.simple-reward-pill strong {
    font-size: 19px;
    margin-bottom: 7px;
}

.simple-reward-pill span {
    font-size: 16px;
    font-weight: 800;
}

.simple-action-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.simple-steps {
    margin-top: 22px;
    padding: 24px;
}

.simple-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.simple-step {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(17,17,17,.07);
}

.simple-step b {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f9a11b;
    color: #111;
    font-size: 20px;
}

.simple-step span {
    font-size: 18px;
    font-weight: 800;
}

.simple-check-copy {
    font-size: 20px;
    font-weight: 800;
    color: #222;
}

.simple-form-box {
    background: #fffdf8;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.simple-form-actions {
    margin-top: 14px;
}

.simple-back-link {
    margin-top: 22px;
}

.simple-bottom-banner {
    margin-top: 22px;
    overflow: hidden;
}

@media (max-width: 980px) {
    .simple-reward-row,
    .simple-step-grid {
        grid-template-columns: 1fr;
    }

    .simple-action-panel .btn-harvest,
    .simple-form-actions .btn-harvest {
        width: 100%;
    }

    .simple-subtitle {
        font-size: 19px;
    }
}

@media (max-width: 640px) {
    .simple-hero-copy,
    .simple-steps,
    .simple-form-box {
        padding: 18px;
    }

    .simple-reward-pill,
    .simple-step {
        padding: 15px;
    }

    .simple-step span {
        font-size: 16px;
    }
}

.code-chip strong {
    display: inline-block;
    margin-right: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #175cd3;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 13px 18px 13px 14px;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.25);
    border: 2px solid #f9a11b;
    transition: all 0.25s ease;
    animation: whatsappFloatIn 0.7s ease forwards, whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    background: #f9a11b;
    color: #111;
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.wa-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f9a11b;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    flex-shrink: 0;
}

.floating-whatsapp:hover .wa-icon {
    background: #111;
    color: #f9a11b;
}

.wa-text {
    font-size: 13px;
    line-height: 1.15;
    white-space: nowrap;
}

.wa-text strong {
    font-size: 15px;
}

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

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 14px 34px rgba(0,0,0,0.25);
    }
    50% {
        box-shadow: 0 14px 34px rgba(249,161,27,0.55);
    }
}

@media all and (max-width: 767px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 11px 15px 11px 11px;
        gap: 9px;
    }

    .wa-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .wa-text {
        font-size: 12px;
    }

    .wa-text strong {
        font-size: 14px;
    }
}