/*
Theme Name: Recopy Premium Landing
Theme URI: https://recopy.eu
Author: Recopy
Author URI: https://recopy.eu
Description: Premium B2B landing page for real estate copywriting services
Version: 1.7.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recopy
Tags: business, landing-page, premium, real-estate, one-page
*/

/* ===================================
   PREMIUM REAL ESTATE COPYWRITER LANDING PAGE
   recopy.eu - B2B Landing Page
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Premium Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #2d5a4a;
    --accent-color: #d4af37;
    --accent-light: #f0e5c9;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #2d5a4a;
    --warning-color: #c74440;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding);
}

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

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

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
    margin-bottom: 20px;
}

.lead {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

.highlight {
    color: var(--accent-color);
}

.highlight-text {
    background: var(--accent-light);
    padding: 24px;
    border-left: 4px solid var(--accent-color);
    font-size: 20px;
    font-weight: 500;
    margin: 32px 0;
}

/* ===================================
   BUTTONS & CTAs
   =================================== */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-large {
    padding: 24px 56px;
    font-size: 20px;
}

.cta-button i {
    margin-right: 8px;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color), #c9a32a);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 16px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.headline {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.headline .highlight {
    position: relative;
    display: inline-block;
}

.headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-light);
    z-index: -1;
    transform: skewX(-5deg);
}

.subheadline {
    font-size: 26px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.first-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, var(--accent-light) 0%, transparent 50%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.15);
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem {
    background: var(--bg-primary);
}

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

.problem-card {
    background: var(--bg-secondary);
    padding: 40px 32px;
    border-radius: 12px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--accent-color);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.problem-deep {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 16px;
    margin: 80px 0;
}

.problem-deep-content h3 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 32px;
}

.problem-deep-content p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.problem-deep-content .lead {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 32px;
}

.story-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 80px 0;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-conclusion {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 24px;
    background: var(--accent-light);
    border-radius: 8px;
    margin-top: 32px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.bio-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 80px;
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 16px;
}

