/* ========================================
   NUOIGAVUON.PRO - Main Stylesheet
   Vương Sản IP Nỗi Đau Template
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #2d5a27;
    --primary-dark: #1e3d1a;
    --primary-light: #4a8c42;
    --secondary-color: #d4a24c;
    --secondary-dark: #b8862e;
    --accent-color: #e85d04;
    --danger-color: #dc3545;
    --success-color: #28a745;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader span {
    font-size: 4rem;
    animation: bounce 1s infinite;
    display: inline-block;
}

.loader p {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: var(--gray-700);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-btn {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(45, 90, 39, 0.7) 100%
    );
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    color: var(--secondary-color);
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-block {
    width: 100%;
}

.btn-zalo {
    background: #0068ff;
    color: var(--white);
}

.btn-zalo:hover {
    background: #0054cc;
}

.btn-phone {
    background: var(--success-color);
    color: var(--white);
}

.btn-phone:hover {
    background: #218838;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gray-100);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-badge.danger {
    background: #fef2f2;
    color: var(--danger-color);
}

.section-badge.success {
    background: #f0fdf4;
    color: var(--success-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Steps */
.story-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.story-step::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: var(--gray-200);
}

.story-step:last-child::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-number.pain {
    background: linear-gradient(135deg, var(--danger-color), #ff6b6b);
}

.step-number.insight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.step-number.success {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.story-step.reverse .step-content {
    direction: rtl;
}

.story-step.reverse .step-content > * {
    direction: ltr;
}

.story-step.final .step-content {
    grid-template-columns: 1fr;
}

.step-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.step-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.step-image:hover img {
    transform: scale(1.05);
}

/* Pain Section */
.pain-section {
    background: linear-gradient(180deg, #fef2f2 0%, var(--white) 100%);
}

.pain-highlight {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--danger-color);
}

.pain-highlight blockquote {
    font-style: italic;
    color: var(--gray-700);
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gray-300);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-normal);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Turning Point Quote */
.turning-point {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--danger-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: Georgia, serif;
}

.turning-point blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-800);
    max-width: 800px;
    margin: 0 auto;
}

.turning-point cite {
    display: block;
    margin-top: 1.5rem;
    color: var(--gray-600);
    font-style: normal;
}

/* Insight Section */
.insight-section {
    background: linear-gradient(180deg, var(--white) 0%, #f0fdf4 100%);
}

.insight-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--success-color);
}

.insight-list {
    margin-top: 1.5rem;
}

.insight-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f0fdf4;
    border-radius: var(--radius-md);
    color: var(--gray-700);
}

.insight-list strong {
    color: var(--success-color);
}

