/*
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 - Strategic Image Management
Version: 2.5.0
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, strategic, image-management
*/

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

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

:root {
    /* Colors - Bottle Green & Gold Premium Palette */
    --primary-color: #003820;
    /* Deep Bottle Green */
    --primary-light: #054a2e;
    /* Mid Green */
    --secondary-color: #002d1a;
    /* Darker Green */
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-hover: #c5a028;
    /* Deep Gold */
    --accent-light: #fdf5e6;
    /* Creamy White / Gold Tint */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-primary: #ffffff;
    --bg-secondary: #f4f7f4;
    /* Very light green hint */
    --bg-dark: #003820;
    /* Bottle Green BG */
    --border-color: #d1d9d1;
    --success-color: #003820;
    --warning-color: #c74440;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 56, 32, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 56, 32, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 56, 32, 0.15);

    /* Transitions */
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 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.1;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 24px;
}

.lead {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-color);
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
    color: var(--primary-light);
}

.customer-voice {
    font-weight: 700;
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1em;
}

.highlight {
    color: var(--accent-color);
    background: linear-gradient(to right, var(--accent-color), #f9e29c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    background: var(--accent-light);
    padding: 32px;
    border-left: 5px solid var(--accent-color);
    font-size: 22px;
    font-weight: 500;
    margin: 48px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
}

/* ===================================
   BUTTONS & CTAs
   =================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 4px;
    /* More architectural/sharp look */
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.cta-primary:hover::after {
    transform: translateX(100%);
}

.cta-large {
    padding: 24px 64px;
    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: 120px 0 160px;
    background: var(--bg-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero .headline,
.hero .subheadline,
.hero .first-paragraph {
    color: #ffffff;
}

.hero strong,
.hero em {
    color: var(--accent-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInDown 1s 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: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Hero Image is now completely static */

/* ===================================
   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: #ffffff;
    padding: 48px 40px;
    border-radius: 4px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

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

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 28px;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
}

.problem-deep {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 100px 80px;
    border-radius: 4px;
    margin: 100px 0;
    border-left: 8px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
}

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

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

.problem-deep-content strong,
.problem-deep-content em {
    color: var(--accent-color);
}

.problem-deep-content .lead {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-family: var(--font-display);
}

.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: #ffffff;
    padding: 56px 48px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

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

.solution-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
}

.solution-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.solution-card li strong {
    color: var(--primary-color);
}

.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 strong {
    color: var(--accent-color);
}

.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: #ffffff;
    padding: 48px 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    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);
}

/* ===================================
   PORTAL NIERUCHOMOŚCI SECTION
   =================================== */
.portal-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.portal-header {
    text-align: center;
    margin-bottom: 64px;
}

.portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

.portal-badge i {
    font-size: 18px;
}

.portal-section .section-title {
    color: #ffffff;
    margin-bottom: 16px;
}

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

.portal-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Statystyki */
.portal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.stat-growth {
    font-size: 14px;
    color: #4ade80;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Pakiety Portalu */
.portal-packages-intro {
    text-align: center;
    margin-bottom: 48px;
}

.portal-packages-intro h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
}

.portal-packages-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

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

.portal-package-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.portal-package-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.portal-package-card.featured-portal {
    border: 2px solid var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

.portal-badge-top {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.portal-package-header {
    padding: 48px 28px 24px;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
}

.portal-package-header h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portal-package-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.portal-package-content {
    padding: 28px;
}

.portal-advantage {
    background: rgba(212, 175, 55, 0.12);
    border-left: 4px solid var(--accent-color);
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.portal-advantage strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.portal-features li {
    font-size: 14px;
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-features li:last-child {
    border-bottom: none;
}

.portal-features i {
    color: var(--accent-color);
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.portal-package-price {
    text-align: center;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.portal-price-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Portal CTA */
.portal-cta {
    text-align: center;
    padding: 48px 32px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.portal-cta-text {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 500;
}

.portal-cta-button {
    background: linear-gradient(135deg, var(--accent-color), #c9a32a);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.portal-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.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: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.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);
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), #c9a32a);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.package-badge-subscription {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9a32a 100%);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

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

.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: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.package-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
}

.package-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-advantage {
    background: #f8fbf8;
    border-left: 5px solid var(--accent-color);
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    box-shadow: inset 0 0 20px rgba(0, 56, 32, 0.02);
}

.package-advantage strong {
    color: var(--primary-light);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: auto;
    flex: 1;
}

.package-features li {
    font-size: 16px;
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li strong {
    color: var(--primary-color);
    font-weight: 800;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent-color);
    margin-top: 2px;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: 700;
}

.package-price {
    text-align: center;
    padding: 24px 0 0;
    margin-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.package-card.featured .price-amount {
    color: var(--accent-color);
}

.price-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 500;
}

.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: #ffffff;
    padding: 64px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.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: #ffffff;
    padding: 60px;
    border-radius: 4px;
    margin: 64px 0;
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.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;
}

.scarcity-loss strong {
    color: var(--accent-color);
}

.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: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition-base);
}

.cta-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.cta-step strong {
    color: var(--accent-color);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 32px;
    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-content strong,
.ps-content em {
    color: var(--accent-color);
}

.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, 215, 0, 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;
    }

    .portal-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portal-packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 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;
    }

    .portal-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .portal-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .single-services,
    .recopy-values {
        padding: 40px 24px;
    }

    .strategic-intro {
        padding: 24px;
    }

    .strategic-intro h3,
    .single-services h3,
    .recopy-values h3 {
        font-size: 26px;
    }

    .logos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

/* ===================================
   NEW SECTIONS - Strategic Packages
   =================================== */

/* Strategic Intro */
.strategic-intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--accent-light);
    border-radius: 12px;
}

.strategic-intro h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.strategic-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Single Services Section */
.single-services {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--bg-secondary);
    border-radius: 16px;
}

.single-services h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
}

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

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.service-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-display);
}

/* Recopy Values Section */
.recopy-values {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    color: #ffffff;
}

.recopy-values h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--accent-color);
}

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

.value-card {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   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 animations removed for stability */

/* 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;
}