/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: 16px;
    background: #0a1a0f;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f4f0e8;
    color: #1e1e1e;
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --green-dark:   #0d2417;
    --green-mid:    #1a4731;
    --green-light:  #2d6a4f;
    --amber:        #c8901a;
    --amber-light:  #e5a820;
    --water:        #1b5e7b;
    --cream:        #f4f0e8;
    --cream-dark:   #e8e2d6;
    --white:        #ffffff;
    --text-dark:    #1a1a1a;
    --text-mid:     #444444;
    --radius:       12px;
    --shadow:       0 4px 20px rgba(0,0,0,0.18);
}

/* ===== COMMON COMPONENTS ===== */
.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 24px 16px 8px;
}
.section-title span { color: var(--amber); }

.fish-divider {
    text-align: center;
    font-size: 1.4rem;
    color: var(--green-light);
    padding: 8px 0;
    opacity: 0.5;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    display: block;
    width: calc(100% - 32px);
    max-width: 480px;
    margin: 16px auto;
    padding: 17px 24px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(200,144,26,0.45);
    transition: transform .15s, box-shadow .15s;
    position: relative;
    overflow: hidden;
}
.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn-cta:active { transform: scale(0.97); }
.btn-cta p { margin: 0; }

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(170deg, var(--green-dark) 0%, #122e1c 40%, #0a1f13 100%);
    color: var(--white);
    padding: 0 0 28px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}
.hero-wave { display: none; }

.hero-texture {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 0;
}
.hero-badge,
.hero-inner,
.hero-wave { position: relative; z-index: 1; }

.hero-badge {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 9px 16px;
}

.hero-inner { padding: 24px 16px 0; }

.hero h1 {
    font-size: 1.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-align: center;
    color: var(--white);
}
.hero h1 span { color: var(--amber-light); }

.hero-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: #c0392b;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    margin: 10px auto 0;
}

.hero-logo {
    display: block;
    max-width: 280px;
    margin: 16px auto;
}

/* ===== VARIATION CARDS ===== */
.var-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 16px 6px;
}
.var-single {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.var-card {
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 0 0 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color .18s, background .18s, transform .12s;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.var-card:active { transform: scale(0.97); }
.var-card.selected {
    border-color: var(--amber);
    background: rgba(200,144,26,0.18);
    box-shadow: 0 0 0 1px var(--amber);
}
.var-card .var-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
}
.var-card .var-name {
    padding: 0 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    line-height: 1.3;
}
.var-card .var-old {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    text-decoration: line-through;
    margin-bottom: 2px;
}
.var-card .var-price {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--amber-light);
    line-height: 1;
}
.var-card .var-curr {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--amber-light);
}
.var-card .var-save {
    display: inline-block;
    margin: 6px 8px 0;
    background: rgba(192,57,43,0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
}
/* ===== PRODUCT SLIDER ===== */
.var-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 14px;
    touch-action: pan-y;
    user-select: none;
}
.var-slides {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.var-slide {
    width: 100%;
    flex-shrink: 0;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}
.var-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.var-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    padding: 0;
}
.var-dot.active {
    background: var(--amber);
    width: 22px;
    border-radius: 4px;
}
.var-card.selected .var-check { display: flex; }
.var-check {
    display: none;
    position: absolute;
    top: 7px; right: 7px;
    width: 18px; height: 18px;
    background: var(--amber);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    font-weight: 900;
}

/* ===== TIMER ===== */
.timer-wrap {
    text-align: center;
    padding: 10px 16px 4px;
}
.timer-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.timer {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-count {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    width: 56px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amber-light);
    font-variant-numeric: tabular-nums;
}
.timer-text {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
}
.timer-sep {
    color: var(--amber-light);
    font-size: 1.4rem;
    font-weight: 900;
    align-self: flex-start;
    padding-top: 10px;
}

