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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #f9fafb;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

:root {

    --color-primary: #16a34a;
    --color-primary-dark: #15803d;
    --color-primary-light: #dcfce7;
    --color-primary-100: #dcfce7;
    --color-primary-200: #bbf7d0;
    --color-primary-600: #16a34a;
    --color-primary-700: #15803d;
    --color-primary-800: #166534;

    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    --color-white: #ffffff;
    --color-black: #000000;

    --color-yellow-50: #fefce8;
    --color-yellow-400: #facc15;
    --color-yellow-700: #a16207;
    --color-yellow-800: #854d0e;

    --color-blue-400: #60a5fa;
    --color-blue-600: #2563eb;

    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --rounded-sm: 0.125rem;
    --rounded: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --transition: 150ms ease-in-out;
    --transition-slow: 300ms ease-in-out;

    --vds-section-py: 5rem;
    --vds-section-py-lg: 6rem;

    --vds-card-radius: 20px;
    --vds-card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --vds-card-shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --vds-card-padding: 2rem 1.75rem;
    --vds-card-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --vds-h2-size: 2.5rem;
    --vds-h3-size: 1.5rem;
    --vds-body-size: 1.05rem;
    --vds-small-size: 0.9rem;

    --vds-accent: #16a34a;
    --vds-accent-light: #dcfce7;
    --vds-accent-glow: rgba(22, 163, 74, 0.4);

    --vds-bg-white: #ffffff;
    --vds-bg-soft: #f8fafb;

    --vds-border: 1px solid #e5e7eb;
    --vds-border-hover: 1px solid #d1d5db;
}

.vds-section {
    padding: var(--vds-section-py) 0;
    position: relative;
}

@media (min-width: 1024px) {
    .vds-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.vds-section-white { background-color: var(--vds-bg-white); }

.vds-section-soft { background-color: var(--vds-bg-soft); }

.vds-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.vds-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .vds-header h2 {
        font-size: var(--vds-h2-size);
    }

}

.vds-header p {
    margin-top: 1rem;
    font-size: var(--vds-body-size);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.vds-card {
    background: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    padding: var(--vds-card-padding);
    box-shadow: var(--vds-card-shadow);
    transition: var(--vds-card-transition);
    border: var(--vds-border);
}

.vds-card:hover {
    box-shadow: var(--vds-card-shadow-hover);
    transform: translateY(-6px);
    border-color: #d1d5db;
}

.vds-card-highlight {
    background: var(--vds-accent);
    color: white;
    border-color: var(--vds-accent);
}

.vds-card-highlight:hover {
    box-shadow: 0 30px 60px -15px var(--vds-accent-glow);
    border-color: var(--vds-accent);
}

.vds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: var(--vds-small-size);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.vds-btn-primary {
    background: var(--vds-accent);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.vds-btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.vds-btn-secondary {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid #e5e7eb;
}

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

.vds-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--vds-small-size);
    font-weight: 600;
    color: var(--color-gray-700);
    transition: all 0.2s ease;
}

.vds-link-arrow svg {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform 0.2s ease;
}

.vds-link-arrow:hover {
    color: var(--vds-accent);
}

.vds-link-arrow:hover svg {
    transform: translateX(4px);
}

.vds-badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    line-height: 1;
}

.vds-badge-red { background: #fef2f2; color: #dc2626; }

.vds-badge-orange { background: #fff7ed; color: #ea580c; }

.vds-badge-green { background: #f0fdf4; color: #16a34a; }

.vds-badge-purple { background: #faf5ff; color: #9333ea; }

.vds-pattern-subtle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='2' viewBox='0 0 20 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1h8' stroke='%23dcfce7' stroke-width='2' stroke-dasharray='4 4'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: var(--text-3xl); }

h2 { font-size: var(--text-2xl); }

h3 { font-size: var(--text-xl); }

h4 { font-size: var(--text-lg); }

@media (min-width: 1024px) {
    h1 { font-size: var(--text-5xl); }

    h2 { font-size: var(--text-4xl); }

    h3 { font-size: var(--text-2xl); }

}

.lead {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: absolute;
    width: auto;
    height: auto;
    padding: var(--spacing-2) var(--spacing-4);
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-primary-600);
    color: var(--color-white);
    border-radius: var(--rounded-md);
    z-index: 50;
    top: var(--spacing-4);
    left: var(--spacing-4);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--rounded-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary-700);
}

.btn-white:hover {
    background-color: var(--color-gray-100);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-gray-300);
    color: var(--color-gray-700);
}

.btn-outline:hover {
    background-color: var(--color-gray-100);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-lg {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--text-sm);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    overflow: visible;

    background-color: transparent !important;

    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header.scrolled {

    background-color: rgba(204, 204, 204, 0.9) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    padding-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header.scrolled .nav-link {
    color: #000000 !important;
    text-shadow: none;
}

.header.scrolled .nav-link:hover {
    color: #16a34a !important;
}

.logo img {
    height: 40px;
    width: auto;

    transition: filter 0.3s ease;
}

.header.scrolled .logo img {
    filter: none;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cert-badge {
    height: 38px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-cert-badge {
    height: 48px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.mobile-menu-btn {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: #000000 !important;
}

@media (max-width: 1023px) {
    .header {
        height: calc(64px + env(safe-area-inset-top, 0px));
        padding-top: env(safe-area-inset-top, 0px);
    }

    .header-nav {
        padding: 8px 8px 0;
    }

    .logo img {
        height: 52px;
    }

}

@media (min-width: 1024px) {
    .header-nav {
        height: 5rem;
    }

}

@media (min-width: 1024px) {
    .logo img {
        height: 5.5rem;
    }

}

.nav-desktop {
    display: none;
    align-items: center;
    gap: var(--spacing-8);
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

}

.nav-link:hover {
    color: #ffffff;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }

}

.lang-switcher {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .lang-switcher {
        display: flex;
        align-items: center;
    }

}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: transparent;
    color: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
}

.lang-switcher-btn svg {
    flex-shrink: 0;
}

.lang-chevron {
    transition: transform 0.2s ease;
}

.lang-switcher-btn.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s ease;
}

.lang-option:hover {
    background: #f3f4f6;
}

.lang-option.active {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 600;
}

.lang-option .lang-code {
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 24px;
    text-align: center;
    padding: 2px 6px;
    background: #f3f4f6;
    border-radius: 4px;
    color: #374151;
}

.lang-option.active .lang-code {
    background: #dcfce7;
    color: #15803d;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option svg {
    margin-left: auto;
    color: #16a34a;
}

.mobile-lang-switcher {
    display: flex;
    gap: 0;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 11px 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #6b7280;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.18s ease;
}

.mobile-lang-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.mobile-lang-btn:last-child {
    border-radius: 0 10px 10px 0;
}

.mobile-lang-btn:not(:last-child) {
    border-right: none;
}

.mobile-lang-btn.active {
    background: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    z-index: 1;
    position: relative;
}

.mobile-lang-btn:hover:not(.active) {
    background: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    z-index: 998;
    border-top: 2px solid #f0fdf4;
}

.mobile-menu.open {
    display: block;
    animation: mobileMenuIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }

}

/* Nav linkleri */

.mobile-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.18s ease;
    text-decoration: none;
    position: relative;
}

.mobile-menu > a::after {
    content: '›';
    font-size: 1.5rem;
    font-weight: 300;
    color: #d1d5db;
    line-height: 1;
    transition: transform 0.18s ease, color 0.18s ease;
    flex-shrink: 0;
}

.mobile-menu > a:hover {
    background: #f8fffe;
    color: #16a34a;
    padding-left: 28px;
}

.mobile-menu > a:hover::after {
    color: #16a34a;
    transform: translateX(4px);
}

/* Dil seçici üst bölücü */

.mobile-menu .mobile-lang-switcher {
    border-top: none;
}

.mobile-menu-lang-section {
    padding: 16px 24px 20px;
    background: #f8fafc;
    border-top: 1px solid #f0f0f0;
}

.nav-link {
    position: relative;

    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 1.5px;

    background-color: #16a34a;
    border-radius: 4px;

    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #16a34a !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background-color: #16a34a;
}

.header:not(.scrolled) .nav-link.active {
    color: #4ade80 !important;
}

.header:not(.scrolled) .nav-link.active::after {
    background-color: #4ade80;
}

.header:not(.scrolled) .nav-link:hover::after {
    background-color: #4ade80;
}

.header:has(.mobile-menu.open) {
    background-color: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header:has(.mobile-menu.open) .logo img {
    filter: none;
}

.header:has(.mobile-menu.open) .mobile-menu-btn {
    color: #000000 !important;
}

.header.mobile-open {
    background-color: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header.mobile-open .logo img {
    filter: none;
}

.header.mobile-open .mobile-menu-btn {
    color: #000000 !important;
}

.mobile-menu > a.active {
    color: #16a34a;
    font-weight: 700;
    background: linear-gradient(to right, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.02));
    border-left: 3px solid #16a34a;
    padding-left: 21px;
}

.mobile-menu > a.active::after {
    color: #16a34a;
}

.mobile-menu-footer {
    padding: 12px 24px 28px;
    background: #f8fafc;
}

.mobile-menu-footer .btn {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.mobile-menu-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.45);
}

.mobile-menu-footer .btn:active {
    transform: translateY(0);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 85svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 90svh;
    }

}

@media (min-width: 1024px) {
    .hero {
        min-height: 1120px;
    }

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (min-width: 768px) {
    .hero-bg img {
        object-position: right bottom;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    background: linear-gradient(

        to right,

        rgba(0, 0, 0, 0.75) 0%,

        rgba(0, 0, 0, 0.65) 30%,

        rgba(0, 0, 0, 0.35) 60%,

        rgba(0, 0, 0, 0.15) 100%

    );
}

@media (max-width: 767px) {
    .hero-overlay {

        background: linear-gradient(

            to right,

            rgba(0, 0, 0, 0.80) 0%,

            rgba(0, 0, 0, 0.70) 50%,

            rgba(0, 0, 0, 0.50) 100%

        );
    }

}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: var(--spacing-16) 0;

    transform: translateY(-2rem);
}

@media (max-width: 639px) {
    .hero-content {
        transform: none;
        padding: 5.5rem 0 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: var(--spacing-20) 0;

        transform: translateY(-8rem);
    }

}

.hero-text {
    max-width: 620px;
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .hero-text {
        max-width: 55%;
    }

}

@media (min-width: 1280px) {
    .hero-text {
        max-width: 50%;
    }

}

.hero-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 60%;
    height: 120%;
    background: radial-gradient(

        ellipse at center,

        rgba(22, 163, 74, 0.08) 0%,

        transparent 70%

    );
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 3.5rem;
    }

}

.hero-description {
    margin-top: var(--spacing-5);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 1);
    max-width: 540px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.0625rem;
        max-width: 560px;
    }

}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
        max-width: 600px;
    }

}

.hero-buttons {
    margin-top: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-4);
    }

}

/* -- Masaüstü için orijinal geçiş (Beyaz/Şeffaf) -- */

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    z-index: 2;
    pointer-events: none;
}

/* -- Sadece Mobil ve Tablet için Haritaya (Koyu Yeşile) Geçiş -- */

@media (max-width: 1023px) {
    .hero::after {
        height: 150px; /* Daha yumuşak bir erime için yüksekliği biraz artırdık */

        background: linear-gradient(to bottom, transparent 0%, #0a1410 100%);
    }

}

.hero .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--vds-small-size);
    font-weight: 600;
    background-color: var(--vds-accent);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--vds-card-transition);
    box-shadow: 0 4px 14px var(--vds-accent-glow);
}

.hero .btn-hero-primary:hover {
    background-color: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--vds-accent-glow);
}

.hero .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--vds-small-size);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--vds-card-transition);
    backdrop-filter: blur(6px);
}

.hero .btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

@media (max-width: 639px) {
    .hero .btn-hero-primary,

    .hero .btn-hero-secondary {
        width: 100%;
    }

}

.hero-trust {
    margin-top: var(--spacing-5);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-3) var(--spacing-5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--rounded-full);
    backdrop-filter: blur(4px);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-trust-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary-200);
}

.hero-trust-divider {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.25);
}

/* ======================================================
   HERO V2 — Professional Redesign
   ====================================================== */

/* Keyframes */
@keyframes heroPulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.4; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloatCard {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes heroScrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes heroRingPulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50%      { opacity: 0.22; transform: scale(1.04); }
}

/* Mesh overlay — subtle diagonal stripe texture */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 28px,
            rgba(255,255,255,0.012) 28px,
            rgba(255,255,255,0.012) 29px
        );
    pointer-events: none;
}

