/* RESET */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* HEADER */

header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    max-width:1400px;
    margin:0 auto;

    padding:25px 50px;

    border-bottom:1px solid #ececec;

    background:#fff;

}

.logo h2{

    font-size:34px;
    font-weight:700;
    color:#FFB800;
    margin:0;

}

.logo span{

    display:block;
    margin-top:2px;

    font-size:12px;
    color:#777;
    letter-spacing:.5px;

}

    

}

nav{

    display:flex;
    align-items:center;
    gap:35px;
    margin-left:auto;

}

nav a{

    display:inline-block;
    padding:8px 6px;

    text-decoration:none;
    color:#444;

    font-size:16px;
    font-weight:500;

    transition:.3s;

}
nav a:hover{

    color:#FFB000;

}

/* HERO */

.hero{

    max-width:850px;

    margin:140px auto 120px;

    text-align:center;

    padding:0 20px;

}

.hero h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:#666;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:#FFB000;

    color:#fff;

    text-decoration:none;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

}

.btn-secondary{

    border:1px solid #FFB000;

    color:#FFB000;

    text-decoration:none;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

}/* SERVICES */

.services{
    padding:100px 80px;
    background:#fafafa;
}

.services h2{
    text-align:center;
    font-size:40px;
    margin-bottom:60px;
}

.services-grid{
    max-width:1200px;
    margin:0 auto;

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

.service-card{
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:35px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.service-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}/* CORE SOLUTIONS */

.solutions{
    max-width:1200px;
    margin:100px auto;
    padding:0 30px;
}

.section-heading{
    text-align:center;
    margin-bottom:55px;
}

.section-heading span{
    color:#FFB800;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    margin:10px 0 15px;
}

.section-heading p{
    max-width:700px;
    margin:0 auto;
    color:#666;
    font-size:18px;
}

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.solution-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:32px;
    transition:.3s;
}

.solution-card:hover{
    border-color:#FFB800;
    transform:translateY(-4px);
}

.solution-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.solution-card p{
    color:#666;
    font-size:16px;
}

/* INDUSTRIES */

.industries{
    max-width:1200px;
    margin:100px auto;
    padding:0 30px;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:32px;
    transition:.3s;
}

.industry-card:hover{
    border-color:#FFB800;
    transform:translateY(-4px);
}

.industry-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.industry-card p{
    color:#666;
    font-size:16px;
}
/* WHY GATIN */

.why-gatin{
    max-width:1200px;
    margin:100px auto;
    padding:0 30px;
}

.why-gatin-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:32px;
    transition:.3s;
}

.why-card:hover{
    border-color:#FFB800;
    transform:translateY(-4px);
}

.why-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    font-size:16px;
}
/* PROCESS */
.process{
    max-width:1200px;
    margin:100px auto;
    padding:0 30px;
}

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

.process-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:32px;
    transition:.3s;
}

.process-card:hover{
    border-color:#FFB800;
    transform:translateY(-4px);
}

.process-card span{
    display:block;
    color:#FFB800;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.process-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.process-card p{
    color:#666;
    font-size:16px;
}
/* CTA / CONTACT */

.cta{
    max-width:1200px;
    margin:100px auto;
    padding:80px 30px;
    text-align:center;
}

.cta span{
    color:#FFB800;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.cta h2{
    font-size:42px;
    margin:10px 0 15px;
}

.cta p{
    max-width:700px;
    margin:0 auto 30px;
    color:#666;
    font-size:18px;
}

.cta-button{
    display:inline-block;
    background:#FFB000;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.cta-button:hover{
    background:#e6a000;
    transform:translateY(-2px);
}
/* RESPONSIVE */

@media (max-width: 768px){

    header{
        padding:20px;
        flex-direction:column;
        gap:20px;
    }

    nav{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        margin:80px auto 70px;
    }

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

    .services,
    .solutions,
    .why-gatin{
        padding-left:20px;
        padding-right:20px;
    }

    .services-grid,
    .solutions-grid,
    .why-gatin-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }

}
/* FINAL MOBILE ADJUSTMENTS */

@media (max-width:600px){

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .services,
    .solutions,
    .why-gatin,
    .industries,
    .process{
        padding-left:20px;
        padding-right:20px;
    }

}