@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;600;700;800&display=swap');

/* --- Design Tokens / CSS Variables --- */
:root {
    /* Color Palette */
    --bg-dark: #0b0d0f;
    --bg-dark-section: #12161a;
    --bg-card-dark: #1a1f26;
    --border-dark: rgba(255, 255, 255, 0.08);
    
    --bg-light: #f4f8f6;
    --bg-card-light: #ffffff;
    --border-light: #e5e9eb;
    
    --primary: #e53e3e;
    --primary-glow: rgba(229, 62, 62, 0.35);
    --primary-hover: #c53030;
    
    --success: #2f855a;
    --success-bg: #f0fff4;
    --success-border: #c6f6d5;
    --success-glow: rgba(47, 133, 90, 0.25);
    
    --text-white: #ffffff;
    --text-muted-dark: #9bb0c1;
    --text-dark: #2d3748;
    --text-muted-light: #718096;
    
    /* Typography */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-hindi: 'Noto Sans Devanagari', var(--font-sans);
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hindi-text {
    font-family: var(--font-hindi);
}

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

/* --- Common Layout Utility --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-primary {
    background-color: var(--primary-glow);
    color: #ff9b9b;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b82525);
    color: var(--text-white);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #226b46);
    color: var(--text-white);
    box-shadow: 0 10px 20px -5px var(--success-glow);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--success-glow);
    filter: brightness(1.1);
}

/* --- Header --- */
header {
    background-color: rgba(11, 13, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
}

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

.logo img {
    height: 45px;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted-dark);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--text-white);
}

/* --- Hero Section --- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(11,13,15,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.book-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    perspective: 1000px;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 4px 12px 12px 4px;
    box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.6), -2px 0 5px rgba(255, 255, 255, 0.1);
    transform: rotateY(-8deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.book-mockup-wrapper:hover .book-cover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.badge-bestseller {
    position: absolute;
    top: 20px;
    right: -15px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    transform: rotate(15deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content .subtitle {
    color: var(--text-muted-dark);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.bullet-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted-dark);
    font-size: 1.5rem;
    font-weight: 500;
}

.price-current {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

/* --- Problem Section --- */
.problems {
    background-color: var(--bg-dark-section);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.problem-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 62, 62, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.problem-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
}

.problems-banner {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius-md);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.problems-banner p {
    font-size: 1.05rem;
    font-weight: 500;
}

.problems-banner p span {
    color: var(--primary);
    font-weight: 700;
}