.bio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.bio-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.bio-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bio-signature {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution {
    background: var(--bg-secondary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.solution-card {
    background: var(--bg-primary);
    padding: 48px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.solution-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.solution-number {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--accent-light);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.benefit-list li {
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: start;
    color: var(--text-primary);
    line-height: 1.6;
}

.benefit-list i {
    color: var(--success-color);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 18px;
    flex-shrink: 0;
}

.unique-approach {
    background: var(--bg-primary);
    padding: 64px;
    border-radius: 16px;
    margin: 80px 0;
    border: 2px solid var(--accent-color);
}

.unique-approach h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

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

.unique-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.unique-item h4 i {
    color: var(--accent-color);
    font-size: 24px;
}

.unique-item p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

.advantage-section {
    margin-top: 80px;
}

.advantage-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
}

.advantage-intro {
    text-align: center;
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.advantage-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.comparison-column {
    padding: 40px;
    border-radius: 12px;
}

.comparison-bad {
    background: #fef5f5;
    border: 2px solid #f5c6c6;
}

.comparison-good {
    background: #f0f8f5;
    border: 2px solid var(--success-color);
}

.comparison-column h4 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-bad h4 {
    color: var(--warning-color);
}

.comparison-good h4 {
    color: var(--success-color);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    font-size: 17px;
    padding: 10px 0;
    line-height: 1.6;
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */
.social-proof {
    background: var(--bg-primary);
}

.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

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

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.author-position {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.logos-section {
    margin: 80px 0;
    text-align: center;
}

.logos-section h3 {
    font-size: 28px;
    margin-bottom: 48px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 24px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: transparent;
    border-radius: 12px;
    transition: var(--transition-base);
    min-height: 180px;
}

.logo-item:hover {
    transform: translateY(-4px);
}

.logo-item img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition-base);
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

.logo-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 32px 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-indicators {
    margin-top: 80px;
}

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

.trust-item {
    text-align: center;
    padding: 32px 24px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-color);
}

.trust-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    background: var(--bg-secondary);
}

.benefits-story {
    margin-bottom: 80px;
}

.benefit-scenario {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.benefit-scenario.reverse {
    grid-template-columns: 1fr 400px;
}

.benefit-scenario.reverse .scenario-image {
    order: 2;
}

.benefit-scenario.reverse .scenario-content {
    order: 1;
}

.scenario-content h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.scenario-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefit-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 24px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 24px;
}

.scenario-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.benefits-list {
    margin: 80px 0;
}

.benefits-list h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

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

.benefit-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-color);
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

.freedom-section {
    background: var(--bg-primary);
    padding: 64px;
    border-radius: 16px;
    margin: 80px 0;
}

.freedom-section h3 {
    font-size: 32px;
    margin-bottom: 32px;
}

.freedom-list {
    list-style: none;
    padding: 0;
}

.freedom-list li {
    font-size: 19px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.7;
}

.freedom-list i {
    color: var(--warning-color);
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.pain-relief {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 16px;
    margin: 80px 0;
}

.pain-relief h3 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 32px;
}

.pain-relief p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.pain-intro {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
}

.pain-main {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 32px 0;
}

.pain-solution {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.hidden-benefits {
    margin-top: 80px;
    padding: 64px;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 2px solid var(--accent-color);
}

.hidden-benefits h3 {
    font-size: 32px;
    margin-bottom: 32px;
}

.hidden-benefits p {
    font-size: 19px;
    line-height: 1.8;
}

/* ===================================
   RESULTS SECTION
   =================================== */
.results {
    background: var(--bg-primary);
}

.more-testimonials {
    margin-top: 64px;
}

.testimonials-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.testimonials-cta {
    text-align: center;
    padding: 64px 48px;
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-top: 64px;
}

.testimonials-cta p {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* ===================================
   OFFER SECTION
   =================================== */
.offer {
    background: var(--bg-secondary);
}

.offer-intro-text {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.offer-intro-text p {
    font-size: 20px;
    line-height: 1.7;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-badge-subscription {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9a32a 100%);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.package-header {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 40px 32px;
    text-align: center;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.package-card.package-subscription {
    border: 2px solid var(--accent-color);
}

.package-card.package-subscription .package-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9a32a 100%);
}

.package-card.package-subscription .package-price {
    background: var(--accent-light);
    border-radius: 12px;
    padding: 16px;
}

.package-header h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
}

.package-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.package-content {
    padding: 40px 32px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.package-features li {
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 1.6;
}

.package-features i {
    color: var(--success-color);
    margin-top: 4px;
    font-size: 18px;
    flex-shrink: 0;
}

.package-price {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.value-building {
    background: var(--bg-primary);
    padding: 64px;
    border-radius: 16px;
    margin: 80px 0;
}

.value-building h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
}

.value-intro {
    text-align: center;
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.value-calculation {
    max-width: 900px;
    margin: 0 auto;
}

.value-calculation p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.value-list {
    list-style: disc;
    padding-left: 40px;
    margin: 24px 0;
}

.value-list li {
    font-size: 18px;
    padding: 8px 0;
    line-height: 1.7;
}

.value-conclusion {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 32px;
    background: var(--accent-light);
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.bonuses-section {
    margin-top: 80px;
}

.bonuses-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
}

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

.bonus-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 24px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.bonus-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.bonus-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.bonus-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee {
    background: var(--bg-primary);
}

.guarantee-content {
    display: flex;
    align-items: start;
    gap: 48px;
    margin-bottom: 64px;
    background: var(--bg-secondary);
    padding: 64px;
    border-radius: 16px;
}

.guarantee-icon {
    width: 120px;
    height: 120px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.guarantee-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 24px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 32px;
}

.guarantee-details {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-details h4 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 32px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
}

.guarantee-list li {
    font-size: 18px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.7;
}

.guarantee-list i {
    color: var(--success-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   SCARCITY SECTION
   =================================== */
.scarcity {
    background: var(--bg-secondary);
}

.scarcity-content {
    max-width: 900px;
    margin: 0 auto;
}

.scarcity-intro {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.scarcity-content > p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

.scarcity-highlight {
    background: var(--bg-primary);
    padding: 48px;
    border-radius: 12px;
    margin: 48px 0;
    border: 2px solid var(--accent-color);
}

.scarcity-highlight h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.scarcity-highlight p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.scarcity-benefits {
    margin: 48px 0;
}

.scarcity-benefits h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.scarcity-benefits ul {
    list-style: none;
    padding: 0;
}

.scarcity-benefits li {
    font-size: 18px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.7;
}

.scarcity-benefits i {
    color: var(--accent-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.consultation-cta {
    text-align: center;
    margin: 48px 0;
    padding: 32px;
    background: var(--accent-light);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.consultation-cta .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 48px;
}

.consultation-cta .cta-button:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.consultation-cta .cta-button i {
    margin-right: 10px;
    font-size: 20px;
}

.scarcity-loss {
    margin: 48px 0;
    background: var(--bg-dark);
    color: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

.scarcity-loss h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 32px;
}

.loss-list {
    list-style: none;
    padding: 0;
}

.loss-list li {
    font-size: 18px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.loss-list i {
    color: var(--warning-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.loss-calculation {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
}

.cta-section .section-title {
    color: #ffffff;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.cta-step {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: var(--transition-base);
}

.cta-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.cta-step h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
}

.cta-step p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-contact {
    text-align: center;
    margin: 64px 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-email {
    background: #ffffff;
    color: var(--primary-color);
}

.contact-email:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-linkedin {
    background: #0077b5;
    color: #ffffff;
}

.contact-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-note {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.cta-final {
    text-align: center;
    margin-top: 64px;
}

.cta-section .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   WARNING SECTION
   =================================== */
.warning {
    background: var(--bg-secondary);
}

.warning-content {
    max-width: 900px;
    margin: 0 auto;
}

.warning-intro {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 48px 0;
}

.choice-option {
    padding: 40px;
    border-radius: 12px;
    border: 2px solid;
}

.choice-bad {
    background: #fef5f5;
    border-color: var(--warning-color);
}

.choice-good {
    background: #f0f8f5;
    border-color: var(--success-color);
}

.choice-option h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.choice-bad h3 {
    color: var(--warning-color);
}

.choice-good h3 {
    color: var(--success-color);
}

.choice-option p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.choice-question {
    font-weight: 600;
    font-size: 18px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid currentColor;
}

.warning-reflect {
    background: var(--bg-primary);
    padding: 48px;
    border-radius: 12px;
    margin: 48px 0;
}

.warning-reflect h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.reflect-list {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 32px;
}

.reflect-list li {
    font-size: 19px;
    padding: 8px 0;
    line-height: 1.7;
}

.reflect-conclusion {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 32px;
}

.warning-ignore,
.warning-disappointment,
.warning-daily-loss {
    margin: 48px 0;
}

.warning-ignore h3,
.warning-disappointment h3,
.warning-daily-loss h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.warning-ignore p,
.warning-disappointment p,
.warning-daily-loss p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.warning-cta {
    text-align: center;
    margin-top: 64px;
}

/* ===================================
   PS SECTION
   =================================== */
.ps-section {
    background: var(--bg-dark);
    color: #ffffff;
}

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

.ps-content h2 {
    color: var(--accent-color);
    font-size: 48px;
    margin-bottom: 32px;
}

.ps-content h3 {
    color: #ffffff;
    font-size: 28px;
    margin: 48px 0 24px;
}

.ps-content p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.ps-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.ps-list li {
    font-size: 18px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.ps-list i {
    color: var(--accent-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ps-investment {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 40px 0;
}

.ps-speed {
    font-size: 19px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
}

.ps-final-cta {
    text-align: center;
    margin: 64px 0 48px;
}

.ps-section .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
}

.ps-section .cta-button:hover {
    background: #ffffff;
}

.ps-cta-note {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    margin-bottom: 0;
}

.ps-signature {
    font-size: 20px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.ps-signature strong {
    color: var(--accent-color);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h3 {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 8px;
}

.footer-logo p {
    font-size: 15px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    
    .hero-content,
    .story-section,
    .bio-section,
    .benefit-scenario {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefit-scenario.reverse .scenario-image,
    .benefit-scenario.reverse .scenario-content {
        order: 0;
    }
    
    .problem-grid,
    .solution-grid,
    .benefits-grid,
    .testimonials-grid,
    .testimonials-extended {
        grid-template-columns: 1fr;
    }
    
    .trust-grid,
    .cta-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    
    .container {
        padding: 0 20px;
    }
    
    .headline {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .headline .highlight::after {
        height: 8px;
        bottom: 4px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
        top: -30%;
    }
    
    .hero-image::before {
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    
    .problem-deep,
    .pain-relief {
        padding: 48px 32px;
    }
    
    .unique-grid,
    .advantage-comparison,
    .bonuses-grid,
    .choice-comparison {
        grid-template-columns: 1fr;
    }
    
    .trust-grid,
    .cta-steps,
    .testimonials-extended {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.hero-image {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Prevent layout shift */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Enhanced focus styles for accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
a, button, .cta-button, .package-card, .problem-card, .solution-card {
    will-change: transform;
}