/* ===== LANDING PAGE STYLES ===== */

/* Landing Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-switcher {
    display: flex;
    gap: 4px;
    margin-right: 10px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.lang-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-color: transparent;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.mobile-menu-toggle.active {
    color: #6366f1;
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(16, 185, 129, 0.05) 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-secondary-large {
    background: white;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.btn-secondary-large:hover {
    background: #f9fafb;
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.btn-guide-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-guide-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-guide-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-guide-large:hover::before {
    left: 100%;
}

.btn-guide-large:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-guide-large i {
    font-size: 1.3rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.dashboard-preview {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: #6366f1;
    font-size: 1.25rem;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 3rem 0 6rem 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-icon.service-desk {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.project-mgmt {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.feature-icon.time-track {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.analytics {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-icon.security {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon.integration {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-list i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #f9fafb;
}

/* Beta Notice */
.beta-notice {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.beta-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.beta-notice h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.beta-notice p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.beta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-item i {
    font-size: 1rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: #374151;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d1d5db;
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: #6366f1;
}

.toggle-switch input:checked + label:before {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: #6366f1;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.package-icon.service-desk {
    background: linear-gradient(135deg, #10b981, #059669);
}

.package-icon.project-mgmt {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.package-icon.full-package {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.package-description {
    color: #6b7280;
    line-height: 1.5;
}

.new-badge, .advantage-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.advantage-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-body {
    margin-bottom: 2rem;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.total-price {
    margin-top: 0.75rem;
    text-align: center;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
}

.total-period {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

.savings {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.package-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.pricing-footer {
    text-align: center;
}

.btn-package {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-package:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-package.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-color: transparent;
}

.btn-package.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-info p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Footer */
.landing-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-minimal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Application Notice */
.application-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.notice-icon {
    color: #d97706;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.notice-content h6 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.notice-content p {
    color: #78350f;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success Modal */
.success-modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #10b981;
    stroke-miterlimit: 10;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #10b981, #059669);
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #10b981;
    background: white;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: white;
    transform: rotate(-45deg);
}

.success-checkmark .icon-line {
    height: 5px;
    background-color: #10b981;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.25);
}

.success-checkmark .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: white;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.success-title {
    color: #111827;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 15px;
}

.success-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
}

.success-info .info-item i {
    color: #10b981;
    font-size: 1rem;
}

.btn-success-close {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

.package-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.package-summary h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.package-summary p {
    color: #6b7280;
    margin: 0;
}

.pricing-calculation {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #374151;
}

.calc-row.discount {
    color: #10b981;
}

.calc-row.total {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    border-top: 1px solid #d1d5db;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(99, 102, 241, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-menu .language-switcher {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .nav-menu .btn-login {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large,
    .btn-guide-large {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .pricing-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .beta-notice {
        padding: 2rem 1.5rem;
    }
    
    .beta-notice h3 {
        font-size: 1.5rem;
    }
    
    .beta-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .application-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-checkmark .check-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
}

/* Contact Form KVKK/GDPR Styles */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.consent-checkbox:hover {
    border-color: #6366f1;
    background: #f0f9ff;
}

.consent-checkbox input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
    accent-color: #6366f1;
}

.consent-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
    cursor: pointer;
}

.consent-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.consent-checkbox input:checked + label {
    color: #059669;
}

/* Loading state for submit button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-submit:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Modal z-index fixes */
.modal {
    z-index: 1050;
}

.modal-backdrop {
    z-index: 1040;
}

/* Contact form validation styles */
.form-control:invalid {
    border-color: #ef4444;
}

.form-control:valid {
    border-color: #10b981;
}

.form-control:focus:invalid {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control:focus:valid {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Error Modal Styles */
.error-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.error-animation {
    margin-bottom: 20px;
}

.error-x-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    border: 4px solid #ef4444;
    animation: error-scale 0.6s ease-in-out;
}

.error-x-mark::before,
.error-x-mark::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: #ef4444;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.error-x-mark::before {
    transform: translate(-50%, -50%) rotate(45deg);
    animation: error-line-1 0.4s ease-in-out 0.2s both;
}

.error-x-mark::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: error-line-2 0.4s ease-in-out 0.4s both;
}

@keyframes error-scale {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes error-line-1 {
    0% { width: 0; opacity: 0; }
    100% { width: 30px; opacity: 1; }
}

@keyframes error-line-2 {
    0% { width: 0; opacity: 0; }
    100% { width: 30px; opacity: 1; }
}

.error-title {
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 15px;
}

.error-message {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-error-close {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-error-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    color: white;
}

/* Beta Warning Modal Styles */
.beta-modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.beta-animation {
    margin-bottom: 25px;
}

.beta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: beta-pulse 2s infinite;
}

.beta-icon i {
    font-size: 40px;
    color: #fbbf24;
    animation: beta-shake 3s infinite;
}

@keyframes beta-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes beta-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.beta-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.beta-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
}

.beta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.beta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.beta-feature-item:hover {
    transform: translateY(-3px);
}

.beta-feature-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.beta-feature-item span {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}

.beta-actions {
    margin-top: 20px;
}

.btn-beta-understand {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-beta-understand:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.btn-beta-understand:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .beta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .beta-feature-item {
        min-width: 200px;
    }
    
    .beta-title {
        font-size: 24px;
    }
    
    .beta-message {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .btn-beta-understand {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid #6366f1;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-consent-text i {
    font-size: 24px;
    color: #fbbf24;
    animation: cookie-bounce 2s infinite;
}

.cookie-message {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    min-width: 100px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-consent-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #cbd5e1;
}

.cookie-consent-actions .btn-light {
    background-color: #6366f1;
    border-color: #6366f1;
    color: white;
}

.cookie-consent-actions .btn-light:hover {
    background-color: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-1px);
}

@keyframes cookie-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        flex: 1;
        max-width: 120px;
    }
    
    .cookie-message {
        font-size: 13px;
    }
    
    .footer-content-minimal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brand-minimal {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo {
        width: 80px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== CAPTCHA STYLES ===== */
.captcha-container {
    margin-top: 0.5rem;
}

.captcha-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.captcha-image {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    display: block;
    width: 250px;
    height: 100px;
    min-width: 250px;
    object-fit: contain;
}

.captcha-refresh-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(99, 102, 241, 0.9);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.captcha-refresh-btn:hover {
    background: rgba(99, 102, 241, 1);
    transform: scale(1.05);
}

.captcha-input {
    max-width: 200px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile captcha responsiveness */
@media (max-width: 768px) {
    .captcha-image,
    .captcha-input {
        max-width: 100%;
    }
}

/* ===== DEMO SECTION STYLES ===== */
.demo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.03"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    z-index: 1;
}

.demo-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.demo-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.demo-feature i {
    font-size: 1.2rem;
    color: #6366f1;
    min-width: 20px;
}

.demo-feature span {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.demo-video-container {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
    border: 4px solid #fff;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 20px;
    z-index: -1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive demo section */
@media (max-width: 992px) {
    .demo-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .demo-video-container {
        padding-left: 0;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .demo-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .demo-features {
        margin-top: 1.5rem;
    }
    
    .demo-feature {
        justify-content: center;
        text-align: center;
    }
    
    .video-wrapper {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.75rem;
    }
    
    .demo-description {
        font-size: 1rem;
    }
    
    .demo-feature {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .demo-feature i {
        font-size: 1.5rem;
    }
} 