:root {
    --color-teal: #1bbcb7;
    --color-teal-dark: #148f8b;
    --color-teal-light: #e0fbfb;
    --color-red: #d54d44;
    --color-red-dark: #b53d36;
    --color-green: #18ad1f;
    --color-green-dark: #248029;

    --color-red-light: #fbecec;
    --color-indigo: #6a4cd9;
    --color-indigo-light: #f2efff;
    --color-dark: #1e293b;
    --color-gray: #64748b;
    --color-light-bg: #f8fafc;
    --color-white: #ffffff;
    --font-primary: 'Manrope', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
}

/* Colors Utilities */
.text-teal {
    color: var(--color-teal) !important;
}

.text-teal-light {
    color: #81e6e3 !important;
}

.bg-teal {
    background-color: var(--color-teal) !important;
}

.bg-teal-soft {
    background-color: rgba(27, 188, 183, 0.1) !important;
}

.bg-light-teal {
    background-color: var(--color-teal-light) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.bg-red {
    background-color: var(--color-red) !important;
}

.bg-light-red {
    background-color: var(--color-red-light) !important;
}

.text-indigo {
    color: var(--color-indigo) !important;
}

.bg-light-indigo {
    background-color: var(--color-indigo-light) !important;
}

.bg-light-gray {
    background-color: var(--color-light-bg) !important;
}

.bg-dark-blue {
    background-color: #0f172a !important;
}


.text-green {
    color: var(--color-green) !important;
}

.bg-green {
    background-color: var(--color-green) !important;
}

.bg-light-green {
    background-color: var(--color-green-light) !important;
}

/* Gradients */
.text-gradient-teal {
    background: linear-gradient(135deg, var(--color-teal) 0%, #0d9488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-red {
    background: linear-gradient(135deg, var(--color-red) 0%, #940d0d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations & Special Effects */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 77, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(213, 77, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(213, 77, 68, 0);
    }
}

.animate-pulse {
    animation: pulse-red 2s infinite ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-300 {
    animation-delay: 300ms;
}

/* Missing utility classes */
.bg-red-soft {
    background-color: rgba(213, 77, 68, 0.1) !important;
}

.width-80 {
    width: 80px !important;
}

.height-80 {
    height: 80px !important;
}

/* Firma Avantajları Section Styles */
.benefits-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefit-card-v4 {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 28px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.benefit-card-v4:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-teal);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--color-teal-light);
    color: var(--color-teal);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.benefit-card-v4:hover .benefit-icon-wrapper {
    background: var(--color-teal);
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.benefit-content h4 {
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.benefit-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-teal);
    background: rgba(27, 188, 183, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    opacity: 0;
    transition: 0.3s;
}

.benefit-card-v4:hover .benefit-tag {
    opacity: 1;
}

@media (max-width: 767px) {
    .benefit-card-v4 {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .benefit-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 14px;
    }

    .benefit-content h4 {
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        font-size: 1.15rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    .benefit-tag {
        top: 1rem;
        right: 1rem;
        font-size: 0.6rem;
    }
}

/* Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--color-teal);
}

/* Buttons */
.btn-red {
    background-color: var(--color-red);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-red:hover {
    background-color: var(--color-red-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-teal {
    background-color: var(--color-teal);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-teal:hover {
    background-color: var(--color-teal-dark);
    color: white;
}

.btn-green {
    background-color: var(--color-green);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-green:hover {
    background-color: var(--color-green-dark);
    color: white;
}

.btn-outline-teal {
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-teal:hover {
    background-color: var(--color-teal);
    color: white;
}

.shadow-red {
    box-shadow: 0 10px 20px -5px rgba(213, 77, 68, 0.4);
}

.shadow-green {
    box-shadow: 0 10px 20px -5px rgba(36, 128, 41, 0.4);
}

/* Hero V3 */
.hero-v3 {
    background: radial-gradient(circle at 100% 0%, rgba(27, 188, 183, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    min-height: 90vh;
}

.fw-extrabold {
    font-weight: 800;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.divider-vertical {
    width: 1px;
    background-color: #e2e8f0;
    height: 40px;
}

.hero-stat h4 {
    font-size: 1.25rem;
}

/* Custom Form */
.form-floating-custom {
    position: relative;
    margin-bottom: 0;
}

.form-floating-custom .form-control {
    border: 1px solid #e2e8f0;
    padding: 1rem 0.75rem;
    height: auto;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8fafc;
}

.form-floating-custom .form-control:focus {
    background-color: white;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(27, 188, 183, 0.1);
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #94a3b8;
    background: transparent;
    padding: 0 4px;
    font-size: 0.95rem;
    transition: all 0.2s;
    pointer-events: none;
}

.form-floating-custom .form-control:focus~label,
.form-floating-custom .form-control:not(:placeholder-shown)~label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    background: white;
    color: var(--color-teal);
}

/* Tiny trick to make input behave like it has value for placeholder shown CSS */
.form-floating-custom .form-control::placeholder {
    opacity: 0;
}

.form-select-custom {
    padding: 1rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    color: #64748b;
}

/* Feature Comparison */
.vs-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.custom-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--color-gray);
}

.custom-list li i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.glow-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(27, 188, 183, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Ecosystem Cards */
.feature-card-v3 {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.feature-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.feature-card-v3.border-teal {
    border: 2px solid var(--color-teal);
    background: linear-gradient(180deg, #fff 0%, #f0fdfd 100%);
}

.feature-card-v3.border-red {
    border: 2px solid var(--color-red);
    background: linear-gradient(180deg, #fff 0%, #f0fdfd 100%);
}

.feature-card-v3.border-indigo {
    border: 2px solid var(--color-indigo);
    background: linear-gradient(180deg, #fff 0%, #f0fdfd 100%);
}

.absolute-badge-teal {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.absolute-badge-red {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.absolute-badge-indigo {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-indigo);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

/* Informative & Eye-Catching Process Design (V4) */
.process-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 188, 183, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.process-path-wrapper {
    position: relative;
    z-index: 1;
}

.process-node-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.process-node-card:hover {
    border-color: var(--color-teal);
    box-shadow: 0 30px 60px -15px rgba(27, 188, 183, 0.15);
    transform: translateY(-15px) scale(1.02);
}

.node-number-shimmer {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 1rem;
    right: 2rem;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.process-node-card:hover .node-number-shimmer {
    background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    transform: scale(1.2);
}

.node-icon-glow {
    width: 80px;
    height: 80px;
    background: white;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-teal);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.node-icon-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-teal), transparent);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.process-node-card:hover .node-icon-glow::after {
    opacity: 1;
}

.node-content-box h4 {
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    position: relative;
}

.node-info-list {
    list-style: none;
    padding: 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1.5rem;
}

.node-info-list li {
    font-size: 0.85rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.node-info-list li i {
    color: var(--color-green);
    font-size: 0.75rem;
}

.node-prime-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-teal-light);
    color: var(--color-teal);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .node-connector {
        position: absolute;
        width: 100px;
        height: 2px;
        background: repeating-linear-gradient(to right, #e2e8f0 0, #e2e8f0 5px, transparent 5px, transparent 10px);
        top: 30%;
        right: -50px;
        z-index: 0;
    }
}

/* Testimonials Light Mode */
.testimonial-card-light {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card-light:hover {
    transform: translateY(-5px);
}

.avatar-circle-sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Accordion */
.custom-accordion .accordion-item {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: white;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: none;
    padding: 1.25rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: var(--color-teal);
}

.custom-accordion .accordion-body {
    background: white;
    padding: 1.25rem;
    padding-top: 0.5rem;
    color: var(--color-gray);
}

/* Footer */
.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--color-gray);
    text-decoration: none;
    transition: 0.2s;
}

.footer-list a:hover {
    color: var(--color-teal);
}

/* Mobile-First Comparison Components */
.comp-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.comp-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.comp-card:hover {
    transform: translateY(-5px);
}

.comp-header {
    padding: 1.5rem 1.25rem;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #fbfcfd);
    border-bottom: 1px solid #f1f5f9;
}

.comp-header h5 {
    margin-bottom: 0.25rem;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.comp-header .vs-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.comp-body {
    padding: 0;
}

.comp-row {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f8f9fa;
    transition: background 0.2s;
}

.comp-row:hover {
    background: #fcfdfe;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-label {
    flex: 1.4;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.85rem;
    line-height: 1.3;
    padding-right: 0.5rem;
}

.comp-val {
    flex: 1;
    text-align: center;
    font-weight: 800;
    padding: 0.5rem 0.25rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.comp-val-other {
    color: #e53e3e;
    background: #fff5f5;
    margin-right: 0.5rem;
    border: 1px solid #feb2b2;
}

.comp-val-enyakin {
    color: #2f855a;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.comp-legend {
    display: flex;
    justify-content: center;
    gap: 0;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.comp-legend>span {
    flex: 1;
    padding: 0.6rem;
    text-align: center;
}

.comp-legend::before {
    content: "";
    flex: 1.4;
}

.legend-other {
    color: #e53e3e;
}

.legend-enyakin {
    color: var(--color-teal);
    background: rgba(27, 188, 183, 0.05);
}

/* Floating Sticky CTA */
.sticky-cta-container {
    position: fixed;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .sticky-cta-container {
        bottom: 30px;
        right: 30px;
        width: 320px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sticky-cta-container.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .sticky-cta-container {
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 12px 15px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sticky-cta-container .btn {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }

    .sticky-cta-container .x-small {
        font-size: 0.7rem !important;
    }

    /* Process Section Mobile Layout */
    .process-node-card {
        display: grid !important;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1rem 1.25rem;
        padding: 2rem 1.25rem !important;
    }

    .node-icon-glow {
        margin-bottom: 0 !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        grid-column: 1;
        grid-row: 1;
    }

    .node-content-box {
        display: contents;
    }

    .node-content-box h4 {
        margin-bottom: 0 !important;
        grid-column: 2;
        grid-row: 1;
        font-size: 1.15rem !important;
        line-height: 1.2;
    }

    .node-content-box p,
    .node-content-box .node-info-list {
        grid-column: 1 / span 2;
    }

    .node-number-shimmer {
        font-size: 3rem !important;
        top: 0.5rem !important;
        right: 1rem !important;
        opacity: 0.2 !important;
    }
}

@media (min-width: 992px) {
    .comp-container {
        flex-direction: row;
        align-items: stretch;
    }

    .comp-card {
        flex: 1;
    }
}