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

body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.6;
}

/* Navigation */
nav {
    background-color: #ffffff;
    padding: 1.25rem 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Playfair Display', serif;
}

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

.logo .legacy {
    color: #D4AF37;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AF37;
}

.services-item {
    position: relative;
}

.services-dropdown {
    cursor: pointer;
}

.services-dropdown::after {
    content: ' ▾';
    font-size: 0.85rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.services-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2d3748;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f9fafb;
    color: #D4AF37;
    border-left-color: #D4AF37;
}

.book-call-btn {
    background-color: #D4AF37;
    color: #1a202c;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.book-call-btn:hover {
    background-color: #c49d2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 3rem;
    text-align: center;
    color: #ffffff;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* About Page Styles */
.about-content {
    background-color: #ffffff;
}

.about-story, .about-mission {
    margin-bottom: 3rem;
}

.about-story h2, .about-mission h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-story p, .about-mission p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

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

.value-item {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-item p {
    color: #6b7280;
    font-size: 1.05rem;
}

/* Target Audience Styles */
.target-audience {
    background-color: #ffffff;
}

.audience-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.audience-intro p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

.audience-card {
    padding: 2.5rem 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    margin-top: 2rem;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stories Section */
.stories-section {
    background-color: #ffffff;
}

.story-card {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a202c;
}

.story-tag {
    background-color: #D4AF37;
    color: #1a202c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-result {
    color: #1a202c;
    font-size: 1.05rem;
}

/* FAQ Page Styles */
.faq-section {
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Contact Page Styles */
.contact-section {
    background-color: #ffffff;
}

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

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-item h4 {
    font-size: 1.15rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 1.05rem;
}

.contact-form-container {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.submit-btn {
    background-color: #D4AF37;
    color: #1a202c;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c49d2e;
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-grid-section {
    background-color: #ffffff;
}

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

.service-card {
    padding: 2.5rem 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #D4AF37;
    font-weight: 600;
}

/* Service Detail Page */
.service-detail {
    background-color: #ffffff;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.feature-list, .benefit-list {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.feature-list li {
    font-size: 1.05rem;
    line-height: 2;
    color: #4b5563;
    padding-left: 1rem;
}

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

.benefit-list li {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #1a202c;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.95) 0%, rgba(245, 240, 235, 0.92) 50%, rgba(255, 255, 255, 0.85) 100%),
                url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=2070&auto=format&fit=crop') center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(250, 248, 245, 0.6) 70%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 800;
}

.hero h1 .generations {
    color: #D4AF37;
    display: block;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #D4AF37;
    color: #1a202c;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background-color: #c49d2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-button::before {
    content: '💼';
    font-size: 1.2rem;
}

/* Wealth Journey Section */
.wealth-journey {
    background-color: #f9fafb;
    padding: 5rem 3rem;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.journey-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.journey-header p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Timeline */
.progress-timeline {
    position: relative;
    margin-bottom: 4rem;
}

.progress-bar-container {
    position: relative;
    margin-bottom: 3rem;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background-color: #d1d5db;
    border-radius: 2px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background-color: #D4AF37;
    border-radius: 2px;
    width: 66.66%;
    transition: width 0.5s ease;
}

.timeline-stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: -14px;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #d1d5db;
    margin-bottom: 1rem;
    border: 4px solid #f9fafb;
    transition: all 0.3s ease;
    position: relative;
}

.stage.active .stage-dot,
.stage.completed .stage-dot {
    background-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

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

.stage-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.stage.active .stage-title {
    color: #1a202c;
    font-weight: 700;
}

.stage-range {
    font-size: 0.9rem;
    color: #9ca3af;
}

.stage.active .stage-range {
    color: #D4AF37;
    font-weight: 600;
}

/* Stage Details */
.stage-details {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stage-details-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.stage-details-left p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.help-box {
    background-color: #f3f4f6;
    padding: 1.75rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.help-box h4 {
    color: #1a202c;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.help-box p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.stage-details-right {
    text-align: center;
}

.income-range {
    margin-bottom: 2.5rem;
}

.income-range h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.income-range p {
    color: #6b7280;
    font-size: 1.05rem;
}

.strategy-button {
    display: inline-block;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.strategy-button:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

/* CTA Section 1 */
.cta-section-1 {
    background-color: #f3f4f6;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-section-1 p {
    font-size: 1.35rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-btn {
    display: inline-block;
    background-color: #6b7c6e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    background-color: #5a6b5d;
    transform: translateY(-2px);
}

/* WLT Legacy Method Section */
.legacy-method {
    background-color: #f9fafb;
    padding: 5rem 3rem;
}

.method-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.method-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.method-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section 2 */
.cta-section-2 {
    background: linear-gradient(135deg, #6b7c6e 0%, #7a8b7d 100%);
    padding: 5rem 3rem;
    text-align: center;
}

.cta-section-2 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.call-btn:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-btn::before {
    content: '📞';
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #334155;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand h3 .legacy {
    color: #D4AF37;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 450px;
}

.footer-column h4 {
    color: #D4AF37;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.chat-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .values-grid, .audience-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .book-call-btn {
        text-align: center;
        display: block;
    }

    /* Mobile Dropdown */
    .services-item .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background-color: #f9fafb;
        border-radius: 6px;
        display: none;
    }

    .services-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .services-dropdown::after {
        content: ' ▾';
        transition: transform 0.3s ease;
    }

    .services-item.active .services-dropdown::after {
        transform: rotate(180deg);
        display: inline-block;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .content-container {
        padding: 3rem 1.5rem;
    }

    .values-grid, .audience-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .wealth-journey {
        padding: 3rem 1.5rem;
    }

    .journey-header h2 {
        font-size: 2rem;
    }

    .journey-header p {
        font-size: 1rem;
    }

    .timeline-stages {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .stage-details {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .stage-details-left h3 {
        font-size: 2rem;
    }

    .stage-details-left p {
        font-size: 1rem;
    }

    .income-range h3 {
        font-size: 2rem;
    }

    .cta-section-1 p {
        font-size: 1.15rem;
    }

    .method-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .method-header h2 {
        font-size: 2.25rem;
    }

    .cta-section-2 h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .journey-header h2 {
        font-size: 1.75rem;
    }

    .timeline-stages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-bar-fill {
        width: 50%;
    }

    .stage-details {
        padding: 1.5rem;
    }

    .stage-details-left h3 {
        font-size: 1.75rem;
    }

    .income-range h3 {
        font-size: 1.75rem;
    }

    .cta-section-1 {
        padding: 3rem 1.5rem;
    }

    .cta-section-1 p {
        font-size: 1rem;
    }

    .legacy-method {
        padding: 3rem 1.5rem;
    }

    .method-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .method-header h2 {
        font-size: 1.85rem;
    }

    .method-header p {
        font-size: 1rem;
    }

    .cta-section-2 {
        padding: 3rem 1.5rem;
    }

    .cta-section-2 h2 {
        font-size: 1.75rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .chat-button svg {
        width: 24px;
        height: 24px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .page-header-content p {
        font-size: 1.05rem;
    }
}
