/* ===========================================
   HOT SALE 2026 - CACE Campaign Theme
   Full bright palette: orange, cream, green
   =========================================== */

:root {
    --hs-orange: #FF6B1A;
    --hs-orange-dark: #E55A0A;
    --hs-green-dark: #1B3A0A;
    --hs-green: #2D5016;
    --hs-lime: #C5E84D;
    --hs-cream: #FFF8EE;
    --hs-cream-dark: #FAEBD7;
    --hs-white: #ffffff;
    --hs-text: #1B3A0A;
    --hs-text-muted: #5A6B4A;
    --hs-radius: 14px;
    --hs-radius-lg: 20px;
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--hs-cream);
    color: var(--hs-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--hs-orange); text-decoration: none; }
a:hover { color: var(--hs-orange-dark); }
ul { list-style: none; }

.hs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================================
   HEADER
   =========================================== */
.hs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 248, 238, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hs-header__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hs-header__logo img {
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.hs-header__hotsale {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.hs-header__cta {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    background: var(--hs-orange);
    color: var(--hs-white);
    border-radius: 100px;
    transition: background 0.2s;
}

.hs-header__cta:hover {
    background: var(--hs-orange-dark);
    color: var(--hs-white);
}

/* ===========================================
   HERO - Orange dominant
   =========================================== */
.hs-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 1.5rem 60px;
    background: var(--hs-orange);
    overflow: hidden;
    min-height: 100vh;
}

.hs-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hs-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hs-hero__claim {
    width: 340px;
    max-width: 85%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

.hs-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--hs-white);
}

.hs-hero__title strong {
    color: var(--hs-lime);
}

.hs-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hs-hero__subtitle strong {
    color: var(--hs-white);
}

.hs-hero__micro {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.hs-hero__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 160px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    animation: badge-bob 3s ease-in-out infinite;
}

@keyframes badge-bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

/* ===========================================
   COUNTDOWN
   =========================================== */
.hs-countdown {
    margin: 1.5rem auto;
    text-align: center;
}

.hs-countdown__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hs-countdown__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.hs-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0.6rem 0.4rem;
    min-width: 62px;
}

.hs-countdown__number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--hs-white);
    line-height: 1;
}

.hs-countdown__text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.2rem;
}

.hs-countdown__sep {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 0.8rem;
}

.hs-countdown--small .hs-countdown__unit {
    background: rgba(0, 0, 0, 0.08);
    min-width: 52px;
    padding: 0.4rem 0.5rem 0.3rem;
}

.hs-countdown--small .hs-countdown__number {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--hs-green-dark);
}

.hs-countdown--small .hs-countdown__text {
    color: var(--hs-text-muted);
}

.hs-countdown--small .hs-countdown__sep {
    font-size: 1.2rem;
    color: var(--hs-text-muted);
    opacity: 0.4;
    padding-bottom: 0.5rem;
}

/* ===========================================
   CTA BUTTONS
   =========================================== */
.hs-cta {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.hs-cta--hero {
    background: var(--hs-green-dark);
    color: var(--hs-lime);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hs-cta--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    color: var(--hs-lime);
    background: #142D06;
}

.hs-cta--solid {
    background: var(--hs-orange);
    color: var(--hs-white);
}

.hs-cta--solid:hover {
    background: var(--hs-orange-dark);
    color: var(--hs-white);
    transform: translateY(-2px);
}

.hs-cta--outline {
    background: transparent;
    color: var(--hs-orange);
    border: 2px solid var(--hs-orange);
}

.hs-cta--outline:hover {
    background: var(--hs-orange);
    color: var(--hs-white);
    transform: translateY(-2px);
}

.hs-cta--lg {
    font-size: 1.1rem;
    padding: 1rem 2.8rem;
}

/* ===========================================
   SECTIONS
   =========================================== */
.hs-section {
    padding: 5rem 0;
}

.hs-section--cream {
    background: var(--hs-cream);
}

.hs-section--white {
    background: var(--hs-white);
}

.hs-section--green {
    background: var(--hs-green-dark);
    color: var(--hs-white);
}

.hs-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--hs-green-dark);
}

.hs-section--green .hs-section__title {
    color: var(--hs-white);
}

.hs-section__subtitle {
    text-align: center;
    color: var(--hs-text-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

/* ===========================================
   OFFER CARDS
   =========================================== */
.hs-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hs-offer-card {
    background: var(--hs-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--hs-radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.hs-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hs-offer-card__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.hs-offer-card__badge--free {
    background: var(--hs-green-dark);
    color: var(--hs-lime);
}

.hs-offer-card__badge--off {
    background: var(--hs-lime);
    color: var(--hs-green-dark);
}

.hs-offer-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hs-green-dark);
    margin-bottom: 0.75rem;
}

.hs-offer-card p {
    color: var(--hs-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.hs-offer-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hs-offer-card li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--hs-text);
    font-size: 0.9rem;
}

.hs-offer-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hs-orange);
    font-weight: 700;
}

