/* ===================================
   MUHAZU Wasiat Islam Landing Page
   Theme: White-Gold Gradient + Black Accents
   =================================== */

/* CSS Variables */
:root {
    /* Gold Colors */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8960C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 188, 0.1) 100%);
    
    /* Base Colors */
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --white-off: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 1000;
    color: #f60426;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--black), var(--black)), var(--gold-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-gradient-subtle);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Highlight Text */
.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 48px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-image:
        linear-gradient(
            rgb(255, 255, 255),
            rgba(255, 253, 253, 0.65)
        ),
        url("https://muhazuglobal.com/assets/hero-wasiat.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--gold-gradient-subtle);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gold-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

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

.hero-title {
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.hero-benefits svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

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

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.hero-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient-subtle);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--gold-dark);
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.hero-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

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

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HERO BOOK – WASIAT PAGE */
.hero-book {
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-book::before {
    display: none;
}

.hero-book-inner {
    padding: 32px;
    text-align: -webkit-center;
}

.hero-book-image {
    width: 120%;
    max-width: 340px;
    margin: 0 auto 10px;
    display: block;
    /* Shadow ikut bentuk transparent image */
    filter:
      drop-shadow(0 30px 10px rgba(0, 0, 0, 0.639))
      drop-shadow(0 30px 10px rgba(201, 163, 39, 0.457));
}

.hero-book-caption {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.hero-book-caption span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 6px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.8125rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   SECTIONS - General
   =================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1f2933;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.section-title {
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.section-title .highlight {
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}


.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===================================
   SECTION: Apa Itu Wasiat
   =================================== */
.section-wasiat {
    background: var(--white);
}

.wasiat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wasiat-text .lead-text {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.wasiat-text em {
    color: var(--gold-dark);
    font-style: italic;
}

.wasiat-stat {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 16px;
    margin-top: 32px;
    border-left: 4px solid var(--gold-primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.wasiat-reasons {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 20px;
}

.wasiat-reasons h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.wasiat-reasons ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.wasiat-reasons li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-600);
}

.reason-icon {
    font-size: 1.5rem;
}

.reasons-conclusion {
    font-size: 0.9375rem;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
    margin: 0;
}

/* ===================================
   SECTION: Masalah Common
   =================================== */
.section-problems {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.779),
            rgba(0, 0, 0, 0.597)
        ),
        url("https://muhazuglobal.com/assets/familygaduh.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.section-problems .section-label {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}

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

.section-problems .section-subtitle {
    color: var(--gray-400);
}

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

.problem-card {
    background: var(--black-soft);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-base);
}

.problem-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.problem-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.5;
}

.problem-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.7;
}

/* ===================================
   SECTION: Nasihat (Advice)
   =================================== */
.section-advice {
    background: var(--white);
    position: relative;
}

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

.advice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient-subtle);
    border-radius: 50%;
    color: var(--gold-dark);
    margin-bottom: 32px;
}

.advice-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 48px;
}

.advice-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
    margin-bottom: 48px;
}

.advice-point {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 16px;
}

.advice-point-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: 50%;
    font-weight: 700;
}

.advice-point h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.advice-point p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

.advice-quote {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--black);
    padding: 40px;
    background: var(--gold-gradient-subtle);
    border-radius: 20px;
    border-left: 4px solid var(--gold-primary);
    margin: 0;
    text-align: left;
    line-height: 1.7;
}

/* ===================================
   SECTION: Future Problems
   =================================== */
.section-future-problems {
    background: var(--gray-100);
}

.future-problems-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.future-problem {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.future-problem:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.future-problem-visual {
    flex-shrink: 0;
    position: relative;
}

.future-problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient-subtle);
    border-radius: 20px;
    color: var(--gold-dark);
}

.future-problem-number {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--black);
}

.future-problem-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.future-problem-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.8;
}

/* ===================================
   SECTION: Heavy Advice
   =================================== */
