/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0c0c14;
    --secondary-color: #1a1a2e;
    --accent-color: #c89b3c;
    --accent-light: #f0e6d2;
    --platinum-color: #e5e4e2;
    --gold-color: #ffd700;
    --light-color: #f9f9f9;
    --text-color: #e8e8e8;
    --text-light: #a0a0a0;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
}

/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
 	padding: 10px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 1001;
    transition: width 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    /*left: 100%; */
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 155, 60, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-magnetic {
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.6s;
    transform: translate(-50%, -50%);
}

.btn-magnetic:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    color: var(--primary-color);
    font-weight: 700;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 155, 60, 0.4);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(12, 12, 20, 0.9);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 155, 60, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(12, 12, 20, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: var(--accent-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
}

.logo span {
    margin-left: 5px;
    color: var(--accent-color);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-light);
    z-index: 1001;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(12,12,20,0.7), rgba(12,12,20,0.9)) center/cover fixed,
                url('../foto4H.jpg') center/cover fixed;
    color: #fff;
    padding: 220px 0 180px;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(200,155,60,0.1) 0, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(200,155,60,0.05) 0, transparent 50%);
    z-index: 0;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: 1s 0.5s forwards fadeUp;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 50px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    transform: translateY(30px);
    opacity: 0;
    animation: 1s 0.7s forwards fadeUp;
}

/* Hero Exclusive */
.hero-exclusive {
    position: absolute;
    top: 120px;
    right: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exclusive-tag,
.spots-left {
    background: rgba(12,12,20,0.9);
    border: 1px solid var(--accent-color);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.spots-stop {
    background: rgba(12, 12, 20, 0.9);
    border: 1px solid #fd0000;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.spots-stop i {
    color: #fd0000;
}


.exclusive-tag i,
.spots-left i {
    color: var(--accent-color);
}

/* Hero Results */
.hero-results {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    transform: translateY(30px);
    opacity: 0;
    animation: 1s 0.9s forwards fadeUp;
}

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

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.result-text {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 120px;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: 1s 1.1s forwards fadeUp;
}

/* Hero Companies */
.hero-companies {
    margin-top: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: 1s 1.3s forwards fadeUp;
    text-align: center;
}

.hero-companies p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.companies-logos span {
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(200,155,60,0.1);
    border-radius: 50%;
    animation: 10s linear infinite float;
}

.floating-element:first-child {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: -1s;
}

.floating-element:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 20%;
    animation-delay: -3s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 85%;
    animation-delay: -7s;
}

/* ===== SPLIT SECTIONS ===== */
.split-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.split-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.split-gradient {
    background: linear-gradient(135deg, rgba(12,12,20,0.95) 0%, rgba(26,26,46,0.85) 50%, rgba(12,12,20,0.9) 100%);
    display: flex;
    align-items: center;
}

.split-gradient.reverse {
    background: linear-gradient(135deg, rgba(12,12,20,0.9) 0%, rgba(26,26,46,0.85) 50%, rgba(12,12,20,0.95) 100%);
}

.split-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.split-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.split-text .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.split-text .section-header h2 {
    font-size: 3rem;
}

.split-text .section-header h2::after {
    left: 0;
    transform: none;
}

.split-text .section-header p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.split-image-mobile {
    display: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.split-image-mobile img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== SECTION HEADER ===== */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    color: var(--accent-light);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== EXPERT BADGES ===== */
.expert-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.expert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(200,155,60,0.1);
    border: 1px solid rgba(200,155,60,0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.expert-badge i {
    color: var(--accent-color);
}

/* ===== EXPERT FEATURES ===== */
.expert-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.expert-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent-light);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== VIDEO COMPONENTS ===== */
.video-container {
    margin: 30px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    border-radius: 15px;
    border: 2px solid rgba(200,155,60,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(200,155,60,0.2);
}

.video-placeholder {
    text-align: center;
    color: var(--accent-color);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.video-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--accent-light);
}

.video-placeholder small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.video-play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(200,155,60,0.4);
    transition: var(--transition);
    cursor: pointer;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-light);
}

