/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background: #27ae60;
    color: #ffffff;
}

.cookie-buttons .btn-primary:hover {
    background: #229954;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   NAVIGATION
   ======================================== */

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    width: 90%;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION - ASYMMETRIC
   ======================================== */

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 2rem 4rem;
    overflow: hidden;
}

.hero-offset-block {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    transform: translateY(-30px);
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text-overlay p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-wrap {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 55%;
    height: 600px;
    transform: rotate(5deg);
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-hero {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

/* ========================================
   PROBLEM REVEAL SECTION
   ======================================== */

.problem-reveal {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.offset-content-left {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.section-label {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.offset-content-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.offset-content-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.stats-block-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateY(40px);
}

.stat-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: rotate(-2deg);
}

.stat-item:nth-child(2) {
    transform: rotate(2deg);
    margin-left: 40px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
}

/* ========================================
   STORY SECTION
   ======================================== */

.story-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.narrow-center {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.narrow-center img {
    width: 100%;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.narrow-center p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.highlight-text {
    background: #fff3cd;
    padding: 1.5rem;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0;
}

.inline-cta {
    display: inline-block;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

/* ========================================
   TRUST BUILDER
   ======================================== */

.trust-builder {
    padding: 120px 2rem;
    background: #2c3e50;
    position: relative;
}

.overlapping-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.card-offset-1 {
    transform: translateX(10%);
}

.card-offset-2 {
    transform: translateX(-10%);
}

.card-offset-3 {
    transform: translateX(15%);
}

.trust-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* ========================================
   SERVICES ASYMMETRIC LAYOUT
   ======================================== */

.services-preview {
    padding: 120px 2rem;
    background: #f8f9fa;
}

.services-asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 5%;
}

.services-intro-offset h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-intro-offset p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.service-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-featured {
    border: 3px solid #e74c3c;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

/* ========================================
   BENEFITS REVEAL
   ======================================== */

.benefits-reveal {
    padding: 100px 2rem;
    background: #ffffff;
}

.benefits-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefits-visual {
    flex: 1;
}

.benefits-visual img {
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

.benefits-list {
    flex: 1;
}

.benefits-list h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.custom-list {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-list li {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 900;
    font-size: 1.3rem;
}

.btn-primary-large {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

/* ========================================
   TESTIMONIALS ASYMMETRIC
   ======================================== */

.testimonials-asymmetric {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title-offset {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.testimonial-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.offset-testimonial-1 {
    transform: translateX(5%);
    max-width: 700px;
}

.offset-testimonial-2 {
    transform: translateX(-5%);
    max-width: 700px;
    margin-left: auto;
}

.offset-testimonial-3 {
    transform: translateX(10%);
    max-width: 700px;
}

.testimonial p {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1rem;
}

/* ========================================
   URGENCY SECTION
   ======================================== */

.urgency-section {
    padding: 100px 2rem;
    background: #2c3e50;
    text-align: center;
}

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

.urgency-content-centered h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.urgency-content-centered p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 2rem 0;
}

.cta-urgency {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(231, 76, 60, 0.5);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: 100px 2rem;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-offset-1 {
    transform: translateX(-5%);
}

.step-offset-2 {
    transform: translateX(5%);
}

.step-offset-3 {
    transform: translateX(-8%);
}

.step-offset-4 {
    transform: translateX(8%);
}

.step-offset-5 {
    transform: translateX(-3%);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* ========================================
   CONSULTATION FORM
   ======================================== */

.consultation-form-section {
    padding: 120px 2rem;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-intro-offset {
    margin-bottom: 3rem;
}

.form-intro-offset h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro-offset p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.consultation-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-final-large {
    display: inline-block;
    background: #ffffff;
    color: #f5576c;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-final-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-cta-btn {
    background: #ffffff;
    color: #e74c3c;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* ========================================
   PAGE HERO VARIATIONS
   ======================================== */

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 2rem 4rem;
    text-align: center;
}

.hero-content-offset {
    max-width: 800px;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content-offset p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-intro-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.about-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-image-block {
    flex: 1;
}

.about-image-block img {
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.mission-section {
    padding: 100px 2rem;
    background: #f8f9fa;
}

.mission-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement {
    margin-bottom: 4rem;
    margin-left: 5%;
}

.mission-statement h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.large-text {
    font-size: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
    font-weight: 600;
}

.values-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.team-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.team-offset-1 {
    transform: translateY(-20px);
}

.team-offset-2 {
    transform: translateY(20px);
}

.team-offset-3 {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #e74c3c;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.achievements-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.achievements-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.achievements-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4rem;
}

.achievement-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.achievement-label {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.approach-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-layout h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-point {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #e74c3c;
}

.approach-point h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.approach-point p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.cta-about-section {
    padding: 100px 2rem;
    background: #2c3e50;
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-intro-section {
    padding: 80px 2rem;
    background: #ffffff;
    text-align: center;
}

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

.services-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-detailed-section {
    padding: 60px 2rem 100px;
    background: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    gap: 3rem;
}

.service-card-reversed {
    flex-direction: row-reverse;
}

.service-card-featured {
    border: 3px solid #e74c3c;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-badge {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.service-badge-popular {
    background: #e74c3c;
}

.service-badge-premium {
    background: #27ae60;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-price-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.price-label {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 600;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-guarantee {
    padding: 100px 2rem;
    background: #2c3e50;
}

.guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
}

.guarantee-text {
    font-size: 1.2rem;
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.guarantee-points {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-point {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.guarantee-point h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee-point p {
    font-size: 1.05rem;
    color: #ecf0f1;
    line-height: 1.7;
}

.services-cta-section {
    padding: 100px 2rem;
    background: #ffffff;
    text-align: center;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-main-section {
    padding: 100px 2rem;
    background: #ffffff;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-item a {
    color: #e74c3c;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c0392b;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
}

.map-overlay p {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
}

.contact-faq-section {
    padding: 100px 2rem;
    background: #f8f9fa;
}

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

.faq-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-item a {
    color: #e74c3c;
    font-weight: 600;
}

.contact-cta-section {
    padding: 100px 2rem;
    background: #2c3e50;
    text-align: center;
}

/* ========================================
   THANKS PAGE STYLES
   ======================================== */

.thanks-page-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 700px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    background: #e74c3c;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

.thanks-additional {
    margin: 2.5rem 0;
}

.thanks-additional p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1.2rem;
}

.contact-email a {
    color: #e74c3c;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   LEGAL PAGE STYLES
   ======================================== */

.legal-page-section {
    padding: 140px 2rem 100px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1rem;
    color: #95a5a6;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section a {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #c0392b;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-offset-block {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-image-wrap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        transform: rotate(0);
        margin-top: 3rem;
    }

    .problem-reveal,
    .benefits-split,
    .about-split-layout,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-detail-card,
    .service-card-reversed {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 90%;
        max-width: 400px;
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }

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

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

    .section-title-offset,
    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .offset-content-left h2,
    .services-intro-offset h2,
    .mission-statement h2,
    .team-section h2,
    .process-section h2,
    .achievements-content h2,
    .approach-layout h2,
    .faq-content h2,
    .urgency-content-centered h2,
    .final-cta-content h2,
    .cta-content-centered h2 {
        font-size: 2rem;
    }

    .stats-block-right {
        transform: translateY(0);
    }

    .stat-item:nth-child(2) {
        margin-left: 0;
    }

    .overlapping-cards .trust-card {
        transform: translateX(0) !important;
    }

    .testimonial {
        transform: translateX(0) !important;
        margin-left: 0 !important;
    }

    .process-steps-asymmetric .step {
        transform: translateX(0) !important;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        padding: 0.8rem 1.5rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

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

    .cta-hero,
    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-card {
        min-width: 100%;
    }

    .consultation-form {
        padding: 2rem 1.5rem;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }
}