/* ============================================================
   LifeOS Sales Page — sales-page.css
   WordPress Template Stylesheet
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
    --yellow:      #F5C518;
    --yellow-dark: #E6B800;
    --red:         #E53935;
    --dark-bg:     #111111;
    --dark-card:   #1A1A1A;
    --white:       #FFFFFF;
    --off-white:   #F8F8F8;
    --text-dark:   #1A1A1A;
    --text-mid:    #444444;
    --text-light:  #CCCCCC;
    --border:      #E0E0E0;
    --font-head:   'Oswald', sans-serif;
    --font-body:   'Open Sans', sans-serif;
    --max-w:       860px;
    --radius:      6px;
    --shadow:      0 4px 20px rgba(0,0,0,0.12);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.lifeos-sales-page {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

/* Hide default WP header/footer if present */
body.lifeos-sales-page #masthead,
body.lifeos-sales-page #colophon,
body.lifeos-sales-page .site-header,
body.lifeos-sales-page .site-footer { display: none !important; }

/* ── UTILITIES ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffdc3f !important;
    color: #000 !important;
    font-family: "Barlow", sans-serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 28px 40px !important;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245,197,24,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 36px;
    border: 2px solid var(--text-dark);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}
.btn-secondary:hover { background: var(--text-dark); color: var(--white); }

.btn-xl { font-size: 1.25rem; padding: 22px 48px; }

/* ============================================================
   SECTION 1 — HERO
============================================================ */
.hero-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url(../images/home-bg.jpg);
    background-repeat: no-repeat;
    background-position: 0% 3%;
    background-size: cover;
}

.hero-logo {
    margin: 36px auto 30px;
    position: relative;
}
.hero-logo .logo-img {
    width: 181px;
    height: auto;
    object-fit: contain;
}
/* Fallback text logo if image missing */
.hero-logo:not(:has(img[src]:not([src=""]))):before {
    content: 'LifeOS';
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
}

.hero-headline {
    font-family: "Barlow", sans-serif;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 72px;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.hero-subheadline {
    font-family: 'Barlow';
    font-size: 32px;
    font-weight: 900;
    color: #eacf93;
    font-style: italic;
    max-width: 74%;
    margin: 0 auto 40px;
    line-height: 32px;
    position: relative;
    z-index: 1;
}

/* Video Wrapper */
.hero-video-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.video-embed-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
}
.video-embed-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.video-logo-overlay img { height: 32px; width: auto; }
.video-logo-overlay p {
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0;
}

/* ============================================================
   SECTION 2 — OPT-IN FORM
============================================================ */
.optin-section {
    background: var(--white);
    padding: 60px 20px 20px;
    text-align: center;
}

.section-title {
    font-family: "Barlow", sans-serif;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.optin-form-wrapper {
    max-width: 944px;
    margin: 0 auto;
}

.optin-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 5px; text-align: left; margin-bottom: 20px; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
}
.form-group input,
.final-cta-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid transparent !important;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    /* outline: none; */
}
.form-group input:focus,
.final-cta-form input:focus {
    border: 1px solid #ffdc3f;;
    /* box-shadow: 0 0 0 3px rgba(245,197,24,0.2); */
}
.optin-form button.btn-primary:hover {
    background: #ffdc3f !important;
    box-shadow: none;
}
/* Pain section */
.pain-section h2.section-title {
    color: #cc0000;
    font-size: 38px;
    line-height: 38px;
    max-width: 80%;
    margin: 10px auto 30px;
}
.pain-section h2.section-title i {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: inherit;
}

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: self-end;
    gap: 12px;
    justify-content: space-between;
}
.urgency-label {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    min-width: 330px;
}
.capacity-meter {
    text-align: right;
}
.capacity-meter img
{
    max-width: 80%;
    height: auto;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: end;
    gap: 8px;
}
.countdown-block, .countdown-sep {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
}
.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 50px !important;
    padding: 10px 20px;
    min-width: 72px;
}
.countdown-number {
    line-height: 1;
}
.countdown-label {
    font-size: 28px;
}
.countdown-sep {
    font-size: 45px;
}
.countdown-dark .countdown-block { background: rgba(255,255,255,0.1); }
.countdown-dark .countdown-sep { color: var(--white); }