/* ===== STOCK BADGE ===== */
.stock-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px 16px 20px;
    background: rgba(200,144,26,0.15);
    border: 1px solid rgba(200,144,26,0.35);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.stock-badge b { color: var(--amber-light); font-size: 1rem; }

/* ===== DESCRIPTION SECTION ===== */
.description-section {
    background: var(--cream);
    padding: 36px 0 20px;
}
.description-section .section-title { color: var(--green-dark); }

.desc-photo { margin: 16px 0; padding: 0 16px; }
.desc-photo img { width: 100%; }

.desc-text {
    padding: 0 16px 16px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.desc-text strong { color: var(--green-dark); }

.feature-list {
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid var(--amber);
    margin: 12px 16px;
    padding: 4px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0ede7;
    font-size: 0.9rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '✔';
    color: var(--green-light);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== CHARACTERISTICS SECTION ===== */
.char-section {
    background: var(--cream);
    padding: 20px 0 28px;
}
.char-section .section-title { color: var(--green-dark); }

.char-list {
    margin: 12px 16px 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.char-list li {
    padding: 12px 16px;
    border-bottom: 1px solid #f0ede7;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.char-list li:last-child { border-bottom: none; }
.char-list li b {
    color: var(--green-dark);
    font-weight: 700;
    flex-shrink: 0;
}
.char-list li span { color: var(--text-mid); text-align: right; }
.char-check { color: #27ae60; font-size: 1.1rem; }

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(170deg, var(--green-dark) 0%, #122e1c 100%);
    padding: 32px 0 28px;
}
.benefits-section .section-title { color: var(--white); }
.benefits-section .section-title span { color: var(--amber-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}
.benefit-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    transition: background .2s;
}
.benefit-card:active { background: rgba(255,255,255,0.12); }
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    margin: 0 auto 10px;
    background: rgba(200,144,26,0.12);
    border-radius: 50%;
    border: 1px solid rgba(200,144,26,0.25);
}
.benefit-icon svg { display: block; }
.benefit-card h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.benefit-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ===== CORPORATE SECTION ===== */
.corporate-section {
    background: linear-gradient(170deg, #0d2417 0%, #1a3a2a 100%);
    padding: 32px 16px 28px;
    color: var(--white);
}
.corporate-section h2 {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin-bottom: 6px;
}
.corporate-section h2 strong { color: var(--amber-light); }
.corporate-subtitle {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.corporate-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,144,26,0.3);
    border-radius: var(--radius);
    padding: 18px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.corporate-card:last-of-type { margin-bottom: 0; }
.corp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,144,26,0.12);
    border-radius: 10px;
    border: 1px solid rgba(200,144,26,0.25);
}
.corp-body h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--amber-light);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.corp-body p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}
.corporate-note {
    margin-top: 18px;
    background: rgba(200,144,26,0.12);
    border: 1px solid rgba(200,144,26,0.35);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.6;
}
.corporate-note b { color: var(--amber-light); }

/* ===== CORP CAROUSEL ===== */
.corp-carousel-wrap {
    margin: 22px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.corp-carousel-track {
    display: flex;
    gap: 8px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    cursor: grab;
    user-select: none;
}
.corp-carousel-track:active { cursor: grabbing; }
.corp-carousel-slide {
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
}
.corp-carousel-slide img {
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.05);
}
.corp-carousel-slide .corp-slide-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    border: 1px dashed rgba(200,144,26,0.2);
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    text-align: center;
    padding: 16px;
}
.corp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.corp-carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(200,144,26,0.3);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}
.corp-carousel-dot.active {
    background: var(--amber-light);
    transform: scale(1.3);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--cream);
    padding: 28px 0;
}
.reviews-section h2 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.reviews-section h2 strong { color: var(--amber); }

.reviews-wrap {
    background: var(--white);
    border-radius: var(--radius);
    margin: 0 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}
