@charset "utf-8";
/*LP VE BETA*/
/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.header::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" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.header-content {
    position: relative;
    z-index: 1;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}
h1.hero-title {
    color: white
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}
.hero-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.85;
}
/* Primary CTA */
.cta-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}
/* Sections */
.section {
    padding: 80px 0;
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a8a;
}
/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 50px;
    background: #e2e8f0;
    padding: 5px;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.tab-button {
    background: transparent;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 16px;
}
.tab-button.active {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tab-button:hover:not(.active) {
    color: #1e3a8a;
}
/* Tab Content */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-description {
    text-align: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.feature-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3b82f6;
}
.feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e3a8a;
}
.feature-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}
.feature-example {
    background: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    border-left: 3px solid #3b82f6;
}
/* Challenge resolved */
.challenge-section {
    background: #f0f9ff;
    text-align: center;
}
.challenge-text {
    font-size: 20px;
    line-height: 1.6;
    color: #1e40af;
    max-width: 900px;
    margin: 0 auto 40px;
    font-style: italic;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.approach-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.approach-number {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}
.approach-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e3a8a;
}
.approach-description {
    color: #4b5563;
    line-height: 1.6;
}
/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3b82f6;
}
.benefit-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e3a8a;
}
.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}
/* Form */
.form-section {
    background: #f8fafc;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.form-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #1e3a8a;
}
.form-group {
    margin-bottom: 25px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-textarea {
    height: 120px;
    resize: vertical;
}
.form-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}
.required {
    color: #dc2626;
}
/* Experience section */
.experience {
    background: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #1e3a8a;
    display: block;
}
.stat-label {
    font-size: 16px;
    color: #6b7280;
    margin-top: 5px;
}
/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 50px 0;
    text-align: center;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}
.footer-links {
    margin-bottom: 30px;
}
.footer-links a {
    color: #e0e7ff;
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}
/* Urgency */
.urgency-bar {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
.hero-title {
    font-size: 36px;
    color: white;
}
.hero-subtitle {
    font-size: 20px;
}
.form-container {
    padding: 30px 20px;
}
.section {
    padding: 50px 0;
}
.tabs-nav {
    flex-direction: column;
    gap: 10px;
}
.tab-button {
    padding: 12px 20px;
}
.features-grid, .benefits-grid {
    grid-template-columns: 1fr;
}
}
        
        /* Animations */
        @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
/* Floating button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
.floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
}
}
body, td, th {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}