/* RESET */

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


/* BODY */

body{
font-family:'Inter',sans-serif;
background:#f4f6f9;
color:#1b1f2a;
line-height:1.7;
-webkit-font-smoothing:antialiased;

min-height:100vh;
display:flex;
flex-direction:column;
}



/* WRAP */

.wrap{
width:90%;
max-width:1200px;
margin:auto;
}



/* LINK RESET */

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

a:visited{
color:inherit;
}



/* HEADER */

.header{
position:sticky;
top:0;
z-index:1000;
background:#0f2747;
padding:18px 0;
transition:.35s;
}

.header.scrolled{
padding:12px 0;
backdrop-filter:blur(10px);
background:rgba(15,39,71,.92);
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

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



/* LOGO */

.brandlink{
display:flex;
align-items:center;
gap:12px;
color:white;
}

.brandlogo{
height:42px;
width:auto;
background:#ffffff;
padding:5px;
border-radius:10px;
box-shadow:0 6px 16px rgba(0,0,0,.15);
flex-shrink:0;
}

.brandtext{
display:flex;
flex-direction:column;
line-height:1.1;
}

.brandtext b{
font-size:18px;
font-weight:700;
color:white;
}

.brandtext span{
font-size:12px;
color:#cbd5e1;
opacity:.9;
}



/* MENU */

.menu{
display:flex;
gap:26px;
align-items:center;
}

.menu a{
position:relative;
color:white;
font-weight:500;
transition:.25s;
}

.menu a:hover{
color:#38c6d9;
}

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#38c6d9;
transition:.25s;
}

.menu a:hover::after{
width:100%;
}



/* BUTTON */

.btn{
border:1px solid #38c6d9;
padding:10px 20px;
border-radius:8px;
color:#38c6d9!important;
transition:.3s;
font-size:14px;
cursor:pointer;
}

.btn:hover{
background:#38c6d9;
color:white!important;
}



/* HERO */

.hero-home{
background:linear-gradient(135deg,#0c1f3f,#061326);
color:white;
padding:110px 0;
position:relative;
overflow:hidden;
}



/* HERO (SUB PAGES) */

.hero{
background:linear-gradient(135deg,#0c1f3f,#061326);
color:white;
padding:90px 0;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.hero p{
opacity:.9;
}



/* WATERMARK */

.hero-home::before{
content:"OKSIJEN";
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:320px;
font-weight:800;
letter-spacing:40px;
color:white;
opacity:0.03;
pointer-events:none;
}



/* HERO GRID */

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:80px;
}



.hero-left h1{
font-size:46px;
margin-bottom:25px;
line-height:1.2;
}



/* HERO WORD */

#hero-word{
color:#38c6d9;
display:inline-block;
min-width:170px;
transition:all .35s ease;
}



.hero-left p{
font-size:18px;
opacity:.9;
margin-bottom:40px;
}



.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.hero-outline{
padding:10px 20px;
border:1px solid #38c6d9;
border-radius:8px;
color:white;
}



/* HERO PANEL */

.hero-panel{
background:rgba(255,255,255,.06);
padding:40px;
border-radius:18px;
backdrop-filter:blur(10px);
box-shadow:0 25px 60px rgba(0,0,0,.25);
opacity:0;
transform:translateX(40px);
}



.hero-panel strong{
display:block;
font-size:18px;
margin-bottom:10px;
color:white;
}

.hero-panel a{
color:#38c6d9;
font-weight:600;
}

.hero-divider{
border:none;
border-top:1px solid rgba(255,255,255,.15);
margin:18px 0;
}

.hero-check{
font-size:15px;
margin-bottom:8px;
}



/* SECTION */

.section{
padding:80px 0;
background:#f4f6f9;
}

.section.alt{
background:white;
}

.section h2{
font-size:28px;
margin-bottom:20px;
}



/* GRID */

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



/* CARD */

.card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.06);
transition:.35s;
display:flex;
flex-direction:column;
border:1px solid transparent;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 30px 80px rgba(0,0,0,.12);
border:1px solid rgba(56,198,217,.25);
}



/* CARD ICON */

