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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    overflow-x: hidden;
    background: linear-gradient(180deg, #faf8f6 0%, #f5f1ed 100%);
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo img {
    height: 35px;
}

.logo span {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lang-toggle {
    background: rgba(139, 69, 19, 0.08);
    border: 2px solid rgba(139, 69, 19, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #8B4513;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.lang-toggle:hover {
    background: rgba(139, 69, 19, 0.12);
    border-color: #8B4513;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    color: white;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.35);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    color: white;
    padding: 160px 0 120px;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
}

.cta-primary {
    background: white;
    color: #8B4513;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.hero-image {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.animation-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.animation-particles::before,
.animation-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    animation: particle-float 8s infinite ease-in-out;
}

.animation-particles::before {
    top: 20%;
    left: 10%;
    width: 15px;
    height: 15px;
}

.animation-particles::after {
    bottom: 30%;
    right: 15%;
    width: 12px;
    height: 12px;
    animation-delay: 3s;
    animation-duration: 10s;
}

/* Additional particles created with pseudo-elements in CSS */
.animation-particles {
    position: relative;
}

.animation-particles::after,
.animation-particles::before,
.animation-particles {
    content: "";
}

.animation-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particle-float 10s infinite ease-in-out;
}

.animation-particles span:nth-child(1) {
    top: 15%;
    left: 20%;
    width: 8px;
    height: 8px;
    animation-delay: 0.2s;
}

.animation-particles span:nth-child(2) {
    top: 25%;
    right: 30%;
    width: 7px;
    height: 7px;
    animation-delay: 1.2s;
    animation-duration: 12s;
}

.animation-particles span:nth-child(3) {
    bottom: 20%;
    left: 40%;
    width: 9px;
    height: 9px;
    animation-delay: 2.5s;
    animation-duration: 9s;
}

.animation-particles span:nth-child(4) {
    top: 40%;
    left: 15%;
    width: 5px;
    height: 5px;
    animation-delay: 4s;
    animation-duration: 15s;
}

.animation-particles span:nth-child(5) {
    bottom: 35%;
    right: 25%;
    width: 7px;
    height: 7px;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -20px);
    }
    50% {
        transform: translate(10px, 30px);
    }
    75% {
        transform: translate(-20px, 15px);
    }
}

.connecting-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.connecting-lines::before,
.connecting-lines::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 2px;
    transform-origin: left center;
    animation: line-pulse 3s infinite alternate ease-in-out;
}

.connecting-lines::before {
    top: 30%;
    left: 10%;
    width: 80%;
    transform: rotate(15deg);
    animation-delay: 0.5s;
}

.connecting-lines::after {
    bottom: 40%;
    left: 25%;
    width: 60%;
    transform: rotate(-12deg);
    animation-delay: 1s;
}

/* Animation for dynamic connection lines */
.connection-line {
    opacity: 0;
    animation: line-appear 2s forwards;
}

@keyframes line-appear {
    0% {
        opacity: 0;
        transform: scaleX(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scaleX(1) rotate(0deg);
    }
}

/* Data flow animation */
@keyframes data-flow {
    0% {
        opacity: 0;
        left: 0%;
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        left: 100%;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }
}

/* Panel click effect styles */
.patient-row, 
.appointment-slot, 
.timeline-item, 
.action-button {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.patient-row:active, 
.appointment-slot:active, 
.timeline-item:active, 
.action-button:active {
    transform: scale(0.97);
}

/* Shimmer effect for active elements */
.active-patient,
.active-appointment,
.timeline-item.active {
    position: relative;
    overflow: hidden;
}

.active-patient::after,
.active-appointment::after,
.timeline-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Add tooltip bubbles to appear during animation */
.patient-row.active-patient::before,
.appointment-slot.active-appointment::before {
    content: 'Sélectionné';
    position: absolute;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: tooltip-appear 1s forwards;
    animation-delay: 0.5s;
    white-space: nowrap;
    z-index: 10;
}

@keyframes tooltip-appear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes line-pulse {
    0% {
        opacity: 0.2;
        transform: scaleX(0.9) rotate(15deg);
    }
    100% {
        opacity: 0.5;
        transform: scaleX(1.1) rotate(15deg);
    }
}

.mockup-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    height: 30px;
}

.mockup-item-icon svg {
    width: 24px;
    height: 24px;
    color: #8B4513;
    animation: icon-pulse 2s infinite alternate;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.mockup-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.mockup-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #d19a66);
    opacity: 0.8;
}

.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.mockup-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(139, 69, 19, 0.1);
    margin-right: 10px;
}