/* Decorative rings & dot grid */
.hero-deco {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-deco__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.hero-deco__ring--lg {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -180px;
    animation: heroRingPulse 6s ease-in-out infinite;
}

.hero-deco__ring--sm {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -60px;
    border-color: rgba(34, 197, 94, 0.28);
    animation: heroRingPulse 6s ease-in-out infinite 1.5s;
}

.hero-deco__dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.5;
}

.hero-deco__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(34,197,94,0.6) 40%, rgba(34,197,94,0.6) 60%, transparent 100%);
    opacity: 0.35;
}

/* Two-column inner layout */
.hero-v2 .hero-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Pre-badge */
.hero-prebadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-prebadge__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    animation: heroPulseDot 2s ease-in-out infinite;
}

/* H1 */
.hero-v2 .hero-h1 {
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both;
    background: linear-gradient(130deg, #ffffff 0%, #d1fae5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accent rule */
.hero-rule {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
    border-radius: 99px;
    margin: 1.25rem 0 1.5rem;
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.18s both;
}

/* Description */
.hero-v2 .hero-description {
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.24s both;
}

/* Buttons */
.hero-v2 .hero-buttons {
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.32s both;
}

.hero-v2 .btn-hero-primary {
    gap: 0.55rem;
}

.hero-v2 .btn-hero-secondary {
    gap: 0.55rem;
}

/* Trust stats bar */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 0.7rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-stat__num {
    font-size: 1.125rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
}

.hero-stat__lbl {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hero-stat__sep {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}

.hero-stat--check {
    gap: 0.35rem;
}

.hero-stat--check svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* ---- Floating showcase (right side, desktop only) ---- */
.hero-showcase {
    display: none;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .hero-showcase {
        display: block;
        width: 260px;
    }
}

@media (min-width: 1280px) {
    .hero-showcase {
        width: 300px;
    }
}

.hero-showcase__glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(34,197,94,0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-showcase__card--main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    animation: heroFloatCard 5s ease-in-out infinite, heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s both;
    margin-bottom: 0.75rem;
}

.hero-showcase__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34,197,94,0.35) 0%, rgba(16,185,129,0.2) 100%);
    border: 1px solid rgba(34,197,94,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex-shrink: 0;
}

.hero-showcase__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.hero-showcase__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.hero-showcase__desc {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.hero-showcase__tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.hero-showcase__pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 99px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.725rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
    animation: heroFloatCard 5s ease-in-out infinite 0.8s, heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.65s both;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-showcase__pill svg {
    color: #86efac;
}

.hero-showcase__pill--2 {
    margin-left: 1rem;
    animation-delay: 1.2s;
}

/* ---- Scroll indicator ---- */
.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-scroll-cue:hover {
    color: rgba(255,255,255,0.9);
}

.hero-scroll-cue__line {
    display: block;
    width: 1px;
    height: 36px;
    background: currentColor;
    border-radius: 99px;
    transform-origin: top;
    animation: heroScrollLine 2s ease-in-out infinite;
}

@media (max-width: 1023px) {
    .hero-scroll-cue {
        display: none;
    }
}

/* RTL support */
[dir="rtl"] .hero-deco__bar {
    left: auto;
    right: 0;
}

[dir="rtl"] .hero-deco__dots {
    left: auto;
    right: 50%;
}

[dir="rtl"] .hero-rule {
    background: linear-gradient(270deg, #22c55e 0%, #4ade80 100%);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-800) 100%);
    color: var(--color-white);
    padding: var(--spacing-12) 0;
}

@media (min-width: 1024px) {
    .page-hero {
        padding: var(--spacing-20) 0;
    }

}

.page-hero h1 {
    font-size: var(--text-3xl);
}

@media (min-width: 1024px) {
    .page-hero h1 {
        font-size: var(--text-5xl);
    }

}

.page-hero-subtitle {
    margin-top: var(--spacing-4);
    font-size: var(--text-lg);
    color: var(--color-primary-100);
}

.breadcrumb {
    margin-bottom: var(--spacing-4);
    font-size: var(--text-sm);
    color: var(--color-primary-200);
}

.breadcrumb a {
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb-separator {
    margin: 0 var(--spacing-2);
}

.section {
    padding: var(--spacing-16) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--spacing-24) 0;
    }

}

.section-white {
    background-color: var(--color-white);
}

.section-gray {
    background-color: var(--color-gray-50);
}

.section-dark {
    background-color: var(--color-gray-900);
    color: var(--color-white);
}

.section-primary {
    background-color: var(--color-primary-700);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.section-header h2 {
    font-size: var(--text-3xl);
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: var(--text-4xl);
    }

}

.section-header p {
    margin-top: var(--spacing-4);
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.section-dark .section-header p {
    color: var(--color-gray-300);
}

.grid {
    display: grid;
    gap: var(--spacing-6);
}

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

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

}

.grid-sidebar {
    display: grid;
    gap: var(--spacing-12);
}

@media (min-width: 1024px) {
    .grid-sidebar {
        grid-template-columns: 3fr 1fr;
    }

}

.grid-sidebar-reverse {
    display: grid;
    gap: var(--spacing-12);
}

@media (min-width: 1024px) {
    .grid-sidebar-reverse {
        grid-template-columns: 1fr 3fr;
    }

}

.card {
    background-color: var(--color-white);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-image {
    background-color: var(--color-gray-100);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: var(--spacing-6);
}

.card-category {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.card-title {
    margin-top: var(--spacing-2);
    font-size: var(--text-xl);
    font-weight: 600;
}

.card-title a {
    transition: color var(--transition);
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-text {
    margin-top: var(--spacing-2);
    color: var(--color-gray-600);
}

.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: var(--spacing-4);
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition);
}

.card-link:hover {
    color: var(--color-primary-dark);
}

.card-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: var(--spacing-1);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-6);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto var(--spacing-4);
    background-color: var(--color-primary-100);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-2);
}

.feature-card p {
    color: var(--color-gray-600);
}

.category-card {
    background-color: var(--color-gray-50);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-6);
    text-align: center;
}

.stat-card {
    text-align: center;
}

.stat-value {
    font-size: var(--text-4xl);
    font-weight: 700;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: var(--text-5xl);
    }

}

.stat-label {
    margin-top: var(--spacing-2);
    color: var(--color-primary-200);
}

.testimonial-card {
    background-color: var(--color-gray-50);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-6);
}

.testimonial-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-4);
}

.testimonial-quote {
    color: var(--color-gray-700);
    font-style: italic;
}

.testimonial-author {
    margin-top: var(--spacing-4);
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-role {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.faq-card {
    background-color: var(--color-white);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.faq-card summary {
    padding: var(--spacing-4) var(--spacing-6);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-card summary:hover {
    color: var(--color-primary);
}

.faq-card summary svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition);
}

.faq-card[open] summary svg {
    transform: rotate(180deg);
}

.faq-card-content {
    padding: 0 var(--spacing-6) var(--spacing-4);
    color: var(--color-gray-600);
}

.cta-card {
    background-color: var(--color-primary-100);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-6);
}

.cta-card h3 {
    font-weight: 600;
    margin-bottom: var(--spacing-2);
}

.cta-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-4);
}

.related-card {
    background-color: var(--color-gray-50);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-6);
}

.product-gallery {
    background-color: var(--color-gray-100);
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

.product-gallery img {
    width: 100%;
    height: auto;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2);
    margin-top: var(--spacing-4);
}

.product-thumb {
    border: 2px solid transparent;
    border-radius: var(--rounded);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition);
}

.product-thumb.active,

.product-thumb:hover {
    border-color: var(--color-primary);
}

.product-thumb img {
    width: 100%;
    height: 5rem;
    object-fit: cover;
}

.product-benefits {
    margin-top: var(--spacing-8);
}

.product-benefits h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.benefit-grid {
    display: grid;
    gap: var(--spacing-4);
}

@media (min-width: 640px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary-100);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-3);
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.benefit-content h4 {
    font-weight: 500;
}

.benefit-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.product-cta {
    margin-top: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

@media (min-width: 640px) {
    .product-cta {
        flex-direction: row;
    }

}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--color-gray-200);
}

.tab-btn {
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: 500;
    color: var(--color-gray-500);
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.tab-btn:hover,

.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-content {
    padding: var(--spacing-8) 0;
}

.tab-content.hidden {
    display: none;
}

.tab-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.data-table {
    width: 100%;
}

.data-table th,

.data-table td {
    padding: var(--spacing-2) 0;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.data-table th {
    font-weight: 500;
}

.data-table td:last-child {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

.info-grid {
    display: grid;
    gap: var(--spacing-6);
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.info-item h4 {
    font-weight: 500;
    color: var(--color-gray-500);
    font-size: var(--text-sm);
}

.info-item p {
    font-size: var(--text-lg);
}

.warning-box {
    background-color: var(--color-yellow-50);
    border-left: 4px solid var(--color-yellow-400);
    padding: var(--spacing-4);
}

.warning-box h4 {
    font-weight: 500;
    color: var(--color-yellow-800);
}

.warning-box ul {
    margin-top: var(--spacing-2);
    color: var(--color-yellow-700);
    font-size: var(--text-sm);
    list-style: disc;
    list-style-position: inside;
}

.prose {
    max-width: 65ch;
}

.prose h2 {
    margin-top: var(--spacing-8);
    margin-bottom: var(--spacing-4);
}

.prose h3 {
    margin-top: var(--spacing-6);
    margin-bottom: var(--spacing-3);
}

.prose p {
    margin-bottom: var(--spacing-4);
}

.prose ul,

.prose ol {
    margin-bottom: var(--spacing-4);
    padding-left: var(--spacing-6);
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: var(--spacing-2);
}

.prose a {
    color: var(--color-primary);
    text-decoration: underline;
}

.prose img {
    border-radius: var(--rounded-lg);
    margin: var(--spacing-4) 0;
}

.prose-lg {
    font-size: var(--text-lg);
}

.tag {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-3);
    font-size: var(--text-sm);
    border-radius: var(--rounded-full);
    background-color: var(--color-gray-100);
    color: var(--color-gray-700);
}

.tag-primary {
    background-color: var(--color-primary-100);
    color: var(--color-primary-700);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
}

.article-meta {
    display: flex;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-2);
}

.article-meta-separator {
    margin: 0 var(--spacing-2);
}

.share-links {
    display: flex;
    gap: var(--spacing-4);
}

.share-link {
    color: var(--color-gray-500);
    transition: color var(--transition);
}

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

.share-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-section {
    margin-bottom: var(--spacing-8);
}

.sidebar-section h3 {
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.sidebar-link {
    display: block;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--rounded-md);
    transition: background-color var(--transition);
}

.sidebar-link:hover {
    background-color: var(--color-gray-100);
}

.sidebar-link.active {
    background-color: var(--color-primary-100);
    color: var(--color-primary-700);
}

.benefits-list {
    margin-top: var(--spacing-4);
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-2);
}

.benefits-list li svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
    margin-right: var(--spacing-2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-gray-200);
    padding: var(--spacing-4);
    z-index: 50;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4);
}

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

}

.cookie-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.cookie-content a {
    color: var(--color-primary);
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-2);
}

.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-size: var(--text-2xl);
}

@media (min-width: 1024px) {
    .cta-section h2 {
        font-size: var(--text-3xl);
    }

}

.cta-section p {
    margin-top: var(--spacing-4);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    margin-top: var(--spacing-6);
}

.empty-state {
    text-align: center;
    padding: var(--spacing-12) 0;
    color: var(--color-gray-500);
}

.text-center { text-align: center; }

.text-left { text-align: left; }

.text-right { text-align: right; }

.text-sm { font-size: var(--text-sm); }

.text-lg { font-size: var(--text-lg); }

.text-xl { font-size: var(--text-xl); }

.text-gray { color: var(--color-gray-600); }

.text-gray-light { color: var(--color-gray-400); }

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

.text-white { color: var(--color-white); }

.font-medium { font-weight: 500; }

.font-semibold { font-weight: 600; }

.font-bold { font-weight: 700; }

.mt-2 { margin-top: var(--spacing-2); }

.mt-4 { margin-top: var(--spacing-4); }

.mt-6 { margin-top: var(--spacing-6); }

.mt-8 { margin-top: var(--spacing-8); }

.mt-12 { margin-top: var(--spacing-12); }

.mb-2 { margin-bottom: var(--spacing-2); }

.mb-4 { margin-bottom: var(--spacing-4); }

.mb-8 { margin-bottom: var(--spacing-8); }

.pt-8 { padding-top: var(--spacing-8); }

.pb-4 { padding-bottom: var(--spacing-4); }

.border-t { border-top: 1px solid var(--color-gray-200); }

