/* 1. FONT TANIMLAMALARI (Yollar WHMCS'ye göre düzeltildi) */
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular'), local('Gilroy-Regular'), 
         url('../fonts/Gilroy-Regular.woff2') format('woff2'), 
         url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular Italic'), local('Gilroy-RegularItalic'), 
         url('../fonts/Gilroy-RegularItalic.woff2') format('woff2') , 
         url('../fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy SemiBold'), local('Gilroy-SemiBold'), 
         url('../fonts/Gilroy-SemiBold.woff2') format('woff2'), 
         url('../fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold'), local('Gilroy-Bold'), 
         url('../fonts/Gilroy-Bold.woff2') format('woff2'), 
         url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 2. RESET VE GENEL AYARLAR */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, strong, li {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* 3. KRİTİK DÜZELTME: Body fontunu Gilroy yaptık */
body {
    line-height: 1.6;
    background: #fff;
    color: #666;
    font-size: 16px;
    font-family: 'Gilroy', system-ui, -apple-system, sans-serif !important;
}

ol, ul { list-style: none; }
li { margin-bottom: 10px; }

/* 4. BAŞLIKLAR VE ÖZEL ALANLAR */
h3, h4, .logo, .tagline, .options-list .option .name, .options-list .option .value {
    font-family: 'Gilroy', sans-serif !important;
}

h3 {
    font-size: 1.7em;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000;
    display: flex;
}

h4 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
    font-size: 1.2em;
}

p {
    line-height: 1.7em;
    margin-bottom: 2em;
    color: #2b2b2b;
}

/* 5. BUTONLAR VE DİĞERLERİ */
.mcbutton {
    padding: 11px 45px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 4px;
    color: #000;
    border: 2px solid #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .7em;
    position: relative;
    width: 100%;
    text-align: center;
}

.intro {
    background: url(../img/head.webp);
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    min-height: 579px;
    max-height: 579px;
}

.intro h1 {
    font-size: 3.3em;
    color: #000;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

/* RESPONSIVE AYARLAR */
@media (min-width: 576px) {
    .intro h1 { font-size: 4.3em; text-align: left; }
    .tagline { text-align: left; font-size: 17px; font-weight: 600; }
}