/* ============================================================
   SECTION 3 — TRUST LOGOS
============================================================ */
.trust-logos-section
{
    background: #000;
    padding: 30px;
    text-align: center;
}
.trust-label {
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.logos-row img {
    max-width: 80%;
}
.trust-logo-text.divergent { font-style: italic; }
.trust-logo-text.holiday { letter-spacing: -0.01em; }
.trust-logo-text.washit { font-weight: 800; }

/* ============================================================
   SECTION 4 — PAIN (Chart)
============================================================ */
.pain-section {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
}
.pain-warning {
    font-family: var(--font-head);
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    line-height: 1.4;
}
.chart-wrapper { display: flex; justify-content: center; }
.chart-image-box {

}
.chart-img {
}

/* Annotation overlays */
.chart-annotation {
    position: absolute;
    font-family: 'Caveat', cursive, var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.85);
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}
.left-annotation  { bottom: 22%; left: -8%; transform: rotate(-5deg); }
.right-annotation { top: 20%; right: -6%; transform: rotate(4deg); }

/* ============================================================
   SECTION 5 — MID CTA
============================================================ */
.mid-cta-section {
    padding: 0 0;
    text-align: center;
}

/* ============================================================
   SECTION 6 — BONUSES
============================================================ */
.bonus-section {
    padding: 24px 0 0;
    text-align: center;
}
.bonus-section h2.section-title {
    max-width: 80%;
    margin: 0 auto 60px;
    line-height: 36px;
}
.bonus-section h2.section-title i {
    font-size: 36px;
    font-family: inherit;
    font-weight: inherit;
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 24px;
    margin-bottom: 70px;
    justify-content: center;
}
@media (max-width: 640px) { .bonus-grid { grid-template-columns: 1fr; } }


.bonus-card {
    background: #ffd800;
    border-radius: 4px;
    padding: 10px 25px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.bonus-card a {
    display: inline-block;
}
.bonus-card a img {
    width: 46px;
    display: inline-block;
}
.bonus-card a span {
    vertical-align: top;
    font-size: 36px;
    font-weight: 800;
    font-family: "Barlow", sans-serif;
    color: #000;
    line-height: 50px;
}
.bonus-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.bonus-card--highlight {
    background: var(--dark-bg);
    border-color: var(--yellow);
    color: var(--white);
}
.bonus-badge {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.bonus-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.bonus-value {
    font-size: 0.85rem;
    color: #888;
}
.bonus-card--highlight .bonus-value { color: var(--text-light); }
.bonus-value strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--yellow);
}

/* Features list */
.features-list {
    list-style: none;
    text-align: left;
    max-width: 680px;
    margin: 0 auto 44px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.features-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-mid);
}
.check-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.features-list li span {
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #000;
    line-height: 28px;
}
.features-list li span img {
    width: 32px;
    display: inline-block;
    vertical-align: text-top;
}
.features-list li span a {
    color: #f2bc15;
    font-weight: 400;
    font-style: italic;
}
/* Product images row */
.product-images-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.product-images-row img {
    transition: transform 0.2s;
}
.product-images-row img:hover { transform: scale(1.05); }

.product-content-row {
    font-family: "Barlow", sans-serif;
}
.product-content-row p {
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 900;
    line-height: 30px;
}
.product-content-row p.ash-bg {
    background: #000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-style: normal;
    padding: 26px 0;
    border: 4px solid #f2bc45;
    max-width: 70%;
    margin: 0 auto;
}
.product-texts-row {
    text-align: left;
    max-width: 70%;
    margin: 44px auto 0;
}

.product-texts-row p {
    font-size: 22px;
    font-weight: 300;
    line-height: 22px;
    color: #000;
}

.product-texts-row p span {
    margin-bottom: 20px;
    display: block;
}
/* Testimonial quote */
.testimonial-quote {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--yellow);
    padding: 10px 0 10px 20px;
    margin: 0 auto 28px;
    max-width: 560px;
    text-align: left;
}

/* ============================================================
   SECTION 7 — WHO IS THIS FOR
============================================================ */
.who-for-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    padding: 60px 20px;
}
.who-for-title {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 36px;
}
.who-for-list { display: flex; flex-direction: column; gap: 28px; max-width: 680px; margin: 0 auto; }
.who-for-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.who-for-role {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yellow-dark);
    margin-bottom: 6px;
}
.who-for-value {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--red);
    margin-bottom: 8px;
}

