:root {
    --primary-color: #ff3333; /* Strong Red for CTA */
    --primary-hover: #e60000;
    --secondary-color: #0b1c3a; /* Dark Blue for text/headings */
    --accent-color: #ffcc00; /* Yellow for highlights */
    --bg-light: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    padding-bottom: 80px; /* For sticky CTA */
}

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

/* Utilities */
.text-white { color: var(--white) !important; }
.text-dark { color: var(--secondary-color) !important; }
.bg-light { background-color: var(--bg-light); }
.margin-top { margin-top: 20px; }
.strike { text-decoration: line-through; opacity: 0.7; }

.highlight-text {
    color: var(--primary-color);
}

.highlight-bg {
    background-color: var(--accent-color);
    padding: 0 10px;
    display: inline-block;
    border-radius: 4px;
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-main {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.btn-main:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 51, 51, 0.4);
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    margin-top: 5px;
    opacity: 0.9;
}

.btn-sm {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sm:hover {
    background-color: var(--primary-hover);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 51, 51, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
    padding: 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.bundle-mockup {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.bundle-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Countdown */
.limited-offer {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px dashed var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.blink {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.5; }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}

.time-box small {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.colon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -20px;
}

/* Product Section */
.products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.product-img-wrapper {
    width: 100%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 258px;
}

.prod-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.book-cover {
    width: min(180px, 100%);
    aspect-ratio: 0.72;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 22px rgba(11, 28, 58, 0.22), inset -8px 0 14px rgba(0,0,0,0.12);
    transform: perspective(900px) rotateY(-10deg) rotateZ(4deg);
    color: #fff;
    background: linear-gradient(135deg, #22b8bd, #137b91);
    isolation: isolate;
}

.book-cover::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 11px;
    background: rgba(255,255,255,0.2);
    z-index: 2;
}

.book-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255,255,255,0.28), transparent 34%, rgba(0,0,0,0.12) 82%);
    pointer-events: none;
    z-index: 5;
}

