/* ================================================================
   SYNOSHI POWER SCRUBBER — ADVERTORIAL PRELANDER
   Stylesheet v1.0
================================================================ */

/* ---------------------------------------------------------------
   RESET & BASE
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.sya-body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #f5f5f0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ---------------------------------------------------------------
   DISCLAIMER BAR
--------------------------------------------------------------- */
.disclaimer-bar {
    background: #1a1a1a;
    color: #f0c040;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #f0c040;
}
.disclaimer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.disclaimer-icon { font-size: 1rem; flex-shrink: 0; }

/* ---------------------------------------------------------------
   SITE HEADER
--------------------------------------------------------------- */
.site-header {
    background: #ffffff;
    border-bottom: 3px solid #e8b400;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}
.brand-icon { color: #e8b400; font-size: 1.3rem; }
.header-date { font-size: 0.78rem; color: #888; font-style: italic; }

/* ---------------------------------------------------------------
   ARTICLE HERO
--------------------------------------------------------------- */
.article-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}
.hero-image-wrapper {
    position: absolute;
    inset: 0;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 48px;
    width: 100%;
    text-align: center;
}
.article-category {
    display: inline-block;
    background: #e8b400;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.hero-headline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-subheadline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.65;
}
.author-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8b400;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; text-align: left; }
.author-name { font-size: 0.85rem; font-weight: 700; color: #fff; }
.author-date { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ---------------------------------------------------------------
   MAIN ARTICLE LAYOUT
--------------------------------------------------------------- */
.article-main { background: #ffffff; }

.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-section {
    padding: 52px 0;
    border-bottom: 1px solid #ebebeb;
}
.article-section:last-child { border-bottom: none; }

/* ---------------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------------- */
h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e8b400;
}
h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}
p {
    font-size: 1.02rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.75;
}
p:last-child { margin-bottom: 0; }

.lead-paragraph {
    font-size: 1.12rem;
    font-style: italic;
    color: #444;
    border-left: 4px solid #e8b400;
    padding-left: 18px;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 32px;
}

/* ---------------------------------------------------------------
   PULLQUOTE
--------------------------------------------------------------- */
.pullquote {
    background: #fffbec;
    border-left: 5px solid #e8b400;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.pullquote blockquote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}
.pullquote cite {
    font-size: 0.82rem;
    color: #888;
    font-style: normal;
}

/* ---------------------------------------------------------------
   TWO-COLUMN LAYOUT
--------------------------------------------------------------- */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    margin: 24px 0;
}
@media (max-width: 680px) {
    .two-col-layout { grid-template-columns: 1fr; }
}
.section-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.image-caption {
    font-size: 0.78rem;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* ---------------------------------------------------------------
   PROBLEM SYMPTOMS BOX
--------------------------------------------------------------- */
.symptoms-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border: 2px solid #e8b400;
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
}
.symptoms-box h3 {
    text-align: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .symptoms-grid { grid-template-columns: 1fr; }
}
.symptom-item {
    background: #fff;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.symptom-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.symptom-item p { font-size: 0.85rem; color: #555; margin: 0; line-height: 1.4; }
.symptoms-note {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #c0392b;
    margin-top: 16px;
    margin-bottom: 0;
}

/* ---------------------------------------------------------------
   BEFORE / AFTER SECTION
--------------------------------------------------------------- */
.before-after-section .before-after-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin: 24px 0;
}

/* ---------------------------------------------------------------
   STAT ROW
--------------------------------------------------------------- */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0 0;
}
@media (max-width: 500px) {
    .stat-row { grid-template-columns: 1fr; }
}
.stat-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    border-bottom: 4px solid #e8b400;
}
.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e8b400;
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: #ccc;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------------------------------------------------------------
   PRODUCT INTRO
--------------------------------------------------------------- */
.product-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 24px;
}
@media (max-width: 680px) {
    .product-intro-layout { grid-template-columns: 1fr; }
    .product-intro-image { order: -1; }
}
.product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ---------------------------------------------------------------
   BENEFITS GRID
--------------------------------------------------------------- */
.benefits-header { text-align: center; margin-bottom: 36px; }
.benefits-subheading { font-size: 1rem; color: #666; max-width: 600px; margin: 0 auto; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 720px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid #e8b400;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.benefit-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fffbec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.benefit-icon { font-size: 1.8rem; }
.benefit-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.55; }

/* ---------------------------------------------------------------
   HOW IT WORKS — STEPS
--------------------------------------------------------------- */
.steps-container { margin-top: 8px; }
.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}
.step-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Merriweather', Georgia, serif;
    color: #e8b400;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}
.step-content h3 { font-size: 1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; color: #555; margin: 0; }
.step-connector {
    width: 2px;
    height: 24px;
    background: #e8b400;
    margin-left: 29px;
    opacity: 0.4;
}

/* ---------------------------------------------------------------
   LIFESTYLE SECTION
--------------------------------------------------------------- */
.lifestyle-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 680px) {
    .lifestyle-layout { grid-template-columns: 1fr; }
}
.lifestyle-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ---------------------------------------------------------------
   KITCHEN CLEANING SECTION
