/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}

body, html {
    background: #f7f7f7;
    overflow-x: hidden; /* Prevent horizontal scrolling globally */
    color: #1a1a1a;
    width: 100%;
}

/* ================= NAVBAR (DESKTOP) ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo span img {
    display: block;
    max-width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f4b400;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f4b400;
}

.nav-right .btn {
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    background: #f4b400;
    color: #000;
}

.nav-right .btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}


/* BUTTON */
.btn{
    padding:8px 16px;
    border-radius:4px;
    text-decoration:none;
}

.btn-red{
    background:#000;
    color:#fff;
}

/* PAGE */
.page{
    max-width:750px;
    margin:auto;
    padding:40px 20px;
}

/* TITLE */
.title{
    font-size:36px;
    margin-bottom:20px;
    text-align:center;
}

/* IMAGE */
.hero-img,
.section-img{
    width:100%;
    margin:20px 0;
}

/* CONTENT */
.content-box{
    margin-bottom:30px;
}

/* TEXT */
.content-box p{
    margin-bottom:15px;
    font-size:16px;
}

/* HEADINGS */
.content-box h2{
    font-size:24px;
    margin:25px 0 10px;
}

.content-box h3{
    font-size:20px;
    margin:20px 0 10px;
}

/* STATS */
.stats{
    margin:20px 0;
}

.stat{
    margin-bottom:10px;
}

/* QUOTE */
.quote-box{
    border-left:3px solid #000;
    padding-left:15px;
    font-style:italic;
    margin:20px 0;
}

/* STRATEGY BOX */
.strategy-box{
    background:#f5f5f5;
    padding:15px;
    margin-top:15px;
}

/* VOICE TIPS */
.tip-item{
    margin-bottom:15px;
}

/* FAQ */
.faq-item{
    border-top:1px solid #ddd;
    padding:10px 0;
}

.faq-item input{
    display:none;
}

.faq-question{
    cursor:pointer;
    font-weight:bold;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.3s;
}

.faq-item input:checked ~ .faq-answer{
    max-height:300px;
}

/* CHECKLIST */
.checklist p{
    margin-bottom:10px;
}





/* ================= FOOTER ================= */
.footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 80px 10%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-brand p, .footer-col ul li {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-col h4 {
    color: #febf03;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: #ffffff; }

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #febf03;
    color: #000;
}
