* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --ivory: #FFFFF0;
}

body {
    color: var(--espresso);
}

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

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(60, 36, 21, 0.4) 100%);
    z-index: 5;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 4rem 2rem;
    gap: 3rem;
}
.hero-content {
    flex: 1;
    color: var(--pure-white);
    animation: fadeInUp 2s ease-out;
    padding-right: 2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--sand);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6),
                 0 1px 3px rgba(0,0,0,0.8);
}
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5),
                 0 2px 8px rgba(0,0,0,0.7),
                 0 1px 3px rgba(0,0,0,0.9);
}
@keyframes liquidGold {
    0%   { background-position: 0% 50%;   filter: brightness(1) contrast(1); }
    50%  { background-position: 100% 50%; filter: brightness(1.1) contrast(1.05); }
    100% { background-position: 0% 50%;   filter: brightness(1) contrast(1); }
}
.masters-effect {
    position: relative;
    background: linear-gradient(
        92deg,
        var(--pure-white) 0%,
        var(--pure-white) 25%,
        var(--warm-beige) 35%,
        var(--light-beige) 45%,
        var(--warm-beige) 55%,
        var(--pure-white) 75%,
        var(--pure-white) 100%
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquidGold 8s ease-in-out infinite;
    display: inline-block;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6),
                 0 1px 5px rgba(0,0,0,0.8);
    letter-spacing: 0.02em;
    max-width: 650px;
}

/* Trust Row */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.trust-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--espresso);
    border: 1px solid rgba(212, 165, 116, 0.2);
    letter-spacing: 0.05em;
}

/* Order Form */
.hero-form-wrapper {
    z-index: 50;
    width: 420px;
    min-width: 400px;
    flex-shrink: 0;
    animation: slideInRight 2s ease-out;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hero-form-overlay {
    background: rgba(251, 247, 240, 0.75);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1),
                inset 0 1px 1px rgba(255,255,255,0.8);
}
.order-form-container { padding: 1.5rem 2rem 1.75rem; }
.form-header { text-align: center; margin-bottom: 1rem; }
.form-header h3 {
    font-size: 1.375rem;
    color: var(--espresso);
    margin-bottom: 0.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.form-subtitle {
    font-size: 0.75rem;
    color: var(--gray-700);
    font-weight: 600;
    letter-spacing: 0.02em;
    max-width: 90%;
    margin: 0 auto;
}
.entity-selection { margin-bottom: 0.75rem; }
.entity-options { display: grid; gap: 0.5rem; }
.entity-option {
    background: rgba(255,255,255,0.7);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}
.entity-option:hover {
    border-color: var(--warm-beige);
    background: rgba(255,255,255,0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.08);
}
.entity-option.selected {
    border-color: var(--warm-taupe);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.1);
}
.entity-option:focus { outline: 3px solid var(--warm-beige); outline-offset: 2px; }
.entity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.entity-info { flex: 1; min-width: 0; }
.entity-info h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 0.125rem;
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevents wrapping */
}
.popular-badge {
    font-size: 0.5rem;
    background: var(--success-green);
    color: var(--pure-white);
    padding: 0.1875rem 0.375rem;
    border-radius: 6px;
    font-weight: 800;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.entity-info p {
    font-size: 0.6875rem;
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}
.entity-price { text-align: right; }
.entity-price-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--warm-taupe);
    display: block;
}
.entity-price span {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--gray-500);
    display: block;
    text-transform: lowercase;
}

.reassurance-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--warm-taupe);
    margin: 1rem 0 0.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 0.5rem;
}
.reassurance-text strong { font-weight: 700; color: var(--espresso); }

/* Order Button */
.order-now-button {
    width: 100%;
    padding: 0.875rem;
    background: var(--espresso);
    color: var(--pure-white);
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 0.75rem;
    border-radius: 10px;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}
.order-now-button:hover:not(:disabled) {
    background: var(--warm-taupe);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}
