/* Modern Clean Premium Sales Page Styles */
:root {
    --primary-light: #e0f2fe; /* Soft Light Blue */
    --primary-neon: #0284c7; /* Elegant Premium Blue */
    --primary-dark: #0369a1; /* Deep Blue Accent */
    --primary-glow: rgba(2, 132, 199, 0.15); /* Soft shadow glow */
    --primary-text: #0f172a; /* Slate 900 for high contrast text */
    --secondary-text: #475569; /* Slate 600 for reading */
    --accent-red: #e11d48; /* Premium Rose Red */
    --accent-blue: #38bdf8;
    --white: #ffffff;
    --bg-deep: #f8fafc; /* Very light slate background */
    --bg-card: #ffffff;
    --border-color: rgba(15, 23, 42, 0.05); /* Soft border */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-neon: 0 0 20px var(--primary-glow);
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(at 0% 0%, rgba(2, 132, 199, 0.03) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(3, 105, 161, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 100%, rgba(56, 189, 248, 0.03) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--primary-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-danger {
    color: var(--accent-red);
}

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

.bg-light {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-primary-light {
    background-color: rgba(2, 132, 199, 0.02);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.5);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-divider {
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(2, 132, 199, 0.02));
}

.font-bold {
    font-weight: 700;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Components */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-neon);
    color: var(--white);
    font-weight: 800;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 8px 15px var(--primary-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px var(--primary-glow);
}

/* Hero Image Animation */
.hero-image {
    max-width: 250px; 
    width: 100%;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.bio-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #bae6fd;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #e0f2fe;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #38bdf8;
    top: 40%;
    left: 60%;
    opacity: 0.05;
    animation-delay: -10s;
}

@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 100px) scale(1.1); }
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(2, 132, 199, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* Top Update Bar (Guarantee bar equivalent) */
.guarantee-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 8px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.shield-icon {
  width: 18px;
  height: 18px;
}

/* Header/Hero */
.hero {
    background: radial-gradient(circle at center, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(2, 132, 199, 0.05);
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-neon);
    border: 1px solid rgba(2, 132, 199, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p.subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--secondary-text);
    flex-wrap: wrap;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
}

.feature-item h3 {
    color: var(--primary-text);
}

/* Results Section */
.results-section {
    padding: 3rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.result-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.result-card h3 {
    color: var(--primary-text);
}

.result-duration {
    color: var(--primary-neon);
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Content Breakdown */
.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-item {
    border-left: 4px solid var(--primary-light);
    padding-left: 1.5rem;
}

.content-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* List of Gold */
.gold-list {
    background: linear-gradient(to bottom, rgba(2, 132, 199, 0.02), transparent);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

/* Offer Section */
.offer-section {
    background: var(--pure-white); 
    padding: 3rem 0;
    text-align: center;
}

.offer-card {
    background: var(--bg-card);
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.offer-header {
    background: var(--primary-light);
    padding: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.offer-body {
    padding: 4rem 2rem;
}

.book-cover-container {
    text-align: center;
    margin-bottom: 3rem;
}

.book-cover {
    display: block;
    margin: 0 auto;
    width: 250px;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

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

.offer-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-text);
    display: block;
    text-align: center;
    font-weight: 500;
}

.offer-list li:last-child {
    border-bottom: none;
}

.guarantee-box {
    margin-top: 3rem;
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(2, 132, 199, 0.1);
}

/* Warning Section */
.warning-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(225, 29, 72, 0.02), transparent);
}

.warning-title {
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 3rem;
}

.scam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.scam-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: var(--primary-text);
    box-shadow: var(--shadow-sm);
}

.scam-card h3 {
    color: var(--primary-text);
}

/* Footer */
footer {
    background-color: var(--bg-deep);
    color: var(--secondary-text);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.875rem;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--secondary-text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .hero { padding: 3rem 0 3rem; }
    .hero h1 { font-size: 1.8rem; padding: 0 0.5rem; }
    .cta-box { padding: 1.5rem 1rem !important; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .results-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .offer-card { width: 100%; border-radius: var(--radius-lg); }
    .offer-body { padding: 2.5rem 1rem; }
    .scam-grid { grid-template-columns: 1fr; }
    .bio-blob { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .btn { padding: 1rem 1.5rem; font-size: 1rem !important; width: 100%; text-align: center; }
}

/* Author Section Styles */
.author-section {
    padding: 3rem 0;
}
.author-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.author-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.author-content {
    padding: 4rem 4rem 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.author-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.stat-item {
    text-align: center;
}
.stat-item h4 {
    font-size: 1.1rem;
    color: var(--primary-text);
    margin-bottom: 0.3rem;
    font-weight: 800;
}
.stat-item p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.4;
    margin: 0;
}
.stat-icon {
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    filter: brightness(0.9);
}
.author-quote {
    border-left: 4px solid var(--primary-neon);
    padding-left: 1.5rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}
.author-footer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--secondary-text);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
@media (max-width: 992px) {
    .author-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .author-image-wrapper {
        min-height: 450px;
    }
    .author-content {
        padding: 3rem 2rem;
    }
    .author-stats-grid {
        grid-template-columns: 1fr;
    }
}
