:root {
    --black: #0A0A0A;
    --deep-black: #050505;
    --purple-silk: #5A3D8C;
    --purple-silk-light: #8B6DB0;
    --purple-silk-dark: #3D2A5C;
    --red-gift: #C41E3A;
    --red-gift-light: #E63946;
    --premium-wood: #8B4513;
    --premium-wood-light: #A0522D;
    --gold: #FFD700;
    --gold-light: #FFEC8B;
    --platinum: #E5E4E2;
    --text-light: #F0F0F0;
    --text-dark: #888888;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-black);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 350;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(90, 61, 140, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 25%);
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 1200px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(90, 61, 140, 0.2);
    transition: var(--transition-slow);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    z-index: 1002;
}

.logo span {
    color: var(--gold);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--red-gift), var(--gold));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover span::after {
    transform: scaleX(1);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--purple-silk));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(90, 61, 140, 0.5);
    color: var(--text-light);
    padding: 12px 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1002;
    transition: var(--transition-medium);
}

.mobile-menu-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu .nav-links a {
    font-size: 18px;
    padding: 10px 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 1px solid rgba(90, 61, 140, 0.5);
    color: var(--text-light);
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-medium);
}

.mobile-menu-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 70% 30%, rgba(90, 61, 140, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(196, 30, 58, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 700px;
}

/* UPDATED: Clean hero tag */
.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(90, 61, 140, 0.2), rgba(196, 30, 58, 0.2));
    color: var(--gold);
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 500;
    border: 1px solid rgba(90, 61, 140, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

/* CLEAN HERO TITLE - Simple and elegant */
.hero-title {
    font-size: 72px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--gold) 50%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.hero-title:hover {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple-silk));
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title:hover::before {
    width: 100%;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 350;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

/* REMOVED: hero-actions class as buttons were deleted */

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    opacity: 0;
    animation: visualReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

.floating-box {
    position: absolute;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-medium);
}

.floating-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.box-1 {
    width: 320px;
    height: 420px;
    background: linear-gradient(135deg, var(--purple-silk-dark), var(--deep-black));
    border: 1px solid rgba(90, 61, 140, 0.5);
    top: 10%;
    right: 15%;
    animation: floatBox1 6s ease-in-out infinite;
    animation-delay: 2s;
}

.box-2 {
    width: 280px;
    height: 360px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(139, 69, 19, 0.5);
    top: 30%;
    right: 5%;
    animation: floatBox2 7s ease-in-out infinite;
    animation-delay: 2.2s;
}

.box-3 {
    width: 240px;
    height: 300px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(196, 30, 58, 0.5);
    top: 50%;
    right: 25%;
    animation: floatBox3 8s ease-in-out infinite;
    animation-delay: 2.4s;
}

.floating-box i {
    font-size: 64px;
    color: rgba(255, 215, 0, 0.3);
    transition: var(--transition-medium);
}

.floating-box:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

/* Trust Signals */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid rgba(90, 61, 140, 0.2);
}

.trust-item {
    text-align: center;
    position: relative;
    padding: 20px;
    border: 1px solid transparent;
    transition: var(--transition-medium);
}

.trust-item:hover {
    border: 1px solid rgba(90, 61, 140, 0.3);
    background: rgba(10, 10, 10, 0.5);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gold);
    transition: var(--transition-medium);
}

.trust-item:hover .trust-icon {
    color: var(--red-gift);
    transform: scale(1.1);
}

.trust-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    padding: 160px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* FIXED: Section titles should always be visible */
.section-title {
    font-size: 60px;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    /* Removed opacity and transform that were hiding the text */
    color: var(--text-light);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 350;
    line-height: 1.8;
}

/* Problem Section */
.problem {
    background: radial-gradient(ellipse at 30% 20%, rgba(196, 30, 58, 0.08) 0%, transparent 50%);
}

/* FIXED: Problem statement should always be visible */
.problem-statement {
    font-size: 36px;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 100px;
    font-weight: 350;
    line-height: 1.4;
    position: relative;
    padding: 0 100px;
    font-family: 'Cinzel', serif;
    /* Removed opacity and transform that were hiding the text */
}

.problem-statement::before,
.problem-statement::after {
    content: '"';
    font-size: 100px;
    color: rgba(90, 61, 140, 0.3);
    position: absolute;
    top: -50px;
    font-family: 'Cinzel', serif;
}

.problem-statement::before {
    left: 0;
}

.problem-statement::after {
    right: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    padding: 50px;
    border: 1px solid rgba(90, 61, 140, 0.2);
    background: rgba(10, 10, 10, 0.5);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--red-gift), var(--purple-silk));
    transform: translateY(-100%);
    transition: transform 0.8s ease;
}

