html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    position: relative;
    height: auto;
}

:root {
    --bg-color: #D3D3D3;
    --primary: #22C55E;
    --primary-dark: #16A34A;
    --primary-glow: rgba(34, 197, 94, 0.1);
    --primary-glow-strong: rgba(34, 197, 94, 0.2);

    --text-main: #111111;
    --text-light: #333333;
    --text-muted: #555555;

    --dark-bg: #D3D3D3;
    --dark-soft: #E5E5E5;
    --card-bg: rgba(255, 255, 255, 0.5);
    --card-border: rgba(0, 0, 0, 0.1);
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    height: auto;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    background-image: none;
}

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

ul {
    list-style: none;
}

/* Replaced light-beams with Dark Section logic */
.dark-section {
    background: #E5E5E5;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-section .section-title,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--text-main);
}

.dark-section p {
    color: var(--text-light);
}

.hero-wrapper {
    background-color: #D3D3D3;
    background: linear-gradient(180deg, #E5E5E5 0%, #D3D3D3 100%);
}

.highlight-gradient {
    color: var(--primary);
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.hero-cta-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.btn-outline:hover {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 16px 0;
    margin-top: 24px;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1.2px;
    text-transform: none;
}

.logo-text span {
    color: var(--primary);
}

.footer-logo-fixed .logo-text {
    font-size: 2rem;
}



.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.hamburger {
    display: none;
}

.top-trust-bar {
    width: 100%;
    background: #E5E5E5;
    padding: 24px 0;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.trust-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.9;
}

.trust-item i, .trust-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    color: var(--primary) !important;
    transition: all 0.3s ease;
}

.trust-item:hover i, .trust-item:hover svg {
    transform: translateY(-2px);
    color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    padding: 120px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-centered .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #111111;
}

.hero-title .highlight {
    background: linear-gradient(100deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: #444444;
    font-size: 1.125rem;
    margin: 24px auto 40px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 720px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 2px solid var(--bg-color);
    margin-left: -14px;
}

.avatar:first-child {
    margin-left: 0;
    background: #cbd5e1;
}

.avatar:nth-child(2) {
    background: #94a3b8;
}

.avatar:nth-child(3) {
    background: var(--primary);
    opacity: 0.9;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* 3D Dashboard -> Flat Staggered Dashboard */
.hero-right {
    flex: 1;
    position: relative;
    height: 480px;
}

.floating-dashboard {
    position: relative;
    width: 100%;
    height: 100%;
    /* Subtle 2D slant as in the screenshot */
    transform: rotateZ(-2deg) scale(0.95);
    transform-origin: center right;
}

.glass-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    animation: simple-float 8s ease-in-out infinite;
}

@keyframes simple-float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-card-1 {
    top: 20px;
    left: 20px;
    width: 270px;
    z-index: 1;
    animation-delay: 0s;
}

.float-card-2 {
    top: 150px;
    right: 0px;
    width: 290px;
    z-index: 3;
    animation-delay: 1.5s;
    background: #f0fdf4;
    border-color: #d1fae5;
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.1);
}

.float-card-3 {
    bottom: 50px;
    left: 50px;
    width: 290px;
    z-index: 2;
    animation-delay: 3s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 700;
}

.float-card-2 .card-header,
.float-card-2 .card-header i {
    color: #059669;
}

.icon-sm {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.icon-xs {
    width: 14px;
    height: 14px;
}

.card-value {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.float-card-2 .card-value {
    color: #059669;
    /* Exact green from screenshot */
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #d1fae5;
    color: #059669;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Updated chart colors for light mode readability */
.card-chart {
    margin-top: 15px;
    margin-bottom: -10px;
}

.card-chart svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 16px 16px;
}

.card-chart svg path[fill="rgba(50, 255, 126, 0.2)"] {
    fill: rgba(16, 185, 129, 0.15) !important;
}

.card-chart svg path[stroke="#32ff7e"] {
    stroke: #10b981 !important;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Sektörel Sorunlar - New Split Layout */
.problems {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 24px;
}

.problems-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.problems-text {
    flex: 1;
    max-width: 480px;
}

.problems-text .section-title {
    text-align: left;
    margin-bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.problems-text .section-badge {
    margin-bottom: 16px;
}

.problems-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.problems-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.problem-item:hover {
    transform: translateX(10px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.08);
}

.problem-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.problem-item:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    border-color: var(--primary);
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.5px;
}

.problem-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.problem-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .problems-container {
        flex-direction: column;
        gap: 50px;
    }
}


/* Süreç Section */
.process {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.glass-process-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.1, 0, 0.1, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-process-card:hover {
    border-color: rgba(30, 215, 96, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(30, 215, 96, 0.1);
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.neon-shadow svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 10px rgba(30, 215, 96, 0.15));
    transition: transform 0.4s ease;
}

.glass-process-card:hover .neon-shadow svg {
    transform: scale(1.05) translateY(-5px);
}

/* Overriding SVG inner black/gray items to be readable and dark-friendly */
.glass-process-card svg circle[fill="rgba(20,20,20,0.8)"],
.glass-process-card svg path[fill="rgba(20,20,20,0.8)"] {
    fill: #15221b !important;
}

.glass-process-card svg line[stroke="#15181b"] {
    stroke: #222 !important;
}

.glass-process-card .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.glass-process-card .card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    font-weight: 500;
}

.step-indicator {
    position: absolute;
    top: -10px;
    right: 5px;
    font-size: 7.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    z-index: -1;
    transition: all 0.5s ease;
    pointer-events: none;
    letter-spacing: -6px;
}

.glass-process-card:hover .step-indicator {
    color: rgba(30, 215, 96, 0.12);
    transform: translateY(5px);
}

/* Pricing Section */
.pricing {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.glass-pricing {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlighted-plan {
    background: var(--dark-soft);
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.1);
    z-index: 2;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlighted-plan:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), 0 0 50px rgba(30, 215, 96, 0.08);
}

.dark-section .highlighted-plan {
    background: var(--dark-soft);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(30, 215, 96, 0.1);
}

.dark-section .highlighted-plan:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(30, 215, 96, 0.15);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--primary-glow-strong);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.plan-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 24px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dark-section .plan-header,
.dark-section .plan-scope-container {
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-icon {
    width: 76px;
    height: 76px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-section .plan-icon {
    background: rgba(255, 255, 255, 0.05);
}

.glass-pricing:hover .plan-icon,
.highlighted-plan .plan-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
    border-color: var(--primary);
    transform: scale(1.15);
    border-radius: 24px;
}

.plan-icon svg {
    width: 34px;
    height: 34px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.plan-budget-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #10B981;
    background: #111827;
    padding: 12px 24px;
    border-radius: 12px;
    margin-top: 18px;
    line-height: 1.4;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.2px;
}

.plan-desc-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
}

.plan-suitable {
    flex: 1;
    margin-bottom: 24px;
}

.plan-suitable h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suitable-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suitable-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #111111;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.suitable-list i.check {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-scope-container {
    flex: 1;
    margin-bottom: 30px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.plan-scope-container h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #444444;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scope-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
}

.scope-list li.disabled {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 500;
}

.scope-list li.disabled i.cross {
    color: rgba(0, 0, 0, 0.2);
}

.scope-list .check,
.scope-list .cross {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    margin-top: 2px;
    stroke-width: 2.5px !important;
}

.scope-list .check {
    color: var(--primary);
}

.scope-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.scope-note i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-footer {
    text-align: center;
    margin-top: auto;
}

.plan-note {
    font-size: 0.8rem;
    color: #444444;
    margin-top: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Contact Section */
/* =====================================================
   TANIŞALIM SECTION – Two-column premium contact
   ===================================================== */
.contact-section {
    max-width: 1200px;
    margin: 120px auto 100px;
    padding: 0 24px;
}

.tanisalim-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

/* no decorative blob needed */

/* ---------- LEFT SIDE ---------- */
.tanisalim-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Overlapping Avatars */
.tanisalim-avatars {
    display: flex;
    margin-bottom: 28px;
}

.t-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    margin-left: -16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: #555;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background: #e2e8f0; /* fallback simple bg */
}

.t-avatar:first-child { margin-left: 0; }

.t-avatar:hover { transform: translateY(-4px); }

.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.t-avatar-count {
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Heading */
.tanisalim-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.tanisalim-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Trust bullet list */
.tanisalim-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tanisalim-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

.tanisalim-trust-list li strong {
    color: var(--text-main);
}

/* ---------- RIGHT SIDE ---------- */
.tanisalim-right {
    display: flex;
    align-items: stretch;
}

.tanisalim-form-card {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    border: none;
    box-shadow: none;
    position: relative;
}

.tanisalim-form-card::after {
    display: none;
}

.tanisalim-form-header {
    margin-bottom: 28px;
}

.tanisalim-form-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.tanisalim-form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Existing glass-container kept for other pages */
.glass-container {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 3px solid var(--primary);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-text {
    z-index: 2;
    position: relative;
}

.contact-text .section-title {
    font-size: 2.7rem;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
}

.contact-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-circle i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.75);
    border: none;
    padding: 16px 18px;
    border-radius: 14px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.form-group input::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0 40px;
    background: var(--bg-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
}

.footer-nav-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.footer-address {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

.footer-address h4 {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    align-items: flex-end;
}

.footer-links a {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- NEW LEAD GEN STYLES --- */
.hero-trust-scarcity {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-line,
.scarcity-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    background: rgba(34, 197, 94, 0.05);
    padding: 10px 24px;
    border-radius: 99px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.trust-line:hover,
.scarcity-line:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.trust-line i,
.scarcity-line i {
    color: var(--primary);
    width: 22px;
    height: 22px;
    stroke-width: 3px;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.2));
}

/* warning/scarcity gold color */

.free-analysis-intro {
    padding: 100px 24px;
    background: transparent;
}

.analysis-intro-container {
    max-width: 1120px;
    margin: 0 auto;
}

.analysis-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 40px;
}

.analysis-header-left {
    flex: 1;
    max-width: 600px;
}

.analysis-badge {
    text-transform: uppercase;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.analysis-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -1px;
    text-align: left;
}

.analysis-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
}

.analysis-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.analysis-cta {
    width: 280px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.analysis-trust-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.analysis-trust-note i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.analysis-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.analysis-fw-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 26px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 170px;
    display: flex;
    flex-direction: column;
}

.analysis-fw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(30, 215, 96, 0.3);
}