.theme-yellow { background: linear-gradient(135deg, #ffd84d, #ffae2c); }
.theme-cyan { background: linear-gradient(135deg, #2dd4bf, #60a5fa); }
.theme-pink { background: linear-gradient(135deg, #fb7fbd, #d9468f); }
.theme-green { background: linear-gradient(135deg, #9fe870, #39b862); }
.theme-lime { background: linear-gradient(135deg, #c8f23f, #61ba4b); }
.theme-sky { background: linear-gradient(135deg, #b6ecff, #4fb7e8); }
.theme-orange { background: linear-gradient(135deg, #ffb35f, #f05c22); }
.theme-coral { background: linear-gradient(135deg, #ff8b4d, #ef3f2f); }
.theme-forest { background: linear-gradient(135deg, #b8d56a, #357245); }
.theme-olive { background: linear-gradient(135deg, #c7d46b, #7aa33f); }
.theme-sunny { background: linear-gradient(135deg, #ffe45e, #ff9d32); }

.book-cover-title {
    position: absolute;
    top: 17px;
    left: 18px;
    right: 12px;
    z-index: 4;
    display: grid;
    gap: 0;
    font-weight: 900;
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    line-height: 1;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.theme-yellow .book-cover-title span:nth-child(2),
.theme-cyan .book-cover-title span:nth-child(2),
.theme-sky .book-cover-title span:nth-child(2) {
    color: #ff3333;
}

.theme-yellow .book-cover-title span:nth-child(3),
.theme-sunny .book-cover-title span:nth-child(2),
.theme-sky .book-cover-title span:nth-child(1) {
    color: #0b1c3a;
}

.book-icons {
    position: absolute;
    left: 20px;
    top: 115px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.book-icons span {
    width: 25px;
    height: 21px;
    border: 3px solid rgba(255, 226, 76, 0.92);
    border-radius: 4px 4px 12px 12px;
}

.book-child {
    position: absolute;
    right: -8px;
    bottom: 19px;
    width: 58%;
    height: 64%;
    object-fit: cover;
    object-position: 50% 8%;
    border-radius: 999px 999px 0 0;
    z-index: 3;
}

.book-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    background: rgba(109, 36, 28, 0.92);
    padding: 8px 10px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-pages {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a365d 100%);
    padding: 80px 0;
}

.pricing-box {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.price-original {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.price-original .strike {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.price-offer {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-offer .highlight-bg {
    font-size: 3.5rem;
}

.guarantee {
    margin-top: 15px;
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Student Preview */
.student-preview-section {
    padding: 80px 0;
}

.student-preview {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
    align-items: center;
    gap: 46px;
}

.student-preview-media {
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.student-preview-media::before {
    content: '';
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    height: 170px;
    border-radius: 50%;
    background: #ffcc00;
    opacity: 0.28;
}

.student-preview-img {
    width: min(86%, 360px);
    height: 420px;
    object-fit: cover;
    object-position: 50% 10%;
    position: relative;
    z-index: 1;
}

.student-preview-copy h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.student-preview-copy p {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 24px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
}

.story-slider {
    margin-top: 50px;
    position: relative;
}

.story-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 31%);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 18px;
    scrollbar-width: none;
}

.story-track::-webkit-scrollbar {
    display: none;
}

.story-card {
    scroll-snap-align: start;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid #e6ebf2;
    box-shadow: 0 8px 20px rgba(11, 28, 58, 0.08);
    padding: 18px;
    min-height: 360px;
}

.story-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: 50% 14%;
    border-radius: 6px;
    background: #fff;
    margin-bottom: 16px;
}

.story-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.story-card p {
    color: var(--text-light);
    font-size: 0.96rem;
}

.slider-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #dfe6f1;
    background: #fff;
    color: var(--secondary-color);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 28, 58, 0.12);
}

.slider-btn:hover {
    color: var(--primary-color);
}

.slider-prev {
    left: -18px;
}

.slider-next {
    right: -18px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    display: none; /* Hidden on desktop */
}

.sticky-price {
    display: flex;
    flex-direction: column;
}

.s-original {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.s-offer {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.sticky-btn-container {
    text-align: center;
    width: 60%;
}

.btn-sticky {
    padding: 10px 15px;
    font-size: 1.1rem;
    margin: 0;
    width: 100%;
    animation: none;
}

.s-timer {
    display: block;
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
    margin-top: 3px;
    text-align: center;
}

/* Admin */
.admin-body {
    background: #f3f6fb;
    padding-bottom: 0;
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border: 1px solid #dfe6f1;
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: 0 8px 24px rgba(11, 28, 58, 0.08);
    margin-bottom: 24px;
}

.admin-kicker {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.admin-header h1 {
    color: var(--secondary-color);
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 8px;
}

.admin-header p {
    color: var(--text-light);
}

.admin-form {
    display: grid;
    gap: 22px;
}

.admin-panel {
    background: #fff;
    border: 1px solid #dfe6f1;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(11, 28, 58, 0.06);
}

.admin-panel h2 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.admin-panel-note {
    color: var(--text-light);
    font-weight: 600;
    margin: -8px 0 18px;
}

.admin-panel label {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 14px 0 8px;
}

.admin-panel input,
.admin-panel textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 14px;
    font: inherit;
    color: var(--secondary-color);
    background: #fff;
}

.admin-panel textarea {
    resize: vertical;
}

.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.admin-image-control {
    border: 1px solid #dfe6f1;
    border-radius: var(--border-radius);
    padding: 14px;
    background: #fbfdff;
}

.admin-preview-wrap {
    aspect-ratio: 4 / 3;
    border: 1px dashed #b8c4d6;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.admin-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-clear-image,
.admin-reset {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 14px;
    background: #fff;
    color: var(--secondary-color);
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}

.admin-clear-image:hover,
.admin-reset:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-save {
    width: auto;
    max-width: none;
    margin: 0;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 8px;
    animation: none;
}

.admin-status {
    color: #16803a;
    font-weight: 700;
    min-height: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 2.8rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .student-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-track {
        grid-auto-columns: minmax(250px, 48%);
    }
}

@media (max-width: 768px) {
    .headline { font-size: 2.2rem; }
    .subheadline { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    
    .sticky-cta {
        display: flex;
    }
    
    .price-offer .highlight-bg {
        font-size: 2.5rem;
    }

    .student-preview-media {
        min-height: 360px;
    }

    .student-preview-img {
        height: 350px;
    }

    .student-preview-copy h3 {
        font-size: 1.55rem;
    }

    .story-track {
        grid-auto-columns: minmax(245px, 86%);
    }

    .slider-prev {
        left: 2px;
    }

    .slider-next {
        right: 2px;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .headline { font-size: 1.8rem; }
    .time-box span { width: 50px; height: 50px; font-size: 1.5rem; }
    .colon { font-size: 1.5rem; }
    .btn-main { font-size: 1.2rem; padding: 12px 20px; }

    .hero-countdown {
        gap: 4px;
    }

    .hero-countdown .time-box span,
    .hero-countdown .time-box small {
        width: 54px;
    }

    .hero-countdown .time-box span {
        height: 46px;
        font-size: 1.55rem;
    }

    .hero-countdown .time-box small {
        font-size: 0.62rem;
    }
}

/* Sharryworld-style landing page overrides */
body {
    background: #00143a;
}

.site-header {
    background: #ffffff;
    padding: 10px 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff0033;
    color: #fff;
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
}

.site-nav a {
    color: #0d0d0d;
    text-decoration: none;
}

.site-nav .btn-sm {
    color: #fff;
}

.sharry-hero {
    background:
        radial-gradient(circle at 78% 45%, rgba(0, 24, 63, 0.88) 0%, rgba(0, 12, 34, 0.94) 38%, #000 72%),
        #000;
    padding: clamp(34px, 5vw, 72px) 0 54px;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: clamp(26px, 4vw, 62px);
    max-width: 1540px;
}

.deal-kicker {
    color: #b8ff14;
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 34px 0 24px;
}

.hero-copy {
    color: #fff;
}

.hero-copy h1 {
    color: #fff;
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: #ff0033;
}

.hero-rule {
    width: min(100%, 460px);
    height: 1px;
    background: #ff66c4;
    opacity: 0.9;
    margin: 0 0 52px;
}

.hero-offer {
    margin-bottom: 28px;
}

.hero-offer p {
    color: #fff;
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-countdown {
    justify-content: flex-start;
    gap: 10px;
}

.hero-countdown .time-box span {
    width: 76px;
    height: 58px;
    border-radius: 0;
    background: #91e632;
    color: #050505 !important;
    font-size: 2.3rem;
    box-shadow: none;
}

.hero-countdown .time-box small {
    width: 76px;
    margin-top: 0;
    padding: 7px 4px 8px;
    background: #fff;
    color: #050505 !important;
    font-size: 0.72rem;
    text-align: center;
}

.hero-countdown .colon {
    color: rgba(255,255,255,0.55);
    margin-top: -18px;
}

.hero-cta {
    width: min(100%, 260px);
    margin: 0;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.hero-poster {
    width: 100%;
    text-align: center;
}

.bundle-mockup {
    display: block;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
}

.bundle-mockup:hover {
    transform: none;
}

.btn-main {
    width: min(100%, 560px);
    border-radius: 10px;
    background: #ff0033;
    box-shadow: 0 12px 0 #a4001d, 0 20px 34px rgba(255, 0, 51, 0.28);
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    letter-spacing: 0;
}

.btn-main:hover {
    background: #e6002d;
}

.btn-main.hero-cta {
    width: min(100%, 260px);
    margin: 0;
    border-radius: 6px;
    font-size: 1.2rem;
}

.products {
    background: #151515;
    padding: 58px 0 96px;
    overflow-x: hidden;
}

.products .section-title {
    color: #ffffff;
}

.section-title {
    font-family: 'Baloo 2', 'Poppins', sans-serif;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1;
    margin-bottom: 34px;
    text-transform: none;
}

.highlight-text {
    color: #c6ff2e;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: start;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.mobile-product-grid {
    display: grid;
}

.product-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 30px 18px 24px;
    border: 0;
    border-radius: 28px;
    box-shadow: none;
    background: #ffc5c9;
    text-align: center;
    overflow: hidden;
}

.product-card:nth-child(2n) {
    background: #cbcaff;
}

.product-card:nth-child(3n) {
    background: #c9f3ff;
}

.product-card:nth-child(4n) {
    background: #ffe2aa;
}

.product-card:nth-child(5n) {
    background: #d7ffd0;
}

.product-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.product-img-wrapper {
    width: 100%;
    min-height: 0;
    margin: 0;
    align-items: center;
}

.prod-image {
    width: 100%;
    height: 320px;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
}

.products .container {
    width: min(100% - 32px, 1320px);
    max-width: 1320px;
}

.book-strip-grid {
    display: none !important;
    gap: clamp(22px, 3vw, 42px);
    width: 100%;
    margin: 0 auto;
}

.book-strip-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-title {
    color: #050505;
    font-size: clamp(1.18rem, 5.5vw, 1.55rem);
    line-height: 1.2;
    font-weight: 600;
    min-height: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.product-pages {
    color: #161616;
    font-size: 1rem;
    font-weight: 400;
}

.pricing-section {
    background: #ffcc00;
    padding: 64px 0;
}

.pricing-section .section-title {
    color: #000 !important;
}

.pricing-box {
    border: 4px solid #000;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.82);
}

.highlight-bg {
    background: #ffcc00;
    color: #000;
}

.limited-offer {
    border-color: #ff0033;
}

.faq-section {
    background: #050505;
    padding: 72px 0;
}

.faq-section .section-title {
    color: #fff;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0;
    background: #111;
}

.faq-question {
    background: #111;
    color: #fff;
}

.faq-question:hover {
    background: #181818;
}

.faq-answer {
    background: #0b0b0b;
    color: #fff;
}

.videos-section,
.social-section,
.testimonials-section {
    background: #fff;
    padding: 70px 0;
}

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

.video-grid img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.learning-card {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 360px;
    padding: 14px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.learning-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    background: #f4f4f4;
    box-shadow: none;
}

.learning-card-child img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: #f4f4f4;
}

.learning-card h3 {
    font-size: 1.08rem;
    line-height: 1.15;
    color: #111;
}

.learning-card p {
    font-size: 0.92rem;
    line-height: 1.35;
    color: #333;
    font-weight: 600;
}

.proof-section {
    background: #f5f5f5;
}

.student-preview {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: 0 auto;
}

.student-preview-media {
    background: #f3f6fb;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.student-preview-media::before {
    display: none;
}

.student-preview-img {
    width: min(96%, 430px);
    height: 460px;
    object-fit: contain;
    object-position: center top;
}

.proof-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 22px rgba(0,0,0,0.16);
    margin-bottom: 22px;
    background: #061333;
}

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

.social-grid-single {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
}

.social-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 28px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.social-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.social-card .social-child-img {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    background: #061333;
}

.social-card h3 {
    font-size: 1.4rem;
    color: #111;
}

.social-card p {
    color: #111;
    font-weight: 800;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.stars {
    color: #ffcc00;
}

.footer {
    background: #020202;
}

.sticky-cta {
    border-top: 3px solid #ffcc00;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .hero-rule {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-countdown {
        justify-content: center;
    }

    .btn-main.hero-cta {
        margin: 0 auto;
    }

    .video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .book-strip-grid {
        display: none !important;
    }

    .mobile-product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .site-nav {
        gap: 12px;
        font-size: 0.82rem;
    }

    .site-nav a:not(.btn-sm) {
        display: none;
    }

    .sharry-hero {
        padding-top: 20px;
    }

    .hero-split {
        gap: 28px;
    }

    .deal-kicker {
        margin: 22px 0 18px;
    }

    .hero-rule {
        margin-bottom: 30px;
    }

    .hero-countdown {
        gap: 6px;
    }

    .hero-countdown .time-box span,
    .hero-countdown .time-box small {
        width: 62px;
    }

    .hero-countdown .time-box span {
        height: 50px;
        font-size: 1.8rem;
    }

    .video-grid,
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products {
        background: #151515;
        padding: 52px 0 96px;
    }

    .products .container {
        width: min(100% - 16px, 680px);
        max-width: 680px;
    }

    .products .section-title {
        color: #c6ff2e;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.2;
        text-align: center;
        margin-bottom: 34px;
    }

    .products .highlight-text {
        color: #c6ff2e;
    }

    .book-strip-grid {
        display: none !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        width: min(100% - 16px, 680px);
        max-width: 680px;
    }

    .mobile-product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 34px;
    }

    .mobile-product-grid .product-card {
        display: grid;
        justify-items: center;
        gap: 12px;
        padding: 30px 18px 24px;
        border-radius: 28px;
        background: #ffc5c9;
        text-align: center;
        box-shadow: none;
        overflow: hidden;
    }

    .mobile-product-grid .product-card:hover {
        transform: none;
    }

    .mobile-product-grid .product-card:nth-child(2n) {
        background: #cbcaff;
    }

    .mobile-product-grid .product-card:nth-child(3n) {
        background: #c9f3ff;
    }

    .mobile-product-grid .product-card:nth-child(4n) {
        background: #ffe2aa;
    }

    .mobile-product-grid .product-card:nth-child(5n) {
        background: #d7ffd0;
    }

    .mobile-product-grid .product-img-wrapper {
        width: 100%;
        margin: 0;
        min-height: 0;
        align-items: center;
    }

    .mobile-product-grid .product-title {
        min-height: 0;
        max-width: 100%;
        color: #050505;
        font-size: clamp(1.18rem, 5.5vw, 1.55rem);
        line-height: 1.2;
        font-weight: 600;
        overflow-wrap: anywhere;
    }

    .mobile-product-grid .product-pages {
        color: #161616;
        font-size: 1rem;
        font-weight: 400;
    }

    .prod-image {
        height: 420px;
        filter: drop-shadow(0 10px 10px rgba(0,0,0,0.22));
    }

    .student-preview-img {
        height: 340px;
    }
}

@media (max-width: 520px) {
    .hero-countdown {
        gap: 4px;
    }

    .hero-countdown .time-box span,
    .hero-countdown .time-box small {
        width: 54px;
    }

    .hero-countdown .time-box span {
        height: 46px;
        font-size: 1.55rem;
    }

    .hero-countdown .time-box small {
        font-size: 0.62rem;
    }

    .video-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .prod-image {
        height: 380px;
    }

    .products .container,
    .product-grid {
        width: min(100% - 12px, 100%);
        max-width: 100%;
    }

    .product-card {
        border-radius: 22px;
        padding: 24px 16px 20px;
    }
}
