/* Smaller font for hero names line */
.hero-title .hero-names {
    display: block;
    font-size: 0.72em;
}
 
/* Footer phone link appearance */
.footer .contact-info a {
    color: inherit;
    text-decoration: none;
}
.footer .contact-info a:hover,
.footer .contact-info a:focus,
.footer .contact-info a:active {
    color: inherit;
    text-decoration: none;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #f8fafc;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #1e293b;
    color: #e2e8f0;
    border: 2px solid #334155;
}

.btn-secondary:hover {
    background: #334155;
    border-color: #475569;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Mobile Phone Bar */
.mobile-phone-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
    transition: transform 0.3s ease;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: white;
}

.mobile-phone i {
    font-size: 1rem;
    color: #10b981;
}

.phone-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Header всегда фиксирован сверху */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #334155;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    font-size: 1.1rem;
}
.header-phone i {
    color: #10b981;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.desktop-header-cta {
    display: flex;
}

.header-mobile-row {
    display: none;
}
.mobile-nav {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: auto;
}
.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3b82f6;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.header-phone:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.header-phone i {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('на главный экран-мини.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
}

.feature i {
    color: #10b981;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid #334155;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Direct Speech Section */
.direct-speech {
    padding: 80px 0;
    background: #0f172a;
}

.direct-speech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.speech-text {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.lawyer-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.lawyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speech-content h2 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.lawyer-quote {
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    position: relative;
}

.lawyer-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: #3b82f6;
    font-family: serif;
    opacity: 0.3;
}

.lawyer-quote p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lawyer-signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lawyer-signature strong {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
}

.lawyer-signature span {
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-container h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.why-choose-icon i {
    color: white;
    font-size: 2rem;
}

.why-choose-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.why-choose-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #0f172a;
}

.reviews-widget {
    display: flex;
    justify-content: center;
}

.reviews-widget > div {
    max-width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.section-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0 80px 0;
    background: #1e293b;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.04));
    border-radius: 50%;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(5, 150, 105, 0.02));
    border-radius: 50%;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #0f172a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.service-card li {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(29, 78, 216, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
}

.step:last-child .step-number::after {
    display: none;
}

.step-content h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cbd5e1;
}

/* Confidentiality Section */
.confidentiality {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.confidentiality-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.confidentiality h2 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.confidentiality-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.confidentiality-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.conf-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e2e8f0;
}

.conf-feature i {
    color: #10b981;
    font-size: 1.25rem;
}

.confidentiality-image {
    text-align: center;
}

.confidentiality-image i {
    font-size: 8rem;
    color: #3b82f6;
    opacity: 0.8;
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.07), rgba(29, 78, 216, 0.04));
    border-radius: 50%;
    z-index: 1;
}

.cases::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.02));
    border-radius: 50%;
    z-index: 1;
}

.cases .container {
    position: relative;
    z-index: 2;
}

.cases-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
}

.case-card {
    min-width: 350px;
    max-width: 350px;
    width: 350px;
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid #334155;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-card:hover .case-img {
    transform: scale(1.1);
}

