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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #181818;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

/* Mobile container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 500;
}

.hero-headline {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #181818;
    margin-bottom: 24px;
}

.section-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 24px;
}

.section-heading.white {
    color: #181818;
}

.section-description {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
}

.section-description.white {
    color: #181818;
}

.hero-description {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
}

.problem-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

.problem-text {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.tab-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 8px;
}

.tab-text {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.final-cta-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #EDFF00;
    text-align: center;
    margin-bottom: 24px;
}

.final-cta-description {
    font-size: 16px;
    line-height: 1.5;
    color: #EDFF00;
    text-align: center;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #EDFF00;
    color: #181818;
}

.btn-primary:hover {
    background-color: #d9e600;
    transform: translateY(-1px);
}

.btn-primary-alt {
    background-color: #EDFF00;
    color: #000000;
}

.btn-primary-alt:hover {
    background-color: #d9e600;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #181818;
    border: 1px solid #E4E7E9;
}

.btn-secondary:hover {
    background-color: #F3F4F5;
    transform: translateY(-1px);
}

.btn-primary-small {
    padding: 8px 20px;
    background-color: #EDFF00;
    color: #181818;
}

.btn-secondary-small {
    padding: 8px 20px;
    background-color: transparent;
    color: #181818;
    border: 1px solid transparent;
}

.btn-secondary-small:hover {
    background-color: #F3F4F5;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #002B2A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.2s ease;
    background-color: #EDFF00;
    padding: 2px 4px;
    margin: -2px -4px;
}

.btn-link:hover {
    color: #002B2A;
    background-color: #E6FF00;
    transform: translateX(4px);
}

.btn-link svg {
    transition: transform 0.2s ease;
}

.btn-link:hover svg {
    transform: translateX(4px);
}

/* Forms */
.email-form {
    display: flex;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #F3F4F5;
    color: #181818;
    font-size: 14px;
    line-height: 1.5;
    font-family: inherit;
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.email-input:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

.email-input.dark {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.email-input.dark::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-disclaimer {
    font-size: 12px;
    line-height: 1.3;
    color: #000000;
    margin-top: 16px;
}

.form-disclaimer.dark {
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Navbar - Isolated Component */
.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    padding: 0 64px;
    max-width: 1440px;
    margin: 0 auto;
}

.navbar-brand {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.navbar-brand .logo {
    height: 26px;
    width: auto;
}

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

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: #181818;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #002B2A;
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-dropdown:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-dropdown .nav-link {
    padding: 0;
    background: none;
}

.nav-dropdown .nav-link:hover {
    background: none;
}

/* Overlay Shadow */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: auto;
    display: none; /* Changed from block to none */
    /* Prevent any flash during page load */
    will-change: opacity, visibility;
}

.dropdown-overlay.active {
    display: block; /* Show when active */
    opacity: 1;
    visibility: visible;
    /* No animation for overlay - it appears instantly */
}

/* Mega Dropdown Styles */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 32px;
    min-width: 1000px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 8px;
}







.mega-dropdown-content {
    display: flex;
    gap: 48px;
}

.mega-dropdown-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mega-dropdown-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mega-dropdown-right {
    flex: 1;
}

.mega-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mega-item:hover {
    background-color: #F9FAFB;
}

.mega-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mega-content {
    flex: 1;
}

.mega-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mega-description {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

/* Update Section Styles */
.mega-update {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-update-image {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 16px;
    position: relative;
}

.update-ui-mockup {
    position: relative;
    height: 120px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.ui-element {
    border-radius: 4px;
    padding: 8px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ui-element.fraud {
    background: #FEE2E2;
    color: #DC2626;
    grid-column: 1;
    grid-row: 1;
}

.ui-element.approved {
    background: #D1FAE5;
    color: #059669;
    grid-column: 2;
    grid-row: 1 / 3;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px;
}

.approved-header {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 11px;
}

.approved-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 9px;
    line-height: 1.3;
}

.approved-list li {
    margin-bottom: 2px;
}

.ui-element.office {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
}

.ui-element.star {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mega-update-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-update-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.mega-update-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

/* Dropdown Arrow Animation */
.nav-dropdown:hover svg {
    transform: rotate(180deg);
}

.nav-dropdown svg {
    transition: transform 0.2s ease;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #181818;
}

.language-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-btn .flag {
    font-size: 16px;
}

.language-btn .language-text {
    font-weight: 600;
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-switcher:hover .language-btn svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 140px;
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #181818;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.language-option:hover {
    background-color: #e9ecef;
    color: #495057;
}

.language-option.active {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.language-option .flag {
    font-size: 16px;
}

.mobile-more-btn {
    display: none;
}

/* Hero Section - Isolated Component */
.hero {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 513px;
}

.hero-image {
    width: 650px;
    height: 600px;
    flex-shrink: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Logo Section - Isolated Component */
.logo-section {
    padding: 20px 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 64px;
}

.logo-heading {
    font-size: 16px;
    font-weight: 400;
    color: #E3E5E7;
    text-align: center;
    width: 560px;
}

.logo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.company-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

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

/* Problem Section - Isolated Component */
.problem-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.problem-header {
    margin-bottom: 80px;
}

.problem-header-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.problem-title {
    flex: 1;
}

.problem-description {
    flex: 1;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.problem-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-icon {
    width: 48px;
    height: 48px;
}

.problem-icon .icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

/* Feature Sections - Isolated Component */
.feature-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-content.reverse {
    flex-direction: row-reverse;
}

.feature-content.reverse .feature-image {
    order: -1;
}

.feature-content.reverse .feature-text {
    order: 1;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.feature-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* CTA Section - Isolated Component */
.cta-section {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.cta-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.cta-form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 513px;
}

/* Tabs Section - Isolated Component */
.tabs-section {
    padding: 112px 0;
    background-color: #FFFFFF;
}

.tabs-content {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.tabs-image {
    flex: 1;
}

.tabs-img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 12px;
}

.tabs-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tabs-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tabs-menu {
    display: flex;
    flex-direction: column;
}

.tab-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.tab-item.active {
    background-color: transparent;
}

.tabs-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* FAQ Section - Isolated Component */
.faq-section {
    padding: 112px 0;
    background-color: #FFFFFF;
}

.faq-content {
    display: flex;
    gap: 80px;
}

.faq-header {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.faq-item {
    background-color: #F3F4F5;
    border-radius: 12px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    gap: 24px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #181818;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 28px 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    padding: 0 28px 32px;
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #181818;
    margin: 0;
    padding-bottom: 8px;
}

/* Final CTA - Isolated Component */
.final-cta {
    padding: 80px 0;
    background-color: #002B2A;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 513px;
}

.email-form.dark {
    width: 100%;
}

/* Footer - Isolated Component */
.footer {
    padding: 80px 0 48px;
    background-color: #FFFFFF;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-main {
    display: flex;
    gap: 120px;
}

.footer-newsletter {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-newsletter-text {
    font-size: 16px;
    line-height: 1.5;
    color: #181818;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form .email-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-newsletter-form .email-input {
    padding: 12px;
    font-size: 14px;
}

.footer-newsletter-form .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #000000;
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #181818;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-nav li {
    padding: 8px 0;
}

.footer-link {
    font-size: 14px;
    line-height: 1.5;
    color: #181818;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #002B2A;
}

.footer-social {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-social li {
    padding: 8px 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #181818;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: #002B2A;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-divider {
    height: 1px;
    background-color: #E4E7E9;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.5;
    color: #181818;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 14px;
    line-height: 1.5;
    color: #181818;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #002B2A;
}

/* Responsive Design - Navbar Specific */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 32px;
        gap: 15px;
    }
    
    .navbar-content {
        width: auto;
        min-width: 400px;
    }
    
    .navbar-links {
        gap: 20px;
    }
    
    .navbar-actions {
        gap: 12px;
    }
    
    /* Mega Dropdown Tablet Adjustments */
    .mega-dropdown {
        min-width: 800px;
        padding: 24px;
    }
    
    .mega-dropdown-content {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 12px;
        gap: 10px;
    }
    
    .navbar-content {
        display: none;
    }
    
    .navbar-brand .logo {
        height: 22px;
    }
    
    .navbar-actions {
        gap: 8px;
    }
    
    .language-switcher {
        display: none;
    }
    

    
    .btn-primary-small,
    .btn-secondary-small {
        padding: 8px 16px;
        font-size: 14px;
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-more-btn {
        display: block;
    }
    
    /* Mega Dropdown Mobile Adjustments */
    .mega-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        min-width: auto;
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
        padding: 20px;
        z-index: 10001;
    }
    
    .dropdown-overlay {
        z-index: 10000;
    }
    
    .mega-dropdown-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .mega-dropdown-left {
        flex: none;
    }
    
    .mega-dropdown-middle {
        flex: none;
    }
    
    .mega-dropdown-right {
        flex: none;
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mega-item {
        padding: 8px;
    }
    
    .mega-title {
        font-size: 13px;
    }
    
    .mega-description {
        font-size: 11px;
    }
    
    .update-ui-mockup {
        height: 100px;
        padding: 8px;
    }
    
    .ui-element {
        font-size: 9px;
        padding: 6px;
    }
    
    .approved-header {
        font-size: 10px;
    }
    
    .approved-list {
        font-size: 8px;
    }
    
    .mega-update-title {
        font-size: 14px;
    }
    
    .mega-update-description {
        font-size: 12px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    display: none; /* Changed from flex to none */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Prevent any flash during page load */
    will-change: opacity, visibility;
}

.modal-overlay.active {
    display: flex; /* Show when active */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* No animation for overlay - it appears instantly */
}

.modal-container {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: all 0.2s ease;
}



.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-content {
    padding: 32px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    text-align: center;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.form-input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #F3F4F5;
    color: #181818;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border: 2px solid #3B82F6;
    background-color: #FFFFFF;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.modal-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
}

.modal-disclaimer {
    font-size: 12px;
    line-height: 1.4;
    color: #6B7280;
    text-align: center;
    margin: 0;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 90%;
        max-width: none;
        margin: 10px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-description {
        font-size: 14px;
    }
    
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modal-submit {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Responsive Design - Hero Component */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-image {
        width: 500px;
        height: 460px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
}

/* Responsive Design - Problem Component */
@media (max-width: 1200px) {
    .problem-grid {
        gap: 32px;
    }
    
    .problem-header-content {
        gap: 60px;
    }
    
    .problem-actions {
        justify-content: flex-start;
    }
}

/* Responsive Design - Feature Component */
@media (max-width: 1200px) {
    .feature-content {
        gap: 40px;
    }
    
    .feature-img {
        max-width: 100%;
    }
}

/* Responsive Design - Tabs Component */
@media (max-width: 1200px) {
    .tabs-content {
        gap: 40px;
    }
}

/* Responsive Design - FAQ Component */
@media (max-width: 1200px) {
    .faq-content {
        gap: 40px;
    }
}

/* Responsive Design - Hero Component Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-image {
        width: 100%;
        height: 300px;
        order: -1;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-actions {
        width: 100%;
    }
}

/* Responsive Design - Problem Component Mobile */
@media (max-width: 768px) {
    .problem-header-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problem-actions {
        justify-content: flex-start;
        margin-top: 16px;
    }
    
    .btn-link {
        font-size: 14px;
        padding: 2px 4px;
        margin: -2px -4px;
    }
}

/* Responsive Design - Feature Component Mobile */
@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-content.reverse {
        flex-direction: column;
    }
    
    .feature-img {
        max-width: 100%;
        height: auto;
    }
}

/* Responsive Design - Tabs Component Mobile */
@media (max-width: 768px) {
    .tabs-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .tabs-img {
        height: 300px;
    }
}

/* Responsive Design - FAQ Component Mobile */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-header {
        width: 100%;
    }
    
    .faq-item {
        margin-bottom: 24px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 24px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* Responsive Design - Footer Component Mobile */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-newsletter-form .email-form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
}

/* Responsive Design - Form Components Mobile */
@media (max-width: 768px) {
    .email-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .final-cta-actions {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .final-cta-heading {
        font-size: 28px;
    }
    
    .logo-grid {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .company-logo {
        height: 28px;
    }
}

/* Coming Soon Modal Styles */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    display: none; /* Changed from flex to none */
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Prevent any flash during page load */
    will-change: opacity, visibility;
}

.coming-soon-overlay.active {
    display: flex; /* Show when active */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* No animation for overlay - it appears instantly */
}

.coming-soon-container {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: all 0.2s ease;
}

.coming-soon-overlay.active .coming-soon-container {
    transform: scale(1);
}

.coming-soon-content {
    padding: 32px;
    text-align: center;
}

.coming-soon-header {
    margin-bottom: 24px;
}

.coming-soon-title {
    font-size: 24px;
    font-weight: 600;
    color: #181818;
    margin: 0;
}

.coming-soon-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coming-soon-description {
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    margin: 0;
}

.coming-soon-subtitle {
    font-size: 14px;
    line-height: 1.4;
    color: #6B7280;
    margin: 0;
}

.coming-soon-close {
    margin-top: 8px;
    align-self: center;
}

@media (max-width: 768px) {
    .coming-soon-container {
        width: 90%;
        margin: 10px;
    }
    
    .coming-soon-content {
        padding: 24px;
    }
    
    .coming-soon-title {
        font-size: 20px;
    }
    
    .coming-soon-description {
        font-size: 14px;
    }
    
    .coming-soon-subtitle {
        font-size: 12px;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-message {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Notification Types */
.notification-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.notification-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.notification-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.notification-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Mobile Notifications */
@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}