.order-now-button:disabled { opacity: 0.5; cursor: not-allowed; }
.order-now-button.loading { color: transparent; }
.order-now-button.loading::after {
    content: '';
    position: absolute; width: 20px; height: 20px;
    top: 50%; left: 50%; margin-left: -10px; margin-top: -10px;
    border: 2px solid var(--pure-white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}
@keyframes spinner { to { transform: rotate(360deg); } }

/* Multi-step Form */
.form-step { display: none; animation: fadeIn 0.3s ease-out; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-progress { display: flex; justify-content: space-between; margin-bottom: 2rem; padding: 0 1rem; }
.progress-step { flex: 1; text-align: center; position: relative; }
.progress-step::before { content: ''; position: absolute; top: 15px; left: 50%; width: 100%; height: 2px; background: var(--gray-200); z-index: -1; }
.progress-step:last-child::before { display: none; }
.progress-step.completed::before { background: var(--warm-beige); }
.progress-dot { width: 30px; height: 30px; background: var(--gray-200); border-radius: 50%; margin: 0 auto 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--gray-500); transition: all 0.3s ease; }
.progress-step.active .progress-dot, .progress-step.completed .progress-dot { background: var(--warm-beige); color: var(--pure-white); }
.progress-label { font-size: 0.7rem; color: var(--gray-500); font-weight: 600; }
.progress-step.active .progress-label, .progress-step.completed .progress-label { color: var(--espresso); }

/* Contact Form Fields */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-700); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 0.9rem; font-family: inherit; transition: all 0.3s ease; background: rgba(255,255,255,0.8); }
.form-input:focus { outline: none; border-color: var(--warm-beige); background: var(--pure-white); }
.form-input.error { border-color: #EF4444; }
.error-message { font-size: 0.75rem; color: #EF4444; margin-top: 0.25rem; display: none; }
.form-input.error + .error-message { display: block; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.form-checkbox input[type="checkbox"] { margin-top: 0.25rem; width: 16px; height: 16px; cursor: pointer; }
.form-checkbox label { font-size: 0.75rem; color: var(--gray-600); line-height: 1.5; cursor: pointer; }
.form-checkbox a { color: var(--warm-taupe); text-decoration: underline; }
.form-navigation { display: flex; gap: 1rem; margin-top: 1.5rem; }
.btn-back { padding: 0.75rem 1.5rem; background: var(--gray-200); color: var(--gray-700); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-back:hover { background: var(--gray-300); }
.btn-next { flex: 1; padding: 0.75rem; background: var(--warm-beige); color: var(--pure-white); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-next:hover { background: var(--warm-beige-dark); transform: translateY(-1px); }

/* Payment Section */
#payment-element { 
    margin-bottom: 1.5rem; 
}
.payment-notice {
    padding: 2rem; 
    background: var(--sand); 
    border-radius: 12px; 
    text-align: center;
    border: 2px solid var(--warm-beige);
}
.payment-notice h4 {
    font-size: 1.1rem;
    color: var(--espresso);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.payment-notice p {
    font-size: 0.9rem;
    color: var(--warm-taupe);
    line-height: 1.5;
}

/* Payment Summary */
.payment-summary { background: var(--cream); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.payment-summary h4 { font-size: 1rem; font-weight: 700; color: var(--espresso); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.summary-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.9rem; }
.summary-item:first-of-type { border-bottom: 1px solid var(--gray-200); padding-bottom: 0.75rem; margin-bottom: 0.75rem; }
.summary-item:last-of-type { font-weight: 700; font-size: 1.1rem; color: var(--warm-beige-dark); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
    color: var(--pure-white);
    z-index: 2;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6),
                 0 1px 5px rgba(0,0,0,0.8);
    font-weight: 600;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* --- New Sections Styling --- */
/* General Section/Video Styling */
.section-video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.5;
}
.section-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* All-Inclusive Section */
#all-inclusive-section {
    padding: 8rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.inclusive-container { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.inclusive-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--espresso);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.inclusive-header p {
    font-size: 1.25rem;
    color: var(--warm-taupe);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}
.inclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}
.feature-category {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.1);
    border-color: var(--warm-beige);
}
.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}
.category-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--warm-beige);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
}
.inclusive-feature-list { list-style: none; padding: 0; }
.inclusive-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.inclusive-feature-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--success-green);
    margin-top: 2px;
}
.inclusive-feature-list li strong { font-weight: 600; color: var(--espresso); }