.view-case-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-case-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.case-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-result {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.result-label {
    color: #dbeafe;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.result-text {
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.95rem;
}

.cases-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.nav-btn:disabled {
    background: #64748b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cases-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

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

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: auto;
}

.close-modal {
    color: #f8fafc;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #3b82f6;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -12%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.04));
    border-radius: 50%;
    z-index: 1;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(5, 150, 105, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: #334155;
}

.faq-question h3 {
    color: #f8fafc;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #cbd5e1;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.faq-answer p {
    color: #cbd5e1;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.cta p {
    color: #dbeafe;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dbeafe;
}

.cta-feature i {
    color: #10b981;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

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

.contact-info i {
    color: #3b82f6;
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 770px) {
    .header {
        padding: 0;
        min-width: 0;
        width: 100vw;
        left: 0;
        right: 0;
    }
    .header-content, .desktop-nav, .desktop-header-phone, .desktop-header-cta, .logo {
        display: none !important;
    }
    .header-mobile-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 0;
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
        position: relative;
        background: transparent;
    }
    .header-phone {
        margin: 0 auto;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
        font-size: 1.1rem;
    }
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    .mobile-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #0f172a;
        padding: 2rem 1rem 2rem 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: transform 0.3s ease, opacity 0.3s, visibility 0.3s;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        align-items: center;
        border-bottom: 1px solid #334155;
        pointer-events: none;
    }
    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #334155;
        transition: color 0.3s ease;
        text-align: center;
    }
    
    .mobile-nav a:hover {
        color: #3b82f6;
    }
    
    .mobile-nav a:last-child {
        border-bottom: none;
    }
    .confidentiality-image i {
        max-width: 90vw;
        width: 100%;
        height: auto;
        font-size: min(8rem, 30vw);
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 771px) {
    .header-mobile-row, .mobile-header-phone, .mobile-menu-toggle, .mobile-nav { display: none !important; }
    .header-content, .desktop-nav, .desktop-header-phone, .desktop-header-cta, .logo { display: flex !important; }
    .nav {
        position: static;
        flex-direction: row;
        gap: 2rem;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .direct-speech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .speech-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .lawyer-photo {
        width: 100px;
        height: 100px;
    }
    
    .speech-content h2 {
        font-size: 1.75rem;
    }
    
    .lawyer-quote::before {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-card {
        padding: 2rem;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-icon i {
        font-size: 1.5rem;
    }
    
    .cases-slider {
        padding: 0 20px;
        margin: 0 -20px 2rem -20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 2rem;
    }
    
    .case-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .case-content {
        padding: 1rem;
    }
    
    .case-content h3 {
        font-size: 1.1rem;
    }
    
    .cases-navigation {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .confidentiality-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    .confidentiality-text {
    order: 1;
    width: 100%;
}
    .confidentiality-image {
        order: 2;
        margin-top: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .confidentiality-image i {
        max-width: 80vw;
        width: 100%;
        height: auto;
        font-size: min(8rem, 30vw);
        display: block;
        margin: 0 auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Focus States */
.btn:focus,
.nav a:focus,
.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading States */
.btn.loading {
    position: relative;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    right: 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mediation Section */
.mediation {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.mediation::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.04));
    border-radius: 50%;
    z-index: 1;
}

.mediation::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(5, 150, 105, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.mediation .container {
    position: relative;
    z-index: 2;
}

.mediation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
}

.mediator-photo {
    position: relative;
    z-index: 2;
    margin-bottom: -5rem;
    width: 100%;
    max-width: 600px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mediator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
}

.mediator-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.4) 0%, 
        rgba(29, 78, 216, 0.3) 50%, 
        rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.mediator-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.1) 100%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.mediator-photo:hover::before {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.5) 0%, 
        rgba(29, 78, 216, 0.4) 50%, 
        rgba(15, 23, 42, 0.6) 100%);
}

.mediator-photo:hover::after {
    opacity: 1;
}

.mediator-photo:hover .mediator-img {
    transform: scale(1.05);
}

.mediation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
    margin-top: -2rem;
}

.mediation-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mediation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mediation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mediation-card:hover::before {
    transform: scaleX(1);
}

.mediation-card:hover::after {
    opacity: 1;
}

.mediation-card:hover {
    transform: translateY(-12px);
    border-color: #3b82f6;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.mediation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.mediation-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.mediation-card:hover .mediation-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.mediation-card:hover .mediation-icon::before {
    opacity: 0.6;
    transform: scale(1.2);
}

.mediation-icon i {
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.mediation-card:hover .mediation-icon i {
    transform: scale(1.1);
}

.mediation-card h3 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.mediation-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Mediation */
@media (max-width: 768px) {
    .mediation-content {
        gap: 0.5rem;
    }
    
    .mediation-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: -1rem;
    }
    
    .mediator-photo {
        max-width: 350px;
        height: 400px;
        margin-bottom: -3rem;
    }
    
    .mediation-card {
        padding: 2.5rem 2rem;
    }
    
    .mediation-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .mediation-icon i {
        font-size: 1.8rem;
    }
    
    .mediation-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .mediation-card p {
        font-size: 0.95rem;
    }
    
    /* Video Container Mobile Styles */
    .video-container {
        margin-top: 2rem;
        margin-bottom: -1.5rem;
        position: relative;
        z-index: 3;
    }
    
    .video-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .video-wrapper {
        z-index: 2;
        margin-bottom: 1rem;
    }
    
    .video-wrapper iframe {
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .mediation-content {
        gap: 0.25rem;
    }
    
    .mediator-photo {
        max-width: 280px;
        height: 320px;
        margin-bottom: -2rem;
    }
    
    .mediation-cards {
        margin-top: -0.5rem;
    }
    
    .mediation-card {
        padding: 2rem 1.5rem;
    }
    
    .mediation-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .mediation-icon i {
        font-size: 1.5rem;
    }
    
    .mediation-card h3 {
        font-size: 1.2rem;
    }
    
    .mediation-card p {
        font-size: 0.9rem;
    }
    
    /* Video Container Small Mobile Styles */
    .video-container {
        margin-top: 1.5rem;
        margin-bottom: -1rem;
        z-index: 3;
    }
    
    .video-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .video-wrapper {
        z-index: 2;
        margin-bottom: 0.5rem;
    }
}

/* Video Container Styles */
.video-container {
    margin-top: 3rem;
    margin-bottom: -2rem;
    position: relative;
    z-index: 2;
}

.video-container h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}