/* ============================================================
   SECTION 8 — TOTAL VALUE (Dark)
============================================================ */
.total-value-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.total-value-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(245,197,24,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.total-value-label {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}
.total-value-label del { color: #888; }
.total-value-headline {
    font-family: var(--font-head);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.total-value-sub {
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SECTION 9 — TESTIMONIALS (White)
============================================================ */
.testimonials-section {
    background: var(--white);
    padding: 70px 20px;
    text-align: center;
}
.testimonials-section h2.section-title {
    font-size: 72px;
    line-height: 72px;
}
.testimonials-section h3 {
    margin: 0 auto 30px;
}
.testimonial-note {
    font-size: 0.88rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 18px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    margin-bottom: 14px;
}
.testimonial-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 10px;
}
.testimonial-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--yellow-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.testimonials-section .optin-form {
    margin: 24px auto 0px;
}
.testimonials-section .optin-form button {
    max-width: 350px;
    margin: 0 auto;
    font-size: 36px !important;
    line-height: 46px;
    padding: 10px 25px !important;
}
.testimonials-section .optin-form button span {
    display: none;
}

/* ============================================================
   SECTION 10 — BEST SYSTEM (Dark)
============================================================ */
.best-system-section {
    background: #000;
    border: 10px solid #eacf93;
    padding: 80px 20px 60px;
    text-align: center;
}
.best-system-section h2 {
    font-size: 72px;
    line-height: 72px;
    color: #fff;
    margin-bottom: 20px;
}
.best-system-section h3 {
    margin-bottom: 40px !important;
}
.best-system-section h3 i {
    color: #eacf93;
}
.best-system-headline {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}
.best-system-sub {
    font-family: var(--font-head);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 48px;
}
.best-system-section h3.unlock-sub-heading {
    color: #fff;
    margin-bottom: 10px !important;
}

/* Three Pillars */
.three-pillars {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 35px;
    justify-content: center;
    margin: 0 auto 20px;
}
@media (max-width: 640px) { .three-pillars { grid-template-columns: 1fr; } }

.pillar {
    padding: 28px 15px;
    transition: background 0.2s, border-color 0.2s;
}
.pillar:hover { background: rgba(245,197,24,0.08); border-color: var(--yellow); }
.pillar-icon { font-size: 2rem; margin-bottom: 12px; }
.pillar h4 {
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}
.pillar p { 
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 20px;
}

.unlock-sub-heading {
}

/* Final CTA Form */
.final-cta-form { }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.best-system-section .countdown-wrapper {
    justify-content: center;
    color: #fff;
}
.best-system-section .form-group label {
    color: #fff;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.final-cta-form input {
    padding: 14px 16px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}
.final-cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.final-cta-form input:focus { border-color: var(--yellow); }
.final-cta-form .btn-primary { margin-bottom: 20px; }

/* ============================================================
   SECTION 11 — Total value text
============================================================ */
section.total-value-text-section {
    text-align: center;
    position: relative;
    padding: 100px 20px;
    background: #efefef;
    margin-bottom: 20px;
}
section.total-value-text-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 103px;
    background-image: url("https://afzal.iqlasit.com/wp-content/uploads/2026/05/divider-scaled.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
section.total-value-text-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 103px;
    background-image: url("https://afzal.iqlasit.com/wp-content/uploads/2026/06/wave-bg-img-end-scaled.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
}
section.total-value-text-section h2 {
    font-size: 72px;
    line-height: 72px;
}

section.total-value-text-section h3, .testimonials-section h3, .best-system-section h3 {
    color: #cc0000;
    font-weight: 900;
    font-size: 38px;
    line-height: 38px;
    max-width: 90%;
    margin: 0 auto;
    letter-spacing: 0;
}

section.total-value-text-section h3 i, .testimonials-section h3 i, .best-system-section h3 i {
    font-family: "Barlow", sans-serif;
    font-size: inherit;
    font-weight: inherit;
}


/* ============================================================
   SECTION 11 — STILL UNSURE + VIDEO TESTIMONIALS
============================================================ */
.unsure-section {
    padding: 60px 20px;
    text-align: center;
}
.unsure-section .section-title {
    font-size: 72px;
    line-height: 72px;
}
.unsure-sub {
    font-size: 0.9rem;
    color: #cc0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.unsure-sub em {
    font-size: 38px;
    font-weight: 900;
    line-height: 38px;
    font-family: "Barlow", sans-serif;
}

/* ── VIDEO TESTIMONIALS GRID ── */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

/* ── INDIVIDUAL VIDEO CARD ── */
.yt-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.yt-video-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 36px rgba(0,0,0,0.28);
}

/* ── THUMBNAIL ── */
.yt-thumbnail-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    background: #111;
    display: block !important;
}
.yt-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.yt-video-card:hover .yt-thumb-img {
    transform: scale(1.04);
}

/* ── PLAY BUTTON ── */
.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 72px;
    height: 52px;
    z-index: 3;
    transition: transform 0.18s ease, opacity 0.18s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.yt-play-btn:hover { transform: translate(-50%, -50%) scale(1.12); }
.yt-play-btn svg { width: 100%; height: 100%; }
.yt-play-bg { fill: #FF0000; }
.yt-play-arrow { fill: #FFFFFF; }
.yt-video-card:hover .yt-play-bg { fill: #CC0000; }

/* ── BOTTOM BAR ── */
.yt-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    gap: 10px;
}

/* Channel info (left side) */
.yt-channel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.yt-channel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #1A1A2E;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.yt-channel-icon svg { width: 100%; height: 100%; }
.yt-channel-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.yt-video-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.yt-channel-name {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}

/* "Watch on YouTube" badge (right side) */
.yt-watch-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,30,30,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 5px 12px;
    flex-shrink: 0;
    white-space: nowrap;
}
.yt-watch-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.yt-logo-svg {
    height: 14px;
    width: auto;
}

/* ── IFRAME (active state) ── */
.yt-iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #000;
}
.yt-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .yt-play-btn { width: 58px; height: 42px; }
    .yt-bottom-bar { padding: 8px 10px; }
    .yt-video-title { font-size: 0.75rem; }
    .yt-channel-name { font-size: 0.67rem; }
    .yt-watch-text { font-size: 0.67rem; }
    .yt-logo-svg { height: 12px; }
    .yt-channel-icon { width: 30px; height: 30px; }
}

/* ============================================================
   FOOTER
============================================================ */
.sales-footer {
    background: #000;
    color: var(--text-light);
    padding: 36px 20px;
    text-align: center;
    border-top: 2px solid rgba(245,197,24,0.2);
}
.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 12px;
}
.footer-copy { 
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    color: #a5aab7;
    line-height: 15.6px; 
}

