/* =====================================================
   VITALIGHT - ANA STİL DOSYASI
   ===================================================== */

/* -----------------------------
   Genel Değişkenler
----------------------------- */

:root {
    --color-dark: #111827;
    --color-dark-soft: #202938;
    --color-text: #202631;
    --color-muted: #697386;
    --color-gold: #c99b4a;
    --color-gold-light: #e0bd78;
    --color-light: #f6f7f8;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    --color-success: #25d366;

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --container-width: 1240px;
    --header-height: 86px;

    --shadow-small: 0 8px 25px rgba(17, 24, 39, 0.06);
    --shadow-medium: 0 18px 45px rgba(17, 24, 39, 0.12);
    --transition: 0.3s ease;
}

/* -----------------------------
   Reset
----------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--color-text);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

/* -----------------------------
   Yardımcı Sınıflar
----------------------------- */

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}

.section-padding {
    padding: 110px 0;
}

.section-light {
    background: var(--color-light);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: var(--color-gold-light);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.intro-content h2 {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.13;
}

.section-heading h2 span,
.intro-content h2 span,
.cta-container h2 span {
    color: var(--color-gold);
}

.section-heading p {
    max-width: 590px;
    margin-top: 22px;
    color: var(--color-muted);
    font-size: 17px;
}

.centered p {
    margin-right: auto;
    margin-left: auto;
}

/* -----------------------------
   Header
----------------------------- */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(17, 24, 39, 0.96);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(17, 24, 39, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: inline-flex;
    z-index: 1002;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-mark {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(224, 189, 120, 0.8);
    border-radius: 50%;
    color: var(--color-gold-light);
    font-size: 16px;
}

.logo-text span {
    color: var(--color-gold-light);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: auto;
    margin-right: 42px;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--color-gold-light);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-quote-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.header-quote-button i {
    color: var(--color-gold-light);
    font-size: 12px;
    transition: var(--transition);
}

.header-quote-button:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.header-quote-button:hover i {
    color: var(--color-dark);
    transform: translateX(4px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-white);
    transition: var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------
   Hero
----------------------------- */

.hero-section {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 15, 24, 0.92) 0%, rgba(10, 15, 24, 0.65) 46%, rgba(10, 15, 24, 0.18) 100%),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=90") center / cover;
}

.hero-background::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 50%, rgba(0, 0, 0, 0.3));
    content: "";
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 700px;
    color: var(--color-white);
}

.hero-eyebrow {
    color: var(--color-gold-light);
}

.hero-content h1 {
    max-width: 680px;
    font-family: var(--font-heading);
    font-size: clamp(45px, 7vw, 82px);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 1.04;
}

.hero-content h1 span {
    display: block;
    color: var(--color-gold-light);
}

.hero-content p {
    max-width: 570px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 14px 23px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.button-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.button-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
}

.button-primary i {
    transition: var(--transition);
}

.button-primary:hover i {
    transform: translateX(4px);
}

.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--color-white);
}

.button-outline-light:hover {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-dark);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 75px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.2;
}

.trust-item span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right center;
}

.hero-scroll i {
    color: var(--color-gold-light);
}

/* -----------------------------
   Intro
----------------------------- */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 95px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    height: 570px;
    object-fit: cover;
}

.intro-image::before {
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-top: 1px solid var(--color-gold);
    border-left: 1px solid var(--color-gold);
    content: "";
}

.intro-image-badge {
    position: absolute;
    right: -24px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 19px 22px;
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.intro-image-badge i {
    color: var(--color-gold-light);
    font-size: 26px;
}

.intro-content h2 {
    margin-bottom: 28px;
}

.intro-content p {
    margin-bottom: 17px;
    color: var(--color-muted);
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 700;
}

.text-link i {
    color: var(--color-gold);
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}

.mobile-link {
    display: none;
}

/* -----------------------------
   Kategoriler
----------------------------- */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: var(--color-dark);
}

.category-card-image,
.category-card-image::after {
    position: absolute;
    inset: 0;
}

.category-card-image::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.9));
    content: "";
}