/* ===== RESULTS SECTION ===== */
.results {
    padding: 120px 0;
    background: var(--secondary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background: linear-gradient(145deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(200,155,60,0.1);
    transition: var(--transition);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 50%;
    color: var(--primary-color);
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.result-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.result-list {
    text-align: left;
}

.result-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    gap: 10px;
    color: var(--text-light);
}

.result-list li i {
    color: var(--accent-color);
}

.results-cta {
    background: linear-gradient(135deg, rgba(200,155,60,0.1), rgba(200,155,60,0.05));
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(200,155,60,0.2);
    text-align: center;
}

.results-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.results-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    position: relative;
    background-color: var(--primary-color);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

.benefits::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,155,60,0.05) 0, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    padding: 50px 30px;
    border-radius: 10px;
    border: 1px solid rgba(200,155,60,0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200,155,60,0.1) 0, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.benefit-card:hover {
    transform: translateY(-15px) perspective(1000px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(200,155,60,0.5);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(200,155,60,0.5);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    position: relative;
    padding: 120px 0;
    background: var(--primary-color);
    overflow: hidden;
    text-align: center;
}

.clients-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,12,20,0.9) 0%, rgba(26,26,46,0.8) 50%, rgba(12,12,20,0.95) 100%);
    z-index: 0;
}

.clients-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.client-card {
    background: rgba(255,255,255,0.03);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-align: center;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,155,60,0.3);
}

.client-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.client-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.client-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.clients-nda {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(200,155,60,0.05);
    border-radius: 15px;
    border: 1px solid rgba(200,155,60,0.2);
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.clients-nda i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

/* ===== FORMAT SECTION ===== */
.format {
    position: relative;
    background-color: var(--secondary-color);
    padding: 120px 0;
    overflow: hidden;
}

.format::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,155,60,0.05) 0, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../foto3.JPG') center/cover fixed;
    z-index: -1;
}

.format-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.format-tabs {
    display: flex;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgba(200,155,60,0.1);
    max-width: 1200px;
    width: 100%;
}

.format-tab {
    position: relative;
    flex: 1;
    padding: 20px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.format-tab.active {
    background: linear-gradient(135deg, rgba(200,155,60,0.15), rgba(200,155,60,0.05));
    border: 1px solid rgba(200,155,60,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200,155,60,0.2);
    color: var(--accent-color);
}

.format-tab i {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: 0.3s;
}

.format-header {
    position: relative;
    margin-bottom: 50px;
}

.format-header h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.format-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.format-content {
    position: relative;
    z-index: 1;
    display: none;
}

.format-content.active {
    display: block;
    animation: 0.8s fadeIn;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.format-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(200,155,60,0.1);
    transition: var(--transition);
}

.format-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: rgba(200,155,60,0.3);
}

.format-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #d4af37);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.format-item:hover .format-icon {
    transform: rotateY(180deg);
}

.format-content-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.format-content-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FORMAT EXCLUSIVE ===== */
.format-exclusive {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.format-exclusive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,12,20,0.95) 0%, rgba(26,26,46,0.85) 50%, rgba(12,12,20,0.9) 100%);
    z-index: -1;
}

.format-process {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    border-color: rgba(200,155,60,0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.step-content p {
    color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-color);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200,155,60,0.05) 0, transparent 70%);
    z-index: 0;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.testimonial-wave {
    position: absolute;
    border: 2px solid rgba(200,155,60,0.1);
    border-radius: 50%;
    animation: 8s linear infinite wavePulse;
}

.testimonial-wave:first-child {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.testimonial-wave:nth-child(2) {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.testimonial-wave:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.testimonials-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    display: none;
}

.testimonial-slide.active {
    display: flex;
    align-items: stretch;
    gap: 60px;
    animation: 0.8s fadeIn;
    min-height: 400px;
}

.testimonial-avatar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar-frame {
    width: 250px;
    height: 250px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(200,155,60,0.3), transparent);
    border-radius: 25px;
    animation: 6s linear infinite glowRotate;
    z-index: -1;
}

