/* =========================================================
   SEAACADEMYIK
   ATS UYUMLU CV REHBERİ
========================================================= */

:root{
    --ats-primary:#0d1b2a;
    --ats-secondary:#132238;
    --ats-accent:#ff7a00;

    --ats-text:#1f2937;
    --ats-muted:#64748b;

    --ats-bg:#f5f7fb;
    --ats-white:#ffffff;

    --ats-border:#e5e7eb;

    --ats-shadow:
    0 10px 35px rgba(15,23,42,0.08);

    --ats-radius:26px;

    --ats-transition:
    all .35s ease;
}

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;

    background:var(--ats-bg);

    color:var(--ats-text);

    line-height:1.75;

    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    padding-left:22px;
}

/* =========================================================
   CONTAINER
========================================================= */

.ats-container{
    width:100%;
    max-width:1320px;

    margin:0 auto;

    padding-left:20px;
    padding-right:20px;
}

/* =========================================================
   HERO
========================================================= */

.ats-hero{
    position:relative;
    overflow:hidden;

    padding:
    90px 0 80px;

    background:
    linear-gradient(
        135deg,
        #0d1b2a 0%,
        #132238 45%,
        #1d3557 100%
    );
}

.ats-hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,122,0,0.18),
        transparent 35%
    );

    pointer-events:none;
}

.ats-hero .ats-container{
    display:grid;
    grid-template-columns:1fr 580px;
    align-items:center;
    gap:70px;
}

.ats-badge{
    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    color:#fff;

    font-size:14px;
    font-weight:800;

    margin-bottom:26px;

    backdrop-filter:blur(10px);
}

.ats-hero h1{
    font-size:58px;
    line-height:1.08;

    color:#fff;

    font-weight:900;

    letter-spacing:-1.5px;

    margin-bottom:26px;
}

.ats-hero p{
    font-size:19px;

    color:
    rgba(255,255,255,0.86);

    margin-bottom:36px;

    max-width:760px;
}

.ats-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.ats-btn-primary,
.ats-btn-secondary{
    min-height:58px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:0 28px;

    border-radius:18px;

    font-size:15px;
    font-weight:800;

    transition:var(--ats-transition);
}

.ats-btn-primary{
    background:var(--ats-accent);

    color:#fff;

    box-shadow:
    0 14px 35px rgba(255,122,0,0.30);
}

.ats-btn-primary:hover{
    transform:translateY(-4px);
}

.ats-btn-secondary{
    border:
    1px solid rgba(255,255,255,0.14);

    background:
    rgba(255,255,255,0.06);

    color:#fff;

    backdrop-filter:blur(8px);
}

.ats-btn-secondary:hover{
    background:
    rgba(255,255,255,0.12);
}

.ats-hero-image img{
    width:100%;

    border-radius:32px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.30);

    object-fit:cover;
}

/* =========================================================
   SUMMARY
========================================================= */

.ats-summary{
    position:relative;
    z-index:5;

    margin-top:-40px;
}

.ats-summary-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.ats-summary-card{
    background:#fff;

    border-radius:24px;

    padding:34px 28px;

    text-align:center;

    box-shadow:var(--ats-shadow);

    border:
    1px solid rgba(0,0,0,0.05);
}

.ats-summary-card strong{
    display:block;

    font-size:40px;
    line-height:1;

    color:var(--ats-primary);

    margin-bottom:14px;

    font-weight:900;
}

.ats-summary-card span{
    color:var(--ats-muted);

    font-size:15px;
    font-weight:600;
}

/* =========================================================
   CONTENT
========================================================= */

.ats-content{
    padding:110px 0 60px;
}

.ats-article{
    background:#fff;

    border-radius:34px;

    padding:70px;

    box-shadow:var(--ats-shadow);

    border:
    1px solid rgba(0,0,0,0.04);
}

.ats-article h2{
    font-size:42px;
    line-height:1.2;

    color:var(--ats-primary);

    margin-top:50px;
    margin-bottom:22px;

    font-weight:900;

    letter-spacing:-1px;
}

.ats-article h2:first-child{
    margin-top:0;
}

.ats-article h3{
    font-size:30px;
    line-height:1.3;

    color:var(--ats-primary);

    margin-top:34px;
    margin-bottom:18px;

    font-weight:800;
}

.ats-article h4{
    font-size:22px;

    color:var(--ats-primary);

    margin-bottom:14px;

    font-weight:800;
}

.ats-article p{
    font-size:17.5px;

    color:var(--ats-text);

    margin-bottom:22px;
}

