:root {
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #adb5bd;
    --dark-gray: #495057;
    --accent: #2c5282;
    --accent-light: #4299e1;
    --accent-dark: #1a365d;
    --gold: #d4af37;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.logo-text:hover {
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
    background: transparent;
    color: var(--white);
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lang-btn:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--black);
    text-shadow: none;
}

.cta-btn-small {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn-small:hover::before {
    left: 100%;
}

.cta-btn-small:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(212, 175, 55, 0.5),
        0 6px 15px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3);
    background: var(--gold-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: #000;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) contrast(1.15);
    animation: subtleZoom 25s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white);
    max-width: 800px;
    text-shadow: 
        0 0 40px rgba(212, 175, 55, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.9),
        0 1px 5px rgba(0, 0, 0, 1);
}

.cta-btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn-hero:hover::before {
    left: 100%;
}

.cta-btn-hero:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(212, 175, 55, 0.4);
    background: var(--gold-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

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

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-out 1.2s both;
}

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

/* Countdown Section */
.countdown-section {
    background: var(--white);
    padding: 80px 20px;
    border-bottom: 1px solid var(--border);
}

.countdown-content {
    text-align: center;
}

.section-title-small {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.countdown-text {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid var(--border);
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 500;
}

/* Sections */
section {
    padding: 120px 20px;
    position: relative;
}

section:nth-child(even) {
    background: var(--off-white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 80px;
    font-weight: 400;
}

/* Features */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(44, 82, 130, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-description {
    color: var(--text-medium);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    background: var(--off-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.25);
}

.step-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-description {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 16px;
}

/* Pricing */
.pricing {
    background: var(--white);
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card-single {
    background: var(--white);
    padding: 35px 35px;
    border-radius: 30px;
    border: 2px solid var(--accent);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(44, 82, 130, 0.15);
    transition: all 0.4s ease;
}

.pricing-card-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 82, 130, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.pricing-plan {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: var(--text-medium);
    margin-top: 10px;
    font-weight: 600;
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-description {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--light-gray);
}

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

.pricing-features svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.25);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 82, 130, 0.35);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 12px;
    color: var(--text-light);
    font-size: 12px;
}

/* Image Sections */
.image-section {
    padding: 100px 20px;
    background: var(--white);
}

.image-section:nth-child(even) {
    background: var(--off-white);
}

.image-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-content.reverse {
    direction: rtl;
}

.image-content.reverse > * {
    direction: ltr;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.image-wrapper.portrait {
    max-width: 400px;
    margin: 0 auto;
}

.image-wrapper.portrait img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-wrapper.landscape img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.text-content {
    padding: 20px;
}

.text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content h3 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    margin-top: 30px;
}

.text-content ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
}

.text-content ul li svg {
    color: var(--accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* FAQ */
.faq {
    background: var(--off-white);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-icon {
    color: var(--accent);
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    padding: 80px 20px 30px;
    color: var(--white);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
}

.footer-tagline {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content-wrapper {
        padding: 100px 20px 40px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 25px;
        min-width: 90px;
    }
    
    .countdown-number {
        font-size: 40px;
    }
    
    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-single {
        padding: 30px 25px;
    }
    
    .image-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-content.reverse {
        direction: ltr;
    }
    
    .image-section {
        padding: 60px 20px;
    }
    
    .text-content {
        padding: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content-wrapper {
        padding: 100px 40px 40px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        max-width: 700px;
    }
    
    .hero-subtitle {
        max-width: 600px;
    }
    
    .pricing-card-single {
        padding: 30px 30px;
        max-width: 480px;
    }
    
    .amount {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .cta-btn-small {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
    
    .cta-btn-hero {
        padding: 16px 40px;
        font-size: 14px;
        width: 90%;
        text-align: center;
    }
    
    .pricing-card-single {
        padding: 25px 20px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .currency {
        font-size: 20px;
    }
    
    .pricing-plan {
        font-size: 22px;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 7px 0;
    }
    
    .pricing-features svg {
        width: 16px;
        height: 16px;
    }
    
    .pricing-btn {
        font-size: 13px;
        padding: 12px;
    }
    
    .pricing-guarantee {
        font-size: 11px;
    }
}