.review-item {
    padding: 16px;
    border-bottom: 1px solid #f0ede7;
}
.review-item:last-child { border-bottom: none; }
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.review-stars { font-size: 0.75rem; color: #f39c12; margin-top: 1px; }
.review-text {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ===== ORDER STEPS ===== */
.steps-section {
    background: linear-gradient(170deg, var(--green-dark) 0%, #0f2819 100%);
    padding: 32px 0 28px;
}
.steps-section .section-title { color: var(--white); }
.steps-section .section-title span { color: var(--amber-light); }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}
.step-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
}
.step-num {
    width: 32px;
    height: 32px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 10px;
}
.step-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}
.step-card h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 5px;
    letter-spacing: 0.04em;
}
.step-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ===== ORDER FORM SECTION ===== */
.order-section {
    background: linear-gradient(170deg, var(--green-dark) 0%, #071510 100%);
    color: var(--white);
    padding: 0 0 32px;
    position: relative;
}
.order-texture {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 0;
}
.order-section::before,
.order-inner { position: relative; z-index: 1; }
.order-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}

.order-inner { padding: 28px 16px 0; }
.order-section h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}
.order-section h2 span { color: var(--amber-light); }

.order-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-field {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255,255,255,0.09);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--white);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-field::placeholder { color: rgba(255,255,255,0.4); }
.form-field:focus { border-color: var(--amber); background: rgba(255,255,255,0.13); }

select.form-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23e5a820' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
select.form-field option {
    background: #1a3a2a;
    color: var(--white);
}

.btn-order {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(200,144,26,0.5);
    transition: transform .15s;
}
.btn-order:active { transform: scale(0.97); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green-dark);
    padding: 16px;
    text-align: center;
    border-top: 2px solid rgba(200,144,26,0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
}
.site-footer a {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    text-decoration: underline;
}

/* ===== FOOTER SPOILER ===== */
.footer-spoiler {
    width: 100%;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}
.footer-spoiler summary {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.footer-spoiler summary::-webkit-details-marker { display: none; }
.footer-spoiler summary::after {
    content: '▾';
    transition: transform .2s;
    font-size: 0.8rem;
}
.footer-spoiler[open] summary::after { transform: rotate(180deg); }
.footer-spoiler-body {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-spoiler-body p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.5;
}
.footer-spoiler-body p b { color: rgba(255,255,255,0.45); }

/* ===== SECTION DIVIDERS ===== */
.description-section,
.char-section,
.benefits-section,
.corporate-section,
.reviews-section,
.steps-section {
    position: relative;
}
.description-section::before,
.char-section::before,
.benefits-section::before,
.corporate-section::before,
.reviews-section::before,
.steps-section::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--amber-light), var(--amber), transparent);
}

/* ===== PHOTO FRAMES ===== */
.hero-logo,
.desc-photo img,
.char-section > div > img {
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    border: 2px solid var(--amber);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== PHOTO BREAK SECTION ===== */
.photo-cta {
    position: relative;
    padding: 0 16px;
    max-width: 600px;
    margin: 0 auto;
}
.photo-cta img {
    display: block;
    margin: 0 auto;
    width: 100%;
    border-radius: 14px;
    border: 2px solid var(--amber);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.photo-cta-btn {
    position: relative;
    z-index: 1;
    margin-top: -4px;
    padding: 0 16px 20px;
    background: var(--cream);
}

/* ===== CHAR IMAGE WRAP ===== */
.char-img-wrap {
    padding: 0 16px;
    margin-bottom: 4px;
}
.char-img-wrap img { width: 100%; }

/* ===== ORDER SECTION HELPERS ===== */
.order-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
.order-discount-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}
.order-discount {
    background: #c0392b;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
}

/* ===== HERO BADGE FLEX ===== */
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 360px) {
    .hero h1 { font-size: 1.55rem; }
    .timer-count { width: 48px; height: 44px; font-size: 1.25rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}
@media (min-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .var-price { font-size: 1.7rem; }
}
@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SCROLL REVEAL ===== */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