.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }

.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }

.hidden { display: none; }

.space-y-2 > * + * { margin-top: var(--spacing-2); }

.space-y-4 > * + * { margin-top: var(--spacing-4); }

.space-y-6 > * + * { margin-top: var(--spacing-6); }

.space-y-8 > * + * { margin-top: var(--spacing-8); }

.gap-2 { gap: var(--spacing-2); }

.gap-4 { gap: var(--spacing-4); }

.gap-6 { gap: var(--spacing-6); }

.gap-8 { gap: var(--spacing-8); }

.items-center { align-items: center; }

.items-start { align-items: flex-start; }

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

.justify-between { justify-content: space-between; }

.flex { display: flex; }

.flex-col { flex-direction: column; }

.flex-wrap { flex-wrap: wrap; }

.flex-shrink-0 { flex-shrink: 0; }

.rounded { border-radius: var(--rounded); }

.rounded-md { border-radius: var(--rounded-md); }

.rounded-lg { border-radius: var(--rounded-lg); }

.rounded-full { border-radius: var(--rounded-full); }

.overflow-hidden { overflow: hidden; }

.transition { transition: all var(--transition); }

.cursor-pointer { cursor: pointer; }

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-disc {
    list-style: disc;
    list-style-position: inside;
}

@media (min-width: 1024px) {
    .lg-order-1 { order: 1; }

    .lg-order-2 { order: 2; }

}

:root {
    --bg-lab: #f8fafb;
    --color-text-dark: #111827;
    --color-text-gray: #6b7280;
    --color-primary: #009845;
    --card-border: #e8eaed;
}

.products-bento {
    position: relative;
    overflow: hidden;

    /* Üst kenardan yumuşak geçiş (fade-in) + hafif beyaz örtü */
    background:
        linear-gradient(to bottom, rgba(247,251,249,1) 0%, rgba(247,251,249,0) 18%),
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.50) 0%, rgba(248,251,249,0.35) 50%, rgba(240,247,244,0.25) 100%);

    padding: 6rem 0 8.5rem;
}

/* Arka plan resmi katmanı */
.products-bento::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background: url('/images/products-bg.png') center top / cover no-repeat;
}

.products-bento::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(300px, 30vh);
    pointer-events: none;
    z-index: 1;

    background: linear-gradient(

        to top,

        rgba(235, 245, 240, 0.6) 0%,

        transparent 100%

    );
}

.watermark-layer, .bento-watermark { display: none; }

.container-wide {
    position: relative;
    z-index: 2;
    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
}

.products-bento .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    position: relative;
    z-index: 2;
}

.products-bento .tag-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #008F40;
    background: rgba(0, 143, 64, 0.06);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.products-bento .title-display {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.products-bento .desc-lead {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.6;
}

.product-grid-5 {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    align-items: end;
}

@media (min-width: 600px) { .product-grid-5 { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) {
    .product-grid-5 { grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: start; padding-bottom: 80px; }

    .product-grid-5 .bento-card:nth-child(1) { transform: translateY(0); }

    .product-grid-5 .bento-card:nth-child(2) { transform: translateY(40px); }

    .product-grid-5 .bento-card:nth-child(3) { transform: translateY(80px); }

    .product-grid-5 .bento-card:nth-child(4) { transform: translateY(80px); }

    .product-grid-5 .bento-card:nth-child(5) { transform: translateY(40px); }

    .product-grid-5 .bento-card:nth-child(6) { transform: translateY(0); }

}

/* ── PC: Swiper wrapper grid olarak çalışır (JS yok) ── */
@media (min-width: 1024px) {
    .product-swiper { overflow: visible; }
    .product-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
        padding-top: 2rem;
        padding-bottom: 80px;
        align-items: start;
        transform: none !important;
        width: 100% !important;
    }
    .product-swiper .swiper-slide { width: auto !important; max-width: none !important; }
    .product-swiper .swiper-slide:nth-child(1) { transform: translateY(0); }
    .product-swiper .swiper-slide:nth-child(2) { transform: translateY(40px); }
    .product-swiper .swiper-slide:nth-child(3) { transform: translateY(80px); }
    .product-swiper .swiper-slide:nth-child(4) { transform: translateY(80px); }
    .product-swiper .swiper-slide:nth-child(5) { transform: translateY(40px); }
    .product-swiper .swiper-slide:nth-child(6) { transform: translateY(0); }
    .swiper-pagination, .swiper-button-prev, .swiper-button-next { display: none !important; }
}

.bento-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    cursor: pointer;

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover {
    transform: translateY(-8px);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.bento-card:hover .card-top { opacity: 1; }

.chem-number {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
}

.chem-symbol {
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
}

.card-visual {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.75rem;

    perspective: 1000px;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 240, 200, 0.2) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.product-img {
    max-height: 200%;
    max-width: 190%;
    object-fit: contain;

    transform: translateY(-5px);

    filter: drop-shadow(0 12px 20px rgba(10, 20, 30, 0.15));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover .product-img {
    transform: translateY(-20px) scale(1.03);
    filter: drop-shadow(0 25px 35px rgba(10, 20, 30, 0.2));
}

.bento-card:hover .card-visual::after {

    opacity: 0.5;
    width: 55%;
    height: 18px;
    bottom: -2px;
}

.card-info {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.card-sub {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.link-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #008F40;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.bento-card:hover .link-text { color: #006B30; gap: 10px; }

@media (min-width: 1024px) {

    .bento-card:nth-child(3) {
        z-index: 10;
        transform: scale(1.15);
    }

    .bento-card:nth-child(3) .card-visual::before {
        width: 180px; height: 180px;
        opacity: 0.5;
        background: radial-gradient(circle, rgba(160, 240, 200, 0.25) 0%, transparent 60%);
    }

    .bento-card:nth-child(3) .card-visual::after {
        background: radial-gradient(ellipse at center, rgba(20, 30, 40, 0.35) 0%, rgba(20, 30, 40, 0.1) 40%, transparent 85%);
        width: 50%;
        opacity: 1;
    }

    .bento-card:nth-child(2),

    .bento-card:nth-child(4) {
        z-index: 5;
        transform: scale(1.0);
    }

    .bento-card:nth-child(2) .product-img,

    .bento-card:nth-child(4) .product-img {
        opacity: 0.95;
    }

    .bento-card:nth-child(1),

    .bento-card:nth-child(5) {
        z-index: 1;
        transform: scale(0.9);
    }

    .bento-card:nth-child(1) .product-img,

    .bento-card:nth-child(5) .product-img {
        opacity: 0.85;
        filter: drop-shadow(0 8px 14px rgba(10, 20, 30, 0.1));
    }

    .bento-card:nth-child(1) .card-visual::after,

    .bento-card:nth-child(5) .card-visual::after {
        opacity: 0.6;
        width: 40%;
    }

}

/* ══════════════════════════════════════════

   ÜRÜNLER — MOBİL FLOATING SHOWCASE

   Şeffaf arka plan, kutu yok, eşit boyutlu

   floating ürün görselleri. Minimal SaaS.

   ══════════════════════════════════════════ */

@media (max-width: 1023px) {
    .products-bento {
        padding: 3.5rem 0 4rem;
        overflow: hidden;
    }

    .products-bento::before {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url('/images/products-bg.png') center center / cover no-repeat;
    }

    .products-bento .section-header {
        text-align: left;
        max-width: none;
        padding: 0 1.5rem;
        margin-bottom: 2.5rem;
    }

    .products-bento .title-display {
        font-size: 1.85rem;
        letter-spacing: -0.025em;
    }

    .products-bento .desc-lead {
        font-size: 0.9rem;
    }

    /* Mobil: CSS scroll-snap carousel (JS gerektirmez) */

    .product-swiper {
        overflow-x: auto !important;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Snap noktası ortada → her iki yan da görünür */
        scroll-padding-inline: calc((100% - 72vw) / 2);
        padding: 0.5rem 0 3rem;
    }

    .product-swiper::-webkit-scrollbar { display: none; }

    .product-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        /* İlk ve son kart için kenar boşluğu */
        padding-inline: calc((100% - 72vw) / 2);
        align-items: flex-start;
        transform: none !important;
        width: max-content !important;
    }

    .product-swiper .swiper-slide {
        scroll-snap-align: center;
        flex-shrink: 0;
        height: auto;
        width: 72vw !important;
        max-width: 280px !important;
    }

    /* ── ÖĞE: kutu yok, şeffaf, floating ── */

    .bento-card {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: none;
    }

    .bento-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* Kimyasal etiket — image'ın üstünde kalması için z-index */

    .card-top {
        opacity: 0.4;
        margin-bottom: 0.5rem;
        gap: 4px;
        position: relative;
        z-index: 2;
    }

    .chem-number { font-size: 0.6rem; }

    .chem-symbol { font-size: 0.8rem; }

    /* Ürün görseli */

    .card-visual {
        height: 190px;
        margin-bottom: 1rem;
        position: relative;
        overflow: visible;
    }

    /* Yeşil zemin parıltısı */
    .card-visual::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 50%;
        background: radial-gradient(ellipse at center bottom,
            rgba(0, 143, 64, 0.09) 0%,
            transparent 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .product-img {
        position: relative;
        z-index: 1;
        max-height: 185%;
        max-width: 185%;
        transform: translateY(-5px);
        filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.13))
                drop-shadow(0 3px 6px rgba(0, 0, 0, 0.07));
        transition: none;
    }

    .bento-card:hover .product-img {
        transform: translateY(-5px);
        filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.13))
                drop-shadow(0 3px 6px rgba(0, 0, 0, 0.07));
    }

    /* Metin */

    .card-info { padding: 0 0.25rem; }

    /* Tüm başlıklar eşit yükseklikte — 2 satır sabit */
    .card-title {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.35;
        margin-bottom: 0.3rem;
        /* 2 satır sınırı — kısa isimler de 2 satır yer kaplar */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: calc(2 * 1.35 * 0.82rem);
    }

    .card-sub {
        font-size: 0.72rem;
        margin-bottom: 0.4rem;
        color: #6b7280;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .link-text {
        font-size: 0.73rem;
        color: #008F40;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    /* Ok butonları tamamen gizle */

    .swiper-button-prev,

    .swiper-button-next {
        display: none !important;
    }

    /* Pagination: ince pill göstergesi */

    .swiper-pagination {
        bottom: 0.5rem !important;
    }

    .swiper-pagination-bullet {
        background: rgba(0, 100, 50, 0.18);
        opacity: 1;
        width: 6px;
        height: 6px;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: #008F40;
        width: 22px;
        border-radius: 3px;
    }

}

.why-vetkim {
    background-color: var(--vds-bg-soft);
    padding: var(--spacing-24) 0;
    position: relative;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.why-vetkim-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto var(--spacing-20);
}

.why-vetkim-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-4);
}

@media (max-width: 767px) {
    .why-vetkim-header h2 {
        font-size: 2.25rem;
    }

    .why-vetkim-header {
        margin-bottom: var(--spacing-12);
    }

}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-600);
}

.why-vetkim-path-container {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: min(500px, 60vh);
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.path-svg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;

    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='500' viewBox='0 0 1440 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100 250 C 150 250, 300 100, 600 100 C 900 100, 1050 400, 1300 400 C 1450 400, 1550 250, 1600 250' stroke='%23dcfce7' stroke-width='4' stroke-dasharray='16 16' stroke-linecap='round'/%3E%3C/svg%3E");
    opacity: 1;
}

.why-vetkim-grid-depth {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .why-vetkim-grid-depth {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-6);

        align-items: flex-start;
    }

}

@media (min-width: 1280px) {
    .why-vetkim-grid-depth {
        gap: var(--spacing-12);
    }

}

