:root {
    --bg-color: #050511;
    --text-color: #e0e0e0;
    --text-muted: #8a8a9e;
    --primary-color: #fff;
    --accent-gradient: linear-gradient(90deg, #9f5afd 0%, #765af3 100%);
    --btn-bg: #fff;
    --btn-text: #050511;
    --border-color: rgba(255, 255, 255, 0.1);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--btn-text);
}

.btn-primary:hover {
    background: #e0e0e0;
}

.btn-secondary {
    background: transparent;
    border-color: var(--border-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar-sticky {
    background: rgba(5, 5, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}


.subtitle-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-top: 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* How It Works Steps */
.steps-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
}


/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #fff;
}

.testimonial-card .auth .name {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-card .auth .role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.1) 0%, rgba(5, 5, 17, 0.4) 100%);
    border-color: rgba(118, 90, 243, 0.3);
    position: relative;
    transform: scale(1.05);
    z-index: 1;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 3rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.full-width {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: url('img/renk1.JPG') center center / cover no-repeat;
    padding: 4rem 2rem 2rem;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

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

.link-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Service Pages */
.service-page {
    padding-top: 80px;
}

.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(118, 90, 243, 0.1) 0%, rgba(5, 5, 17, 0.9) 100%);
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Service Features */
.service-features {
    background: rgba(255, 255, 255, 0.02);
}

/* Pricing Grid Simple */
.pricing-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-simple {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card-simple:hover {
    transform: translateY(-5px);
    border-color: rgba(118, 90, 243, 0.5);
}

.pricing-card-simple.featured {
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.15) 0%, rgba(5, 5, 17, 0.4) 100%);
    border-color: rgba(118, 90, 243, 0.4);
    transform: scale(1.05);
}

.pricing-card-simple.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-header .plan-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.price-large .currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-large .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

/* Responsive Service Pages */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

    .pricing-grid-simple {
        grid-template-columns: 1fr;
    }

    .pricing-card-simple.featured {
        transform: scale(1);
    }

    .pricing-card-simple.featured:hover {
        transform: translateY(-5px);
    }
}

/* Contact Form Section */
.contact-section {
    background: rgba(255, 255, 255, 0.02);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.advanced-contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(118, 90, 243, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 120px;
    position: relative;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-label {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-option input[type="radio"]:checked+.radio-label {
    background: var(--accent-gradient);
    border-color: rgba(118, 90, 243, 0.8);
    color: white;
}

.radio-option:hover .radio-label {
    border-color: rgba(118, 90, 243, 0.5);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-option {
    flex: 1;
    min-width: 140px;
    position: relative;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-label {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.checkbox-option input[type="checkbox"]:checked+.checkbox-label {
    background: var(--accent-gradient);
    border-color: rgba(118, 90, 243, 0.8);
    color: white;
}

.checkbox-option:hover .checkbox-label {
    border-color: rgba(118, 90, 243, 0.5);
}

/* Button Large */
.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .advanced-contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group,
    .checkbox-group {
        flex-direction: column;
    }

    .radio-option,
    .checkbox-option {
        min-width: 100%;
    }
}

/* KVKK Consent */
.kvkk-consent {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(118, 90, 243, 0.05);
    border: 1px solid rgba(118, 90, 243, 0.2);
    border-radius: 12px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #765af3;
}

.consent-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: #9b7ff5;
}

/* Progress Indicator */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--accent-gradient);
    border-color: rgba(118, 90, 243, 0.8);
    color: white;
    box-shadow: 0 0 20px rgba(118, 90, 243, 0.5);
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--accent-gradient);
    border-color: rgba(118, 90, 243, 0.8);
    box-shadow: 0 0 15px rgba(118, 90, 243, 0.4);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.form-navigation .btn {
    flex: 1;
    max-width: 200px;
}

.form-navigation #prevBtn {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Progress */

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.15) 0%, rgba(5, 5, 17, 0.95) 100%);
    border: 1px solid rgba(118, 90, 243, 0.4);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.redirect-text {
    font-size: 0.9rem;
    font-style: italic;
}

/* Privacy Policy Content */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.privacy-content .update-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.privacy-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.privacy-content .footer-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }
}

/* Case Studies Page - Modern Visual Design */
.case-studies-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(5, 5, 17, 1) 0%, rgba(10, 14, 39, 1) 100%);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #765af3 0%, #9b7ff5 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.02em;
}

.case-overview {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.1) 0%, rgba(5, 5, 17, 0.8) 100%);
    border: 2px solid rgba(118, 90, 243, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.case-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.case-overview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.case-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}


/* Career Page Styles */
.career-intro {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.08) 0%, rgba(5, 5, 17, 0.5) 100%);
    border: 1px solid rgba(118, 90, 243, 0.3);
    border-radius: 20px;
}

.career-intro h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: rgba(118, 90, 243, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

input[type='file'] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type='file']:hover {
    border-color: rgba(118, 90, 243, 0.5);
    background: rgba(255, 255, 255, 0.08);
}


/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #765af3 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.1) 0%, rgba(5, 5, 17, 0.5) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.achievement-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(118, 90, 243, 0.08);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.achievement-list li:hover {
    background: rgba(118, 90, 243, 0.15);
    transform: translateX(5px);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.principle-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(118, 90, 243, 0.08) 100%);
    border: 1px solid rgba(118, 90, 243, 0.25);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(118, 90, 243, 0.5);
    box-shadow: 0 10px 30px rgba(118, 90, 243, 0.2);
}

.principle-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.principle-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, rgba(118, 90, 243, 0.1) 0%, rgba(5, 5, 17, 0.5) 100%);
    border-radius: 24px;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
}