.testimonial-content {
    position: relative;
    flex: 1;
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(12,12,20,0.95));
    padding: 40px 50px 80px;
    border-radius: 20px;
    border: 1px solid rgba(200,155,60,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.testimonial-content::-webkit-scrollbar {
    width: 8px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 4px;
    border: 2px solid rgba(200,155,60,0.3);
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: rgba(200,155,60,0.2);
    line-height: 1;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    flex: 1;
    padding-right: 10px;
    overflow-y: auto;
    max-height: 250px;
    min-height: 250px;
    color: var(--text-light);
}

.testimonial-content p::-webkit-scrollbar {
    width: 6px;
}

.testimonial-content p::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.testimonial-content p::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.testimonial-content p::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(200,155,60,0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-result span {
    color: var(--accent-light);
    font-weight: 600;
}

.testimonial-author {
    border-top: 1px solid rgba(200,155,60,0.2);
    padding-top: 20px;
    margin-top: auto;
    position: relative;
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(12,12,20,0.95));
    z-index: 3;
    text-align: center;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--accent-light);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-next,
.testimonial-prev {
    width: 50px;
    height: 50px;
    background: rgba(200,155,60,0.1);
    border: 2px solid rgba(200,155,60,0.3);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 15px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    border-color: rgba(200,155,60,0.5);
}

/* ===== PRICING SECTION ===== */
.pricing {
    position: relative;
    background-color: var(--secondary-color);
    padding: 120px 0;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,155,60,0.05) 0, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(200,155,60,0.1);
    height: fit-content;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200,155,60,0.05) 0, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200,155,60,0.3);
}

/* Platinum Card */
.pricing-card.platinum-card {
    border: 2px solid var(--platinum-color);
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(229,228,226,0.1), rgba(12,12,20,0.95));
}

.pricing-card.platinum-card .price,
.pricing-card.platinum-card .pricing-features li i {
    color: var(--platinum-color);
}

.pricing-card.platinum-card .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), rgba(229,228,226,0.1));
}

.pricing-card.platinum-card:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(229,228,226,0.3);
}

/* Premium Card */
.pricing-card.premium-card {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(12,12,20,0.95));
    position: relative;
    overflow: hidden;
}

.pricing-card.premium-card:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(200,155,60,0.3);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    color: var(--primary-color);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
}

.pricing-card.platinum-card .popular-badge {
    background-color: var(--platinum-color);
    color: var(--primary-color);
}

.pricing-body,
.pricing-header {
    padding: 30px 25px;
}

.pricing-header {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.pricing-footer {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.consultation-offer {
    background: linear-gradient(135deg, rgba(200,155,60,0.1), rgba(200,155,60,0.05));
    border: 2px solid rgba(200,155,60,0.3);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.consultation-offer i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.consultation-offer h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.consultation-offer p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.pricing-guarantee {
    background: linear-gradient(135deg, rgba(200,155,60,0.1), rgba(200,155,60,0.05));
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(200,155,60,0.2);
    max-width: 1200px;
    width: 700px;
    justify-content: center;
    align-content: space-between;
    text-align: center;
}

.pricing-guarantee i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-light);
}

.guarantee-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(#3b2d00ba, rgb(12 12 20)) center/cover fixed,
                url(../foto3.JPG) center/cover fixed;
    color: #fff;
    overflow: hidden;
    padding: 120px 0;
}

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

.decoration-circle {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(200,155,60,0.1);
    border-radius: 50%;
    animation: 8s ease-in-out infinite float;
}

.decoration-wave {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200,155,60,0.05) 0, transparent 70%);
    border-radius: 50%;
    animation: 4s infinite alternate pulse;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    height: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    border-radius: 15px;
    border: 1px solid rgba(200,155,60,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,155,60,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(200,155,60,0.4);
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--accent-light);
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}