.section-heavy-advice {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgb(0, 0, 0)
        ),
        url("https://muhazuglobal.com/assets/hero-wasiat.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.heavy-advice-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.heavy-advice-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.heavy-advice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    margin-bottom: 40px;
}

.heavy-advice-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 32px;
}

.heavy-advice-text {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 24px;
}

.heavy-advice-cta {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}

.heavy-advice-cta p {
    font-size: 1.125rem;
    color: var(--gold-light);
    margin: 0;
}

/* ===================================
   SECTION: Solution
   =================================== */
.section-solution {
    background: var(--white);
}

.solution-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.solution-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 32px;
    background: var(--gray-100);
    border-radius: 20px;
    position: relative;
}

.solution-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    transform: translateY(-50%);
}

.solution-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

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

.solution-cta p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ===================================
   SECTION: Offer
   =================================== */
   .section-offer {
    position: relative;
    overflow: hidden;
}

.offer-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.offer-overlay {
    position: absolute;
    background: linear-gradient(
        rgba(248, 246, 246, 0.9),
        rgba(242, 239, 239, 0.97)
    );
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
}


.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
}

.offer-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.offer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.offer-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.price-value {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-note {
    font-size: 1rem;
    color: var(--gray-500);
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.offer-feature svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.offer-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--gold-primary);
}

.offer-cta {
    width: 100%;
}

/* ===================================
   SECTION: Package
   =================================== */
.section-package {
    background: var(--white);
}

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

.package-item {
    padding: 32px;
    background: var(--gray-100);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
}

.package-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.package-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gold-gradient-subtle);
    border-radius: 16px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.package-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===================================
   SECTION: Testimonials
   =================================== */
.section-testimonials {
    background-image:
        linear-gradient(
            rgba(191, 187, 187, 0.42),
            rgba(131, 130, 130, 0.405)
        ),
        url("https://muhazuglobal.com/assets/clientfoto.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote svg {
    color: var(--gold-primary);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ===================================
   SECTION: FAQ
   =================================== */
.section-faq {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

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

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   SECTION: Final CTA
   =================================== */
.section-final-cta {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.65)
        ),
        url("https://muhazuglobal.com/assets/hero-wasiat2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.section-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
}

.final-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    margin-bottom: 32px;
}

.final-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-text {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.final-cta-btn {
    background: var(--gold-gradient);
    color: var(--black) !important;
    border: none;
    gap: 12px;
}

.final-cta-btn:hover {
    box-shadow: var(--shadow-gold);
}

.final-cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    color: var(--gray-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    margin: 0;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

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

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
}

.footer-whatsapp:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===================================
   MOBILE CTA BAR
   =================================== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card {
        max-width: 360px;
    }
    
    .wasiat-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advice-points {
        grid-template-columns: 1fr;
    }
    
    .solution-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-step::after {
        display: none;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-card {
        padding: 32px 24px;
    }
    
    .hero-book-image {
        max-width: 260px;
    }
    
    .price-amount,
    .price-value {
        font-size: 2.5rem;
    }
    
    .future-problem {
        flex-direction: column;
        gap: 20px;
        padding: 32px;
    }
    
    .offer-card {
        padding: 40px 24px;
    }
    
    .offer-trust {
        flex-direction: column;
        gap: 16px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta-bar {
        display: block;
    }
    
    .footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-benefits {
        gap: 8px;
    }
    
    .hero-benefits li {
        font-size: 0.875rem;
    }
    
    .wasiat-stat {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .advice-quote {
        padding: 24px;
        font-size: 1.125rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .hero-content,
    .hero-visual,
    .section-header,
    .problem-card,
    .advice-point,
    .future-problem,
    .solution-step,
    .package-item,
    .testimonial-card,
    .faq-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .hero-content { animation-delay: 0.1s; }
    .hero-visual { animation-delay: 0.3s; }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}