.benefit-card {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: var(--spacing-10) var(--spacing-8);
    text-align: left;

    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {

    .card-back {
        z-index: 2;
        transform: scale(0.95);

    }

    .card-left {
        margin-top: var(--spacing-12);
    }

    .card-right {
        margin-top: var(--spacing-8);
    }

    .card-front {
        z-index: 10;
        transform: scale(1.1);
        margin-top: -var(--spacing-8);
        box-shadow: 0 30px 60px -15px rgba(22, 163, 74, 0.4);
    }

}

@media (max-width: 767px) {
    .card-back, .card-front {
        transform: none !important;
        margin: 0 !important;
        z-index: 2;
    }

    .benefit-card-highlight {

        transform: scale(1.02) !important;
        box-shadow: 0 20px 30px -10px rgba(22, 163, 74, 0.3);
    }

}

.benefit-card-highlight {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.benefit-icon-modern {
    margin-bottom: var(--spacing-8);
    display: inline-flex;

}

.benefit-card-highlight .benefit-icon-modern svg path,

.benefit-card-highlight .benefit-icon-modern svg circle {
    stroke: var(--color-white) !important;
    fill: transparent;
}

.benefit-card-highlight .benefit-icon-modern svg circle:last-child {
    fill: var(--color-white) !important;
    stroke: none;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.01em;
}

.benefit-card-highlight h3 {
    color: var(--color-white);
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-gray-600);
}

.benefit-card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-block {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;

    box-shadow:

        0 4px 20px rgba(0, 0, 0, 0.03),

        0 1px 3px rgba(0, 0, 0, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.5);

    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-block:hover {
    transform: translateY(-6px);
    box-shadow:

        0 20px 40px -5px rgba(22, 163, 74, 0.1),

        0 10px 15px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-primary-100);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.icon-circle {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;

    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.icon-circle svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 1.5;
}

.feature-block:hover .icon-ring {
    border-color: var(--color-primary-200);
    transform: scale(1.1);
}

.feature-block:hover .icon-circle {
    background: linear-gradient(145deg, var(--color-primary-50) 0%, #f0fdf4 100%);
    color: var(--color-primary-700);
}

.feature-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;

}

.feature-block p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-gray-600);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.feature-block p strong {
    font-weight: 600;
    color: var(--color-gray-800);
}

.knowledge-section {
    position: relative;
    overflow: hidden;

    background: radial-gradient(

        circle at 50% 40%,

        #FFFFFF 0%,

        #F8FBF9 50%,

        #F0F7F4 100%

    );

    padding: var(--vds-section-py) 0;
}

.knowledge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background: radial-gradient(

        circle at center,

        transparent 30%,

        rgba(200, 220, 210, 0.08) 70%,

        rgba(180, 205, 195, 0.12) 100%

    );
}

.knowledge-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    z-index: 0;

    background: linear-gradient(

        to top,

        rgba(235, 245, 240, 0.6) 0%,

        transparent 100%

    );
}

.knowledge-section .container,

.knowledge-header,

.knowledge-grid,

.knowledge-footer {
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .knowledge-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.knowledge-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.knowledge-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .knowledge-header h2 {
        font-size: var(--vds-h2-size);
    }

}

.knowledge-header p {
    margin-top: 1rem;
    font-size: var(--vds-body-size);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.knowledge-grid {
    display: grid;
    gap: var(--spacing-6);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .knowledge-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

.article-card {
    background-color: #FFFFFF;
    border-radius: var(--vds-card-radius);
    overflow: hidden;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: var(--vds-card-transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.article-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 152, 69, 0.4);
}

.article-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--color-gray-100);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vds-card-transition);
}

.article-card-body {
    padding: var(--spacing-5);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: var(--spacing-3);
}

.article-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin-bottom: var(--spacing-2);
}

.article-card h3 a {
    transition: color 0.2s ease;
}

.article-card h3 a:hover {
    color: var(--color-primary);
}

.article-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
    flex-grow: 1;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: var(--spacing-4);
    font-size: var(--vds-small-size);
    font-weight: 600;
    color: var(--vds-accent);
    transition: var(--vds-card-transition);
}

.article-card-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: var(--spacing-1);
    transition: var(--vds-card-transition);
}

.article-card-link:hover svg {
    transform: translateX(6px);
}

.knowledge-footer {
    text-align: center;
    margin-top: var(--spacing-10);
}

.knowledge-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F7FBF9 0%, #F3F7F5 40%, #FFFFFF 100%);
    padding: 7rem 0 4rem;
    border-bottom: 1px solid #e8ebed;
}

.knowledge-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:

        radial-gradient(ellipse 50% 60% at 10% 40%, rgba(160, 230, 195, 0.07) 0%, transparent 70%),

        radial-gradient(ellipse 45% 55% at 90% 50%, rgba(160, 230, 195, 0.05) 0%, transparent 70%);
}

.knowledge-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.02;
    mix-blend-mode: multiply;
}

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

@media (min-width: 768px) {
    .knowledge-hero {
        padding: 8rem 0 5rem;
    }

}

.knowledge-hero-content {
    max-width: 720px;
}

.knowledge-hero .breadcrumb {
    margin-bottom: 1.5rem;
}

.knowledge-hero .breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.knowledge-hero .breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-gray-400);
}

.knowledge-hero .breadcrumb li:last-child::after {
    display: none;
}

.knowledge-hero .breadcrumb a {
    color: var(--color-gray-600);
    transition: color 0.2s;
}

.knowledge-hero .breadcrumb a:hover {
    color: var(--vds-accent);
}

.knowledge-hero .hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.knowledge-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .knowledge-hero h1 {
        font-size: 3.25rem;
    }

}

.knowledge-hero .hero-lead {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 540px;
}

.knowledge-grid-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .knowledge-grid-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.knowledge-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .knowledge-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .knowledge-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

.knowledge-card {
    background: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    overflow: hidden;
    border: var(--vds-border);
    box-shadow: var(--vds-card-shadow);
    transition: var(--vds-card-transition);
    display: flex;
    flex-direction: column;
}

.knowledge-card:hover {
    box-shadow: var(--vds-card-shadow-hover);
    border-color: #d1d5db;
}

.knowledge-card-image {
    display: block;
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #eee;
}

.knowledge-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.knowledge-card-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.knowledge-card:hover .knowledge-card-image .image-overlay {
    opacity: 1;
}

.knowledge-card-image .view-btn {
    background: white;
    color: var(--color-gray-900);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.knowledge-card:hover .knowledge-card-image .view-btn {
    transform: translateY(0);
}

.knowledge-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.knowledge-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.knowledge-category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.knowledge-reading-time {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    font-weight: 500;
}

.knowledge-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.knowledge-card h3 a {
    transition: color 0.2s ease;
}

.knowledge-card h3 a:hover {
    color: var(--vds-accent);
}

.knowledge-card-desc {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.knowledge-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vds-accent);
    transition: gap 0.3s ease;
}

.knowledge-cta-link:hover {
    gap: 0.75rem;
}

.knowledge-cta-link svg {
    transition: transform 0.3s ease;
}

.knowledge-cta-link:hover svg {
    transform: translateX(4px);
}

.knowledge-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-gray-500);
}

.knowledge-cta-section {
    background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
    padding: var(--vds-section-py) 0;

    position: relative;
    overflow: hidden;
}

.knowledge-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.knowledge-cta-section .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .knowledge-cta-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.page-hero-light {
    background: linear-gradient(135deg, var(--vds-bg-soft) 0%, #ffffff 100%);

    padding: 6rem 0 4rem;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .page-hero-light {
        padding: 8rem 0 5rem;
    }

}

.page-hero-content {
    position: relative;
    max-width: 720px;
}

.page-hero-light .breadcrumb {
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .page-hero-content .absolute.top-0.right-0 {
        position: absolute;
        top: 0;
        right: 0;

    }

}

.page-hero-light .breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.page-hero-light .breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-gray-400);
}

.page-hero-light .breadcrumb li:last-child::after {
    display: none;
}

.page-hero-light .breadcrumb a {
    color: var(--color-gray-600);
    transition: color 0.2s;
}

.page-hero-light .breadcrumb a:hover {
    color: var(--vds-accent);
}

.page-hero-light .hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.page-hero-light h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero-light h1 {
        font-size: 3.25rem;
    }

}

.page-hero-light .hero-lead {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 540px;
}

.about-story-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .about-story-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr 1fr;
    }

}

.about-story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.about-story-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.about-story-image img {
    width: 100%;
    border-radius: var(--vds-card-radius);
}

.about-mv-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .about-mv-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-mv-grid {
        grid-template-columns: 1fr 1fr;
    }

}

.about-mv-card {
    background: var(--vds-bg-white);
    padding: 2rem;
    border-radius: var(--vds-card-radius);
    box-shadow: var(--vds-card-shadow);
    border: var(--vds-border);
    transition: var(--vds-card-transition);
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vds-card-shadow-hover);
}

.about-mv-icon {
    width: 56px;
    height: 56px;
    background: var(--vds-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vds-accent);
    margin-bottom: 1.25rem;
}

.about-mv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.about-mv-card p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.about-values-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .about-values-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

.about-value-card {
    background: var(--vds-bg-soft);
    padding: 1.75rem;
    border-radius: var(--vds-card-radius);
    text-align: center;
    transition: var(--vds-card-transition);
    border: 1px solid transparent;
}

.about-value-card:hover {
    background: var(--vds-bg-white);
    border-color: var(--vds-accent);
    transform: translateY(-4px);
    box-shadow: var(--vds-card-shadow);
}

.about-value-icon {
    width: 52px;
    height: 52px;
    background: var(--vds-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vds-accent);
    margin: 0 auto 1rem;
}

.about-value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.about-certs-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .about-certs-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.about-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.about-cert-card {
    background: var(--vds-bg-white);
    padding: 2rem;
    border-radius: var(--vds-card-radius);
    text-align: center;
    box-shadow: var(--vds-card-shadow);
    border: var(--vds-border);
    transition: var(--vds-card-transition);
}

.about-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vds-card-shadow-hover);
}

.about-cert-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.about-cert-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-cert-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.about-cert-card p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.about-cta-section {
    background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
    padding: var(--vds-section-py) 0;

    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-cta-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.cta-box {
    position: relative;
    z-index: 1;
}

.contact-main-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .contact-main-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }

}

.contact-intro h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.contact-intro p {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--vds-bg-soft);
    border-radius: 12px;
    transition: var(--vds-card-transition);
}

.contact-card:hover {
    background: var(--vds-accent-light);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--vds-bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vds-accent);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.35rem;
}

.contact-card-content p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
}

.contact-card-content a {
    color: var(--color-gray-700);
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--vds-accent);
}

.contact-label {
    font-weight: 600;
    color: var(--color-gray-700);
}

.contact-form-card {
    background: var(--vds-bg-soft);
    padding: 2rem;
    border-radius: var(--vds-card-radius);
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 2.5rem;
    }

}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.contact-form-desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-alert-success {
    background: #dcfce7;
    color: #166534;
}

.contact-alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.form-group label .required {
    color: #dc2626;
}

.form-group input,

.form-group select,

.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: var(--vds-bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {
    outline: none;
    border-color: var(--vds-accent);
    box-shadow: 0 0 0 3px var(--vds-accent-light);
}

.form-group input::placeholder,

.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.8rem;
    color: #dc2626;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--vds-accent);
}

.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--vds-accent);
    text-decoration: underline;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--vds-accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    box-shadow: 0 8px 20px var(--vds-accent-glow);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

.contact-map-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .contact-map-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.contact-map-wrapper {
    border-radius: var(--vds-card-radius);
    overflow: hidden;
    box-shadow: var(--vds-card-shadow);
}

.contact-map-wrapper iframe {
    display: block;
}

.faq-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .faq-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .faq-header h2 {
        font-size: var(--vds-h2-size);
    }

}

.faq-header p {
    margin-top: 1rem;
    font-size: var(--vds-body-size);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--vds-bg-white);
    border: var(--vds-border);
    border-radius: var(--vds-card-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--vds-card-transition);
    box-shadow: var(--vds-card-shadow);
}

.faq-item:hover {
    border-color: var(--vds-accent);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: var(--vds-accent);
    box-shadow: var(--vds-card-shadow-hover);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: var(--vds-card-transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--vds-accent);
}

.faq-question svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gray-400);
    transition: var(--vds-card-transition);
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
    color: var(--vds-accent);
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: var(--vds-body-size);
}

.faq-answer p {
    margin-bottom: var(--spacing-3);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-schema {
    display: none;
}

.contact-cta-section {
    background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
    padding: var(--vds-section-py) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact-cta-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .contact-cta-content h2 {
        font-size: var(--vds-h2-size);
    }

}

.contact-cta-content > p {
    margin-top: 1rem;
    font-size: var(--vds-body-size);
    color: var(--color-primary-100);
    line-height: 1.6;
}

.contact-cta-buttons {
    margin-top: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-cta-buttons {
        flex-direction: row;
        gap: var(--spacing-4);
    }

}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: var(--vds-card-transition);
}

.contact-btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.contact-btn-primary:hover {
    background-color: var(--color-gray-100);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.contact-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.02);
}

.contact-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-cta-info {
    margin-top: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .contact-cta-info {
        flex-direction: row;
        gap: var(--spacing-8);
    }

}

.contact-cta-info a {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-sm);
    color: var(--color-primary-100);
    transition: color 0.2s ease;
}

.contact-cta-info a:hover {
    color: var(--color-white);
}

.contact-cta-info svg {
    width: 1rem;
    height: 1rem;
}

