@font-face {
    font-family: 'dortage';
    src: url('/fonts/dortage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ===================================
   VEKARER LANDING PAGE STYLES
   Modern, Clean & Professional
   =================================== */

:root {
    --primary-color: #000a68;
    --primary-dark: #000547;
    --primary-light: #1a1f7a;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000a68 0%, #1a1f7a 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    width: 100%;
    margin: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/VEKARERHERO2UPSCALED.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65; /* 0.1 = Çok hafif | 0.25 = Orta | 0.4 = Belirgin | 0.6 = Çok belirgin */
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 20px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 70px;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    /*margin-bottom: 48px;*/
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .btn-outline:hover {
        /*background: rgba(255, 255, 255, 0.1);*/
        background: white;
            border-color: rgba(255, 255, 255, 0.5);
        color: #000a68;
    }

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 20px;*/
}

.success-card {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 0;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    max-width: 100%;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-content .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 8px;
}

.success-content .badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===================================
   STATS BAR
   =================================== */

.stats-bar {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.stat-box {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: var(--bg-light);
}

.stat-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 10, 104, 0.06);
    border-radius: var(--radius-md);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-name {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 10, 104, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    margin-top: 15px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 10, 104, 0.2);
}

.step-card.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 100%);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.15);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 10, 104, 0.05);
    line-height: 1;
}

.step-card.active .step-number {
    color: rgba(245, 158, 11, 0.15);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-card.active .step-icon {
    background: var(--gradient-accent);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-section .row {
    justify-content: center;
}

.features-section .col-lg-6 {
    max-width: 600px;
}

.features-content {
    padding-right: 0;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-sm {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-sm svg {
    width: 24px;
    height: 24px;
    stroke: var(--success-color);
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Features Visual */
.features-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-color);
    flex-shrink: 0;
}

.feature-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

.cta-buttons {
    margin-bottom: 20px;
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 10, 104, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 10, 104, 0.3);
    color: var(--white);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (min-width: 992px) {
    .success-card {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .success-card {
        padding: 32px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .stat-box:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 5px;
    }
    .hero-section {
        min-height: 110vh;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .hero-section::before {
        background-position: inherit;
    }

    .hero-content {
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .hero-title {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.1;
    }

    .hero-title .gradient-text {
        /*font-size: 60px !important;*/
    }

    .hero-title-suffix {
        display: block;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .success-card {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
    }

    .success-icon svg {
        width: 32px;
        height: 32px;
    }

    .success-content h3 {
        font-size: 1.25rem;
    }

    .success-content .amount {
        font-size: 1.75rem;
    }

    .stats-bar {
        padding: 40px 0;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .how-it-works,
    .features-section,
    .cta-section {
        padding: 60px 0;
    }

    .step-card {
        padding: 32px 24px;
    }

    .feature-card-grid {
        gap: 16px;
    }

    .feature-badge {
        padding: 14px 16px;
    }

    .feature-badge span {
        font-size: 0.875rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.25rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 2.25rem;
        text-align: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-icon {
        width: 64px;
        height: 64px;
    }

    .step-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-badge {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .feature-badge svg {
        width: 18px;
        height: 18px;
    }

    .feature-badge span {
        font-size: 0.8rem;
    }
}

    .cta-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}