/* --- Ebook Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(229, 62, 62, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

/* --- Before vs After Section --- */
.before-after {
    background-color: var(--bg-dark-section);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    background-color: var(--bg-card-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-before {
    border: 2px solid rgba(229, 62, 62, 0.2);
}

.card-after {
    border: 2px solid rgba(47, 133, 90, 0.2);
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.comp-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-before .comp-header h3 {
    color: var(--primary);
}

.card-after .comp-header h3 {
    color: #48bb78;
}

.comp-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-before .comp-badge {
    background-color: rgba(229, 62, 62, 0.15);
    color: var(--primary);
}

.card-after .comp-badge {
    background-color: rgba(47, 133, 90, 0.15);
    color: #48bb78;
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.card-before .comp-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.card-after .comp-list svg {
    color: #48bb78;
    flex-shrink: 0;
}

.comp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-dark);
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.stars {
    display: flex;
    gap: 5px;
    color: #ecc94b;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-white);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.5;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--border-dark);
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-meta {
    color: var(--text-muted-dark);
    font-size: 0.85rem;
}

.trust-banner {
    color: var(--text-muted-dark);
    font-weight: 500;
}

.trust-banner span {
    color: var(--primary);
    font-weight: 700;
}

/* --- FAQ & Checkout Page Section --- */
.faq-checkout {
    background-color: var(--bg-dark-section);
    border-top: 1px solid var(--border-dark);
}

.faq-checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-icon-state {
    transition: transform 0.3s ease;
    color: var(--text-muted-dark);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-state {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 28px;
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    padding-bottom: 24px;
    border-top: 1px solid var(--border-dark);
}

/* Checkout Form Card */
.checkout-card {
    background-color: var(--bg-card-dark);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.checkout-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.checkout-header p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    margin-top: 5px;
}

.checkout-pricing {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkout-pricing .price-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background-color: rgba(11, 13, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.checkout-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
}

.c-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted-dark);
}

.c-badge svg {
    color: var(--primary);
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-dark);
    background-color: var(--bg-dark);
    padding: 60px 0 30px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-badges {
    display: flex;
    gap: 25px;
    align-items: center;
}

.f-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

.f-badge svg {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    color: var(--text-muted-dark);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

/* --- Simulated Razorpay Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.razorpay-modal {
    width: 100%;
    max-width: 440px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    color: #2d3748;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .razorpay-modal {
    transform: scale(1);
}

.modal-header {
    background-color: #0f1c3f;
    color: #ffffff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-left {
    display: flex;
    flex-direction: column;
}

.merchant-logo {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.merchant-logo span {
    color: #3399ff;
}

.merchant-desc {
    font-size: 0.8rem;
    color: #a0aec0;
}

.modal-amount {
    font-weight: 700;
    font-size: 1.15rem;
}

.modal-body {
    padding: 25px;
}

.modal-nav {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.modal-nav-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #718096;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.modal-nav-tab.active {
    color: #3399ff;
    border-bottom-color: #3399ff;
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
}

.sim-info {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sim-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-sim {
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: none;
}

.btn-sim-success {
    background-color: #10b981;
    color: #ffffff;
}

.btn-sim-success:hover {
    background-color: #059669;
}

.btn-sim-fail {
    background-color: #ef4444;
    color: #ffffff;
}

.btn-sim-fail:hover {
    background-color: #dc2626;
}

.modal-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border-left-color: #3399ff;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.modal-footer {
    background-color: #f7fafc;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #a0aec0;
    border-top: 1px solid #edf2f7;
}

.modal-footer img {
    height: 14px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ==========================================================================
   THENK YOU / ORDER SUCCESS PAGE STYLING (LIGHT THEME)
   ========================================================================== */
body.thank-you-page {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.ty-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    margin-bottom: 40px;
}

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

.ty-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ty-logo img {
    height: 42px;
}

.ty-card {
    background-color: var(--bg-card-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 50px;
    max-width: 680px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 0 0 10px rgba(47, 133, 90, 0.05);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 133, 90, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(47, 133, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 133, 90, 0); }
}

.ty-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.ty-card .sub-title {
    color: var(--text-muted-light);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.order-details-box {
    text-align: left;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    margin-bottom: 35px;
}

.details-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a202c;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.details-title-row svg {
    color: var(--success);
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

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

.details-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.details-label {
    color: var(--text-muted-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-label svg {
    color: #a0aec0;
}

.details-val {
    text-align: right;
    font-weight: 600;
    color: #2d3748;
    word-break: break-all;
}

.badge-status {
    background-color: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* eBook Ready Section */
.ebook-ready-box {
    background-color: #f7fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    text-align: left;
    align-items: center;
    margin-bottom: 35px;
}

.ebook-ready-cover {
    position: relative;
}

.ebook-ready-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.ready-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background-color: var(--success);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ready-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.ready-info p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.ready-info .mail-info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3182ce;
}

/* Next Steps */
.next-steps-section {
    border-top: 1px solid var(--border-light);
    padding-top: 35px;
}

.next-steps-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.step-card {
    text-align: center;
    padding: 10px;
}

.step-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(47, 133, 90, 0.06);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.step-card p {
    color: var(--text-muted-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

.ty-footer-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.ty-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted-light);
    text-align: left;
}

.ty-trust-item svg {
    color: #dd6b20;
}

.ty-trust-item strong {
    color: #2d3748;
    display: block;
}

.ty-ending {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted-light);
    text-align: center;
}

.ty-ending p {
    margin-bottom: 5px;
}


/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .faq-checkout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-bullets {
        justify-content: center;
    }
    .hero-pricing {
        justify-content: center;
    }
    .hero-cta {
        align-items: center;
    }
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .comp-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .header-container {
        justify-content: center;
    }
    nav {
        display: none; /* Hide desktop nav on mobile for clean UI */
    }
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ty-card {
        padding: 30px 20px;
    }
    .ebook-ready-box {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .ebook-ready-cover {
        max-width: 120px;
    }
    .ty-footer-trust {
        flex-direction: column;
        gap: 20px;
    }
    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
    .checkout-card {
        padding: 25px 20px;
    }
    .hero-bullets {
        grid-template-columns: 1fr;
        align-items: start;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .order-details-box {
        padding: 15px 15px;
        margin-bottom: 25px;
    }
    .details-table tr {
        display: flex;
        flex-direction: column;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .details-table tr:last-child {
        border-bottom: none;
    }
    .details-table td {
        padding: 4px 0;
        width: 100%;
        text-align: left;
    }
    .details-val {
        text-align: left;
        font-size: 0.9rem;
    }
}