:root {

    --map-base-fill: #aebdb4;

    --map-base-stroke: rgba(80, 90, 100, 0.40);

    --map-user-fill: #72c48d;
    --map-user-stroke: rgba(255, 255, 255, 0.30);
    --map-hover-fill: #4da86a;
    --map-hover-stroke: rgba(255, 255, 255, 0.45);
    --color-primary: #16a34a;
    --color-primary-dark: #15803d;
    --vds-bg-soft: #f8fafb;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }

    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }

    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }

}

.map-main-title span {
    color: var(--color-primary);
    position: relative;
}

.map-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 14px -3px rgba(0, 0, 0, 0.08);
    border-color: rgba(22, 163, 74, 0.15);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-data { display: flex; flex-direction: column; }

.stat-value {
    font-size: 1.65rem !important;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem !important;
    color: #4b5563;
    font-weight: 600;
    margin-top: 4px;
}

.btn-map-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #15803d;
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
}

.btn-map-primary:hover {
    background: #166534;
    color: #fff;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.map-footer-wrapper {
    border-top: 1px solid #d1d5db;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.turkey-map-section {
    position: relative;
    background: linear-gradient(180deg, #F7FBF9 0%, #FFFFFF 100%);
    margin-top: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    z-index: 10;
    overflow: visible;
}

@media (min-width: 1024px) {
    .turkey-map-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.map-section-fade { display: none; }

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

.map-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .map-grid-layout {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 1.5rem;
        align-items: center;
    }

}

@media (min-width: 1280px) {
    .map-grid-layout {
        grid-template-columns: 380px 1fr;
        gap: 2rem;
    }

}

@media (min-width: 1440px) {
    .map-grid-layout {
        grid-template-columns: 400px 1fr;
        gap: 2.5rem;
    }

}

.map-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-right: 0.5rem;
}

.map-header { margin-bottom: 0; }

.map-header .label-tech,

.map-badge-row .label-tech {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.map-header h2,

.map-main-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-top: 0;
}

@media (min-width: 1280px) {
    .map-header h2,

    .map-main-title {
        font-size: 2rem;
    }

}

@media (min-width: 1440px) {
    .map-header h2,

    .map-main-title {
        font-size: 2.15rem;
    }

}

.map-description {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.7;
}

.map-description .text-highlight {
    color: var(--color-primary);
    font-weight: 600;
}

.map-legend-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 600;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.indicator-dot.active-dot {
    background-color: #5ab878;
}

.indicator-dot.dealer-dot {
    background-color: #aebdb4;
}

.map-footer-cta {
    margin-top: 0.5rem;
}

.map-actions {
    margin-top: 1rem;
}

.map-visual-col {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .map-visual-col {
        justify-content: flex-start;
    }

}

/* ── Map section scroll-reveal ── */
.map-rv {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .75s cubic-bezier(.22,.68,0,1.1) var(--md, 0s),
        transform .75s cubic-bezier(.22,.68,0,1.1) var(--md, 0s);
}
.map-rv--right {
    transform: translateX(28px);
}
.map-rv.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Global scroll reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .75s cubic-bezier(.22,.68,0,1.1) var(--rv-d, 0s),
        transform .75s cubic-bezier(.22,.68,0,1.1) var(--rv-d, 0s);
}
[data-reveal="scale"] {
    transform: translateY(20px) scale(.97);
}
[data-reveal="left"] {
    transform: translateX(-32px);
}
[data-reveal="right"] {
    transform: translateX(32px);
}
[data-reveal].rv-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { transition: none; opacity: 1; transform: none; }
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    aspect-ratio: 1000 / 422;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 12%;
    right: 12%;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(

        ellipse 100% 100% at 50% 0%,

        rgba(0, 0, 0, 0.045) 0%,

        rgba(0, 0, 0, 0.015) 50%,

        transparent 100%

    );
    pointer-events: none;
    z-index: -1;
    filter: blur(10px);
}

@media (min-width: 1024px) { .map-wrapper { max-width: 800px; } }

@media (min-width: 1280px) { .map-wrapper { max-width: 920px; } }

@media (min-width: 1440px) { .map-wrapper { max-width: 1020px; } }

@media (min-width: 1600px) { .map-wrapper { max-width: 1100px; } }

.svg-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.turkey-map-svg {
    display: block;
    width: 100%;
    height: auto;

    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.turkey-map-svg path {
    fill: var(--map-base-fill) !important;
    stroke: var(--map-base-stroke) !important;
    stroke-width: 1px !important;
    transition: fill 0.25s ease, transform 0.25s ease, filter 0.25s ease;
    cursor: pointer;
}

.turkey-map-svg path:hover {
    fill: var(--color-primary) !important;
    transform: translateY(-1px);
    z-index: 50;
}

.svg-map-container.active-users .turkey-map-svg path[id^="TR"] {
    fill: var(--map-user-fill) !important;
    stroke: var(--map-user-stroke) !important;
}

.turkey-map-svg path[id^="TR"]:hover {
    fill: var(--map-hover-fill) !important;
    stroke: var(--map-hover-stroke) !important;
    transform: translateY(-1px);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.svg-map-container.active-users .turkey-map-svg path[id="TR42"] {
    fill: #3a9458 !important;
}

.turkey-map-svg path:hover {
    fill: var(--map-hover-fill) !important;
    stroke: var(--map-hover-stroke) !important;
    transform: translateY(-1px);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.svg-map-container.active-users .turkey-map-svg path[id="TR42"] {
    fill: #3a9458 !important;
}

.dealer-pins-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    color: #1a7a3c;
    background: none;
    border: none;
    padding: 0;
    cursor: default;
    z-index: 100;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.map-pin::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.map-pin svg {
    width: 29px;
    height: 29px;
    filter:

        drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.85))

        drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.85))

        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
}

.map-pin:hover {
    transform: translate(-50%, -110%) scale(1.1);
    z-index: 110;
    color: var(--color-primary-dark);
}

.map-pin.pin-main {
    color: #dc2626;
    z-index: 105;
}

.map-pin.pin-main::before {
    width: 26px;
    height: 26px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 65%);
}

.map-pin.pin-main svg {
    width: 29px;
    height: 29px;
}

.p-konya { top: 63.2%; left: 36.8%; }

.p-ankara { top: 38.6%; left: 37.4%; }

.p-ist { top: 17.3%; left: 17.6%; }

.p-izmir { top: 61.3%; left: 12.7%; }

.p-bursa { top: 35.7%; left: 20.5%; }

.p-antalya { top: 80.8%; left: 26.0%; }

.p-adana { top: 74.6%; left: 51.1%; }

.p-samsun { top: 17.5%; left: 52.9%; }

.p-trabzon { top: 23.9%; left: 71.6%; }

.p-erzurum { top: 36.4%; left: 79.9%; }

.p-diyarbakir { top: 63.8%; left: 73.7%; }

.p-van { top: 58.0%; left: 90.0%; }

.p-gaziantep { top: 78.1%; left: 60.4%; }

.p-kayseri { top: 56.3%; left: 51.9%; }

.p-konya .pin-pulse {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #dc2626;
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
    animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: translateX(-50%) scale(0.5); opacity: 0.6; }

    100% { transform: translateX(-50%) scale(2.5); opacity: 0; }

}

.dealer-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 300px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.12), 0 2px 10px -2px rgba(0, 0, 0, 0.05);
    padding: 20px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dealer-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.dealer-card-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.dealer-card-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.dealer-card-header {
    margin-bottom: 16px;
    text-align: center;
}

.dealer-card-badge {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 8px;
}

.dealer-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.dealer-card-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.dealer-card-icon {
    width: 32px;
    height: 32px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.dealer-card-icon svg {
    width: 16px;
    height: 16px;
}

.dealer-card-info {
    display: flex;
    flex-direction: column;
}

.dealer-card-label {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
}

.dealer-card-value {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.dealer-card-phone {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.dealer-card-phone:hover {
    color: var(--color-primary);
}

.dealer-card-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
    transition: background 0.2s;
}

.dealer-card {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.10),

                0 6px 16px -4px rgba(0, 0, 0, 0.05);
    z-index: 200;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dealer-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dealer-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.dealer-card-close:hover {
    background: #e5e7eb;
    color: #111827;
    transform: rotate(90deg);
}

.dealer-card-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #f3f4f6;
}

.dealer-card-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: var(--color-primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
    margin-bottom: 10px;
}

.dealer-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    padding-right: 30px;
}

.dealer-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dealer-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dealer-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 12px;
    flex-shrink: 0;
}

.dealer-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.dealer-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dealer-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dealer-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.dealer-card-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dealer-card-phone:hover {
    color: var(--color-primary);
}

.dealer-card-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 24px 24px 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.dealer-card-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.dealer-card-whatsapp svg {
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    /* ══════════════════════════════════════════

       SAHA GÜCÜMÜZ — PREMIUM MOBILE HERO

       Tam ekran, harita arka planda texture olarak,

       içerik overlay üzerinde ortalanmış.

       ══════════════════════════════════════════ */

/* Mevcut section mantığını koru */

    .turkey-map-section {
        min-height: 100svh;
        background: #071a0e;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        display: flex;
        align-items: stretch;
    }

   .map-visual-col {
        position: absolute;
        inset: 0;
        overflow: hidden; /* Taşanı gizle ki dikey bir kolon gibi görünsün */

        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .map-wrapper {
        position: absolute;
        top: 10px;
        left: -60px;
        width: 100%;
        height: 100%; /* Dikeyde kesilmemesi için tam boy yaptık */

        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 0;
    }

    /* 2. Harita Görseli: Kesilmeyi önleyen ve dikleştiren ayar */

    .turkey-map-svg,

    .map-wrapper img,

    .map-wrapper svg {
        /* Genişliği serbest bırak, yüksekliği tam boy yap */

        width: auto !important;
        height: 100% !important; /* Yarıda kesilmeyi önleyen temel ayar */

        min-width: 150vw; /* Haritayı dikeyde büyütmek için yanlardan taşırdık */

        /* 'cover' kullanarak alanı boşluksuz doldurmasını sağlıyoruz */

        object-fit: cover;

        /* Mevcut estetik ayarların */

        opacity: 0.45; /* Biraz daha belirgin olması için 0.55'ten çektik */

        filter: brightness(0.6) saturate(1.3)

                drop-shadow(0 0 18px rgba(74, 222, 128, 0.15));

        /* Görselin tam ortalanması için */

        transform-origin: center center;
    }

/* 3. Parallax Animasyonu: Mevcut mantığı koruyarak yumuşattık */

    @supports (animation-timeline: scroll()) {
        .map-visual-col {
            animation: map-mobile-parallax linear both;
            animation-timeline: view(block);
            animation-range: entry 0% exit 100%;
        }

    }

    @keyframes map-mobile-parallax {
        from { transform: scale(1.1) translateY(-3%); }

        to   { transform: scale(1.1) translateY(3%); }

    }

    /* 81 sayısının büyük kalması ve diğer font ayarlarının devamı */

    .map-info-col .stat-value {
        font-size: clamp(3.5rem, 17vw, 7rem) !important;
        color: #ffffff;
        line-height: 0.85;
        letter-spacing: -0.05em;
        font-weight: 900;
        text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    }

    .turkey-map-section .container {
        display: flex;
        flex: 1;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Gradient overlay: üst-alt koyu, orta hafif şeffaf */

    .map-section-fade {
        height: 100%;
        background: linear-gradient(

            to bottom,

            rgba(7, 26, 14, 0.88) 0%,

            rgba(7, 26, 14, 0.38) 30%,

            rgba(7, 26, 14, 0.38) 65%,

            rgba(7, 26, 14, 0.92) 100%

        );
        z-index: 2;
    }

    /* Grid: tek sahne, içerik ön planda */

    .map-grid-layout {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100svh;
        gap: 0;
        padding: 100px 0 64px;
        width: 100%;
        z-index: 3;
    }

    /* ── İÇERİK: merkezi overlay ── */

    .map-info-col {
        order: 2;
        position: relative;
        align-items: center;
        text-align: center;
        padding-right: 0;
        max-width: 360px;
        width: 100%;
        gap: 0;
        z-index: 4;
    }

    /* Flex order: badge → 81 stat → title+desc → CTA */

    .map-badge-row      { order: 1; margin-bottom: 1.25rem; }

    .map-stats-grid     { order: 2; }

    .info-content-wrapper { order: 3; }

    .map-footer-wrapper { order: 4; }

    /* Badge: yeşil pill */

    .map-badge-row .label-tech {
        color: #4ade80;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        display: inline-block;
        margin-bottom: 0;
        background: rgba(74, 222, 128, 0.12);
        padding: 5px 12px;
        border-radius: 20px;
        border: 1px solid rgba(74, 222, 128, 0.3);
    }

    .badge-live { display: none; }

    /* ── 81 HERO NUMARASI ── */

    .map-stats-grid {
        grid-template-columns: 1fr;
        margin: 0 0 1rem;
        gap: 0;
    }

    .map-info-col .stat-card {
        background: transparent;
        border: none;
        box-shadow: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 0;
    }

    .map-info-col .stat-card:hover {
        box-shadow: none;
        border-color: transparent;
        transform: none;
    }

    .map-info-col .stat-icon { display: none; }

    .map-info-col .stat-label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 8px;
    }

    /* ── BAŞLIK + AÇIKLAMA ── */

    .info-content-wrapper {
        margin-bottom: 2.25rem;
        margin-top: 0.25rem;
    }

    .map-header {
        margin-bottom: 0.6rem;
    }

    .map-header h2,

    .map-main-title {
        font-size: 1.35rem;
        color: #ffffff;
        font-weight: 800;
        line-height: 1.25;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    }

    .map-main-title span {
        color: #4ade80;
        position: static;
    }

    .map-description {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.84rem;
        line-height: 1.65;
        text-align: center;
    }

    /* ── CTA ── */

    .map-legend-group { display: none; }

    .map-footer-wrapper {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        width: 100%;
    }

    .map-footer-cta,

    .map-actions { text-align: center; }

    /* Beyaz buton — koyu arka plan üzerinde güçlü kontrast */

    .btn-map-primary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 0 24px;
        border-radius: 14px;
        background: #ffffff;
        color: #15803d;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.01em;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        margin-top: 0;
    }

    .btn-map-primary svg { stroke: #15803d; }

    .btn-map-primary:hover {
        background: #f0fdf4;
        color: #166534;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        transform: none;
    }

    .dealer-card {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.15);
    }

    .dealer-card.active {
        transform: translateY(0);
    }

    .dealer-card-header {
        padding: 28px 24px 16px 24px;
    }

    .dealer-card-body {
        padding: 16px 24px;
    }

    .dealer-card-whatsapp {
        margin: 0 24px 32px 24px;
    }

}