.card-icon{
width:44px;
height:44px;
border-radius:12px;
background:#eef6fb;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:16px;
font-size:20px;
color:#38c6d9;
}



/* TIMELINE */

.timeline{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:40px;
}

.timeline-item{
background:white;
padding:25px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}



/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
margin-top:50px;
}

.stat-number{
font-size:42px;
font-weight:700;
color:#0f2747;
margin-bottom:6px;
}

.stat-label{
font-size:14px;
color:#666;
}



/* CTA */

.cta{
background:linear-gradient(135deg,#0f2747,#061326);
color:white;
padding:80px 0;
text-align:center;
}



/* FOOTER */

footer{
background:#0c1f3f;
color:white;
text-align:center;
padding:50px 0;
margin-top:80px;
font-size:14px;
}

#footer{
margin-top:auto;
}



/* FLOAT SOCIAL */

.float-social{
position:fixed;
bottom:25px;
right:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.float-social a{
width:48px;
height:48px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:20px;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.float-wa{background:#25D366;}
.float-li{background:#0A66C2;}



/* REVEAL */

.reveal{
opacity:0;
transform:translateY(30px);
transition:all .8s ease;
}

.reveal.show{
opacity:1;
transform:translateY(0);
}



/* GTIP FORM */

.info-box{
background:#eef6fb;
padding:18px;
border-radius:10px;
margin-bottom:25px;
font-size:14px;
border-left:4px solid #38c6d9;
}

.consulting-steps{
display:flex;
gap:25px;
margin-bottom:35px;
flex-wrap:wrap;
}

.step{
display:flex;
gap:12px;
align-items:flex-start;
}

.step-number{
width:28px;
height:28px;
background:#38c6d9;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:700;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:20px;
}

.form-group{
display:flex;
flex-direction:column;
gap:6px;
margin-bottom:15px;
}

input,
textarea{
padding:10px 12px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
font-family:inherit;
}

textarea{
resize:vertical;
}

.legal-note{
margin-top:25px;
font-size:13px;
color:#666;
}



/* RESPONSIVE */

@media(max-width:1100px){

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

}

@media(max-width:800px){

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

}
/* MEVZUAT DUYURU KARTLARI */

.mevzuat-grid{
display:flex;
flex-direction:column;
gap:14px;
margin-top:10px;
}

.mevzuat-item{
display:flex;
align-items:center;
gap:12px;
background:rgba(255,255,255,0.05);
padding:10px;
border-radius:10px;
transition:all .25s ease;
position:relative;
}

.mevzuat-item:hover{
background:rgba(255,255,255,0.12);
transform:translateY(-2px);
}

.mevzuat-item img{
width:60px;
height:60px;
object-fit:cover;
border-radius:8px;
flex-shrink:0;
}

.mevzuat-text{
display:flex;
flex-direction:column;
gap:4px;
}

.mevzuat-text h4{
font-size:13px;
line-height:1.4;
color:white;
font-weight:500;
margin:0;
}

/* NEW ETIKETI */

.mevzuat-badge{
background:#38c6d9;
color:white;
font-size:10px;
padding:2px 6px;
border-radius:4px;
width:fit-content;
font-weight:600;
letter-spacing:.3px;
}

/* YENI HABER KARTI */

.mevzuat-new{
border-left:3px solid #38c6d9;
}
/* MEVZUAT DUYURULARI */

.mevzuat-grid{
display:grid;
grid-template-columns:1fr;
gap:14px;
margin-top:10px;
}

.mevzuat-item{
display:flex;
align-items:center;
background:rgba(255,255,255,0.08);
border-radius:10px;
overflow:hidden;
transition:.25s;
cursor:pointer;
}

.mevzuat-item:hover{
background:rgba(255,255,255,0.15);
transform:translateY(-2px);
}

.mevzuat-item img{
width:70px;
height:70px;
object-fit:cover;
}

.mevzuat-text{
padding:10px 14px;
color:white;
}

.mevzuat-text h4{
font-size:13px;
line-height:1.3;
font-weight:500;
}

.mevzuat-badge{
display:inline-block;
background:#38c6d9;
color:#0c1f3f;
font-size:10px;
padding:2px 6px;
border-radius:4px;
margin-bottom:4px;
font-weight:600;
}
.mevzuat-item img{
width:55px;
height:55px;
object-fit:cover;
}
.mevzuat-text h4{
font-size:12px;
}
.print-logo{
display:none;
text-align:center;
margin-bottom:20px;
}

.print-logo img{
height:60px;
}


/* PRINT */

@media print{

header,
.float-social,
.btn{
display:none;
}

.print-logo{
display:block;
}

body{
background:white;
}

}
/* GTIP ARAMA */

.gtip-search-wrapper{
max-width:900px;
margin:auto;
}

.gtip-card-box{
padding:30px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.gtip-top-text{
color:#667085;
margin-bottom:18px;
font-size:15px;
}

.gtip-search-row{
display:flex;
gap:12px;
align-items:stretch;
margin-bottom:16px;
flex-wrap:wrap;
}

.gtip-search-row input{
flex:1;
min-width:260px;
padding:14px 16px;
border-radius:10px;
border:1px solid #cfd8e3;
font-size:15px;
outline:none;
transition:.25s;
background:white;
}

.gtip-search-row input:focus{
border-color:#38c6d9;
box-shadow:0 0 0 4px rgba(56,198,217,.12);
}

.gtip-search-btn{
border:none;
background:#0f2747;
color:white;
padding:14px 22px;
border-radius:10px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.25s;
}

.gtip-search-btn:hover{
background:#38c6d9;
}

.gtip-example-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
align-items:center;
margin-bottom:16px;
}

.gtip-example-tags span{
font-size:14px;
color:#667085;
}

.gtip-tag{
border:1px solid #d7dee7;
background:white;
padding:8px 14px;
border-radius:999px;
font-size:13px;
cursor:pointer;
transition:.25s;
color:#1b1f2a;
}

.gtip-tag:hover{
background:#eef6fb;
border-color:#38c6d9;
color:#0f2747;
}

.gtip-suggestions{
display:flex;
flex-direction:column;
gap:10px;
margin-bottom:18px;
}

.gtip-suggestion-item{
background:#f8fbfd;
border:1px solid #dce6ef;
border-radius:12px;
padding:12px 14px;
cursor:pointer;
transition:.25s;
}

.gtip-suggestion-item:hover{
background:#eef6fb;
border-color:#38c6d9;
transform:translateY(-1px);
}

.gtip-suggestion-code{
display:block;
font-size:13px;
font-weight:700;
color:#0f2747;
margin-bottom:4px;
}

.gtip-suggestion-name{
display:block;
font-size:14px;
color:#344054;
}

.gtip-results{
display:grid;
gap:16px;
margin-top:10px;
}

.gtip-result-card{
background:white;
border:1px solid #e4eaf1;
border-radius:16px;
padding:20px;
box-shadow:0 8px 25px rgba(0,0,0,.04);
transition:.25s;
}

.gtip-result-card:hover{
transform:translateY(-3px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
border-color:rgba(56,198,217,.45);
}

.gtip-result-top{
display:flex;
justify-content:space-between;
gap:14px;
flex-wrap:wrap;
margin-bottom:10px;
}

.gtip-result-code{
font-size:20px;
font-weight:800;
color:#0f2747;
}

.gtip-result-name{
font-size:17px;
font-weight:700;
color:#1b1f2a;
}

.gtip-result-desc{
font-size:14px;
color:#667085;
margin-bottom:12px;
}

.gtip-result-keywords{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:12px;
}

.gtip-result-keywords span{
background:#eef6fb;
color:#0f2747;
font-size:12px;
padding:6px 10px;
border-radius:999px;
}

.gtip-result-note{
font-size:13px;
color:#667085;
border-top:1px solid #edf2f7;
padding-top:12px;
}

.gtip-empty{
background:#fff;
border:1px dashed #cfd8e3;
padding:18px;
border-radius:14px;
color:#667085;
font-size:14px;
}

@media(max-width:800px){

.gtip-search-row{
flex-direction:column;
}

.gtip-search-btn{
width:100%;
}

.gtip-card-box{
padding:22px;
}

.gtip-result-code{
font-size:18px;
}

.gtip-result-name{
font-size:16px;
}

}
/* GTIP V1 EK STILLER */
.gtip-suggestion-item{
width:100%;
text-align:left;
border:none;
}

.gtip-result-badge{
background:#eef6fb;
color:#0f2747;
padding:8px 12px;
border-radius:999px;
font-size:13px;
font-weight:700;
height:fit-content;
}

.gtip-meta-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
margin:16px 0;
}

.gtip-meta-item{
background:#f8fafc;
border:1px solid #e5edf5;
border-radius:12px;
padding:12px 14px;
}

.gtip-meta-label{
display:block;
font-size:12px;
color:#667085;
margin-bottom:4px;
}

.gtip-actions{
margin-top:16px;
display:flex;
justify-content:flex-start;
}

@media(max-width:800px){
.gtip-meta-grid{
grid-template-columns:1fr;
}
}
.gtip-result-desc strong{
color:#0f2747;
}
.gtip-engine-info{
background:#eef6fb;
border:1px solid #d9eaf5;
padding:14px 16px;
border-radius:12px;
margin-bottom:16px;
font-size:14px;
color:#344054;
}

.gtip-clarify-box{
background:#fff8e8;
border:1px solid #f3d48b;
padding:14px 16px;
border-radius:12px;
margin-bottom:16px;
font-size:14px;
color:#5f4200;
}

.gtip-clarify-box strong{
display:block;
margin-bottom:8px;
}

.gtip-clarify-list{
margin:0;
padding-left:18px;
}
.gtip-note-block{
margin-bottom:10px;
}

.gtip-note-block strong{
display:block;
margin-bottom:4px;
color:#0f2747;
font-size:13px;
}

.gtip-note-block span{
display:block;
font-size:13px;
line-height:1.6;
color:#667085;
}

.gtip-note-list{
margin:6px 0 0;
padding-left:18px;
color:#667085;
font-size:13px;
line-height:1.6;
}
/* GTIP TEST / BETA */

.gtip-beta-banner{
max-width:850px;
margin:0 auto 18px auto;
background:linear-gradient(135deg,#fff8e8,#fff3cd);
border:1px solid #f3d48b;
color:#5f4200;
padding:14px 16px;
border-radius:12px;
font-size:14px;
line-height:1.6;
box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.gtip-beta-banner strong{
color:#7a4b00;
}

.gtip-card-box{
position:relative;
overflow:hidden;
}

.gtip-beta-badge{
position:absolute;
top:16px;
right:16px;
background:rgba(15,39,71,.92);
color:#fff;
font-size:11px;
font-weight:700;
letter-spacing:.8px;
padding:6px 10px;
border-radius:999px;
box-shadow:0 8px 20px rgba(0,0,0,.12);
z-index:2;
}

/* GTIP GUVEN SKORU */

.gtip-confidence{
display:flex;
align-items:center;
gap:10px;
margin:12px 0 14px;
padding:10px 12px;
border-radius:12px;
background:#f8fafc;
border:1px solid #e5edf5;
}

.gtip-confidence-label{
font-size:13px;
font-weight:700;
color:#0f2747;
white-space:nowrap;
}

.gtip-confidence-bar{
flex:1;
height:8px;
background:#e9eef5;
border-radius:999px;
overflow:hidden;
position:relative;
}

.gtip-confidence-fill{
height:100%;
border-radius:999px;
background:linear-gradient(90deg,#f59e0b,#38c6d9,#0f766e);
transition:width .3s ease;
}

.gtip-confidence-value{
font-size:13px;
font-weight:700;
color:#0f2747;
min-width:42px;
text-align:right;
}

/* BETA ICIN HAFIF FILIGRAN */

.gtip-card-box::after{
content:"TEST SÜRÜMÜ";
position:absolute;
bottom:18px;
right:18px;
font-size:26px;
font-weight:800;
color:rgba(15,39,71,.05);
pointer-events:none;
letter-spacing:1px;
}

/* MOBIL */

@media(max-width:800px){

.gtip-beta-badge{
top:14px;
right:14px;
font-size:10px;
padding:5px 9px;
}

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

.gtip-confidence-value{
min-width:auto;
}
}