.mockup-item-icon svg {
    width: 20px;
    height: 20px;
    color: #8B4513;
}

.mockup-title {
    font-weight: 600;
    font-size: 14px;
    color: #8B4513;
}

/* Patient Panel Styles */
.mockup-patient-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.patient-row {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(139, 69, 19, 0.05);
    transition: all 0.3s ease;
}

.patient-row.active-patient {
    background: rgba(139, 69, 19, 0.15);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.patient-row:hover {
    background: rgba(139, 69, 19, 0.1);
    transform: translateX(3px);
}

.patient-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8B4513;
    opacity: 0.2;
    margin-right: 8px;
}

.patient-info {
    flex: 1;
}

.patient-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.patient-next {
    font-size: 10px;
    color: #666;
}

/* Calendar Panel Styles */
.calendar-wrapper {
    display: flex;
    gap: 12px;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    padding: 10px;
    width: 50px;
}

.calendar-date {
    font-size: 18px;
    font-weight: 700;
    color: #8B4513;
}

.calendar-month {
    font-size: 12px;
    color: #8B4513;
    opacity: 0.8;
}

.calendar-appointments {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.appointment-slot {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 11px;
    background: rgba(139, 69, 19, 0.05);
}

.appointment-slot.active-appointment {
    background: rgba(139, 69, 19, 0.15);
}

.appointment-time {
    font-weight: 600;
    color: #8B4513;
    margin-right: 8px;
}

.appointment-name {
    color: #555;
}

/* Patient File Styles */
.file-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.patient-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.patient-name-big {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.patient-info-tags {
    display: flex;
    gap: 5px;
}

.info-tag {
    font-size: 9px;
    background: rgba(139, 69, 19, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    color: #8B4513;
}

.treatment-plan {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.treatment-title {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.treatment-timeline {
    display: flex;
    gap: 8px;
}

.timeline-item {
    width: 25px;
    height: 8px;
    border-radius: 4px;
    background: rgba(139, 69, 19, 0.2);
}

.timeline-item.completed {
    background: #8B4513;
}

.timeline-item.active {
    background: rgba(139, 69, 19, 0.7);
    animation: pulse 2s infinite alternate;
}

/* Billing Panel Styles */
.billing-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.billing-amount {
    font-size: 20px;
    font-weight: 700;
    color: #8B4513;
}

.billing-label {
    font-size: 11px;
    color: #666;
    padding: 3px 8px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 12px;
}

.billing-actions {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.action-button {
    background: #8B4513;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #6f3510;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.2);
}

/* Mouse cursor animation */
.cursor-animation {
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2.5L15 10L5 17.5V2.5Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: rotate(-35deg);
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    animation: cursor-movement 8s infinite;
}

@keyframes cursor-movement {
    0%, 100% { 
        opacity: 0;
        transform: translate(-50px, -50px) rotate(-35deg);
    }
    5% {
        opacity: 1;
        transform: translate(50px, 80px) rotate(-35deg);
    }
    10%, 15% {
        transform: translate(120px, 100px) rotate(-35deg) scale(0.9);
    }
    16% {
        transform: translate(120px, 100px) rotate(-35deg) scale(0.8);
    }
    18% {
        transform: translate(120px, 100px) rotate(-35deg) scale(0.9);
    }
    20%, 25% {
        transform: translate(120px, 100px) rotate(-35deg);
    }
    30% {
        transform: translate(200px, 130px) rotate(-35deg);
    }
    35%, 40% {
        transform: translate(250px, 90px) rotate(-35deg) scale(0.9);
    }
    41% {
        transform: translate(250px, 90px) rotate(-35deg) scale(0.8);
    }
    43% {
        transform: translate(250px, 90px) rotate(-35deg) scale(0.9);
    }
    45%, 55% {
        transform: translate(250px, 90px) rotate(-35deg);
    }
    60% {
        transform: translate(350px, 150px) rotate(-35deg);
    }
    65%, 70% {
        transform: translate(300px, 180px) rotate(-35deg) scale(0.9);
    }
    71% {
        transform: translate(300px, 180px) rotate(-35deg) scale(0.8);
    }
    73% {
        transform: translate(300px, 180px) rotate(-35deg) scale(0.9);
    }
    75%, 85% {
        transform: translate(300px, 180px) rotate(-35deg);
    }
    90% {
        opacity: 1;
        transform: translate(200px, 230px) rotate(-35deg);
    }
    95% {
        opacity: 0;
        transform: translate(150px, 250px) rotate(-35deg);
    }
}

/* Panel highlight animation */
#patient-panel {
    animation: highlight-panel 8s infinite;
}

#calendar-panel {
    animation: highlight-panel 8s infinite;
    animation-delay: 2s;
}

#patient-file {
    animation: highlight-panel 8s infinite;
    animation-delay: 4s;
}

#billing-panel {
    animation: highlight-panel 8s infinite;
    animation-delay: 6s;
}

@keyframes highlight-panel {
    0%, 10%, 90%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(0);
    }
    15%, 25% {
        box-shadow: 0 12px 30px rgba(139, 69, 19, 0.3);
        transform: translateY(-5px) scale(1.02);
    }
    30% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 0;
    box-shadow: 0 -10px 40px rgba(139, 69, 19, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .subtitle {
    color: #8B4513;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #6f3510 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.8rem;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: #8B4513;
    transition: stroke 0.4s;
}

.feature-card:hover .feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: white;
    box-shadow: 0 -10px 40px rgba(139, 69, 19, 0.05);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(139, 69, 19, 0.03);
    border-radius: 16px;
    transition: all 0.4s;
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.benefit-item:hover {
    background: rgba(139, 69, 19, 0.08);
    transform: translateX(15px);
    border-color: rgba(139, 69, 19, 0.15);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: #8B4513;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.benefits-visual {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(139, 69, 19, 0.03) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.benefits-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.visual-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(139, 69, 19, 0.2));
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #6f3510 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .cta-button {
    font-size: 1.15rem;
    padding: 1.3rem 3.5rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    color: #aaa;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .features-grid, .stats-grid {
        gap: 25px;
    }
    
    .benefits-content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .benefits-visual {
        padding: 40px;
        min-height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefit-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 95%;
    }
    
    nav {
        padding: 1.2rem 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 130px 0 90px;
        margin-top: 75px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1.3rem;
    }

    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-primary, .cta-secondary {
        padding: 1rem 2rem;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 35px 25px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
    
    .benefits, .features {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section p {
        font-size: 1.15rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .lang-toggle {
        padding: 0.5rem 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 90%;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .nav-right {
        gap: 0.7rem;
    }
    
    .lang-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 110px 0 70px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1.05rem;
    }
    
    .mockup-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .benefits-visual {
        padding: 30px;
        min-height: 300px;
    }
    
    .visual-icon {
        font-size: 5rem;
    }
    
    .feature-card, .benefit-item {
        padding: 25px 20px;
    }
    
    .benefits-text h2, .section-header h2, .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-section h3 {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 85%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-image {
        padding: 30px;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) {
    .cta-button, .lang-toggle, .feature-card, .benefit-item, .footer-links a {
        transition: none;
    }
    
    .feature-card:hover, .benefit-item:hover {
        transform: none;
    }
    
    .feature-card::before {
        display: none;
    }
    
    /* Increase touch targets */
    .nav-right a, .nav-right button,
    .footer-links a {
        padding: 10px 5px;
        display: inline-block;
    }
    
    .lang-toggle, .cta-button {
        min-height: 44px;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .hero, .cta-section {
        background-attachment: scroll;
    }
}

/* Fix for landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .benefits-content, .features-grid {
        gap: 20px;
    }
}