--------------------------------------------------------------- */
.kitchen-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin: 24px 0;
}

/* ---------------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}
.testimonial-card-wide { grid-column: 1 / -1; }
.testimonial-image-wrap { height: 200px; overflow: hidden; }
.testimonial-image { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonial-content { padding: 20px; }
.stars { color: #e8b400; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-quote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #444;
    line-height: 1.65;
    margin-bottom: 12px;
}
.testimonial-author { font-size: 0.82rem; font-weight: 700; color: #888; }
.testimonial-disclaimer { font-size: 0.75rem; color: #aaa; font-style: italic; margin-top: 8px; }

/* ---------------------------------------------------------------
   COMPARISON TABLE
--------------------------------------------------------------- */
.comparison-table-wrapper { overflow-x: auto; margin-top: 24px; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.comparison-table th {
    background: #1a1a1a;
    color: #e8b400;
    padding: 12px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ebebeb;
    color: #444;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr.row-highlight td {
    background: #fffbec;
    font-weight: 700;
    color: #1a1a1a;
    border-left: 4px solid #e8b400;
}
.comparison-table tr:hover td { background: #fafafa; }
.comparison-table tr.row-highlight:hover td { background: #fff8e1; }

/* ---------------------------------------------------------------
   CTA BUTTONS
--------------------------------------------------------------- */
.cta-button {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 24px auto 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(39,174,96,0.4);
    transition: filter 0.15s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
    line-height: 1.3;
}
.cta-button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    text-decoration: none;
}
.cta-mid { margin-top: 28px; }

/* ---------------------------------------------------------------
   OFFER SECTION
--------------------------------------------------------------- */
.offer-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #e8b400;
}
@media (max-width: 500px) { .offer-box { padding: 32px 20px; } }
.offer-badge {
    display: inline-block;
    background: #e8b400;
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.offer-box h2 {
    color: #ffffff;
    border-bottom-color: #e8b400;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 16px;
}
.offer-description { color: #ccc; font-size: 1rem; max-width: 580px; margin: 0 auto 28px; }
.offer-description strong { color: #e8b400; }
.offer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 28px;
    text-align: left;
}
.offer-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ddd;
    font-size: 0.92rem;
}
.offer-check {
    color: #2ecc71;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.price-display {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.price-label { font-size: 0.85rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.08em; }
.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Merriweather', Georgia, serif;
    color: #e8b400;
    line-height: 1;
}
.price-note { font-size: 0.82rem; color: #888; }
.cta-main {
    font-size: 1.15rem;
    padding: 20px 36px;
    max-width: 560px;
    box-shadow: 0 8px 32px rgba(39,174,96,0.5);
}
.cta-sub-note { font-size: 0.8rem; color: #888; margin-top: 12px; }
.secure-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.secure-badge {
    font-size: 0.78rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ---------------------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------------------- */
.faq-list { margin-top: 8px; }
.faq-item {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: #fafafa;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Open Sans', sans-serif;
    transition: background 0.15s ease;
}
.faq-question:hover { background: #f0f0f0; }
.faq-question[aria-expanded="true"] { background: #fffbec; color: #1a1a1a; }
.faq-arrow {
    font-size: 0.75rem;
    color: #e8b400;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    border-top: 1px solid #ebebeb;
}

/* ---------------------------------------------------------------
   FINAL CTA SECTION
--------------------------------------------------------------- */
.final-cta-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}
.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 32px;
    max-width: 680px;
}
.final-cta-content h2 {
    color: #fff;
    border-bottom-color: #e8b400;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}
.final-cta-content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-final {
    font-size: 1.1rem;
    padding: 18px 32px;
    max-width: 520px;
    box-shadow: 0 6px 28px rgba(39,174,96,0.5);
}
.final-cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* ---------------------------------------------------------------
   SITE FOOTER
--------------------------------------------------------------- */
.site-footer {
    background: #111;
    color: #888;
    padding: 40px 20px;
}
.footer-inner { max-width: 860px; margin: 0 auto; }
.footer-disclaimer { margin-bottom: 24px; }
.footer-disclaimer p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}
.footer-disclaimer strong { color: #888; }
.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
}
.footer-links a { font-size: 0.8rem; color: #aaa; }
.footer-links a:hover { color: #e8b400; text-decoration: none; }
.footer-sep { color: #444; font-size: 0.8rem; }
.footer-copy { font-size: 0.75rem; color: #555; }

/* ---------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------------------------------------------- */
@media (max-width: 768px) {
    .article-hero { min-height: 360px; }
    .hero-content { padding: 40px 16px 36px; }
    .article-section { padding: 36px 0; }
    .offer-box { padding: 32px 20px; }
    .final-cta-content { padding: 36px 20px; }
}
@media (max-width: 480px) {
    .disclaimer-bar { font-size: 0.68rem; }
    .header-brand { font-size: 0.95rem; }
    .cta-button { font-size: 0.95rem; padding: 16px 20px; }
    .price-amount { font-size: 2.8rem; }
}
