/* ========================================
   THE GENIUS WAVE - STYLES.CSS
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #f5f7fa;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    padding-left: 20px;
}

/* ========================================
   HEADER
   ======================================== */
header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #106EBE;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    padding: 0;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #106EBE;
}

.btn-buy {
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 252, 190, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 252, 190, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #106EBE 0%, #0D5AA7 50%, #094A8F 100%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.5;
}

/* ========================================
   TWO COLUMN SECTIONS
   ======================================== */
.two-column {
    padding: 60px 0;
    background: #fff;
}

.two-column:nth-child(even) {
    background: #f5f7fa;
}

.section-title {
    color: #106EBE;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.columns {
    display: flex;
    align-items: center;
    gap: 50px;
}

.column {
    flex: 1;
}

.image-column img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.text-column p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.text-column ol,
.text-column ul {
    margin-bottom: 20px;
}

.text-column li {
    margin-bottom: 12px;
    color: #555;
}

.text-column strong {
    color: #333;
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(15, 252, 190, 0.3);
    margin-top: 15px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 252, 190, 0.4);
}

/* ========================================
   SINGLE COLUMN SECTIONS
   ======================================== */
.single-column {
    padding: 60px 0;
    background: #f5f7fa;
}

.single-column:nth-child(even) {
    background: #fff;
}

.single-column .container {
    max-width: 900px;
}

.single-column p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.single-column ul,
.single-column ol {
    max-width: 800px;
    margin: 0 auto 25px;
}

.single-column li {
    margin-bottom: 12px;
    color: #555;
}

/* ========================================
   USER TESTIMONIALS
   ======================================== */
.overall-rating {
    text-align: center;
    margin-bottom: 40px;
}

.overall-rating .stars {
    color: #FFD700;
    font-size: 28px;
    letter-spacing: 5px;
}

.overall-rating .stars span {
    color: #106EBE;
    font-size: 22px;
    margin-left: 10px;
    font-weight: 600;
}

.overall-rating p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0FFCBE;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0FFCBE;
    margin-bottom: 15px;
}

.reviewer-info .author {
    color: #106EBE;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 3px;
}

.reviewer-info .profession {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.reviewer-info .rating {
    color: #FFD700;
    font-size: 14px;
}

.reviewer-info .rating span {
    color: #106EBE;
    margin-left: 5px;
}

.testimonial .quote {
    color: #555;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

/* ========================================
   MEGA CTA SECTION
   ======================================== */
.mega-cta {
    background: linear-gradient(135deg, #106EBE 0%, #0D5AA7 50%, #094A8F 100%);
    padding: 80px 0;
}

.mega-cta-content {
    text-align: center;
    color: #fff;
}

.mega-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.mega-cta h2 span {
    color: #0FFCBE;
}

.mega-cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
}

.highlight-icon {
    color: #0FFCBE;
    font-size: 20px;
    font-weight: bold;
}

.highlight-item p {
    color: #fff;
    font-size: 15px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    text-decoration: line-through;
}

.current-price {
    color: #0FFCBE;
    font-size: 52px;
    font-weight: 700;
}

.discount-badge {
    background: #0FFCBE;
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.mega-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
    padding: 20px 60px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(15, 252, 190, 0.3);
    margin-bottom: 30px;
}

.mega-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 252, 190, 0.4);
}

.mega-cta-button .main-text {
    font-size: 20px;
    font-weight: 700;
}

.mega-cta-button .sub-text {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.guarantee-badge1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-badge1 img {
    width: 24px;
    filter: brightness(0) invert(1);
}

.guarantee-badge1 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* ========================================
   SCIENCE TABLE
   ======================================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

table th {
    background: #106EBE;
    color: #fff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

table tr:nth-child(even) td {
    background: #f5f7fa;
}

table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   SCIENCE CTA SECTION
   ======================================== */
.science-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0FFCBE 0%, #0FFCBE 5px, #f5f7fa 5px, #f5f7fa 100%);
}

.science-cta-content {
    text-align: center;
}

.science-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.science-cta h2 .highlight {
    color: #106EBE;
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.proof-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.proof-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.proof-card h3 {
    color: #106EBE;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.proof-card p {
    color: #666;
    font-size: 15px;
}

.cta-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto 40px;
    border: 1px solid #e8e8e8;
}

.offer-text .limited {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.offer-text .pricing {
    margin-bottom: 15px;
}

.offer-text .old-price {
    color: #999;
    font-size: 24px;
    text-decoration: line-through;
    margin-right: 15px;
}

.offer-text .new-price {
    color: #106EBE;
    font-size: 48px;
    font-weight: 700;
}

.offer-text .bonus {
    color: #106EBE;
    font-weight: 600;
    margin-bottom: 25px;
}

.product-image-cta {
    max-width: 400px;
    margin: 25px auto;
}

.science-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #106EBE 0%, #0D5AA7 100%);
    color: #fff;
    padding: 20px 60px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(16, 110, 190, 0.3);
    width: 100%;
}

.science-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 110, 190, 0.4);
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
}

