/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1F1F1F;
    --secondary-color: #2D2D2D;
    --accent-color: #F5A623;
    --text-primary: #FFFFFF;
    --text-secondary: #DADADA;
    --text-muted: #8A8A8A;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 8px;
    border-radius: 25px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.language-switcher.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
}

.language-switcher:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.language-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 42px;
    text-align: center;
}

.language-switcher a.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-switcher a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.btn-get-started {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
}

.btn-get-started:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
}

.hero-images-column {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.hero-images-column.left {
    padding-top: 350px;
}

.hero-images-column.right {
    padding-top: 150px;
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rotate-left {
    transform: rotate(-0.3rad);
}

.rotate-right {
    transform: rotate(0.3rad);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-container {
    max-width: 600px;
    text-align: center;
    margin-bottom: 100px;
}

.hero-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-hero {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Audience Cards */
.audience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.audience-card {
    width: 250px;
    height: 250px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.audience-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

/* Gallery Section */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
}

.gallery-label {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.54);
}

.more-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 0 auto;
    width: fit-content;
}

.more-badge .icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.9);
    stroke: currentColor;
    fill: none;
}

.more-badge span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Transformation Section */
.transformation-section {
    max-width: 1400px;
}

.transformation-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.transformation-header .section-subtitle {
    margin-bottom: 0;
}

.before-after-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.before-column,
.after-column {
    flex: 1;
    max-width: 500px;
}

.column-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.column-label.enhanced {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(156, 39, 176, 0.15));
    border-color: rgba(255, 255, 255, 0.25);
}

.column-label .icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.column-label span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.before-grid,
.after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.image-wrapper img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.image-caption {
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: center;
}

.arrow-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25), rgba(156, 39, 176, 0.25));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.arrow-circle svg {
    width: 40px;
    height: 40px;
    color: white;
}