/* Postcard Sections */
.postcard {
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}
.postcard-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.postcard h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--espresso);
}
.postcard p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-taupe);
    max-width: 800px;
    margin: 0 auto 3rem;
}

#postcard_revolution { background: var(--sand); }
#postcard_proof { background: var(--cream); }
#postcard_warning { background: var(--pure-white); }
#postcard_validation { background: var(--sand); }
#postcard_legacy { background: var(--pure-white); }
#postcard_next_step { background: var(--cream); }
#postcard_final_cta { background: var(--espresso); color: var(--pure-white); }
#postcard_final_cta h2 { color: var(--pure-white); }
#postcard_final_cta p { color: var(--sand); }

/* Revolution Section Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.old-way, .new-way {
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.old-way { background: var(--sand); border: 2px solid rgba(0,0,0,0.1); opacity: 0.8; }
.new-way {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--warm-beige);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
}
.old-way h3, .new-way h3 { font-size: 1.5rem; margin-bottom: 2rem; font-weight: 700; }
.old-way h3 { color: var(--rich-brown); opacity: 0.7; }
.new-way h3 { color: var(--warm-beige-dark); }
.comparison-list { list-style: none; text-align: left; font-size: 1.1rem; line-height: 2; }
.comparison-list li { padding-left: 2rem; position: relative; margin-bottom: 1rem; }
.old-way .comparison-list li::before { content: "❌"; position: absolute; left: 0; }
.new-way .comparison-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success-green); font-weight: bold; }

/* Social Proof Enhancement */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--warm-beige-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--warm-taupe);
    font-weight: 600;
    text-transform: uppercase;
}
/* UPDATED: Styled Reviews Link as Secondary CTA Button */
.proof-link,
a.proof-link {
    display: inline-block !important;
    background: var(--sand) !important;
    color: var(--warm-beige-dark) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--warm-beige) !important;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15) !important;
    text-transform: uppercase !important;
}
.proof-link:hover,
a.proof-link:hover {
    background: var(--warm-beige) !important;
    color: var(--pure-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.25) !important;
    text-decoration: none !important;
}

/* Risk Grid */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.risk-item {
    background: var(--cream);
    padding: 2.8rem;
    border-radius: 8px;
    text-align: left;
    border: 2px solid var(--sand);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.risk-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.1);
    border-color: var(--warm-beige);
}
.risk-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--warm-beige-dark); font-weight: 700; }
.risk-item p { font-size: 0.95rem; color: var(--warm-taupe); line-height: 1.6; font-weight: 500; margin-bottom: 0; }

/* Timeline for Next Steps */
.timeline { position: relative; max-width: 800px; margin: 4rem auto; }
.timeline::before {
    content: '';
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 2px; height: 100%; background: var(--light-beige);
}
.timeline-item { position: relative; padding: 2rem; margin-bottom: 2rem; }
.timeline-item:nth-child(odd)  { padding-right: calc(50% + 2rem); text-align: right; }
.timeline-item:nth-child(even) { padding-left: calc(50% + 2rem);  text-align: left; }
.timeline-dot {
    position: absolute; width: 20px; height: 20px; background: var(--warm-beige);
    border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px var(--cream);
}
.timeline-content {
    background: var(--pure-white); padding: 2rem; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--warm-beige-dark); font-weight: 700; }
.timeline-content p { font-size: 0.95rem; color: var(--warm-taupe); line-height: 1.6; margin-bottom: 0; }

/* CTA Buttons */
.postcard-button {
    display: inline-block;
    background: var(--warm-beige);
    color: var(--pure-white);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.3);
    border-radius: 6px;
}
.postcard-button:hover { background: var(--warm-taupe); transform: translateY(-2px); box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4); }
#postcard_final_cta .postcard-button { background: var(--pure-white); color: var(--espresso); }
#postcard_final_cta .postcard-button:hover { background: var(--sand); }