.fw-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.analysis-fw-card:hover .fw-icon {
    background: rgba(30, 215, 96, 0.1);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.2);
}

.fw-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
}

.analysis-fw-card:hover .fw-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    border-color: var(--primary);
}

.analysis-fw-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.analysis-fw-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 500;
}

/* --- PROCESS SECTION --- */
/* --- NEW ENGAGEMENT PROCESS SECTION --- */
.engagement-process-section {
    padding: 80px 24px;
}

.engagement-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.engagement-process-step {
    padding: 40px 30px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.engagement-process-step:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.engagement-process-step .step-number {
    position: absolute;
    top: -15px;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
    border: 3px solid var(--bg-color);
}

.engagement-process-step .step-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.engagement-process-step:hover .step-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.engagement-process-step .step-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
}

.engagement-process-step .step-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.engagement-process-step .step-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 600;
}

@media (max-width: 992px) {
    .engagement-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .engagement-process-grid {
        grid-template-columns: 1fr;
    }
}

.centered-form-container {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    padding: 60px;
}

.form-header {
    margin-bottom: 40px;
}

.form-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    font-weight: 500;
}

.btn-submit-lead {
    font-size: 1.1rem;
    padding: 18px;
    margin-top: 20px;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-cta a {
    box-shadow: 0 10px 40px var(--primary-glow-strong);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    padding: 16px 28px;
    font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 500px;
        margin-top: 40px;
        transform: scale(0.95);
    }

    .problems-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .highlighted-plan {
        transform: scale(1);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .tanisalim-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-text .section-title {
        text-align: center;
    }

    .analysis-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 32px;
    }

    .analysis-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-nav-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #E5E5E5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 100;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
    }

    .nav-container .btn-sm {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 5px;
        z-index: 101;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--text-main);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .trust-bar-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-item {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero {
        padding: 100px 20px 0;
    }

    .free-analysis-intro {
        padding: 40px 20px;
    }

    .problems {
        margin: 40px auto;
    }

    .problems-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .problems-text .section-badge {
        margin: 0 auto 16px;
    }


    .problems-text .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .process, .pricing {
        margin: 40px auto;
    }

    .pricing {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .engagement-process-section {
        padding: 40px 20px;
    }

    .contact-section {
        margin: 40px auto 60px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .analysis-fw-card {
        padding: 20px;
        min-height: auto;
    }

    .problem-item {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-grid,
    .process-grid,
    .analysis-features-grid,
    .pre-form-grid,
    .engagement-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .centered-form-container {
        padding: 40px 20px;
    }

    .tanisalim-form-card {
        padding: 30px 24px;
    }

    .tanisalim-title {
        font-size: 2.3rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .floating-cta a {
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
        width: 100%;
    }

    .footer-nav-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-address {
        order: 2;
        /* Move address below logo on mobile if needed, or just let it flow */
    }
}

/* --- HAKKIMDA SAYFASI --- */
.about-page-main {
    padding: 80px 24px;
    background-color: var(--bg-color);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Sidebar & Image */
.about-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.about-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* very light ring */
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.03);
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

.experience-badge {
    position: absolute;
    bottom: -5px;
    right: 15px;
    width: 70px;
    height: 70px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--bg-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.exp-number {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Right Content */
.about-content {
    flex: 1;
}

.about-section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-text-block {
    margin-bottom: 50px;
}

.about-text-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.about-section-title.mt-40 {
    margin-top: 50px;
}

.about-section-title h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

.bullet-point {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 25px;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    /* solid line like in image */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #e2e8f0;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
}

.timeline-dot.active {
    background-color: #111;
}

.timeline-date {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.timeline-role {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-pill {
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.skill-pill:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #111;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .about-sidebar {
        width: 100%;
        position: static;
        display: flex;
        justify-content: center;
    }
}

/* ===== Team Section ===== */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 100px;
}

.team-container {
    width: 100%;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 180px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.team-image-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 20px auto 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    transform: scale(1.15);
}

.team-social a svg {
    width: 16px;
    height: 16px;
}

.team-info {
    padding: 14px 16px 18px;
    text-align: center;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
    letter-spacing: -0.3px;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: block;
}

.team-company {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 24px;
    }

    .team-section {
        padding: 60px 24px 80px;
    }
}

/* ===== Team CTA Section ===== */
.team-cta-section {
    background: linear-gradient(135deg, #059669 0%, #22C55E 100%);
    padding: 80px 24px;
    text-align: center;
}

.team-cta-container {
    max-width: 650px;
    margin: 0 auto;
}

.team-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.team-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 500;
}

.team-cta-section .btn-primary {
    background: #ffffff;
    color: #059669;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-cta-section .btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ===== Partners & References Section ====== */
.partners-section {
    padding: 60px 0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.partners-nc-logo {
    height: 40px;
    margin-bottom: 20px;
}

.partners-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
    }
}