.ats-article ul{
    margin-bottom:28px;
}

.ats-article li{
    margin-bottom:14px;

    font-size:17px;

    color:var(--ats-text);
}

/* =========================================================
   INFO BOX
========================================================= */

.ats-info-box{
    background:
    linear-gradient(
        135deg,
        rgba(255,122,0,0.08),
        rgba(255,122,0,0.03)
    );

    border-left:
    5px solid var(--ats-accent);

    padding:34px;

    border-radius:24px;

    margin:40px 0;
}

.ats-info-box strong{
    display:block;

    color:var(--ats-primary);

    font-size:20px;
    font-weight:900;

    margin-bottom:14px;
}

.ats-info-box p{
    margin-bottom:0;
}

/* =========================================================
   EXAMPLE BOX
========================================================= */

.ats-example-box{
    background:#f8fafc;

    border:
    1px solid #e2e8f0;

    border-radius:24px;

    padding:34px;

    margin:38px 0;
}

.ats-example-box p{
    margin-bottom:12px;

    color:#334155;

    font-weight:600;
}

.ats-example-box p:last-child{
    margin-bottom:0;
}

/* =========================================================
   TABLE
========================================================= */

table{
    width:100%;

    border-collapse:collapse;

    margin:36px 0;
}

table th,
table td{
    border:
    1px solid #e5e7eb;

    padding:16px;

    text-align:left;
}

table th{
    background:#f8fafc;

    color:var(--ats-primary);

    font-weight:800;
}

table td{
    color:var(--ats-text);
}

/* =========================================================
   SECTION TITLE
========================================================= */

.ats-section-title{
    text-align:center;

    margin-bottom:60px;
}

.ats-section-title span{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,122,0,0.10);

    color:var(--ats-accent);

    font-size:14px;
    font-weight:800;

    margin-bottom:18px;
}

.ats-section-title h2{
    font-size:42px;
    line-height:1.2;

    color:var(--ats-primary);

    font-weight:900;

    letter-spacing:-1px;
}

/* =========================================================
   FAQ
========================================================= */

.ats-faq{
    padding-bottom:90px;
}

.ats-faq-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.ats-faq-item{
    background:#fff;

    border-radius:26px;

    padding:34px;

    box-shadow:var(--ats-shadow);

    border:
    1px solid rgba(0,0,0,0.05);
}

.ats-faq-item h3{
    font-size:24px;
    line-height:1.35;

    color:var(--ats-primary);

    margin-bottom:16px;

    font-weight:900;
}

.ats-faq-item p{
    font-size:16px;

    color:var(--ats-muted);
}

/* =========================================================
   IMAGE
========================================================= */

.ats-article img{
    border-radius:24px;

    margin:34px 0;

    box-shadow:
    0 15px 45px rgba(15,23,42,0.10);
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#edf2f7;
}

::-webkit-scrollbar-thumb{
    background:var(--ats-accent);
    border-radius:999px;
}

/* =========================================================
   SELECTION
========================================================= */

::selection{
    background:var(--ats-accent);
    color:#fff;
}

/* =========================================================
   ANIMATION
========================================================= */

.ats-summary-card,
.ats-article,
.ats-info-box,
.ats-example-box,
.ats-faq-item{
    animation:atsFade .6s ease;
}

@keyframes atsFade{

    from{
        opacity:0;
        transform:translateY(24px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .ats-hero .ats-container{
        grid-template-columns:1fr;
    }

    .ats-summary-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .ats-hero{
        padding:70px 0 60px;
    }

    .ats-hero h1{
        font-size:40px;
    }

    .ats-hero p{
        font-size:16px;
    }

    .ats-actions{
        flex-direction:column;
    }

    .ats-btn-primary,
    .ats-btn-secondary{
        width:100%;
    }

    .ats-summary-grid{
        grid-template-columns:1fr;
    }

    .ats-content{
        padding-top:80px;
    }

    .ats-article{
        padding:34px 24px;
        border-radius:26px;
    }

    .ats-article h2{
        font-size:31px;
    }

    .ats-article h3{
        font-size:25px;
    }

    .ats-section-title h2{
        font-size:31px;
    }

    .ats-faq-item{
        padding:28px 22px;
    }

    table{
        display:block;
        overflow-x:auto;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .ats-container{
        padding-left:16px;
        padding-right:16px;
    }

    .ats-hero h1{
        font-size:34px;
    }

    .ats-article h2{
        font-size:28px;
    }

    .ats-article h3{
        font-size:22px;
    }

    .ats-summary-card strong{
        font-size:34px;
    }

}