.comparison-column:hover::before {
    transform: translateY(0);
}

.comparison-column h3 {
    font-size: 28px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}

.comparison-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--red-gift), transparent);
}

.solution-column h3::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.6;
    transition: var(--transition-medium);
}

.comparison-list li:hover {
    transform: translateX(10px);
    color: var(--text-light);
}

.comparison-list i {
    margin-right: 20px;
    margin-top: 5px;
    font-size: 18px;
    transition: var(--transition-medium);
}

.traditional-list i {
    color: var(--red-gift);
}

.traditional-list li:hover i {
    color: var(--red-gift-light);
    transform: scale(1.2);
}

.solution-list i {
    color: var(--gold);
}

.solution-list li:hover i {
    color: var(--gold-light);
    transform: scale(1.2);
}

/* Solution Section */
.solution {
    background: radial-gradient(ellipse at 70% 50%, rgba(90, 61, 140, 0.1) 0%, transparent 50%);
}

/* REMOVED: solution-essence class as this section was deleted */

/* Benefits Section */
.benefits {
    background: radial-gradient(ellipse at 30% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 60px 50px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(90, 61, 140, 0.2);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 61, 140, 0.1), rgba(196, 30, 58, 0.1));
    opacity: 0;
    transition: var(--transition-medium);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.benefit-number {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
}

.benefit-title {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-medium);
}

.benefit-card:hover .benefit-title {
    color: var(--gold);
}

.benefit-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* Products Section */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px auto;
    max-width: 1300px;
}

.product-item {
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(90, 61, 140, 0.3);
    transition: var(--transition-medium);
    background: rgba(10, 10, 10, 0.7);
}

.product-item:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    transform: translateY(0);
    transition: var(--transition-medium);
}

.product-item:hover .product-content {
    transform: translateY(0);
}

.product-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition-medium);
}

.product-item:hover .product-icon {
    color: var(--red-gift);
    transform: scale(1.2);
}

.product-name {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.product-description {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    padding: 60px 50px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(90, 61, 140, 0.3);
    position: relative;
    transition: var(--transition-medium);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.9);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--premium-wood));
    color: var(--deep-black);
    padding: 8px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    border: 1px solid var(--gold);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(90, 61, 140, 0.2);
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-card:hover .pricing-name {
    color: var(--gold);
}

.pricing-price {
    font-size: 56px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.pricing-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.pricing-card:hover .pricing-price::after {
    transform: scaleX(1);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 50px;
}

.pricing-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: var(--transition-medium);
}

.pricing-features li:hover {
    transform: translateX(10px);
    color: var(--text-light);
}

.pricing-features i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 14px;
    transition: var(--transition-medium);
}

.pricing-features li:hover i {
    color: var(--red-gift);
    transform: scale(1.2);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 200px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(90, 61, 140, 0.2) 0%, transparent 60%);
}

/* FIXED: Final title should always be visible */
.final-title {
    font-size: 72px;
    margin-bottom: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--gold) 50%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    /* Removed opacity and transform that were hiding the text */
}

.final-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.8;
    /* Removed opacity and transform that were hiding the text */
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Removed opacity and transform that were hiding the buttons */
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 120px 0 60px;
    border-top: 1px solid rgba(90, 61, 140, 0.3);
}

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

.footer-brand {
    font-size: 36px;
    font-family: 'Cinzel', serif;
    margin-bottom: 30px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 400px;
    font-weight: 350;
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-medium);
    position: relative;
    padding-bottom: 2px;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(90, 61, 140, 0.2);
    color: var(--text-dark);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Additional styles for content */
.experience-content, .agents-content, .homeowner-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.content-block p {
    margin-bottom: 25px;
}

.content-block ul {
    list-style: none;
    margin-bottom: 30px;
}

.content-block ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.content-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.highlight-box {
    background: rgba(90, 61, 140, 0.1);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 20px 44px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: var(--transition-medium);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-silk), var(--purple-silk-dark));
    color: var(--text-light);
    border: 1px solid rgba(90, 61, 140, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(90, 61, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(139, 109, 176, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

/* Animations */
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes actionsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes visualReveal {
    to {
        opacity: 1;
    }
}

@keyframes floatBox1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

@keyframes floatBox3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(0.5deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 52px;
    }
    
    .final-title {
        font-size: 60px;
    }
    
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .final-title {
        font-size: 48px;
    }
    
    .problem-statement {
        font-size: 28px;
        padding: 0 30px;
    }
    
    /* Mobile Menu Styles */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-bar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}