@media (max-width: 768px) {
    .map-pin svg {
        width: 16px;
        height: 16px;
    }

    .map-pin.pin-main svg {
        width: 20px;
        height: 20px;
    }

    .map-pin::before {
        width: 18px;
        height: 18px;
    }

}

@media (max-width: 640px) {
    .map-header h2,

    .map-main-title {
        font-size: 1.2rem;
    }

    .map-info-col .stat-value {
        font-size: clamp(3rem, 14vw, 5.5rem) !important;
    }

    .map-stats-container {
        gap: 1.5rem;
    }

    .map-pin svg {
        width: 14px;
        height: 14px;
    }

    .map-pin.pin-main svg {
        width: 18px;
        height: 18px;
    }

    .map-pin::before {
        width: 16px;
        height: 16px;
    }

    .p-konya .pin-pulse {
        width: 6px;
        height: 6px;
    }

    .dealer-card-title {
        font-size: 1.05rem;
    }

    .dealer-card-icon {
        width: 36px;
        height: 36px;
    }

    .dealer-card-icon svg {
        width: 18px;
        height: 18px;
    }

}

.products-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F7FBF9 0%, #F3F7F5 40%, #FFFFFF 100%);
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #e8ebed;
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:

        radial-gradient(ellipse 50% 60% at 12% 35%, rgba(160, 230, 195, 0.07) 0%, transparent 70%),

        radial-gradient(ellipse 45% 55% at 88% 55%, rgba(160, 230, 195, 0.05) 0%, transparent 70%);
}

.products-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.02;
    mix-blend-mode: multiply;
}

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

.products-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;

    align-items: center;
}

@media (min-width: 768px) {
    .products-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

}

@media (min-width: 1024px) {
    .products-hero-grid {
        gap: 4rem;

        align-items: center;
    }

    .products-hero-content {
        margin-top: 0;
    }

}

.products-hero-content {
    max-width: 720px;
}

.products-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-hero-image img {
    max-width: 130%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.05));
}

@media (min-width: 768px) {
    .products-hero-image img {
        max-height: 340px;
    }

}

.products-hero .breadcrumb {
    margin-bottom: 1.5rem;
}

.products-hero .breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.products-hero .breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-gray-400);
}

.products-hero .breadcrumb li:last-child::after {
    display: none;
}

.products-hero .breadcrumb a {
    color: var(--color-gray-600);
    transition: color 0.2s;
}

.products-hero .breadcrumb a:hover {
    color: var(--vds-accent);
}

.products-hero .hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.products-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.products-hero h1 .text-accent {
    color: var(--vds-accent);
}

.products-hero .hero-lead {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 540px;
}

.hero-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.hero-secondary-action svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-secondary-action:hover {
    color: #15803d;
}

.hero-secondary-action:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

.products-hero .hero-stats {
    display: flex;
    gap: 2.5rem;
}

.products-hero .hero-stat {
    display: flex;
    flex-direction: column;
}

.products-hero .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.products-hero .stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    font-weight: 500;
}

.products-hero h2.hero-sub-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.products-hero h2.hero-sub-title .text-accent {
    color: var(--vds-accent);
}

@media (min-width: 768px) {
    .products-hero h1.hero-main-title {
        font-size: 3.25rem;
    }

    .products-hero h2.hero-sub-title {
        font-size: 2.25rem;
    }

}

@media (min-width: 768px) {
    .products-hero {
        padding: 8rem 0 5rem;
    }

    .products-hero-image {
        margin-top: 0;
    }

    .products-hero-grid {
        align-items: center;
    }

}

.product-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: transparent;
    border: 1.5px solid #e0e4e3;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.005em;
    outline: none;
}

.filter-tab:hover {
    border-color: rgba(22, 163, 74, 0.25);
    color: #4b5563;
    background: rgba(22, 163, 74, 0.03);
}

.filter-tab.active {
    background: rgba(22, 163, 74, 0.06);
    border-color: rgba(22, 163, 74, 0.30);
    color: #15803d;
}

@media (max-width: 640px) {
    .product-filter-tabs {
        gap: 0.4rem;
        margin-bottom: 2rem;
    }

    .filter-tab {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }

}

.products-premium-grid {
    transition: opacity 0.2s ease;
}

.filter-empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 500;
}

.products-categories {
    background-color: var(--vds-bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 70px;
    z-index: 50;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background-color: var(--vds-bg-soft);
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: var(--vds-card-transition);
}

.category-chip:hover {
    background-color: var(--vds-accent-light);
    border-color: var(--vds-accent);
    color: var(--vds-accent);
}

.category-chip .chip-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--chip-color, var(--vds-accent));
}

.category-chip svg {
    opacity: 0.5;
}

.products-grid-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .products-grid-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.section-header-left {
    margin-bottom: 2.5rem;
}

.section-header-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-header-left p {
    font-size: 1rem;
    color: var(--color-gray-600);
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vds-accent);
    border: 1.5px solid var(--vds-accent);
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

.btn-catalog:hover {
    background-color: var(--vds-accent);
    color: white;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-header-center p {
    font-size: 1rem;
    color: var(--color-gray-600);
}

.products-grid-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .products-grid-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.section-header-left {
    max-width: 700px;

}

.section-header-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-header-left p {
    font-size: 1rem;
    color: var(--color-gray-600);
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vds-accent);
    border: 1.5px solid var(--vds-accent);
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-catalog:hover {
    background-color: var(--vds-accent);
    color: white;
}

.btn-catalog svg {
    stroke: currentColor;
}

@media (max-width: 768px) {
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-catalog {
        width: 100%;
        justify-content: center;
    }

}

.products-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .products-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

}

.product-card-premium {
    background-color: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    border: var(--vds-border);
    overflow: hidden;
    transition: var(--vds-card-transition);
    box-shadow: var(--vds-card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .product-card-premium {
        flex-direction: row;
    }

}

.product-card-premium:hover {
    border-color: rgba(22, 163, 74, 0.20);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card-premium .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-color: var(--vds-accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--vds-bg-soft);
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .product-card-image {
        width: 280px;
    }

}

.product-card-image img {
    position: relative;
    max-width: 200%;
    right: 140px;
    bottom: 170px;
    width: 200%;
    height: 200%;
    object-fit: contain;
    padding: 0.25rem;
    transition: transform 0.5s

cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 767px) {
    .product-card-image img {
        right: 120px;
        bottom: 120px;
        width: 160%;
        height: 160%;
        max-width: 160%;
        padding: 0;
    }

}

.product-card-premium:hover .product-card-image img {
    transform: none;
}

.product-card-image .image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-premium:hover .image-overlay {
    opacity: 1;
}

.image-overlay .view-btn {
    background-color: white;
    color: var(--color-gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.product-card-premium:hover .view-btn {
    transform: translateY(0);
}

.product-for-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.product-for-tag.animal-cattle { background: #e8f4fd; color: #1a6fa8; }
.product-for-tag.animal-calf   { background: #fff4e0; color: #b85c00; }
.product-for-tag.animal-sheep  { background: #edf7ed; color: #2a7a2a; }

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .product-card-content {
        padding: 2rem;
    }

}

.product-category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--vds-accent);
    margin-bottom: 0.75rem;
}

.product-card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card-content h3 a {
    transition: color 0.2s;
}

.product-card-content h3 a:hover {
    color: var(--vds-accent);
}

.product-short-desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-key-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-key-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.product-key-benefits svg {
    color: var(--vds-accent);
    flex-shrink: 0;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.product-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vds-accent);
    transition: var(--vds-card-transition);
}

.product-cta-link:hover {
    gap: 0.75rem;
}

.product-quote-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
    transition: color 0.2s;
}

.product-quote-link:hover {
    color: var(--color-gray-900);
}

.products-why-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

@media (min-width: 1024px) {
    .products-why-section {
        padding: var(--vds-section-py-lg) 0;
    }

}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .why-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

.why-feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--vds-bg-soft);
    border-radius: var(--vds-card-radius);
    transition: var(--vds-card-transition);
}

.why-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vds-card-shadow);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vds-accent-light);
    border-radius: 16px;
    color: var(--vds-accent);
}

.why-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.why-feature-card p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.products-cta-section {
    background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
    padding: var(--vds-section-py) 0;

    position: relative;
    overflow: hidden;
}

.products-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.products-cta-section .cta-box {
    position: relative;
    z-index: 1;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-box {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--color-primary-700);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    transition: var(--vds-card-transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    transition: var(--vds-card-transition);
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.product-detail-hero {
    background-color: var(--vds-bg-soft);

    padding: 7rem 0 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .product-detail-hero {
        padding: 9rem 0 5rem;
    }

}

.product-detail-hero .breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.product-detail-hero .breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-gray-400);
}

.product-detail-hero .breadcrumb li:last-child::after {
    display: none;
}

.product-detail-hero .breadcrumb a {
    color: var(--color-gray-600);
    transition: color 0.2s;
}

.product-detail-hero .breadcrumb a:hover {
    color: var(--vds-accent);
}

.back-to-products {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vds-accent);
    margin-bottom: 1.5rem;
    transition: color 0.2s, gap 0.2s;
}

.back-to-products:hover {
    color: var(--vds-accent-dark, #15803d);
    gap: 0.75rem;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

}

.product-gallery-col {
    top: 100px;
    max-width: 100%;
    overflow: hidden;
}

.product-main-image {
    background-color: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    border: var(--vds-border);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    display: block !important;
    position: static !important;
    width: 200% !important;
    height: 200% !important;
    max-width: 200% !important;
    max-height: 200% !important;
    min-width: unset !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    padding: 1rem !important;
}

.product-main-image .zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-main-image:hover .zoom-hint {
    opacity: 1;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.thumb-btn {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 2px solid transparent;
    background-color: var(--vds-bg-white);
    overflow: hidden;
    cursor: pointer;
    transition: var(--vds-card-transition);
    padding: 0.5rem;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-btn:hover {
    border-color: var(--color-gray-300);
}

.thumb-btn.active {
    border-color: var(--vds-accent);
}

.product-info-col {
    padding-top: 1rem;
}

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-info-col .product-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--vds-accent);
    background-color: var(--vds-accent-light);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
}

.product-badge-inline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: white;
    background-color: #ef4444;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.product-info-col h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.product-tagline {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.product-description .lead {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.7;
}

.product-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray-700);
    background-color: var(--vds-bg-white);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
}

.feature-pill svg {
    color: var(--vds-accent);
}

.product-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 1.5rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.product-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-product-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--vds-accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    transition: var(--vds-card-transition);
}