.category-card-image img {
    height: 100%;
    object-fit: cover;
    opacity: 0.83;
    transition: transform 0.7s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-content {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 25px;
    left: 25px;
    color: var(--color-white);
}

.category-number {
    display: block;
    margin-bottom: 22px;
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
}

.category-card p {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
}

.category-link i {
    color: var(--color-gold-light);
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* -----------------------------
   Ürünler
----------------------------- */

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: none;
}

.section-heading-row .text-link {
    margin-bottom: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.product-image {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    background: var(--color-light);
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-label {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 6px 9px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-view {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-view {
    opacity: 1;
    transform: translateY(0);
}

.product-view i {
    color: var(--color-gold);
}

.product-content {
    padding: 26px 25px 28px;
}

.product-category {
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-content h3 {
    margin-top: 9px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.25;
}

.product-content h3 a:hover {
    color: var(--color-gold);
}

.product-content p {
    margin-top: 12px;
    color: var(--color-muted);
    font-size: 14px;
}

.product-code {
    display: block;
    margin-top: 18px;
    color: #98a1b2;
    font-size: 11px;
}

/* -----------------------------
   İstatistikler
----------------------------- */

.stats-section {
    padding: 75px 0;
    background: var(--color-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-item strong span {
    color: var(--color-gold-light);
}

.stat-item p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* -----------------------------
   Projeler
----------------------------- */

.project-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.82fr;
    grid-template-rows: 255px 255px;
    gap: 18px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

.project-large {
    grid-row: span 2;
}

.project-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(8, 12, 20, 0.9));
    content: "";
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 23px;
    left: 25px;
    color: var(--color-white);
}

.project-overlay span {
    color: var(--color-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-overlay h3 {
    max-width: 420px;
    margin-top: 6px;
    padding-right: 34px;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.25;
}

.project-overlay i {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: var(--color-gold-light);
    font-size: 17px;
}

/* -----------------------------
   CTA
----------------------------- */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background: var(--color-dark);
}

.cta-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.75)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-container .eyebrow {
    justify-content: center;
}

.cta-container h2 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(35px, 5vw, 62px);
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-container p {
    margin: 22px auto 32px;
    color: rgba(255, 255, 255, 0.68);
}

.button-light {
    background: var(--color-white);
    color: var(--color-dark);
}

.button-light:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
}

/* -----------------------------
   Footer
----------------------------- */

.site-footer {
    padding: 75px 0 25px;
    background: #0b111c;
    color: var(--color-white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 65px;
}

.footer-brand {
    max-width: 285px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.footer-socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-dark);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 15px;
}

.footer-column a,
.footer-column span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-gold-light);
}

.footer-contact i {
    width: 15px;
    margin-top: 5px;
    color: var(--color-gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* -----------------------------
   WhatsApp
----------------------------- */

.whatsapp-button {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border-radius: 30px;
    background: var(--color-success);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.whatsapp-button i {
    font-size: 21px;
}

.whatsapp-button:hover {
    background: #1fba58;
    transform: translateY(-4px);
}

/* -----------------------------
   Animasyonlar
----------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------
   Tablet
----------------------------- */

@media (max-width: 1050px) {
    .main-nav {
        gap: 22px;
        margin-right: 25px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        gap: 55px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

/* -----------------------------
   Mobil
----------------------------- */

@media (max-width: 780px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 30px, var(--container-width));
    }

    .section-padding {
        padding: 75px 0;
    }

    .site-header {
        height: var(--header-height);
    }

    .main-nav {
        position: fixed;
        z-index: 1001;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: calc(100vh - var(--header-height));
        margin: 0;
        padding: 25px 25px 40px;
        background: var(--color-dark);
        opacity: 0;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 17px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .header-quote-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-section {
        min-height: 690px;
    }

    .hero-background {
        background:
            linear-gradient(90deg, rgba(10, 15, 24, 0.9), rgba(10, 15, 24, 0.52)),
            url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1300&q=85") center / cover;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-trust {
        margin-top: 50px;
    }

    .hero-scroll {
        display: none;
    }

    .intro-grid {
        display: flex;
        flex-direction: column;
        gap: 55px;
    }

    .intro-image {
        width: calc(100% - 12px);
        margin-left: 12px;
    }

    .intro-image img {
        height: 390px;
    }

    .intro-image-badge {
        right: -10px;
        bottom: 20px;
    }

    .intro-content h2 {
        font-size: 36px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .section-heading-row {
        display: block;
    }

    .desktop-link {
        display: none;
    }

    .mobile-link {
        display: inline-flex;
        margin-top: 30px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 330px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 280px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 15px;
    }

    .project-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .project-card,
    .project-large {
        height: 310px;
    }

    .cta-section {
        padding: 90px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 49px;
        height: 49px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-button span {
        display: none;
    }
}

/* -----------------------------
   Küçük Telefonlar
----------------------------- */

@media (max-width: 430px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        gap: 15px;
    }

    .trust-item strong {
        font-size: 22px;
    }

    .trust-item span {
        font-size: 11px;
    }

    .intro-image img {
        height: 330px;
    }

    .intro-image-badge {
        padding: 14px;
        font-size: 11px;
    }

    .intro-image-badge i {
        font-size: 21px;
    }

    .section-heading h2,
    .intro-content h2 {
        font-size: 31px;
    }

    .stats-grid {
        gap: 34px 8px;
    }

    .stat-item strong {
        font-size: 35px;
    }

    .stat-item p {
        font-size: 11px;
    }
}

/* -----------------------------
   Erişilebilirlik
----------------------------- */

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
