/* Base Styles */
:root {
    --primary-color: #3498db;
    --primary-light: #5dade2;
    --primary-dark: #2980b9;
    --secondary-color: #2ecc71;
    --secondary-light: #58d68d;
    --secondary-dark: #27ae60;
    --accent-color: #f39c12;
    --accent-light: #f5b041;
    --accent-dark: #d68910;
    --dark-color: #2c3e50;
    --dark-light: #34495e;
    --dark-darker: #1a2530;
    --light-color: #ecf0f1;
    --light-dark: #bdc3c7;
    --text-color: #333333;
    --light-text: #ffffff;
    --success-color: #27ae60;
    --warning-color: #e67e22;
    --danger-color: #e74c3c;
    --border-radius: 8px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    outline: none;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.glow-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    z-index: 9999;
    display: none;
}

@media (min-width: 992px) {
    .cursor-follower {
        display: block;
    }
}

/* Particles Container */
.particles-container, .particles-container-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.logo span {
    color: var(--primary-color);
    position: relative;
}

.logo-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.logo-animation .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    animation: logoRipple 3s infinite;
    opacity: 0;
}

.logo-animation .circle:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.logo-animation .circle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.logo-animation .circle:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes logoRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.desktop-only {
    display: block;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-text) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

.contact-btn:after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--light-text), var(--light-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--light-text);
    opacity: 0.7;
    animation: floatElement 8s ease-in-out infinite;
}

.floating-element.bitcoin {
    top: 20%;
    left: 10%;
    color: var(--accent-color);
    animation-delay: 0s;
}

.floating-element.ethereum {
    top: 70%;
    left: 20%;
    color: var(--primary-light);
    animation-delay: 1s;
}

.floating-element.key {
    top: 30%;
    right: 15%;
    color: var(--secondary-color);
    animation-delay: 2s;
}

.floating-element.brain {
    top: 60%;
    right: 10%;
    color: var(--accent-light);
    animation-delay: 3s;
}

@keyframes floatElement {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.trust-indicator {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--accent-color);
}

.trust-indicator p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Problem Section */
.problem {
    background-color: var(--light-text);
    text-align: center;
    position: relative;
    z-index: 2;
}

.problem h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.problem h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-box:hover:before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.counter {
    display: inline-block;
    position: relative;
}

.counter:after {
    content: '+';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 1.5rem;
}

.problem-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* How Psychoanalysis Works Section */
.how-psychoanalysis-works {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.how-psychoanalysis-works:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(236, 240, 241, 0) 70%);
    border-radius: 50%;
}

.how-psychoanalysis-works:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(236, 240, 241, 0) 70%);
    border-radius: 50%;
}

.how-psychoanalysis-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.how-psychoanalysis-works h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.psychoanalysis-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.psychoanalysis-text {
    flex: 1;
    min-width: 300px;
}

.psychoanalysis-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.psychoanalysis-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.psychoanalysis-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(46, 204, 113, 0.2);
    z-index: 1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.psychoanalysis-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.how-psychoanalysis-works .container {
    text-align: center;
}

/* Solution Section */
.solution {
    background-color: var(--dark-color);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.solution:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2) 0%, rgba(44, 62, 80, 0) 70%);
    border-radius: 50%;
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.solution h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.solution p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
}

.approach-comparison {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
}

.approach {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.approach:hover {
    transform: translateY(-10px);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.traditional {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.traditional .approach-icon {
    color: var(--primary-color);
}

.psychoanalysis {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.psychoanalysis .approach-icon {
    color: var(--secondary-color);
}

.approach h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.approach h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: -10px;
    left: 0;
}

.traditional h3:after {
    background: var(--primary-color);
}

.psychoanalysis h3:after {
    background: var(--secondary-color);
}

.approach ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.approach ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.8rem;
    line-height: 1;
}

/* Process Section */
.process {
    background-color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.process:before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(236, 240, 241, 0) 70%);
    border-radius: 50%;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.process h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
}

.step {
    flex: 1;
    min-width: 250px; /* Increased minimum width for process boxes */
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 350px; /* Maintained increased height for all process boxes */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step:hover:before {
    opacity: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.5);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--dark-color);
    width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.step p {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    flex-grow: 1;
}

/* Case Study Section */
.case-study {
    background-color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.case-study:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.case-study h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.case-study h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.case-study-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.case-study-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.image-glow {
    position: relative;
    display: inline-block;
}

.image-glow:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px 5px rgba(46, 204, 113, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-glow:hover:after {
    opacity: 1;
}

.case-study-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.case-study-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.case-study-details {
    flex: 1;
    min-width: 300px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.case-stat {
    text-align: center;
    position: relative;
}

.stat-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.case-stat:hover .stat-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.5);
}

.stat-circle h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.case-stat p {
    color: var(--text-color);
    font-weight: 500;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 0 10px 10px 0;
}

blockquote:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: 10px;
    top: -20px;
    color: rgba(52, 152, 219, 0.1);
    font-family: Georgia, serif;
}

blockquote cite {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    font-style: normal;
    color: var(--primary-color);
}

/* Trust Section */
.trust {
    background-color: var(--dark-color);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.trust h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.trust h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.trust-point {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-point:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.trust-point:hover .trust-icon {
    transform: scale(1.2);
}

.trust-point h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta .btn {
    position: relative;
    z-index: 2;
    background: var(--light-text);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 80px 0 30px;
    margin-bottom: 0;
    margin-top: auto;
    padding-bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--light-text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicator {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .case-study-content {
        flex-direction: column;
    }
    
    .psychoanalysis-text {
        text-align: center;
    }
    
    .approach h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .approach {
        text-align: center;
    }
    
    .vs-badge {
        position: relative;
        margin: 20px auto;
        transform: none;
        left: auto;
        top: auto;
    }
    
    .approach-comparison {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-line {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem !important;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats-container, .process-steps {
        flex-direction: column;
    }
    
    .stat-box, .step {
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 20px;
        justify-content: center;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .case-stat:not(:last-child):after {
        display: none;
    }
    
    blockquote {
        padding: 15px 20px;
    }
    
    blockquote:before {
        font-size: 3rem;
    }
}