/* Solution Section */
.solution-section {
    background: var(--gray-50);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.solution-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.card-features {
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-features i {
    color: var(--success-color);
}

.card-price {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.price-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Result Showcase */
.result-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.result-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.result-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.result-content blockquote {
    font-style: italic;
    color: var(--gray-700);
    padding: 1rem;
    background: #f0fdf4;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success-color);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.result-images img {
    border-radius: var(--radius-lg);
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-size: 0.875rem;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Social Share */
.social-share {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.social-share p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-normal);
}

.share-btn.pinterest {
    background: #e60023;
}

.share-btn.pinterest:hover {
    background: #c7001e;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #166fe5;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1a91da;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-color);
    color: var(--white);
}

.benefits-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.quick-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.quick-contact .btn {
    flex: 1;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Payment Section */
.payment-section {
    background: var(--white);
    padding: 60px 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.payment-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.bank-info {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.bank-info h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.float-btn.zalo {
    background: #0068ff;
}

.float-btn.phone {
    background: var(--success-color);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-grid,
    .pain-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu,
    .lang-switcher {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active,
    .lang-switcher.mobile-active {
        display: flex;
    }
    
    .nav-menu a {
        color: var(--gray-800);
        padding: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .lang-switcher {
        top: calc(100% + 260px);
        flex-direction: row;
        justify-content: center;
    }
    
    .lang-btn {
        color: var(--gray-700);
        border-color: var(--gray-300);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-step {
        grid-template-columns: 1fr;
    }
    
    .story-step::before {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .step-content {
        grid-template-columns: 1fr;
    }
    
    .story-step.reverse .step-content {
        direction: ltr;
    }
    
    .step-image img {
        height: 250px;
    }
    
    .pain-grid,
    .solution-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-card {
        padding: 1rem;
    }
    
    .quick-contact {
        flex-direction: column;
    }
}

/* Animation Classes */
[data-aos] {
    transition-property: transform, opacity;
}

/* ========================================
   IP NỖI ĐAU - New Sections Styles
   ======================================== */

/* Hero Positioning - IP Nỗi Đau Style */
.hero-positioning {
    margin-bottom: 2rem;
    text-align: center;
}

.positioning-line {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.positioning-line strong {
    color: var(--secondary-color);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    color: var(--secondary-color);
    font-size: 2.75rem;
    margin-top: 0.5rem;
}

/* Checklist Section */
.checklist-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 80px 0;
}

.checklist-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.checklist-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.checklist-items {
    margin-bottom: 2rem;
}

.checklist-items li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.checklist-items li:hover {
    background: #fef2f2;
    border-left: 4px solid var(--danger-color);
}

.checklist-items li i {
    color: var(--danger-color);
    font-size: 1.25rem;
}

/* Checklist Self-Doubt - Câu tự ti chạm sâu */
.checklist-self-doubt {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    color: var(--gray-700);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

.checklist-self-doubt em {
    display: block;
    color: var(--gray-800);
    font-style: italic;
}

.checklist-note {
    text-align: center;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: var(--radius-lg);
    border: 2px solid var(--success-color);
}

.checklist-note p {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.checklist-note p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Deep Pain Section */
.deep-pain-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    color: var(--white);
}

.deep-pain-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
}

.pain-quote-mark {
    font-size: 8rem;
    color: var(--danger-color);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: Georgia, serif;
}

.deep-pain-quote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
}

.deep-pain-quote strong {
    color: var(--secondary-color);
}

.physical-pain {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.physical-pain h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.physical-pain-content p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.physical-pain-content strong {
    color: var(--secondary-color);
}

.physical-pain-content em {
    display: block;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Self-Check Table Section */
.selfcheck-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.selfcheck-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.selfcheck-column {
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.selfcheck-column.wrong {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.selfcheck-column.right {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.selfcheck-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selfcheck-column ul li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.selfcheck-column.wrong ul li {
    border-left: 4px solid var(--danger-color);
}

.selfcheck-column.right ul li {
    border-left: 4px solid var(--success-color);
}

/* How To Section */
.howto-section {
    background: var(--white);
}

.howto-block {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-200);
}

.howto-header {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    background: var(--white);
}

.howto-image {
    height: 300px;
    overflow: hidden;
}

.howto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.howto-intro {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.howto-intro h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.howto-tagline {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.howto-intro > p:last-child {
    color: var(--gray-700);
    line-height: 1.7;
}

.howto-details {
    padding: 2.5rem;
}

.howto-details h4 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.howto-details h4:first-child {
    margin-top: 0;
}

.materials-list {
    display: grid;
    gap: 0.75rem;
}

.materials-list li {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    color: var(--gray-700);
}

.steps-list {
    counter-reset: step;
}

.steps-list li {
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.steps-list li strong {
    color: var(--primary-color);
}

.howto-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #fef3c7;
    border-radius: var(--radius-md);
    border-left: 4px solid #f59e0b;
    color: var(--gray-800);
}

.howto-note strong {
    color: #b45309;
}

/* Diary Section */
.diary-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 80px 0;
}

.diary-entries {
    max-width: 700px;
    margin: 0 auto;
}

.diary-entry {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.diary-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.diary-entry p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Gratitude Section */
.gratitude-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 100px 0;
}

.gratitude-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gratitude-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.gratitude-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.gratitude-message {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.gratitude-message strong {
    color: var(--primary-color);
}

.gratitude-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gratitude-tier {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gratitude-tier:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gratitude-tier.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.gratitude-tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tier-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.tier-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}

.gratitude-note {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 2rem;
}

.gratitude-payment {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: inline-block;
    text-align: left;
}

.gratitude-payment p {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Share Section */
.share-section {
    background: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

.share-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.share-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.share-message {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.share-message strong {
    color: var(--secondary-color);
}

.share-message em {
    display: block;
    margin-top: 1rem;
    opacity: 0.85;
}

.share-buttons-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.share-btn-lg.facebook {
    background: #1877f2;
}

.share-btn-lg.zalo {
    background: #0068ff;
}

.share-btn-lg.copy {
    background: var(--gray-700);
}

.share-btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Products Section */
.products-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.products-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Products Defense Note - Câu chặn phòng thủ */
.products-defense-note {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #0ea5e9;
    font-size: 1.15rem;
    color: var(--gray-700);
}

.products-defense-note em {
    font-style: italic;
    line-height: 1.8;
}

.products-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.products-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.product-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--gray-800);
    color: var(--gray-800);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-outline-dark:hover {
    background: var(--gray-800);
    color: var(--white);
}

/* Closing Section */
.closing-section {
    background: linear-gradient(180deg, var(--gray-900) 0%, #1a1a2e 100%);
    padding: 100px 0;
    text-align: center;
}

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

.closing-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.closing-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.closing-note strong {
    color: var(--secondary-color);
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--gray-100);
    padding: 30px 0;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.disclaimer-content strong {
    color: var(--gray-700);
}

/* ========================================
   RESPONSIVE - New Sections
   ======================================== */

@media (max-width: 1024px) {
    .selfcheck-table,
    .gratitude-tiers,
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gratitude-tier.featured {
        transform: none;
    }
    
    .gratitude-tier.featured:hover {
        transform: translateY(-5px);
    }
    
    .howto-header {
        grid-template-columns: 1fr;
    }
    
    .howto-image {
        height: 250px;
    }
    
    .howto-intro {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-positioning {
        padding: 0 1rem;
    }
    
    .positioning-line {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 2.25rem;
    }
    
    .checklist-box {
        padding: 2rem;
    }
    
    .deep-pain-quote {
        font-size: 1.35rem;
    }
    
    .physical-pain {
        padding: 1.5rem;
    }
    
    .share-buttons-large {
        flex-direction: column;
    }
    
    .share-btn-lg {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checklist-items li {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .howto-details {
        padding: 1.5rem;
    }
    
    .gratitude-tiers {
        gap: 1rem;
    }
    
    .gratitude-tier {
        padding: 1.5rem;
    }
    
    .tier-amount {
        font-size: 1.5rem;
    }
}

/* ========================================
   IP GIẢI ĐAU - New Hero & Section Styles
   ======================================== */

/* Hero IP Giải Đau */
.hero-ip-giai-dau {
    text-align: center;
}

.hero-ip-giai-dau .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.ip-positioning {
    margin-bottom: 2.5rem;
}

.ip-positioning .ip-line-1,
.ip-positioning .ip-line-2,
.ip-positioning .ip-line-3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-title-ip {
    margin-bottom: 2rem;
}

.hero-title-ip .title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-title-ip .title-main em {
    color: var(--secondary-color);
    font-style: normal;
}

.hero-title-ip .title-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title-ip .title-sub strong {
    color: var(--secondary-color);
}

.hero-note {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    display: inline-block;
}

.hero-note p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-note strong {
    color: var(--secondary-color);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

/* Pain Story Box - Deep Pain Enhancement */
.pain-story-box {
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pain-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pain-narrative {
    font-size: 1.1rem;
    line-height: 1.9;
}

.pain-narrative p {
    margin-bottom: 0.5rem;
}

.pain-narrative strong {
    color: var(--secondary-color);
}

.pain-realization {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(220, 53, 69, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.15rem;
}

.pain-deeper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    line-height: 1.9;
}

.pain-deeper p {
    margin-bottom: 0.5rem;
}

.pain-deeper strong {
    color: var(--secondary-color);
}

.pain-deeper em {
    display: block;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Diary Steps - Story Section */
.diary-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

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

.step-marker .step-number {
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin: 0 auto 0.5rem;
}

.step-marker.danger .step-number {
    background: var(--danger-color);
}

.step-marker.success .step-number {
    background: var(--success-color);
}

.step-marker .step-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.diary-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.diary-step.reverse .diary-content {
    grid-template-columns: 350px 1fr;
}

.diary-step.reverse .diary-content .diary-text {
    order: 2;
}

.diary-step.reverse .diary-content .diary-image {
    order: 1;
}

.diary-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.diary-text p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.diary-result {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.diary-result.bad {
    background: #fef2f2;
    border-left: 4px solid var(--danger-color);
}

.disaster-quote {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid #fecaca;
}

.disaster-quote p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin: 0;
}

.diary-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.diary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Moment of Clarity - Khoảnh khắc thức tỉnh */
.moment-of-clarity {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

.moment-of-clarity p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--gray-800);
    line-height: 1.7;
}

.moment-of-clarity p:last-child {
    margin-bottom: 0;
}

.moment-of-clarity strong {
    color: var(--primary-dark);
}

.insight-list-new {
    margin-top: 1.5rem;
}

.insight-list-new li {
    padding: 1rem 1.25rem;
    background: #f0fdf4;
    border-left: 4px solid var(--success-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.insight-list-new li strong {
    color: var(--primary-dark);
}

.result-quote {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #f0fdf4;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--success-color);
    font-style: italic;
}

.result-quote p {
    color: var(--gray-700);
    margin: 0;
}

/* Turning Point Box */
.turning-point-box {
    max-width: 800px;
    margin: 4rem auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.turning-point-box .quote-icon {
    font-size: 6rem;
    color: var(--danger-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: Georgia, serif;
}

.turning-point-box blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
}

.turning-point-box cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Three NO Section - 3 Secrets */
.three-no-section {
    background: var(--white);
    padding: 100px 0;
}

.success-badge {
    background: var(--success-color) !important;
    color: var(--white) !important;
}

.diary-badge {
    background: var(--gray-800) !important;
    color: var(--white) !important;
}

.secret-block {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 2px solid var(--gray-200);
}

.secret-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.secret-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.secret-title-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.secret-tagline {
    font-size: 1rem;
    opacity: 0.9;
}

.secret-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: start;
}

.secret-content.reverse {
    grid-template-columns: 1fr 350px;
}

.secret-content.reverse .secret-image {
    order: 2;
}

.secret-content.reverse .secret-text {
    order: 1;
}

.secret-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.secret-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secret-intro {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secret-intro strong {
    color: var(--primary-color);
}

.secret-intro em {
    color: var(--gray-800);
}

.secret-principle {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.secret-principle h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.secret-principle p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.secret-principle strong {
    color: var(--primary-dark);
}

.secret-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.secret-details.hidden {
    display: none;
}

.secret-details h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.secret-details h4:first-child {
    margin-top: 0;
}

.secret-details ul,
.secret-details ol {
    display: grid;
    gap: 0.5rem;
}

.secret-details li {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    line-height: 1.5;
}

.secret-details ol li {
    border-left: 4px solid var(--primary-color);
}

.secret-details li strong {
    color: var(--primary-color);
}

.secret-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #fef3c7;
    border-radius: var(--radius-md);
    border-left: 4px solid #f59e0b;
    color: var(--gray-800);
    line-height: 1.6;
}

.secret-note strong {
    color: #b45309;
}

.btn-reveal {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: 1rem;
}

.btn-reveal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* AVICORE Block Special Styles */
.secret-block.avicore-block .secret-header {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
}

.layer-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.layer-list li {
    padding: 0.5rem 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    border-left: 3px solid var(--primary-color);
}

.layer-list li strong {
    color: var(--primary-dark);
}

.stats-mini {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat-mini {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-mini span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.secret-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

/* Diary Updates Grid */
.diary-updates-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 80px 0;
}

.diary-entries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.diary-entry-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.diary-entry-card .diary-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.diary-entry-card p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE - IP Giải Đau Sections
   ======================================== */

@media (max-width: 1024px) {
    .diary-step {
        grid-template-columns: 1fr;
    }
    
    .step-marker {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .step-marker .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.25rem;
        margin: 0;
    }
    
    .diary-content {
        grid-template-columns: 1fr;
    }
    
    .diary-step.reverse .diary-content {
        grid-template-columns: 1fr;
    }
    
    .diary-step.reverse .diary-content .diary-text,
    .diary-step.reverse .diary-content .diary-image {
        order: unset;
    }
    
    .diary-image {
        height: 250px;
    }
    
    .secret-content {
        grid-template-columns: 1fr;
    }
    
    .secret-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .secret-content.reverse .secret-image,
    .secret-content.reverse .secret-text {
        order: unset;
    }
    
    .secret-image {
        height: 220px;
    }
    
    .diary-entries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ip-positioning .ip-line-1,
    .ip-positioning .ip-line-2,
    .ip-positioning .ip-line-3 {
        font-size: 1.1rem;
    }
    
    .hero-title-ip .title-main {
        font-size: 2rem;
    }
    
    .hero-title-ip .title-sub {
        font-size: 1.6rem;
    }
    
    .hero-note {
        padding: 1rem 1.5rem;
    }
    
    .hero-note p {
        font-size: 1rem;
    }
    
    .pain-story-box {
        padding: 1.5rem;
    }
    
    .pain-narrative {
        font-size: 1rem;
    }
    
    .diary-content {
        padding: 1.5rem;
    }
    
    .diary-text h3 {
        font-size: 1.4rem;
    }
    
    .turning-point-box {
        padding: 2rem;
    }
    
    .turning-point-box blockquote {
        font-size: 1.15rem;
    }
    
    .secret-header {
        flex-direction: column;
        text-align: center;
    }
    
    .secret-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .secret-title-box h3 {
        font-size: 1.4rem;
    }
    
    .secret-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ip-positioning .ip-line-1,
    .ip-positioning .ip-line-2,
    .ip-positioning .ip-line-3 {
        font-size: 1rem;
    }
    
    .hero-title-ip .title-main {
        font-size: 1.6rem;
    }
    
    .hero-title-ip .title-sub {
        font-size: 1.3rem;
    }
    
    .btn-ghost {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .pain-deeper {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .diary-image {
        height: 200px;
    }
    
    .secret-image {
        height: 180px;
    }
    
    .btn-reveal {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-contact,
    .back-to-top,
    .hero-bg,
    .social-share,
    .share-section,
    .gratitude-section,
    .btn-reveal {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .secret-details.hidden {
        display: block;
    }
}