/* Professional Section - Modern Design */
.professional-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pure-white) 50%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.professional-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.professional-header { text-align: center; margin-bottom: 6rem; animation: fadeInUp 1s ease-out; }
.professional-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.highlight-text {
    background: linear-gradient(45deg, var(--warm-beige), var(--warm-taupe));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.professional-subheadline { font-size: 1.125rem; color: var(--gray-600); font-weight: 500; letter-spacing: 0.02em; opacity: 0.9; }
.professional-intro { max-width: 800px; margin: 0 auto 5rem; text-align: center; }
.lead-text { font-size: 1.5rem; font-weight: 600; color: var(--espresso); margin-bottom: 1rem; line-height: 1.4; }
.support-text { font-size: 1.125rem; color: var(--gray-600); line-height: 1.7; }
.consequences-section { margin-bottom: 6rem; }
.section-label {
    font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-taupe);
    margin-bottom: 3rem; text-align: center; position: relative; display: flex; align-items: center; justify-content: center; gap: 2rem;
}
.section-label::before, .section-label::after { content: ''; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--warm-beige), transparent); }
.consequences-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.consequence-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}
.consequence-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--warm-beige), var(--warm-taupe));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.consequence-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15); border-color: var(--warm-beige); }
.consequence-card:hover::before { transform: scaleX(1); }
.consequence-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 115, 85, 0.1));
    border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--warm-taupe);
}
.consequence-icon svg { width: 30px; height: 30px; }
.consequence-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.consequence-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }
.solution-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 230, 211, 0.3) 100%);
    border-radius: 30px; padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); margin-bottom: 4rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
}
.solution-headline { font-size: 2rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.5rem; text-align: center; }
.solution-subtext { font-size: 1.125rem; color: var(--gray-600); text-align: center; margin-bottom: 3rem; }
.solution-features { display: grid; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.solution-feature {
    display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6); border-radius: 16px; transition: all 0.3s ease; border: 1px solid transparent;
}
.solution-feature:hover { background: rgba(255, 255, 255, 0.9); transform: translateX(10px); border-color: var(--warm-beige); }
.feature-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--warm-beige), var(--warm-taupe));
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pure-white);
}
.feature-icon svg { width: 22px; height: 22px; }
.solution-feature span { font-size: 1rem; color: var(--gray-700); line-height: 1.6; font-weight: 500; }
.professional-cta { text-align: center; margin-top: 5rem; }
.cta-text {
    font-size: 1.25rem; color: var(--espresso); font-weight: 600; margin-bottom: 2rem;
    max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5;
}
.professional-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-beige), var(--warm-taupe));
    color: var(--pure-white); padding: 1.25rem 3rem; text-decoration: none; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; border-radius: 50px; font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    position: relative; overflow: hidden;
}
.professional-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4); }

/* Legacy Section Styling */
.legacy-intro { display: flex; align-items: center; gap: 3rem; margin-bottom: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.legacy-number { font-family: 'Bebas Neue', sans-serif; font-size: 8rem; color: var(--warm-beige-dark); line-height: 1; flex-shrink: 0; opacity: 0.8; }
.legacy-text p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1rem; text-align: left; }
.lifetime-membership {
    text-align: center; margin-bottom: 4rem; padding: 3rem;
    background: rgba(212, 165, 116, 0.08); border-radius: 20px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.lifetime-membership h3 { font-size: 1.3rem; color: var(--espresso); margin-bottom: 2rem; font-weight: 600; }
.membership-badge {
    display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
    color: var(--warm-beige-dark); letter-spacing: 0.05em; margin-bottom: 1.5rem; position: relative;
}
.membership-badge::after { content: ''; position: absolute; bottom: -10px; left: 0; right: 0; height: 3px; background: var(--warm-beige); opacity: 0.4; }
.lifetime-membership p { font-size: 1.1rem; color: var(--warm-taupe); max-width: 600px; margin: 0 auto; }
.support-promise {
    background: var(--pure-white); border-radius: 20px; padding: 3rem; margin-bottom: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); max-width: 1000px; margin-left: auto; margin-right: auto;
}
.promise-header { text-align: center; margin-bottom: 3rem; }
.promise-icon { width: 48px; height: 48px; color: var(--warm-beige-dark); margin-bottom: 1rem; }
.promise-header h3 { font-size: 1.4rem; color: var(--espresso); font-weight: 700; max-width: 700px; margin: 0 auto; line-height: 1.5; }
.support-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.support-item { text-align: center; padding: 2rem; border-radius: 12px; background: var(--cream); transition: all 0.3s ease; }
.support-item:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(212, 165, 116, 0.1); }
.support-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--warm-beige-dark); margin-bottom: 0.5rem; display: block; }
.support-item h4 { font-size: 1.1rem; color: var(--espresso); margin-bottom: 0.5rem; font-weight: 700; }
.support-item p { font-size: 0.9rem; color: var(--warm-taupe); margin: 0; }
.legacy-promise-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255,255,255,0.8) 100%);
    border: 2px solid var(--warm-beige); border-radius: 16px; padding: 2.5rem; text-align: center; max-width: 800px; margin: 0 auto;
}
.legacy-promise-box p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 1rem; }
.legacy-emphasis { font-size: 1.3rem !important; font-weight: 700; color: var(--warm-beige-dark); margin-bottom: 0 !important; }