.btn-product-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.btn-product-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--vds-bg-white);
    color: var(--color-gray-700);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    border: var(--vds-border);
    transition: var(--vds-card-transition);
}

.btn-product-secondary:hover {
    border-color: var(--vds-accent);
    color: var(--vds-accent);
}

.product-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.trust-item svg {
    color: var(--vds-accent);
}

.product-benefits-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .benefits-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }

}

.benefit-card-premium {
    background-color: var(--vds-bg-soft);
    border-radius: var(--vds-card-radius);
    padding: 2rem 1.5rem;
    transition: var(--vds-card-transition);
    position: relative;
}

.benefit-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--vds-card-shadow);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vds-accent-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.benefit-card-premium h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card-premium p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.product-long-desc-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

.product-long-desc-inner {
    max-width: 780px;
    margin: 0 auto;
}

.product-long-desc-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.product-long-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-600);
}

.product-details-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

.details-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: -2px;

}

.tabs-nav .tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-500);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tabs-nav .tab-btn:hover {
    color: var(--color-gray-900);
}

.tabs-nav .tab-btn.active {
    color: var(--vds-accent);
    border-bottom-color: var(--vds-accent);
}

.tabs-content {
    background-color: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    padding: 2rem;
    border: var(--vds-border);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.data-table-premium {
    width: 100%;
    border-collapse: collapse;
}

.data-table-premium th,

.data-table-premium td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.data-table-premium th {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    background-color: var(--vds-bg-soft);
}

.data-table-premium td {
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.data-table-premium tbody tr:hover {
    background-color: var(--vds-bg-soft);
}

.usage-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.usage-block h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.usage-block p,

.usage-list {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.usage-list {
    list-style: disc;
    padding-left: 1.25rem;
}

.usage-list li {
    margin-bottom: 0.5rem;
}

.warning-box-premium {
    display: flex;
    gap: 1rem;
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 2rem;
}

.warning-icon {
    flex-shrink: 0;
    color: #d97706;
}

.warning-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.warning-content ul {
    list-style: disc;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #92400e;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .packaging-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

.packaging-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--vds-bg-soft);
    border-radius: 12px;
}

.packaging-icon {
    color: var(--vds-accent);
    margin-bottom: 0.75rem;
}

.packaging-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.packaging-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.product-faq-section {
    background-color: var(--vds-bg-white);
    padding: var(--vds-section-py) 0;
}

.faq-list-premium {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-premium {
    background-color: var(--vds-bg-soft);
    border-radius: var(--vds-card-radius);
    overflow: hidden;
    transition: var(--vds-card-transition);
}

.faq-item-premium:hover {
    box-shadow: var(--vds-card-shadow);
}

.faq-item-premium[open] {
    background-color: var(--vds-bg-white);
    border: var(--vds-border);
    box-shadow: var(--vds-card-shadow);
}

.faq-item-premium summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    list-style: none;
}

.faq-item-premium summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    color: var(--color-gray-400);
    transition: transform 0.3s;
}

.faq-item-premium[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--vds-accent);
}

.faq-answer-premium {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.related-products-section {
    background-color: var(--vds-bg-soft);
    padding: var(--vds-section-py) 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

.related-product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--vds-bg-white);
    border-radius: var(--vds-card-radius);
    border: var(--vds-border);
    overflow: hidden;
    transition: var(--vds-card-transition);
}

.related-product-card:hover {
    box-shadow: var(--vds-card-shadow);
    border-color: var(--vds-accent);
}

.related-product-image {
    aspect-ratio: 4/3;
    background-color: var(--vds-bg-soft);
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s;
}

.related-product-info {
    padding: 1.25rem;
}

.related-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vds-accent);
    letter-spacing: 0.03em;
}

.related-product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0.5rem 0;
}

.related-product-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vds-accent);
}

.related-product-card:hover .related-link {
    gap: 0.625rem;
}

.product-bottom-cta {
    background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
    padding: var(--vds-section-py) 0;

    position: relative;
    overflow: hidden;
}

.product-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.bottom-cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottom-cta-box .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.bottom-cta-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    width: 100%;
}

.bottom-cta-box > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.bottom-cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    transition: var(--vds-card-transition);
    line-height: 1;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    transition: var(--vds-card-transition);
    line-height: 1;
}

.btn-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-top-actions {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.back-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.back-btn-pill:hover {
    border-color: #d1d5db;
    color: #111827;
    background-color: #f9fafb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.back-btn-pill svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
    transition: transform 0.2s ease;
}

.back-btn-pill:hover svg {
    transform: translateX(-3px);
    color: var(--color-primary, #16a34a);
}

.article-body-section {
    background-color: #ffffff;
    padding: 3rem 0 6rem;
    overflow-x: hidden;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    min-width: 0;
}

.article-column {
    min-width: 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .corporate-grid {
        grid-template-columns: 7fr 3fr;
        gap: 5rem;
        align-items: flex-start;
    }

}

.featured-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}

.featured-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.article-summary-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--vds-accent);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 3rem;
}