.science-cta-btn .btn-main {
    font-size: 20px;
    font-weight: 700;
}

.science-cta-btn .btn-sub {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.trust-badges .badge img {
    width: 24px;
    opacity: 0.7;
}

/* ========================================
   START NOW CTA SECTION
   ======================================== */
.start-now-cta {
    padding: 80px 0;
    background: #f5f7fa;
}

.start-now-content {
    text-align: center;
}

.header-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.header-wrapper h2 span {
    color: #0FFCBE;
}

.header-wrapper .subhead {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.cta-columns {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.benefits-col {
    flex: 1;
    text-align: left;
}

.benefits-col h3 {
    color: #106EBE;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.benefits-list .benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefits-list .benefit-text h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefits-list .benefit-text p {
    color: #666;
    font-size: 14px;
    text-align: left;
    margin: 0;
}

.offer-col {
    flex: 1;
}

.offer-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-tag .old-price {
    color: #999;
    font-size: 20px;
    text-decoration: line-through;
}

.price-tag .new-price {
    color: #106EBE;
    font-size: 42px;
    font-weight: 700;
    margin-left: 10px;
}

.timer-wrapper {
    background: #f5f7fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.timer-text {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
}

.countdown-timer {
    font-size: 28px;
    font-weight: 700;
    color: #106EBE;
    letter-spacing: 3px;
}

.start-now-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #106EBE 0%, #0D5AA7 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(16, 110, 190, 0.3);
    width: 100%;
    margin-bottom: 20px;
}

.start-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 110, 190, 0.4);
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
}

.start-now-btn .btn-main {
    font-size: 18px;
    font-weight: 700;
}

.start-now-btn .btn-sub {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 5px;
}

.offer-box .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-box .guarantee img {
    width: 20px;
    opacity: 0.7;
}

.offer-box .guarantee p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

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

.faq-section .section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #106EBE;
}

.toggle-icon {
    font-size: 24px;
    color: #106EBE;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.faq-answer ul {
    margin-bottom: 15px;
}

.faq-answer li {
    color: #555;
    margin-bottom: 8px;
}

.faq-answer a {
    color: #106EBE;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Benefits Grid */
.faq-answer .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.faq-answer .benefit-box {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.faq-answer .benefit-box .benefit-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.faq-answer .benefit-box h4 {
    color: #106EBE;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.faq-answer .benefit-box p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.cta-inline {
    display: inline-block;
    color: #106EBE;
    font-weight: 600;
    margin-top: 10px;
}

.cta-inline:hover {
    color: #0FFCBE;
}

.faq-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.faq-cta h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.faq-cta .btn-cta {
    margin-bottom: 20px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-badge img {
    width: 22px;
    opacity: 0.7;
}

.guarantee-badge span {
    color: #666;
    font-size: 14px;
}

/* ========================================
   PURCHASE STEPS
   ======================================== */
.purchase-steps {
    padding: 80px 0;
    background: #fff;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #106EBE;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #106EBE;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 15px;
}

.checkout-preview {
    text-align: center;
}

.checkout-image {
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   CTA SECTION (FINAL)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #106EBE 0%, #0D5AA7 50%, #094A8F 100%);
    padding: 80px 0;
    text-align: center;
}

.urgency-banner {
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
}

.urgency-content {
    color: #fff;
    font-size: 16px;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 15px;
}

.cta-section .subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 40px;
}

.cta-section .benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-section .benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-section .benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.cta-section .benefit-item p {
    color: #fff;
    font-size: 15px;
}

.btn-cta-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #0FFCBE 0%, #00D4AA 100%);
    color: #1a1a1a;
    padding: 25px 80px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(15, 252, 190, 0.3);
    margin-bottom: 30px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 252, 190, 0.4);
}

.btn-cta-large .btn-main {
    font-size: 22px;
    font-weight: 700;
}

.btn-cta-large .btn-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods img {
    max-width: 400px;
    opacity: 0.9;
}

.guaranteee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.guaranteee img {
    width: 24px;
    filter: brightness(0) invert(1);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, #0D5AA7 0%, #094A8F 100%);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0FFCBE;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .columns {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-columns {
        flex-direction: column;
    }
    
    .mega-cta-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-section .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    nav ul {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-points {
        grid-template-columns: 1fr;
    }
    
    .faq-answer .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .current-price {
        font-size: 40px;
    }
    
    .mega-cta h2,
    .science-cta h2,
    .header-wrapper h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .btn-cta-large {
        padding: 20px 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    table {
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .two-column,
    .single-column {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
}