/* ============================================================
   Downsell page styles
============================================================ */
body.page-template-downsell .hero-section::before {
    background-image: url("https://afzal.iqlasit.com/wp-content/uploads/2026/05/exif_strip20260107-1-jd8yop.jpeg");
    background-position: 0 -8%;
}
.popover-bar {
    background: #cc0000;
    /* z-index: 99999; */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.popover-bar p {
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 17px;
    padding: 20px;
}

body.page-template-downsell h1.hero-headline {
    margin: 60px auto 16px;
}

body.page-template-downsell p.hero-subheadline {
    color: #ffd800;
}

body.page-template-downsell p.hero-subheadline span {text-decoration: underline;}

/* Subscription area */

.subscription-area {
    display: flex;
    justify-content: space-between;
}

.subs-content-area .section-title {
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.subs-content-area .subscribenow {
    text-transform: uppercase;
    font-weight: 900;
    display: block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    color: #fff;
    margin-bottom: 16px;
}

section.subscription-section {
    background: #000;
    padding: 80px 0;
}

.subs-content-area {
    padding: 0 40px;
}

.subs-content-area form {
    background: #fff;
    padding: 40px 30px;
    flex-direction: row;
}

.subs-content-area form .form-group {
    min-width: 300px;
}

.subs-content-area form button.btn-primary {
    padding: 19px !important;
}

.spot-remaining-section .urgency-bar {
    flex-direction: column;
    align-items: center;
}

.spot-remaining-section .capacity-meter img {
    max-width: 414px;
    width: auto;
}

section.spot-remaining-section {
    padding: 46px;
}
.spot-remaining-section .urgency-bar a {
    color: #eacf93;
    font-family: 'Inter';
}

.spot-remaining-section .urgency-bar a:hover {
    text-decoration: underline;
}

/* ============================================================
   Confirmation page styles
============================================================ */

body.page-template-confirmation .hero-section {
    background: #09090a;
}

body.page-template-confirmation .hero-section::before {
    content: none;
}

body.page-template-confirmation p.hero-subheadline {
    font-size: 30px;
    line-height: 30px;
    color: #cc0000;
    font-style: normal;
}

body.page-template-confirmation .hero-content .product-images-row img {
    width: 798px;
}

body.page-template-confirmation .product-content-row {
    font-family: "Barlow", sans-serif;
    max-width: 883px;
    margin: 0 auto;
    /* display: block; */
    /* width: 100%; */
}

body.page-template-confirmation .hero-content .product-content-row p {
    background: #ffd800;
    border-radius: 3px;
    border-color: #ffd800;
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 36px;
    color: #000;
    text-transform: uppercase;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 21px 0;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 768px) {
    .hero-section::before {
        background-position: 63% 8%;
    }
    .hero-section { padding: 32px 16px 48px; }
    .optin-section, .mid-cta-section, .bonus-section,
    .who-for-section, .total-value-section,
    .testimonials-section, .best-system-section,
    .unsure-section { padding-top: 50px; padding-bottom: 50px; }
    .countdown-block { min-width: 60px; padding: 10px 14px; }
    .countdown-number { font-size: 1.6rem; }
    .chart-annotation { display: none; }
    .bonus-grid, .three-pillars {
        grid-template-columns: repeat(3, 33%);
    }
    img.chart-img {
        max-width: 90%;
    }
    .product-images-row img {
        max-width: 100%;
    }

    .container {
        max-width: 100% !important;
    }
    
    .multi-device-area img {
        max-width: 300px;
    }
    
    .subscription-area {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .subs-content-area {
        padding: 40px;
    }

    section.spot-remaining-section h2.section-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section::before {
        background-position: 80% 8%;
    }
    .logos-row { gap: 18px; }
    .trust-logo-text { font-size: 0.9rem; }
    .btn-primary { font-size: 1rem; padding: 16px 24px; }
    .video-logo-overlay { flex-direction: column; gap: 6px; }

    /* Mobile devices */
    .hero-headline, .section-title {
        font-size: 52px !important;
        line-height: 56px !important;
    }
    
    .hero-subheadline {max-width: initial;font-size: 24px;line-height: 28px;}
    
    .optin-section .container {
        max-width: initial;
        padding: 0;
    }
    
    button.btn-primary, .testimonials-section .optin-form button {
        font-size: 22px !important;
    }
    
    .urgency-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .capacity-meter {
        text-align: center;
    }
    
    .capacity-meter img {
        max-width: 100%;
    }
    
    .countdown-label {font-size: 18px;}
    
    .product-images-row img, img.chart-img, .spot-remaining-section .capacity-meter img {
        max-width: 100%;
    }

    .logos-row img {
        max-width: 90%;
    }
    section.total-value-text-section h2 {
        font-size: 42px;
        line-height: 48px;
    }
    section.total-value-text-section h3 {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    .trust-logos-section {
        padding: 30px 0;
    }
    
    .trust-logos-section .container {
        padding: 0;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    h2.section-title {
        max-width: 100% !important;
    }

    .best-system-section .section-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .best-system-section h3 {
        font-size: 28px;
    }

    .bonus-grid, .three-pillars {
        grid-template-columns: repeat(1, 100%);
    }

    .container {
        max-width: 100% !important;
    }
    .subscription-area {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .subs-content-area {
        padding: 0;
        max-width: 100%;
    }
    .spot-remaining-section .urgency-bar h2 {
        text-align: center;
    }

    .popover-bar p {
        font-size: 12px;
        padding: 12px;
    }
    body.page-template-downsell .hero-headline     {
        font-size: 36px !important;
        line-height: 36px !important;
    }
    body.page-template-downsell .hero-section::before {
        background-position: 83% 0%;
        background-size: auto;
    }
    .subs-content-area .section-title, section.spot-remaining-section h2.section-title {
        font-size: 36px !important;
        line-height: 36px !important;
    }
    
    .subs-content-area form {
        flex-direction: column;
    }
    
    .subs-content-area form .form-group {
        min-width: 100%;
    }
    
    .spot-remaining-section .urgency-bar {
        display: block;
        text-align: center;
    }

    section.spot-remaining-section {
        padding: 46px 0;
    }

}

.sticky-cta-bar {
    display: none !important;
}

/* ============================================================
   PRINT
============================================================ */
@media print {
    .btn-primary, .btn-secondary, .countdown-wrapper { display: none; }
    body.lifeos-sales-page { background: white; color: black; }
}