/* Animation Classes for Intersection Observer */
[data-aos] { transition: all 0.8s ease-out; }
[data-aos="fade-up"] { opacity: 0; transform: translateY(30px); }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-30px); }
.aos-animate { opacity: 1; transform: translate(0); }

/* Mobile specific fix for Professional Corp text */
@media (max-width: 480px) {
    .entity-info h5 {
        font-size: 1rem;
        white-space: normal; /* Allow wrapping on very small screens */
    }
    .entity-option {
        padding: 0.625rem 0.875rem;
    }
    .entity-price-amount {
        font-size: 1.125rem;
    }

    .scroll-indicator {
        width: 255px;
        bottom: 1rem;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding: 6rem 2rem 4rem;
        text-align: center;
        gap: 3rem;
    }
    .hero-content { padding-right: 0; }
    .hero-form-wrapper { width: 100%; max-width: 450px; min-width: auto; }

    #all-inclusive-section { padding: 6rem 2rem; }
    .postcard { padding: 6rem 2rem; }
    .comparison-grid, .risk-grid { grid-template-columns: 1fr; }
    .new-way { transform: scale(1); }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px; padding-right: 0; text-align: left;
    }
    .timeline::before { left: 30px; transform: none; }
    .timeline-dot { left: 30px; transform: translate(-50%, -50%); }
    .proof-stats { grid-template-columns: 1fr; gap: 2rem; }

    /* Professional Section Mobile */
    .professional-section { padding: 6rem 2rem; }
    .solution-section { padding: 3rem 2rem; }
    .consequences-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .legacy-intro { flex-direction: column; text-align: center; gap: 2rem; }
    .legacy-number { font-size: 6rem; }
    .legacy-text p { text-align: center; }
    .support-features { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
    

    .logo svg { width: 140px; height: 26px; } /* resize logo on small screens */
    .hero-container { padding: 4rem 1.5rem 3rem; }

    .form-input { font-size: 16px; padding: 0.875rem 1rem; } /* prevents iOS zoom */
    .form-label { font-size: 0.875rem; }
    .btn-next, .btn-back { padding: 1rem; font-size: 0.9rem; }

    .inclusive-grid { grid-template-columns: 1fr; }
    .postcard h2 { font-size: 2.5rem; }
    .postcard { min-height: auto; }

    /* Professional Section Mobile */
    .professional-section { padding: 4rem 1.5rem; min-height: auto; }
    .professional-headline { font-size: 2.5rem; }
    .lead-text { font-size: 1.25rem; }
    .support-text { font-size: 1rem; }
    .consequence-card { padding: 2rem; }
    .solution-section { padding: 2rem 1.5rem; border-radius: 20px; }
    .solution-headline { font-size: 1.5rem; }
    .solution-feature { padding: 1rem; }
    .section-label::before, .section-label::after { width: 30px; }

    /* Legacy Section Mobile */
    .membership-badge { font-size: 2.5rem; }
    .support-promise { padding: 2rem 1.5rem; }
    .legacy-promise-box { padding: 2rem 1.5rem; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--warm-beige); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--warm-taupe); }

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid var(--warm-beige);
    outline-offset: 2px;
}