.arrow-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.transformation-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stat-badge .icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-badge span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works Section */
.showcase-container {
    padding: 30px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(156, 39, 176, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.showcase-header .icon {
    width: 30px;
    height: 30px;
}

.showcase-header h3 {
    font-size: 24px;
    font-weight: bold;
}

.showcase-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.showcase-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.showcase-info .icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.showcase-info p {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Delivery Platforms Section */
.delivery-platforms-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.platforms-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-logo-wrapper {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.platforms-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item .icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-text strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Inspiration Banner */
.inspiration-banner {
    padding: 80px 20px;
    margin: 0 auto;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(156, 39, 176, 0.3));
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-badge .icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.banner-badge span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.banner-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.banner-stats {
    display: flex;
    gap: 40px;
    margin-top: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
}

.stat-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-banner {
    display: inline-block;
    width: fit-content;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
    margin-top: 8px;
}

.btn-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.banner-images {
    position: relative;
    width: 100%;
    height: 500px;
}

.banner-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-image {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.stack-image:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.stack-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    z-index: 3;
}

.stack-2 {
    bottom: 60px;
    left: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.stack-3 {
    bottom: 30px;
    right: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    max-width: 1400px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 25px;
    max-width: 100%;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 35px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
    min-width: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.pricing-card.popular {
    border-color: var(--accent-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.price {
    font-size: 42px;
    font-weight: bold;
}

.period {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.4;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 22px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 700px;
    padding: 60px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
}

.cta-container h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (min-width: 1400px) {
    .pricing-cards {
        gap: 30px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .pricing-title {
        font-size: 26px;
    }

    .price {
        font-size: 46px;
    }

    .pricing-features li {
        font-size: 15px;
    }

    .btn-pricing {
        font-size: 17px;
        padding: 15px 30px;
    }
}

@media (max-width: 1200px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-images-column {
        gap: 80px;
    }

    .hero-images-column.left {
        padding-top: 300px;
    }

    .hero-images-column.right {
        padding-top: 120px;
    }
}

@media (max-width: 1024px) {
    .language-switcher {
        top: 18px;
        right: 18px;
    }

    .hero-background-images {
        display: none;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .gallery-item {
        width: calc(50% - 10px);
        min-width: 250px;
    }

    .showcase-image {
        max-height: 600px;
        object-fit: contain;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        top: 70px;
        right: 15px;
        padding: 4px 6px;
        gap: 2px;
    }
    
    .language-switcher a {
        font-size: 12px;
        padding: 6px 12px;
        min-width: 36px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 15px;
    }

    .btn-get-started {
        font-size: 16px;
        padding: 12px 24px;
    }

    .logo {
        font-size: 32px;
    }

    .hero-title {
        font-size: 35px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .audience-card {
        width: 220px;
        height: 220px;
    }

    .gallery-item {
        width: calc(50% - 10px);
        min-width: 200px;
        height: 180px;
    }

    .before-after-container {
        flex-direction: column;
        gap: 40px;
    }

    .before-column,
    .after-column {
        max-width: 100%;
    }

    .arrow-circle {
        width: 60px;
        height: 60px;
    }

    .arrow-circle svg {
        transform: rotate(90deg);
        width: 30px;
        height: 30px;
    }

    .image-wrapper {
        border-radius: 12px;
    }

    .image-caption {
        font-size: 12px;
        padding: 10px 12px;
    }

    .stat-badge {
        padding: 12px 18px;
        font-size: 14px;
    }

    .stat-badge .icon {
        width: 20px;
        height: 20px;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .delivery-platforms-section {
        padding: 60px 20px;
    }

    .platforms-container {
        gap: 20px;
        margin: 40px 0;
    }

    .platform-card {
        padding: 20px;
    }

    .platform-logo-wrapper {
        width: 100px;
        height: 100px;
        padding: 12px;
    }

    .platform-name {
        font-size: 14px;
    }

    .platforms-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item .icon {
        width: 28px;
        height: 28px;
    }

    .benefit-text strong {
        font-size: 16px;
    }

    .benefit-text span {
        font-size: 13px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-content h2 {
        font-size: 35px;
    }

    .banner-content > p {
        font-size: 16px;
    }

    .banner-stats {
        gap: 24px;
    }

    .stat-item strong {
        font-size: 24px;
    }

    .banner-images {
        height: 350px;
    }

    .stack-image {
        width: 220px;
        height: 220px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
    }

    .cta-container {
        padding: 40px 30px;
    }

    .cta-container h2 {
        font-size: 28px;
    }

    .showcase-container {
        padding: 20px;
    }

    .inspiration-banner {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .before-grid,
    .after-grid {
        flex-direction: column;
        align-items: center;
    }

    .image-pair {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 65px;
        right: 10px;
        padding: 3px 5px;
        gap: 2px;
    }
    
    .language-switcher a {
        font-size: 11px;
        padding: 5px 10px;
        min-width: 32px;
        letter-spacing: 0.3px;
    }

    .hero-section {
        padding: 80px 15px 100px;
    }

    section {
        padding: 80px 15px;
    }

    .nav-link {
        display: none;
    }

    .logo {
        font-size: 28px;
    }

    .btn-get-started {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .audience-cards {
        gap: 30px;
    }

    .audience-card {
        width: 100%;
        max-width: 280px;
    }

    .gallery-item {
        width: 100%;
        height: 200px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .before-grid,
    .after-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .column-label {
        padding: 12px 18px;
        font-size: 16px;
    }

    .column-label .icon {
        width: 20px;
        height: 20px;
    }

    .transformation-stats {
        gap: 15px;
    }

    .stat-badge span {
        font-size: 13px;
    }

    .image-pair {
        gap: 15px;
    }

    .image-pair img {
        width: 100px;
        height: 100px;
    }

    .arrow-icon {
        width: 50px;
        height: 50px;
    }

    .inspiration-banner {
        padding: 40px 15px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .banner-content > p {
        font-size: 15px;
    }

    .banner-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .stat-item span {
        font-size: 13px;
    }

    .banner-images {
        height: 300px;
    }

    .stack-image {
        width: 180px;
        height: 180px;
    }

    .btn-banner {
        padding: 14px 28px;
        font-size: 16px;
    }

    .showcase-container {
        padding: 15px;
    }

    .showcase-header h3 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer.active {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .cta-container {
        padding: 30px 20px;
    }

    .cta-container h2 {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 24px;
    }

    .btn-get-started {
        font-size: 12px;
        padding: 8px 16px;
    }

    .image-pair img {
        width: 85px;
        height: 85px;
    }
}

/* Icons */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* =====================================================
   ADVANCED FEATURES SECTION - COMPACT WITH ANIMATIONS
   ===================================================== */

.advanced-features-section {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Compact Feature Cards with Animations */
.feature-card-compact {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.feature-card-compact:nth-child(1) { animation-delay: 0s; }
.feature-card-compact:nth-child(2) { animation-delay: 1.5s; }
.feature-card-compact:nth-child(3) { animation-delay: 3s; }
.feature-card-compact:nth-child(4) { animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.feature-card-compact:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: none;
}

/* Feature Visual Area */
.feature-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05), rgba(0, 0, 0, 0.3));
}

.feature-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-icon-sm {
    font-size: 32px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card-compact h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-card-compact p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Stacked Images (Camera Angles) - Inspired by Banner */
.stacked-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-img {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.stack-img-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    z-index: 3;
}

.stack-img-2 {
    bottom: 20px;
    left: 20px;
    transform: rotate(4deg);
    z-index: 2;
}

.stack-img-3 {
    bottom: 20px;
    right: 20px;
    transform: rotate(-4deg);
    z-index: 1;
}

.stack-img:hover {
    transform: translateY(-5px) rotate(0deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Single Feature Image */
.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-visual:hover .feature-img {
    transform: scale(1.1);
}

.prompt-badge, .library-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grid Preview (Library) */
.grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.grid-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-preview img:hover {
    transform: scale(1.15);
    z-index: 1;
}

/* Auth Visual */
.auth-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.auth-icon {
    font-size: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.auth-options {
    display: flex;
    gap: 12px;
}

.auth-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.auth-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE DESIGN FOR ADVANCED FEATURES
   ===================================================== */

@media (max-width: 768px) {
    .advanced-features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .feature-visual {
        height: 220px;
    }

    .stack-img {
        width: 110px;
        height: 110px;
    }

    .auth-options {
        flex-direction: column;
        width: 100%;
    }

    .auth-chip {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .advanced-features-section {
        padding: 40px 15px;
    }

    .feature-card-compact h3 {
        font-size: 18px;
    }

    .feature-card-compact p {
        font-size: 13px;
    }

    .feature-visual {
        height: 200px;
    }

    .stack-img {
        width: 90px;
        height: 90px;
    }

    .grid-preview img {
        height: 100px;
    }

    .feature-icon-sm {
        font-size: 28px;
    }

    .auth-icon {
        font-size: 50px;
    }

    .prompt-badge, .library-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}