/* ===========================================
   URGENCY
   =========================================== */
.hs-urgency {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hs-urgency__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--hs-white);
    margin-bottom: 1rem;
}

.hs-urgency__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.hs-urgency__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.hs-stat__number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--hs-lime);
}

.hs-stat__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ===========================================
   PLANS
   =========================================== */
.hs-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hs-plan {
    background: var(--hs-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--hs-radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.hs-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hs-plan--featured {
    border: 2px solid var(--hs-orange);
    box-shadow: 0 8px 32px rgba(255, 107, 26, 0.12);
}

.hs-plan__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    background: var(--hs-lime);
    color: var(--hs-green-dark);
    border-radius: 100px;
}

.hs-plan__popular {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--hs-orange);
    margin-bottom: 0.3rem;
}

.hs-plan__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hs-green-dark);
    margin-bottom: 0.6rem;
}

.hs-plan__desc {
    color: var(--hs-text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.hs-plan__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.hs-plan__features li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--hs-text);
}

.hs-plan__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hs-orange);
    font-weight: 700;
}

.hs-plan .hs-cta {
    text-align: center;
    width: 100%;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.hs-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.hs-testimonial {
    background: var(--hs-cream);
    border-radius: var(--hs-radius);
    padding: 2rem;
}

.hs-testimonial__text {
    font-style: italic;
    color: var(--hs-text);
    margin-bottom: 0.75rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.hs-testimonial__author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hs-text-muted);
}

.hs-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hs-trust-badge {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hs-text-muted);
    padding: 0.5rem 1.2rem;
    background: var(--hs-cream);
    border-radius: 100px;
}

/* ===========================================
   FAQ
   =========================================== */
.hs-faq {
    max-width: 700px;
    margin: 2rem auto 0;
}

.hs-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
}

.hs-faq__item:last-child { border-bottom: none; }

.hs-faq__question {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hs-green-dark);
    margin-bottom: 0.4rem;
}

.hs-faq__answer {
    color: var(--hs-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===========================================
   CTA FINAL
   =========================================== */
.hs-cta-final {
    text-align: center;
    padding: 4.5rem 1.5rem;
    background: var(--hs-orange);
}

.hs-cta-final__claim {
    width: 240px;
    max-width: 70%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.hs-cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--hs-white);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hs-cta-final .hs-cta--hero {
    margin-top: 1rem;
}

/* ===========================================
   FOOTER
   =========================================== */
.hs-footer {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--hs-green-dark);
}

.hs-footer__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.hs-footer__ecoma {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.hs-footer__cace {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.hs-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.hs-footer a {
    color: rgba(255, 255, 255, 0.5);
}

.hs-footer a:hover {
    color: var(--hs-lime);
}

/* ===========================================
   MOBILE
   =========================================== */
@media (max-width: 768px) {
    .hs-header { padding: 0.5rem 1rem; }
    .hs-header__logo img { height: 28px; }
    .hs-header__hotsale { height: 55px; }
    .hs-header__cta { font-size: 0.7rem; padding: 0.4rem 0.9rem; }

    .hs-hero { padding: 85px 1rem 50px; min-height: auto; }
    .hs-hero__claim { width: 260px; margin-bottom: 1.5rem; }
    .hs-hero__title { font-size: 1.6rem; }
    .hs-hero__subtitle { font-size: 0.95rem; }
    .hs-hero__badge { width: 100px; bottom: 16px; right: 16px; }

    .hs-countdown__unit { min-width: 50px; padding: 0.4rem 0.4rem 0.3rem; }
    .hs-countdown__number { font-size: 1.8rem; }
    .hs-countdown__sep { font-size: 1.2rem; padding-bottom: 0.6rem; }

    .hs-section { padding: 3.5rem 0; }

    .hs-offer-grid { grid-template-columns: 1fr; }
    .hs-plans-grid { grid-template-columns: 1fr; }
    .hs-testimonials { grid-template-columns: 1fr; }

    .hs-urgency__stats { grid-template-columns: 1fr; gap: 1.5rem; }

    .hs-trust-badges { flex-direction: column; align-items: center; gap: 0.6rem; }

    .hs-cta--lg { font-size: 1rem; padding: 0.9rem 2rem; }

    .hs-cta-final { padding: 3rem 1rem; }
    .hs-cta-final__claim { width: 180px; }

    .hs-footer__ecoma { height: 24px; }
    .hs-footer__cace { height: 32px; }
}

@media (max-width: 480px) {
    .hs-hero__claim { width: 210px; }
    .hs-hero__title { font-size: 1.35rem; }
    .hs-hero__badge { width: 80px; }
    .hs-countdown__unit { min-width: 44px; }
    .hs-countdown__number { font-size: 1.5rem; }
}