.contact-details span {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-detail a:hover {
    color: var(--accent-color);
}

.contact-urgency {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(200,155,60,0.1);
    border-radius: 10px;
    border: 1px solid rgba(200,155,60,0.3);
    margin-top: 20px;
}

.contact-urgency i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-urgency p {
    margin: 0;
    color: var(--text-color);
}

.contact-urgency strong {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(12,12,20,0.95));
    border-radius: 20px;
    border: 1px solid rgba(200,155,60,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    padding: 35px;
    color: var(--primary-color);
    text-align: center;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form-modal {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--accent-light);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-family: inherit;
    background: rgba(255,255,255,0.05);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-modal .form-control {
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
    padding: 16px 20px;
    transition: var(--transition);
}

.contact-form-modal .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(200,155,60,0.2);
    outline: 0;
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(200,155,60,0.2);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c89b3c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

option {
    background: #12111c;
}

.contact-form-modal .btn {
    font-size: 1.1rem;
    padding: 18px 30px;
    font-weight: 600;
}

.contact-form-modal .btn i {
    margin-right: 10px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-privacy i {
    color: var(--accent-color);
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #0a0a14);
    color: #fff;
    padding: 60px 0 30px;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(200,155,60,0.05) 0, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-profile {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.avatar-gold-frame {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    box-shadow: 0 8px 25px rgba(200,155,60,0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.avatar-gold-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--accent-color), var(--gold-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    animation: 3s linear infinite rotate;
}

.avatar-gold-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.profile-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.profile-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--accent-color);
}

.contact-detail span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.contact-detail .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-info {
    margin-bottom: 25px;
}

.legal-item {
    margin-bottom: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.legal-item strong {
    color: var(--accent-light);
    font-weight: 600;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: var(--transition);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.legal-link i {
    color: var(--accent-color);
    width: 16px;
    flex-shrink: 0;
}

.legal-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-align: center;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12,12,20,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, rgba(26,26,46,0.95), rgba(12,12,20,0.98));
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid rgba(200,155,60,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    color: var(--accent-color);
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--accent-light);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-left {
    padding: 50px;
    background: linear-gradient(135deg, rgba(200,155,60,0.1), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-left img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 3px solid var(--accent-color);
    object-fit: cover;
}

.modal-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.modal-left p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-features {
    margin: 25px 0;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.modal-feature i {
    color: var(--accent-color);
}

.modal-right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-modal {
    max-width: 800px;
}

.video-container-modal {
    margin: 0;
    padding: 40px;
}

.video-wrapper-modal {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(12,12,20,0.9));
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(200,155,60,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-wrapper-modal:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(200,155,60,0.2);
}

.video-placeholder-modal {
    text-align: center;
    color: var(--accent-color);
    padding: 40px;
}

.video-placeholder-modal i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.video-placeholder-modal p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--accent-light);
}

.video-placeholder-modal small {
    display: block;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.video-wrapper-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-top: 2px solid var(--accent-color);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-text h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--accent-light);
}

.cookie-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.policy-link {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--accent-light);
}

.btn-accept {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200,155,60,0.3);
}

/* ===== FLOATING WORDS ===== */
.floating-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-words span {
    position: absolute;
    font-size: 1.4rem;
    color: rgba(200,155,60,0.2);
    font-weight: 700;
    animation: 25s linear infinite floatWord;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px #d4af37a8;
}

.floating-words span:first-child {
    top: 20%;
    left: 60%;
    animation-delay: 0s;
    font-size: 1.6rem;
}

.floating-words span:nth-child(2) {
    top: 65%;
    left: 70%;
    animation-delay: -5s;
    font-size: 1.8rem;
}

.floating-words span:nth-child(3) {
    top: 80%;
    left: 55%;
    animation-delay: -10s;
    font-size: 1.5rem;
}

.floating-words span:nth-child(4) {
    top: 35%;
    left: 65%;
    animation-delay: -15s;
    font-size: 1.7rem;
}

.floating-words span:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: -20s;
    font-size: 1.4rem;
}

/* ===== ABOUT COURSE FEATURES ===== */
.about-course .features {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 50% 50%;
    gap: 25px;
    margin-top: 40px;
}

.about-course .feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(200,155,60,0.1);
    transition: var(--transition);
}

.about-course .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: rgba(200,155,60,0.3);
}

.about-course .feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.about-course .feature-content p {
    color: var(--text-light);
    line-height: 1.5;
}

.signature img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    opacity: 0.8;
}

.signature span {
    display: block;
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.about-course .split-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-course .split-background .split-image {
    grid-column: 1;
}

.about-course .split-background .split-gradient.reverse {
    grid-column: 2;
}

.about-course .split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 3; /* Выше фона */
}

.about-course .split-content.reverse .split-text {
    grid-column: 2;
    grid-row: 1;
}

.about-course .split-content.reverse .split-image-mobile {
    grid-column: 1;
    grid-row: 1;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatWord {
    0% {
        transform: translateY(100px) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
    90% {
        opacity: 0;
    }
    100% {
        transform: translateY(-200px) rotate(360deg);
        opacity: 0;
    }
}

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

@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes glowRotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200,155,60,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(200,155,60,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200,155,60,0);
    }
}

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

