/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
.site-header {
    background: rgba(11, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(238, 116, 126, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-logo {
    height: 39px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 100;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1000;
}

.nav-link:hover {
    color: #EE747E;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, 0, 0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 30, 0.3);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    padding-bottom: 80px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #CCCCCC;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #EE747E, #E85D67);
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;

    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    
    background: linear-gradient(135deg, #E85D67, #DC4651);
}

.cta-button:active {
    transform: translateY(0);
}

/* Trust Section - Clean seamless connection */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(11, 11, 30, 0.98) 0%, rgba(15, 15, 35, 0.95) 100%);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(238, 116, 126, 0.1);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo-img {
    height: 30px;
    width: auto;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.trust-logo-img[alt="Yellow Media"] {
    height: 20px;
}

.trust-logo:hover .trust-logo-img {
    filter: grayscale(0);
}

.placeholder-logo {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #CCCCCC;
}

.logo-placeholder-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-placeholder-link:hover {
    color: #EE747E;
}

/* Section Styling - Seamless puzzle effect */
section {
    padding: 80px 0;
    position: relative;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.section-animate {
    transform: translateY(20px);
}

section.section-visible {
    transform: translateY(0);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

/* Features Section - Clean flow */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
    border-top: 1px solid rgba(238, 116, 126, 0.08);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

/* FAQ Section - Clean connection */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.98) 0%, rgba(25, 25, 45, 0.95) 100%);
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(238, 116, 126, 0.06);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0L45 30L30 60L15 30Z" fill="rgba(0,161,255,0.03)"/></svg>') repeat;
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #EE747E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.2rem;
    color: #CCCCCC;
    opacity: 0.9;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 116, 126, 0.05) 100%);
    border: 1px solid rgba(238, 116, 126, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(238, 116, 126, 0.4);
    
}

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

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #EE747E 0%, #E85D67 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EE747E 0%, #E85D67 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
}

.faq-icon i {
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #E85D67 0%, #DC4651 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
    border-top: 1px solid rgba(238, 116, 126, 0.1);
}

.faq-answer p {
    color: #CCCCCC;
    line-height: 1.7;
    margin: 1.5rem 0 0 0;
    font-size: 1rem;
}

.cta-note {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* Package Highlight */
.package-highlight {
    background: linear-gradient(135deg, rgba(238, 116, 126, 0.1) 0%, rgba(232, 93, 103, 0.05) 100%);
    border: 2px solid rgba(238, 116, 126, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
}

.package-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.email-example {
    color: #EE747E;
    font-weight: 700;
    background: rgba(238, 116, 126, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(238, 116, 126, 0.3);
}

.package-highlight p {
    font-size: 1.1rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* Package Info */
.package-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(238, 116, 126, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.price-tag {
    background: #EE747E;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-row i {
    color: #EE747E;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-row span {
    color: #CCCCCC;
    font-size: 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(238, 116, 126, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    
    border-color: #EE747E;
}

.feature-icon {
    font-size: 2.5rem;
    color: #EE747E;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Hero Image Section */
.hero-image-section {
    padding: 0;
    margin: 0;
}

/* Hero Video Background */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 30, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-video-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-video-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    
}

.hero-video-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    
}

/* Demo Section */
.demo-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 5rem 0;
}

.demo-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container-centered {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(238, 116, 126, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: #EE747E;
    
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #EE747E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: #E85D67;
    transform: scale(1.1);
}

.video-play-button i {
    font-size: 2rem;
    color: #FFFFFF;
    margin-left: 4px;
}

.video-overlay p {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
}

.video-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(238, 116, 126, 0.05);
}

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

.video-content i {
    font-size: 3rem;
    color: #EE747E;
    margin-bottom: 1rem;
    display: block;
}

.video-content p {
    font-size: 1.1rem;
    color: #CCCCCC;
}

.demo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(238, 116, 126, 0.2);
    transition: all 0.3s ease;
}

.demo-item:hover {
    border-color: #EE747E;
    transform: translateY(-5px);
}

.macbook-showcase {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    margin-bottom: 2rem;
    border: 3px solid rgba(238, 116, 126, 0.3);
}

.macbook-showcase img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 30, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-item:hover .demo-overlay {
    opacity: 1;
}

.demo-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EE747E;
    margin-bottom: 0.5rem;
    text-align: center;
}

.demo-overlay p {
    color: #FFFFFF;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

/* Email Features Section */
.email-features-section {
    background: linear-gradient(135deg, rgba(11, 11, 30, 0.95), rgba(238, 116, 126, 0.05));
    padding: 5rem 0;
}

.features-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #EE747E;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item .feature-icon {
    font-size: 1.5rem;
    color: #EE747E;
    width: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-text p {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-cta {
    margin-top: 2rem;
}

.features-cta .cta-button {
    background: linear-gradient(135deg, #EE747E, #E85D67);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}

.features-cta .cta-button:hover {
    transform: translateY(-2px);
    
    background: linear-gradient(135deg, #E85D67, #DC4651);
}

.features-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.macbook-interface {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 2rem;
}

/* Signature Builder Section */
.signature-section {
    background: linear-gradient(135deg, rgba(11, 11, 30, 0.98), rgba(139, 69, 139, 0.1));
    padding: 5rem 0;
    border-top: 1px solid rgba(238, 116, 126, 0.1);
}

.signature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.signature-subtitle {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.signature-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.signature-feature .feature-icon {
    font-size: 1.5rem;
    color: #8B458B;
    width: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.signature-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.signature-feature p {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.5;
}

.signature-cta {
    margin-top: 2rem;
}

.signature-cta .cta-button {
    background: linear-gradient(135deg, #8B458B, #7A3E7A);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}

.signature-cta .cta-button:hover {
    transform: translateY(-2px);
    
    background: linear-gradient(135deg, #7A3E7A, #6B356B);
}

.signature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signature-interface {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    
    transition: transform 0.3s ease;
}

.signature-interface:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-content h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        gap: 0.8rem;
    }
    
    .signature-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .signature-content h2 {
        font-size: 2rem;
    }
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(11, 11, 30, 0.95), rgba(238, 116, 126, 0.05));
    padding: 5rem 0;
    border-top: 1px solid rgba(238, 116, 126, 0.1);
}

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

.security-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(238, 116, 126, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 116, 126, 0.3);
    
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE747E, #E85D67);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.security-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.security-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.security-item p {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Cities SEO Section */
.cities-section {
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cities-content h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cities-content > p {
    text-align: center;
    color: #CCCCCC;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.cities-column h4 {
    color: #EE747E;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 1rem;
}

.cities-list li {
    margin-bottom: 0.3rem;
    break-inside: avoid;
}

.cities-list a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.cities-list a:hover {
    color: #EE747E;
}

.cities-keywords {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cities-seo-text {
    text-align: center;
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cities-seo-text strong {
    color: #FFFFFF;
}

/* Cities responsive */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cities-list {
        column-count: 1;
    }
    
    .cities-section {
        padding: 2rem 0 1.5rem 0;
    }
}
    transform: scale(1.02);
}

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

/* Final CTA Section - Clean integration */
.final-cta-section {
    text-align: center;
    background: linear-gradient(180deg, rgba(25, 25, 45, 0.98) 0%, rgba(11, 11, 30, 1) 100%);
    padding: 100px 0;
    z-index: 2;
    position: relative;
    border-top: 1px solid rgba(238, 116, 126, 0.04);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #CCCCCC;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.price-display {
    margin-bottom: 2.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #EE747E;
}

.price-period {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-left: 0.5rem;
}

/* App Store Buttons */
.app-download-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.app-store-button {
    display: block;
    transition: transform 0.2s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.app-store-button img {
    height: 100px;
    width: auto;
}

.hero-apps {
    margin-top: 2rem;
}

.footer-apps {
    margin-top: 1rem;
}

/* Language Switcher */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.support-icon {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.support-icon img {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.support-icon:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 1000;
}



.language-flag {
    width: 24px;
    height: 18px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.language-flag:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.language-flag.active {
    opacity: 1;
}

/* Old language switcher CSS removed - using new simple design */

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0;
    border-top: 1px solid rgba(238, 116, 126, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #EE747E;
}

.footer-copyright p {
    color: #888888;
    font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .hero-video-section {
        height: 40vh;
    }
    
    .hero-video-content h2 {
        font-size: 2rem;
    }
    
    .hero-video-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding-bottom: 40px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
    }
    
    .package-highlight {
        padding: 2rem 1.5rem;
    }
    
    .package-highlight h3 {
        font-size: 1.2rem;
    }
    
    .package-highlight p {
        font-size: 1rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-gallery {
        grid-template-columns: 1fr;
    }
    
    .header-nav {
        display: none;
    }
    
    .trust-logos {
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .trust-logos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}