.summary-title { font-weight: 700; color: #111827; margin-bottom: 0.5rem; display: flex; align-items: center; }

.article-summary-box p { font-size: 1rem; color: #4b5563; margin: 0; line-height: 1.6; }

.prose-corporate {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.prose-corporate h1, .prose-corporate h2, .prose-corporate h3 {
    color: #111827; font-weight: 800; margin-top: 2.5rem; margin-bottom: 1rem; position: relative;
}

.prose-corporate h2 { font-size: 1.75rem; border-bottom: 2px solid #f3f4f6; padding-bottom: 0.5rem; }

.prose-corporate h3 { font-size: 1.4rem; color: #1f2937; margin-top: 2rem; }

.prose-corporate h1 a, .prose-corporate h2 a, .prose-corporate h3 a,

.prose-corporate h4 a, .prose-corporate h5 a {
    display: none !important;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
}

.prose-corporate table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.prose-corporate thead { background-color: #f9fafb; }

.prose-corporate th {
    text-align: left; padding: 1rem 1.25rem; font-weight: 700; color: #111827;
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}

.prose-corporate td {
    padding: 1rem 1.25rem; border-bottom: 1px solid #f3f4f6; vertical-align: top;
}

.prose-corporate tbody tr:last-child td { border-bottom: none; }

.prose-corporate tbody tr:nth-child(even) { background-color: #ffffff; }

.prose-corporate tbody tr:hover { background-color: #f8fafc; }

.prose-corporate { overflow-x: hidden; max-width: 100%; }

.prose-corporate img { max-width: 100%; height: auto; }

.prose-corporate table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.prose-corporate p { margin-bottom: 1.5rem; }

.prose-corporate ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }

.prose-corporate li { margin-bottom: 0.5rem; }

.prose-corporate strong { color: #111827; font-weight: 700; }

.legal-content { max-width: 800px; margin: 0 auto; }

.legal-updated { color: #6b7280; font-size: 0.9rem; margin-bottom: 2rem; }

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

.legal-section h2 { font-size: 1.4rem; color: #111827; margin-bottom: 1rem; }

.legal-section h3 { font-size: 1.15rem; color: #374151; margin-bottom: 0.75rem; }

.legal-contact { background: #f9fafb; border-radius: 12px; padding: 2rem; }

.cookie-category { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f3f4f6; }

.cookie-category:last-child { border-bottom: none; }

.badge-required { display: inline-block; font-size: 0.7rem; font-weight: 600; background: #dcfce7; color: #166534; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }

.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }

.legal-content code { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; font-size: 0.85rem; color: #374151; }

.sidebar-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 2.5rem; }

.sidebar-widget .widget-title {
    font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
    color: #9ca3af; margin-bottom: 1rem; border-bottom: 1px solid #f3f4f6; padding-bottom: 0.5rem;
}

.sidebar-articles-list { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-article-item { display: flex; gap: 1rem; align-items: center;  }

.sidebar-article-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }

.sidebar-article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }

.sidebar-article-item:hover .sidebar-article-thumb img { transform: scale(1.1); }

.sidebar-article-info h5 { font-size: 0.9rem; font-weight: 600; color: #374151; line-height: 1.4; transition: color 0.2s; margin-bottom: 0.25rem; }

.sidebar-article-item:hover h5 { color: var(--vds-accent); }

.sidebar-article-info .date { font-size: 0.75rem; color: #9ca3af; }

.share-buttons-row { display: flex; gap: 0.5rem; }

.share-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; transition: transform 0.2s; }

.share-btn:hover { transform: translateY(-3px); }

.share-btn svg { width: 20px; height: 20px; }

.share-btn.wa { background: #25D366; } .share-btn.fb { background: #1877F2; } .share-btn.tw { background: #000000; }

.cta-box-corporate {
    background-color: #111827; color: white; padding: 2rem; border-radius: 16px; text-align: center;
    background-image: radial-gradient(circle at top right, #1f2937 0%, transparent 40%);
}

.cta-box-corporate h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }

.cta-box-corporate p { font-size: 0.9rem; color: #d1d5db; margin-bottom: 1.5rem; line-height: 1.5; }

.btn-corporate {
    display: inline-block; background-color: var(--vds-accent); color: white; font-weight: 600;
    padding: 0.75rem 1.5rem; border-radius: 8px; transition: all 0.2s; width: 100%;
}

.btn-corporate:hover { background-color: #15803d; transform: translateY(-2px); }

.article-bottom-tags { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.tag-pill { font-size: 0.85rem; background: #f3f4f6; color: #4b5563; padding: 0.4rem 1rem; border-radius: 50px; }

.footer {
    position: relative;
    background: #f6f7fb;

    padding: 60px 0 240px;
    overflow: hidden;
    isolation: isolate;
}

.footer::before {
    content: "VetKim";
    position: absolute;
    left: 50%;

    bottom: -0.35em;

    transform: translateX(-50%);
    font-weight: 900;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;

    font-size: clamp(160px, 24vw, 550px);
    line-height: 0.8;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;

    opacity: 1;

    color: rgba(15, 23, 42, 0.25);
}

.footer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 350px;
    pointer-events: none;
    z-index: 1;

    background: linear-gradient(

        to bottom,

        rgba(246, 247, 251, 0) 0%,

        rgba(255, 255, 255, 0.4) 60%,

        #ffffff 100%

    );
}

.footer-main,

.footer-bottom {
    position: relative;

    z-index: 2;
}

.footer-main .container,

.footer-bottom .container {
    background: transparent;
    border: none;
    box-shadow: none;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-main .container {
    padding: 0 20px 20px;
}

.footer-bottom .container {
    padding: 20px 20px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-brand img {
position: relative;
    left: 30px;
    gap: 20px;
    height: 104px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-main, .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-brand p{
  margin: 0;
  max-width: 360px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section h4{
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a{
  color: #475569;
  font-size: 0.83rem;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease, opacity .18s ease;
  opacity: .92;
  white-space: nowrap;
}

.footer-links a:hover{
  color: #16a34a;
  opacity: 1;
  transform: translateX(2px);
}
.footer-region-toggle{
  margin-top: 14px;
}
.footer-region-toggle summary{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #475569;
  font-size: 0.95rem;
  opacity: .92;
  user-select: none;
}
.footer-region-toggle summary::-webkit-details-marker{
  display: none;
}
.footer-region-toggle summary::marker{
  display: none;
}
.footer-region-toggle summary svg{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.footer-region-toggle[open] summary svg{
  transform: rotate(180deg);
}
.footer-region-toggle summary:hover{
  color: #16a34a;
}
.footer-region-list{
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 4px;
}
.footer-region-list a{
  color: #475569;
  font-size: 0.88rem;
  text-decoration: none;
  opacity: .85;
  transition: color .18s ease;
}
.footer-region-list a:hover{
  color: #16a34a;
  opacity: 1;
}

.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-contact li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-contact svg{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #94a3b8;
  margin-top: 2px;
}

.footer-contact a{
  color: #0f172a;
  text-decoration: none;
  font-weight: 650;
  transition: color .18s ease, opacity .18s ease;
}

.footer-contact a:hover{
  color: #16a34a;
}

.footer-bottom-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-content p{
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.footer-agency {
  text-align: center;
  padding-top: 0.6rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-agency span {
  margin-right: 4px;
}

.footer-agency a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-agency a:hover {
  color: #cbd5e1;
}

.footer-legal-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-links a{
  color: #64748b;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(100,116,139,0.35);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}

.footer-legal-links a:hover{
  color: #16a34a;
  border-color: rgba(22,163,74,0.55);
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials .social-btn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);

  color: #6b7280;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
  text-decoration: none;
}

.footer-socials .social-btn svg{
  width: 18px;
  height: 18px;
  display: block;
}

.footer-socials .social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.10);
  border-color: rgba(22, 163, 74, 0.28);
  color: #16a34a;
  background: rgba(255, 255, 255, 0.92);
}

.footer-socials .social-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18), 0 14px 34px rgba(17, 24, 39, 0.10);
  border-color: rgba(22, 163, 74, 0.35);
}

@media (max-width: 1024px){
  .footer-main .container{ padding: 36px 28px 26px; }

  .footer-bottom .container{ padding: 16px 28px; }

  .footer-grid{
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
  }

}

@media (max-width: 760px){
  .footer{
    padding: 70px 0 110px;
  }

  .footer::before{
    bottom: -0.5em;
    opacity: 1;
    color: rgba(15, 23, 42, 0.08);
  }

  .footer::after{
    height: 120px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand p{
    max-width: 520px;
  }

  .footer-bottom-content{
    justify-content: center;
    text-align: center;
  }

  .footer-legal-links{
    justify-content: center;
  }

}


/* ============================================================
   BÖLGE SAYFASI — Temiz & Sade
   ============================================================ */

/* Ortak başlık */
.rp-section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.rp-section-sub {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 2.5rem;
}

/* ② Bölge Profili */
.rp-section {
  padding: 4rem 0;
  background: #fff;
}
.rp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rp-map {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}
.rp-map .svg-map-container svg {
  width: 100%;
  height: auto;
  display: block;
}
.rp-map .turkey-map-svg {
  filter: none !important;
}
.rp-map .turkey-map-svg path {
  fill: #dde3ea !important;
  stroke: #fff !important;
  stroke-width: 0.7 !important;
  cursor: default !important;
  transform: none !important;
  filter: none !important;
  transition: fill .35s ease !important;
  opacity: 1 !important;
}
.rp-map .turkey-map-svg path:hover {
  fill: #dde3ea !important;
  transform: none !important;
  filter: none !important;
}
.rp-map .turkey-map-svg path.region-highlighted {
  fill: #16a34a !important;
  stroke: #e8f5e9 !important;
  stroke-width: 0.8 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: rp-pulse-in .5s ease forwards !important;
}
.rp-map .turkey-map-svg path.region-highlighted:hover {
  fill: #15803d !important;
  transform: none !important;
}
@keyframes rp-pulse-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.rp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 1rem;
}
.rp-info h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.rp-fact {
  padding: .9rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rp-fact:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}
.rp-fact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3b8;
}
.rp-fact-val {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
}
.rp-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: .5rem;
}
.rp-cities span {
  font-size: 0.73rem;
  color: #374151;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
}

/* ③ Yaygın Sorunlar */
.rp-issues-section {
  padding: 4rem 0;
  background: #f8fafc;
}
.rp-issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.rp-issue-card {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.rp-issue-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  flex-shrink: 0;
}
.rp-issue-card p {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ⑥ Diğer Bölgeler */
.rp-other-section {
  padding: 3.5rem 0;
  background: #f8fafc;
  border-top: 1px solid #eef0ef;
}
.rp-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.rp-other-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .18s;
}
.rp-other-card:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 16px rgba(22,163,74,.1);
  transform: translateY(-2px);
}
.rp-other-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}
.rp-other-card span {
  font-size: 0.77rem;
  color: #64748b;
}

/* ── Tablet (768–1023px) ── */
@media (max-width: 1023px) {
  .rp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rp-map { order: 1; min-width: 0; }
  .rp-info { order: 2; }
  .rp-map .svg-map-container {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .rp-map .turkey-map-svg,
  .rp-map svg {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    filter: none !important;
    overflow: visible !important;
    transform: none !important;
    object-fit: unset !important;
  }
  .rp-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobil (≤767px) ── */
@media (max-width: 767px) {
  .rp-section {
    padding: 1.5rem 0 2.5rem;
    background: #fff;
    overflow-x: hidden;
  }
  .rp-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .rp-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* Harita: tam genişlik */
  .rp-map {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0.4rem;
    box-sizing: border-box;
    overflow: visible;
  }
  .rp-map .svg-map-container {
    display: block;
    width: 100%;
    height: auto;
    position: static;
    overflow: visible;
  }
  .rp-map::before,
  .rp-map::after { display: none; }
  .rp-map .turkey-map-svg,
  .rp-map svg {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    object-fit: unset !important;
  }
  .rp-map .turkey-map-svg path {
    fill: #b8c8d8 !important;
  }
  .rp-map .turkey-map-svg path.region-highlighted {
    fill: #16a34a !important;
  }
  /* Bilgi tekrar padding'e sahip olsun */
  .rp-info {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  /* Bilgi tam genişlik */
  .rp-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .rp-fact { padding: .7rem 0; }
  .rp-cities { margin-top: .75rem; }
  /* Diğer bölümler */
  .rp-issues-section,
  .rp-other-section {
    padding: 2.5rem 0;
  }
  .rp-issues-grid { grid-template-columns: 1fr; }
  .rp-other-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO HS — Modern Slider
   ============================================================ */

@keyframes hsFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hsKB {
    from { transform: scale(1.07); }
    to   { transform: scale(1.00); }
}
/* ── Section ── */
.hs {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #050a07;
}

/* ── Slide track ── */
.hs-track {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* ── Slide ── */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.hs-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Image ── */
.hs-slide-bg {
    position: absolute;
    inset: 0;
}
.hs-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hs-slide.is-active .hs-slide-bg img {
    animation: hsKB 9s cubic-bezier(.25,.46,.45,.94) forwards;
}

/* ── Overlay ── */
.hs-slide-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,  rgba(3,7,4,.94) 0%, rgba(3,7,4,.60) 28%, rgba(3,7,4,.15) 60%, transparent 100%),
        linear-gradient(to right, rgba(3,7,4,.42) 0%, transparent 55%);
}

/* ── Content (bottom-anchored) ── */
.hs-slide-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 44px;
}

/* ── Eyebrow ── */
.hs-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.50);
    margin: 0 0 16px;
}
.hs-eyebrow-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #22c55e;
    flex-shrink: 0;
}

/* ── Title ── */
.hs-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.4rem, 5vw, 4.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 16px;
}
.hs-title em {
    font-style: normal;
    color: #4ade80;
}

/* ── Description ── */
.hs-desc {
    font-size: .95rem;
    line-height: 1.65;
    color: rgba(255,255,255,.62);
    max-width: 440px;
    margin: 0 0 30px;
}

/* ── Actions ── */
.hs-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.hs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #16a34a;
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.hs-btn-primary:hover { background: #15803d; transform: translateY(-1px); color: #fff; }
.hs-btn-primary svg  { transition: transform .2s; }
.hs-btn-primary:hover svg { transform: translateX(3px); }

.hs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.68);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.22);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.hs-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.65); }
.hs-btn-ghost svg   { transition: transform .2s; }
.hs-btn-ghost:hover svg { transform: translateX(3px); }

/* ── Entrance animations (active slide only) ── */
.hs-slide.is-active .hs-eyebrow { animation: hsFadeUp .65s .05s cubic-bezier(.22,.68,0,1.1) both; }
.hs-slide.is-active .hs-title   { animation: hsFadeUp .65s .18s cubic-bezier(.22,.68,0,1.1) both; }
.hs-slide.is-active .hs-desc    { animation: hsFadeUp .65s .30s cubic-bezier(.22,.68,0,1.1) both; }
.hs-slide.is-active .hs-actions { animation: hsFadeUp .65s .42s cubic-bezier(.22,.68,0,1.1) both; }

/* ── Bottom nav ── */
.hs-nav {
    position: relative;
    z-index: 10;
    background: rgba(3,7,4,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.07);
}
.hs-nav-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hs-nav-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 18px 28px 20px;
    background: none;
    border: none;
    border-right: 1px solid rgba(255,255,255,.06);
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}
.hs-nav-btn:last-child { border-right: none; }
.hs-nav-btn:hover { background: rgba(255,255,255,.025); }

.hs-nav-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,.07);
    overflow: hidden;
}
.hs-nav-fill {
    height: 100%;
    width: 0%;
    background: #22c55e;
    will-change: width;
}

.hs-nav-num {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(255,255,255,.28);
    transition: color .3s;
}
.hs-nav-btn.is-active .hs-nav-num { color: #4ade80; }

.hs-nav-label {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.38);
    transition: color .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.hs-nav-btn.is-active .hs-nav-label { color: rgba(255,255,255,.88); }

/* ── Responsive ── */
@media (max-width: 639px) {
    .hs-slide-body { padding-bottom: 24px; }
    .hs-desc { display: none; }
    .hs-nav-btn { padding: 14px 12px 16px; }
    .hs-nav-label { font-size: .70rem; }
}
@media (min-width: 768px) {
    .hs-slide-body { padding-bottom: 52px; }
}
@media (min-width: 1024px) {
    .hs-slide-body { padding-bottom: 60px; }
    .hs-nav-btn { padding: 22px 36px 24px; }
}
@media (min-width: 1280px) {
    .hs-nav-btn { padding: 22px 48px 24px; }
}



/* ============================================================
   GALLERY PAGE
   ============================================================ */


/* ── Instagram Grid ── */
.gl-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-top: 2rem;
}

.gl-ig-embed {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.gl-ig-embed .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Header'ı yukarı kaydır — overflow:hidden keser, profil görünmez */
.gl-ig-embed iframe {
    width: 100% !important;
    border: none !important;
    pointer-events: none;
    display: block;
    margin-top: -68px !important;
}

/* Profil alanını beyaz overlay ile kapat */
.gl-ig-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: #fff;
    z-index: 5;
    pointer-events: none;
}

/* Tıklanınca Instagram'a gider, hover karartır */
.gl-ig-embed a.gl-ig-link {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    transition: background .25s ease;
}

.gl-ig-embed:hover a.gl-ig-link {
    background: rgba(0, 0, 0, .3);
}

@media (max-width: 1024px) {
    .gl-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .gl-instagram-grid {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .gl-ig-embed {
        aspect-ratio: 4/5;
        border-radius: 8px;
    }
}

/* ── Tab nav ── */
.gl-tabs {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}
.gl-tabs-list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.gl-tabs-list::-webkit-scrollbar { display: none; }
.gl-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    font-size: .85rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.gl-tab:hover,
.gl-tab.is-active {
    color: #16a34a;
    border-bottom-color: #16a34a;
}
.gl-tab-year {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    background: #dcfce7;
    color: #15803d;
    padding: 2px 7px;
    border-radius: 20px;
}

/* ── Section ── */
.gl-section {
    background: white;
    padding: 5rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.gl-section:last-of-type { border-bottom: none; }

.gl-section-head {
    margin-bottom: 2.5rem;
}
.gl-section-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.gl-badge {
    font-size: .70rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 3px 10px;
    border-radius: 20px;
}
.gl-year {
    font-size: .75rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: .06em;
}
.gl-section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.02em;
    margin: 0 0 8px;
}
.gl-section-desc {
    font-size: .95rem;
    color: #6b7280;
    max-width: 560px;
    line-height: 1.65;
    margin: 0;
}

/* ── Photo grid ── */
.gl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 640px) {
    .gl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .gl-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

/* Wide items: every 7th + 1st = span 2 */
.gl-item:nth-child(7n+1) {
    grid-column: span 2;
}

.gl-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    border: none;
    padding: 0;
    cursor: pointer;
}
.gl-item:nth-child(7n+1) {
    aspect-ratio: 16/7;
}
.gl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    display: block;
}
.gl-item:hover img { transform: scale(1.05); }

.gl-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    opacity: 0;
    transition: opacity .25s;
}
.gl-item:hover .gl-item-overlay,
.gl-item:focus-visible .gl-item-overlay { opacity: 1; }
.gl-item:focus-visible { outline: 2px solid #16a34a; outline-offset: 2px; }

/* ── Empty state ── */
.gl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 60px 20px;
    color: #9ca3af;
    text-align: center;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
}
.gl-empty svg { opacity: .4; }
.gl-empty p { font-size: .95rem; margin: 0; }
.gl-empty span { font-size: .80rem; }
.gl-empty code { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; }

/* ── Lightbox ── */
.glb {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: glbFadeIn .2s ease;
}
.glb[hidden] { display: none; }
@keyframes glbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.glb-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
}
.glb-img {
    max-width: 100%;
    max-height: calc(90vh - 60px);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.glb-caption {
    margin: 14px 0 0;
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    text-align: center;
    text-transform: capitalize;
}
.glb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,.12);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
}
.glb-close:hover { background: rgba(255,255,255,.22); }
.glb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
}
.glb-arrow:hover { background: rgba(255,255,255,.22); }
.glb-prev { left: 16px; }
.glb-next { right: 16px; }
.glb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    letter-spacing: .06em;
}