/* Large Desktops */
@media (max-width: 1200px) {
    .split-content {
        gap: 0;
        padding: 50px 0;
    }

    .split-text {
        padding: 40px;
    }

    .testimonial-slide.active {
        gap: 40px;
    }

    .testimonial-avatar {
        flex: 0 0 250px;
    }

    .avatar-frame {
        width: 200px;
        height: 200px;
    }

    .hero-results {
        gap: 30px;
    }

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

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

    .nav-links li {
        margin-left: 25px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .about-course .features,
    .form-row,
    .modal-body,
    .results-grid,
    .split-background,
    .split-content {
        grid-template-columns: 1fr;
    }

    .split-content,
    .split-text .section-header,
    .split-text .section-header p {
        text-align: center;
    }

    .split-content {
        gap: 40px;
    }

    .split-image {
        display: none;
    }

    .split-image-mobile {
        display: block;
    }

    .split-text {
        padding: 30px 20px;
    }

    .footer-section h4::after,
    .split-text .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-exclusive {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
        gap: 15px;
    }

    .hero-results {
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-step,
    .results-grid {
        gap: 20px;
    }

    .expert-badges {
        justify-content: center;
    }

    .expert-feature,
    .footer-profile,
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-profile {
        align-items: center;
    }

    .testimonial-slide.active {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }

    .testimonial-avatar {
        flex: 0 0 auto;
    }

    .avatar-frame {
        width: 200px;
        height: 200px;
    }

    .testimonial-content {
        padding: 30px 25px 70px;
        min-height: 350px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        max-height: 250px;
    }

    .quote-icon {
        top: 15px;
        left: 25px;
        font-size: 60px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .modal-left {
        padding: 30px;
    }

    .video-wrapper {
        height: 180px;
    }

    .about-course .features {
        gap: 15px;
    }

    .about-course .feature {
        padding: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .nav-cta {
        padding: 8px 16px !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }

    .about-course .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-course .split-content.reverse .split-text,
    .about-course .split-content.reverse .split-image-mobile {
        grid-column: 1;
        grid-row: auto;
    }

    .about-course .split-content.reverse .split-image-mobile {
        order: -1;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .nav-links.active,
    header {
        left: 0;
    }

    .benefit-card,
    .contact-item,
    .cookie-content,
    .footer-content,
    .format-item,
    .hero,
    .nav-links a,
    .nav-links li,
    .pricing-card {
        text-align: center;
    }

    body {
        padding: 0;
        margin: 0;
    }

    header {
        width: 100vw;
        right: 0;
    }

    .logo {
        max-width: 70%;
    }

    .benefits,
    .clients,
    .contact,
    .format,
    .hero,
    .pricing,
    .results,
    .split-section,
    .testimonials {
        padding-left: 0;
        padding-right: 0;
    }

    .benefits-grid,
    .clients-grid,
    .footer-content,
    .pricing-grid,
    .split-content {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .client-card,
    .pricing-card {
        min-width: 0;
        width: 100%;
    }

    .navbar {
        width: 100%;
        padding: 15px 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100vw;
        width: 100vw;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .hero {
        padding: 150px 0 80px;
        min-height: 80vh;
        background-attachment: scroll !important;
        background-position: center 0 !important;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero h1 {
        order: 1;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-exclusive .exclusive-tag,
    .nav-cta {
        display: none;
    }

    .hero-btns,
    .hero-exclusive {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-exclusive {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        order: 3;
    }

    .hero-subtitle {
        order: 2;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-results {
        order: 3;
        flex-direction: column;
        gap: 20px;
    }

    .hero-btns {
        order: 5;
        flex-direction: column;
        gap: 15px;
    }

    .hero-companies {
        order: 6;
    }

    .hero-exclusive {
        order: 4;
        margin: 10px auto 20px;
    }

    .result-item {
        margin-bottom: 15px;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .contact-content,
    .hero-content,
    .split-content {
        width: 100%;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .contact-card,
    .contact-urgency {
        box-sizing: border-box;
        width: 100%;
    }

    .contact-info {
        order: 2;
        width: 100%;
    }

    .contact-form-wrapper {
        order: 1;
        width: 100%;
        margin: 0 auto;
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-icon {
        margin: 0 auto 15px;
    }

    .contact-urgency {
        padding: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .split-section {
        min-height: auto;
        padding: 40px 0;
    }

    .split-content {
        gap: 0;
    }

    .split-text {
        padding: 20px 15px;
        width: 100%;
    }

    .split-image-mobile {
        display: block;
        width: 80%;
        border: 1px solid rgba(200,155,60,0.3);
        border-radius: 20px;
        margin: 0 auto 10px;
    }

    .split-image-mobile img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .exclusive-tag,
    .spots-left {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .spots-left {
        width: 100%;
        justify-content: center;
        margin: 0;
        background: rgba(200,155,60,0.15);
        border-color: var(--accent-color);
    }

    .contact-card,
    .contact-urgency,
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .companies-logos {
        gap: 15px;
    }

    .companies-logos span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .pricing-grid {
        gap: 20px;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .pricing-card.premium-card {
        transform: scale(1);
    }

    .pricing-card.premium-card:hover {
        transform: translateY(-15px);
    }

    .contact,
    .pricing,
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-slide.active {
        gap: 25px;
    }

    .testimonial-content {
        padding: 25px 20px 60px;
        min-height: 300px;
        max-height: 50vh;
    }

    .testimonial-content p {
        font-size: 1rem;
        max-height: 200px;
    }

    .cookie-text h4,
    .guarantee-content h4,
    .testimonial-author h4 {
        font-size: 1.1rem;
    }

    .consultation-offer p,
    .cookie-text p,
    .testimonial-author span {
        font-size: 0.9rem;
    }

    .avatar-frame {
        width: 150px;
        height: 150px;
    }

    .quote-icon {
        top: 10px;
        left: 20px;
        font-size: 60px;
    }

    .testimonial-nav {
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-next,
    .testimonial-prev,
    .video-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-form-header h3,
    .contact-icon,
    .format-icon {
        font-size: 1.5rem;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card,
    .contact-form-modal,
    .modal-left,
    .modal-right {
        padding: 30px 20px;
    }

    .contact-card,
    .contact-form-header {
        padding: 25px 20px;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .contact-card {
        gap: 15px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .modal-body {
        min-height: auto;
    }

    .video-wrapper {
        height: 140px;
    }

    .consultation-offer i,
    .video-placeholder i {
        font-size: 2rem;
    }

    .video-placeholder p {
        font-size: 1rem;
    }

    .btn-accept {
        width: 100%;
        max-width: 200px;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contacts,
    .legal-links {
        align-items: center;
    }

    .contact-item,
    .legal-link {
        justify-content: center;
    }

    .cookie-consent,
    .format-tab {
        padding: 15px;
    }

    .format-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .consultation-offer,
    .pricing-guarantee {
        padding: 20px;
        width: 100%;
    }

    .consultation-offer h4 {
        font-size: 1.2rem;
    }

    .guarantee-content p {
        font-size: 0.85rem;
    }

    .format-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .format-item {
        flex-direction: column;
        gap: 20px;
    }

    .format-icon {
        width: 60px;
        height: 60px;
    }

    .hero-exclusive-mobile {
        display: flex;
        justify-content: center;
        margin: 10px auto 20px;
        width: 100%;
    }

    .hero-exclusive-mobile .spots-left {
        background: rgba(200,155,60,0.15);
        border: 1px solid var(--accent-color);
        padding: 12px 20px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
        animation: 2s infinite pulse;
    }

    .hero-exclusive {
        display: none;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    body, html {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    iframe, img, video {
        max-width: 100%;
        height: auto;
    }

    .floating-elements,
    .floating-words {
        display: none;
    }

    .nav-links,
    .nav-links a {
        width: 100%;
        transition: var(--transition);
    }

    .split-content {
        padding: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        justify-content: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(200,155,60,0.1);
        border-radius: 8px;
    }

    .nav-cta {
        background: var(--accent-color);
        color: var(--primary-color) !important;
        padding: 15px 30px !important;
        border-radius: 25px;
        font-weight: 600;
        margin-top: 20px;
        border: none !important;
        width: 80%;
        max-width: 250px;
    }

    .nav-cta:hover {
        background: var(--accent-light) !important;
        transform: translateY(-2px);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1rem;
        font-weight: 700;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 70vh;
    }

    .hero h1,
    .video-placeholder i {
        font-size: 1.8rem;
    }

    .cookie-text h4,
    .hero p,
    .testimonial-author h4 {
        font-size: 1rem;
    }

    .hero-exclusive {
        max-width: 100%;
        margin: 5px auto 15px;
    }

    .spots-left {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .split-text .section-header h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 80px 0;
    }

    .about-course .feature i,
    .contact-details h3,
    .profile-info h3 {
        font-size: 1.3rem;
    }

    .about-course .feature-content h4,
    .contact-details p {
        font-size: 1.1rem;
    }

    .testimonial-slide.active {
        gap: 20px;
    }

    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .modal-left h3,
    .results-cta h3 {
        font-size: 1.5rem;
    }

    .video-wrapper {
        height: 120px;
    }

    .legal-item,
    .legal-link,
    .profile-description,
    .video-placeholder p {
        font-size: 0.9rem;
    }

    .expert-badges,
    .hero-results {
        flex-direction: column;
        align-items: center;
    }

    .result-item {
        margin-bottom: 20px;
    }

    .expert-badge {
        width: 100%;
        justify-content: center;
    }

    .results-cta {
        padding: 30px 20px;
    }

    .pricing-grid {
        margin: 0 10px 40px;
    }

    .pricing-body,
    .pricing-header {
        padding: 25px 20px;
    }

    .testimonial-content {
        padding: 20px 15px 50px;
        min-height: 280px;
        max-height: 45vh;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        max-height: 180px;
    }

    .testimonial-author {
        padding-top: 15px;
    }

    .avatar-frame {
        width: 120px;
        height: 120px;
    }

    .quote-icon {
        top: 8px;
        left: 15px;
        font-size: 40px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .about-course .feature-content p,
    .cookie-text p {
        font-size: 0.85rem;
    }

    .btn-accept {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-course .feature {
        padding: 15px;
        gap: 15px;
    }

    .about-course .split-image-mobile img,
    .about-me .split-image-mobile img {
        height: 100%;
        object-fit: cover;
    }

    .contact-content {
        padding: 0 10px !important;
        gap: 20px !important;
    }

    .contact-form-header,
    .contact-form-modal {
        padding: 20px 15px !important;
    }

    .contact-form-header h3 {
        font-size: 1.4rem !important;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-control {
        padding: 12px 15px;
    }

    .video-wrapper-modal {
        height: 250px;
    }

    .video-placeholder-modal i {
        font-size: 2.5rem;
    }

    .video-placeholder-modal p {
        font-size: 1.1rem;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .hero-exclusive-mobile,
    .mobile-menu-btn {
        display: none;
    }

    .hero-exclusive {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        overflow: visible;
    }

    .nav-links li {
        margin-left: 25px;
    }

    .nav-links a {
        padding: 5px 0;
        border-bottom: none;
        width: auto;
        font-size: 0.95rem;
    }

    .nav-links.active {
        position: static;
        transform: none;
    }
}

/* Large Desktops */
@media (min-width: 1400px) {
    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .nav-links {
        gap: 20px;
    }

    .nav-links li {
        margin-left: 18px;
    }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .nav-links {
        gap: 12px;
    }

    .nav-links li {
        margin-left: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 8px 14px !important;
        font-size: 0.8rem;
    }
}

/* Navbar Padding */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 18px 0;
    }
}

/* Video Modal Mobile */
@media (max-width: 768px) {
    .video-modal .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
        max-height: calc(100vh - 40px);
    }

    .video-container-modal {
        padding: 20px;
    }

    .video-wrapper-modal {
        height: 300px;
    }

    .video-placeholder-modal i {
        font-size: 3rem;
    }

    .video-placeholder-modal p {
        font-size: 1.2rem;
    }

    .video-placeholder-modal small {
        font-size: 0.9rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #0a0a0a;
        --secondary-color: #1a1a1a;
    }
}

/* Small Mobile Video */
@media (max-width: 480px) {
    .video-wrapper-modal {
        height: 250px;
    }

    .video-placeholder-modal i {
        font-size: 2.5rem;
    }

    .video-placeholder-modal p {
        font-size: 1.1rem;
    }
}

/* ===== HORIZONTAL PROCESS STYLES ===== */
.format-exclusive {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.format-exclusive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,12,20,0.95) 0%, rgba(26,26,46,0.85) 50%, rgba(12,12,20,0.9) 100%);
    z-index: -1;
}

.horizontal-process {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px 0;
    /* padding: 0 20px; */
    gap: 0;
}

.process-step-horizontal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    min-height: 300px;
}

.step-content-horizontal {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(12, 12, 20, 0.95));
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: 20px;
    padding: 50px 18px 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 85%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content-horizontal:hover {
    transform: translateY(-10px);
    border-color: rgba(200,155,60,0.5);
    box-shadow: 0 25px 50px rgba(200,155,60,0.2);
}

.step-number-horizontal {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(200,155,60,0.4);
    z-index: 4;
}

.step-icon-horizontal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200,155,60,0.1), rgba(200,155,60,0.05));
    border: 2px solid rgba(200,155,60,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 25px;
    color: var(--accent-color);
    font-size: 2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.step-content-horizontal:hover .step-icon-horizontal {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    color: var(--primary-color);
    border-color: transparent;
}

.step-content-horizontal h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-light);
    font-weight: 600;
    line-height: 1.3;
}

.step-content-horizontal p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 110px;
    right: -8%;
    width: 20%;
    height: 3px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(200, 155, 60, 0.5), rgba(200, 155, 60, 0.2));
    border-radius: 2px;
}

.connector-arrow {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-left: -43px;
    box-shadow: 0 2px 10px rgba(200, 155, 60, 0.4);
    flex-shrink: 0;
}

.process-step-horizontal:last-child .step-connector {
    display: none;
}

/* CTA Section */
.process-cta {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(200,155,60,0.1), rgba(200,155,60,0.05));
    border: 2px solid rgba(200,155,60,0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 96%;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent-light);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Large Desktop */
@media (max-width: 1400px) {
    .step-connector {
        right: -12%;
        width: 24%;
    }

    .step-content-horizontal {
        max-width: 250px;
        min-height: 260px;
        padding: 45px 20px 30px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .horizontal-process {
        padding: 0 10px;
    }

    .step-connector {
        right: -10%;
        width: 20%;
    }

    .step-content-horizontal {
        max-width: 220px;
        min-height: 240px;
        padding: 40px 15px 25px;
    }

    .step-icon-horizontal {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .step-content-horizontal h3 {
        font-size: 1.2rem;
    }

    .step-content-horizontal p {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .format-exclusive {
        padding: 100px 0;
    }

    .horizontal-process {
        flex-direction: column;
        gap: 60px;
        margin: 60px 0;
        padding: 0;
    }

    .process-step-horizontal {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        min-height: auto;
    }

    .step-connector {
        display: none;
    }

    .step-content-horizontal {
        max-width: 100%;
        min-height: auto;
        padding: 50px 30px 35px;
    }

    .step-icon-horizontal {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .step-content-horizontal h3 {
        font-size: 1.4rem;
    }

    .step-content-horizontal p {
        font-size: 1rem;
    }

    .process-cta {
        margin-top: 60px;
    }

    .cta-content {
        padding: 50px 30px;
    }

    .cta-content h3 {
        font-size: 1.9rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .format-exclusive {
        padding: 80px 0;
    }

    .horizontal-process {
        margin: 40px 0;
        gap: 50px;
    }

    .step-content-horizontal {
        padding: 45px 25px 30px;
        max-width: 320px;
    }

    .step-icon-horizontal {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .step-content-horizontal h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .step-content-horizontal p {
        font-size: 0.95rem;
    }

    .process-cta {
        margin-top: 50px;
    }

    .cta-content {
        padding: 40px 25px;
    }

    .cta-content h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .format-exclusive {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

    .horizontal-process {
        margin: 30px 0;
        gap: 40px;
    }

    .step-content-horizontal {
        padding: 40px 20px 25px;
        max-width: 280px;
    }

    .step-number-horizontal {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: -17px;
    }

    .step-icon-horizontal {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .step-content-horizontal h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .step-content-horizontal p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .process-cta {
        margin-top: 40px;
    }

    .cta-content {
        padding: 35px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .step-content-horizontal {
        padding: 35px 15px 20px;
        max-width: 260px;
    }

    .step-icon-horizontal {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 30px 15px;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }
}

/* Animation for steps */
@keyframes stepAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step-horizontal.fade-in {
    animation: stepAppear 0.8s ease-out forwards;
}

/* Staggered animation delays */
.process-step-horizontal:nth-child(1) { animation-delay: 0.1s; }
.process-step-horizontal:nth-child(2) { animation-delay: 0.3s; }
.process-step-horizontal:nth-child(3) { animation-delay: 0.5s; }
.process-step-horizontal:nth-child(4) { animation-delay: 0.7s; }

.cta-content.fade-in {
    animation: stepAppear 0.8s ease-out 0.9s forwards;
}
