/* SHARED STYLES — Pillar landing pages */

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

body {
    font-family: 'Tajawal', sans-serif;
    background: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: #c9a84c; color: #000; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 32px; width: auto; }
.nav-back { font-size: 0.85rem; color: #ddd; transition: color 0.3s; }
.nav-back:hover { color: #fff; }

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.hero h1 em { font-style: normal; color: #c9a84c; }

.hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #fff;
    max-width: 460px;
    line-height: 2;
}

.hero-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.85rem 2.5rem;
    background: #c9a84c;
    color: #000;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.3s;
}

.hero-btn:hover { background: #d4b65e; }

/* DIVIDER */
.divider { width: 40px; height: 1px; background: #333; margin: 0 auto; }

/* PAIN SECTION */
.section {
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.points { list-style: none; }

.points li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #151515;
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    padding-right: 1.5rem;
    position: relative;
}

.points li::before {
    content: '';
    position: absolute;
    right: 0; top: 1.65rem;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #c9a84c;
}

/* 7-DAY SECTION */
.days {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.days h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.days-sub {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 4rem;
}

.day-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid #151515;
}

.day-item:first-child { border-top: 1px solid #151515; }

.day-num {
    font-size: 0.7rem;
    font-weight: 500;
    color: #c9a84c;
    letter-spacing: 0.15em;
    flex-shrink: 0;
    width: 50px;
}

.day-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.day-content p { font-size: 0.9rem; font-weight: 300; color: #ddd; line-height: 1.7; }

/* CTA / FORM */
.cta {
    max-width: 420px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem;
    text-align: center;
}

.cta h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.8rem; }
.cta .sub { font-size: 0.95rem; font-weight: 300; color: #ddd; margin-bottom: 2.5rem; line-height: 1.8; }

.form-field { margin-bottom: 0.8rem; }

.form-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-field input::placeholder { color: #555; }
.form-field input:focus { border-color: #444; }

.form-btn {
    width: 100%;
    padding: 0.9rem;
    background: #c9a84c;
    color: #000;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.4rem;
}

.form-btn:hover { background: #d4b65e; }
.form-note { font-size: 0.75rem; color: #555; margin-top: 1rem; }

/* FOOTER */
footer { padding: 2rem; text-align: center; border-top: 1px solid #0d0d0d; }
footer a { font-size: 0.8rem; color: #444; transition: color 0.3s; }
footer a:hover { color: #c9a84c; }

/* RESPONSIVE */
@media (max-width: 700px) {
    nav { padding: 1rem 1.2rem; }

    .hero { padding: 0 1.5rem; }

    .hero h1 { font-size: clamp(1.7rem, 7vw, 2.5rem); }

    .hero p { font-size: 0.95rem; }

    .section {
        padding: 4rem 1.5rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    .points li {
        font-size: 0.95rem;
    }

    .days {
        padding: 4rem 1.5rem;
    }

    .days h2 {
        font-size: 1.3rem;
    }

    .day-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .day-num { width: auto; }

    .cta {
        padding: 4rem 1.5rem 6rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section h2, .days h2, .cta h2 {
        font-size: 1.2rem;
    }
}
