/* ===================================
   Jorge Perez Online Marketing Expert
   CSS Styles - Corporate Design Identity
   =================================== */

/* CSS Custom Properties für einheitliche Farbverwaltung */
:root {
    /* PRZ Marketing Solutions Brand Colors */
    --primary-blue: #5DB8C6;        /* Hauptfarbe: Header, Highlights, Icons */
    --secondary-blue: #2F6D7E;      /* Starkes Blau: Buttons, Navigation, Links */
    --accent-pink: #E94E77;         /* CTA Magenta: Wichtige Aktionen */
    --success-green: #48C774;       /* Erfolg: Häkchen, positive Signale */
    
    /* Hover-Varianten */
    --primary-blue-hover: #4BA8B8;
    --secondary-blue-hover: #347C85;
    --accent-pink-hover: #C63D60;
    --success-green-hover: #3BB765;
    
    /* Neutralfarben (Basis & Texte) */
    --white: #FFFFFF;               /* Standard-Hintergrund, Text auf dunklen Flächen */
    --light-gray: #F2F4F5;         /* Hintergrundboxen, Sektionen */
    --medium-gray: #BFC8CE;        /* Trennlinien, dezente Texte */
    --text-dark: #2B2B2B;          /* Fließtexte (85% Deckkraft für Lesbarkeit) */
    --text-dark-85: rgba(43, 43, 43, 0.85);  /* Text mit 85% Deckkraft */
    
    /* Legacy-Unterstützung (für bestehende Referenzen) */
    --gray-50: #F2F4F5;
    --gray-100: #F2F4F5;
    --gray-200: #BFC8CE;
    --gray-300: #BFC8CE;
    --gray-700: #2B2B2B;
    --gray-800: #2B2B2B;
    --gray-900: #2B2B2B;
    
    /* Schriftgrößen aus CDI */
    --font-size-h1-desktop: 48px;
    --font-size-h1-mobile: 36px;
    --font-size-h2-desktop: 36px;
    --font-size-h2-mobile: 28px;
    --font-size-h3-desktop: 24px;
    --font-size-h3-mobile: 20px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    
    /* Abstände aus CDI */
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--neutral-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: var(--font-size-h1-desktop);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-h2-desktop);
}

h3 {
    font-size: var(--font-size-h3-desktop);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: var(--font-size-body);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px; /* Touch-optimiert aus CDI */
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-blue-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: var(--primary-blue-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.btn-cta {
    background: var(--accent-pink);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: var(--accent-pink-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-200);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--neutral-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--neutral-gray);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after, .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(1);
    transition: var(--transition);
}

.nav-cta {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-pink), var(--secondary-blue));
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 20px;
    color: var(--accent-pink);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1rem;
}

.hero-description {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

.hero-intro {
    font-size: 18px;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-gray);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Jorge Perez Hero Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jorge-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    transition: var(--transition);
}

.jorge-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -5px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 4;
}

.expertise-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.expertise-badge i {
    color: var(--accent-pink);
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    color: var(--primary-blue);
    font-size: 20px;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark-85);
    white-space: nowrap;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: -5%;
    animation-delay: 2s;
}

.center-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graphic-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.graphic-circle i {
    color: var(--white);
    font-size: 40px;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-gray);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 16px; }
}

/* Section Styles */
section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--font-size-h2-desktop);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: var(--neutral-gray);
}

/* Services Section */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-pink);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: var(--white);
    font-size: 24px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-features li i {
    color: var(--success-green);
    font-size: 16px;
    margin-top: 2px;
}

/* Problem Awareness Section */
.problem-awareness {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.problem-awareness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(59,130,246,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(236,72,153,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(59,130,246,0.1)"/></svg>');
    opacity: 0.3;
}

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

.problem-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-title {
    font-size: var(--font-size-h2-desktop);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.problem-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-statement {
    text-align: center;
}

.problem-statement p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

.highlight-text {
    font-size: 22px !important;
    font-weight: 600;
    color: var(--secondary-blue) !important;
}

.problem-statement strong {
    color: var(--accent-pink);
    font-weight: 600;
}

.problem-revelation {
    display: flex;
    justify-content: center;
}

.revelation-box {
    background: rgba(30, 64, 175, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 700px;
    backdrop-filter: blur(10px);
}

.revelation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-pink), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.revelation-icon i {
    color: var(--white);
    font-size: 24px;
}

.revelation-content p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.6;
}

.revelation-main {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--white) !important;
}

.emphasis {
    color: var(--accent-pink);
    font-weight: 700;
}

.problem-solution {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.point-text h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.solution-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.solution-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.solution-cta {
    text-align: center;
}

.solution-cta .btn {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-blue));
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.solution-cta .btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 120px;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

.about-intro {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 1rem;
}

.about-intro p:last-of-type {
    margin-bottom: 0;
}

.section-divider {
    text-align: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin: 2rem 0 1rem 0;
    font-weight: 300;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.philosophy-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.point-icon i {
    color: var(--white);
    font-size: 20px;
}

.point-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.point-content p {
    color: var(--neutral-gray);
    margin-bottom: 0;
}

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

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 18px;
}

.credential-item span {
    font-weight: 500;
    color: var(--text-dark-85);
}

/* Trust Section */
.about-trust {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.about-trust h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.trust-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.trust-header i {
    color: var(--success-green);
    font-size: 18px;
    flex-shrink: 0;
}

.trust-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-item p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Section */
.process {
    background: var(--gray-50);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--gray-300);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--neutral-gray);
    margin-bottom: 1rem;
}

.step-duration {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
}

.step-benefit {
    margin: 1rem 0 0.5rem 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    font-size: 15px;
    color: var(--text-dark-85);
    font-weight: 500;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 18px;
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    color: var(--accent-pink);
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--accent-pink);
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-blue);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--neutral-gray);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark-85);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: var(--font-size-body);
    transition: var(--transition);
    min-height: 44px; /* Touch-optimiert */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    /* Jorge Perez Hero Image Tablet */
    .jorge-photo {
        width: 300px;
        height: 380px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        position: static;
        justify-self: center;
    }
    
    /* Problem Awareness Tablet */
    .problem-solution {
        padding: 2.5rem 2rem;
    }
    
    .solution-points {
        gap: 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Typography */
    h1, .title-main {
        font-size: 28px;
        line-height: 1.3;
    }
    
    h2 {
        font-size: var(--font-size-h2-mobile);
    }
    
    h3 {
        font-size: var(--font-size-h3-mobile);
    }
    
    .title-sub {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Jorge Perez Hero Image Mobile */
    .jorge-photo {
        width: 280px;
        height: 350px;
    }
    
    .expertise-badge {
        bottom: -15px;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    /* Problem Awareness Mobile */
    .problem-title {
        font-size: var(--font-size-h2-mobile);
        line-height: 1.3;
    }
    
    .revelation-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .problem-solution {
        padding: 2rem 1.5rem;
    }
    
    .solution-title {
        font-size: 22px;
    }
    
    .solution-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .solution-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Credentials Mobile */
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .service-card {
        aspect-ratio: auto;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    /* Process */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    /* CTA Benefits */
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modal */
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 60px;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .modal,
    .hero-visual,
    .floating-card {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .btn {
        border: 1px solid black;
        background: white;
        color: black;
    }
}