
:root {
    --accent: #ff2b63;
    --accent-2: #ff476f;
    --muted: #6f7480;
    --dark: #07121a;
    --bg: #ffffff;
    --container: 1200px;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family:
        Heebo,
        "Nunito",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial;
    color: #111;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: var(--container);
    width: 94%;
    margin: 0 auto;
}

/* -------------------------
       Topbar + Nav
    ------------------------- */
.topbar {
    background: #181818;
    color: #cfeee4;
    font-size: 12px;
    padding: 7px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header {
    position: relative;
}
.site-header .logo a{
    text-decoration: none;
}
.site-header .logo h2{
    font-size: 25px;
    text-transform: capitalize;
    color: #ff2b63;
}
.nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    z-index: 60;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.2px;
    text-transform: lowercase;
}
.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.95;
    font-size: 18px;
}
.nav-links a:hover{
    color: #ff2b63;
}
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}
.cta-main {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    padding: 11px 20px;
    border-radius: 28px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 43, 99, 0.12);
}
.cta-main:hover{
    background: #c41f4b;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
}

/* -------------------------
       HERO
    ------------------------- */
.hero {
    height: 640px;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 26, 0.64) 0%, rgba(7, 18, 26, 0.64) 100%);
}
.hero .container {
    position: relative;
    z-index: 10;
}
.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.hero h1 {
    font-size: 46px;
    line-height: 1.06;
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}
.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}
.hero .hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .small-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-top: 8px;
}

/* -------------------------
       Section basics
    ------------------------- */
section {
    padding: 90px 0;
}
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}
.section-lead {
    max-width: 820px;
    margin: 8px auto 28px;
    color: var(--muted);
    text-align: center;
    font-size: 15px;
}

.problem-section{
    background: #fff5f8;
    padding: 80px 0;
}


/* -------------------------
       Features (icons)
    ------------------------- */
.features {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}
.feature {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}
.feature .icon {
    height: 62px;
    width: 62px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 43, 99, 0.06), rgba(255, 43, 99, 0.02));
}
.feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}
.feature p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* -------------------------
       How It Works (steps)
    ------------------------- */
.how {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 220px;
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.step .num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}
.step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.step p {
    color: var(--muted);
    font-size: 14px;
}

/* -------------------------
       Value / Why it works
    ------------------------- */
.why-section{
    background: #fff5f8;
}    
.why-section p{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6em;
}
.why-section .why-cta{
    text-align: center;
    margin-top: 40px;
}
.why-section .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.why-section .btn-ghost:hover{
    background: #000;
    color: #fff;
}

/* -------------------------
       Audience / target
    ------------------------- */
.targets {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.target {
    background: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 160px;
    text-align: center;
    font-weight: 700;
    color: #222;
}

/* -------------------------
       Testimonials
    ------------------------- */
.testimonial-section{
    background: #fff5f8;
}
.testimonials {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-size: 14px;
    color: var(--muted);
}

/* -------------------------
       Workforce
    ------------------------- */
.workfource {
    background: #fff5f8;
}
.workfource .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.workfource p{
    max-width: 700px;
}
.workfource  .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.workfource .btn-ghost:hover{
    background: #000;
    color: #fff;
}
/* -------------------------
       Contact + footer
    ------------------------- */
.contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 26px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}
.contact-form {
    flex: 1;
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    font-size: 14px;
}
.contact-form input:focus{
    outline: none;
}
.contact-form textarea:focus{
    outline: none;
}
.contact-form button {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 800;
    cursor: pointer;
}
.contact-form button:hover{
    background: #c41f4b;
}
.map {
    flex: 1;
    min-width: 320px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.site-footer h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
.site-footer ul{
    list-style-type: none;
}
.site-footer ul li{
    margin-bottom: 7px;
}
.site-footer ul li a{
    color: #9bb0c0;
    text-decoration: none;
}
.site-footer ul li a:hover{
    color: #ff2b63;
}
footer.site-footer {
    background: linear-gradient(180deg, #041421 0%, #07121a 100%);
    color: #9bb0c0;
    
}
footer .grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 80px 0;
}
footer .copyright{
    text-align: center;
}
footer .copyright p{
    padding: 30px;
    border-top: 1px solid #152b3d;
}

/* -------------------------
       Animations
    ------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.fade-up.in {
    opacity: 1;
    transform: none;
}
.btn-ghost {
    background: transparent;
    border: 1px solid #e7edf0;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
}
.btn-ghost:hover{
    background: #fff;
    color: #000;
}
.top-left-text{
    font-size: 13px;
    color: #ddd;
}
.micro {
    font-size: 14px;
    color: #303030;
}
.topbar .micro {
    font-size: 14px;
    color: #ddd;
}

/* -------------------------
       Micro spacing to match screenshot
    ------------------------- */

.feature p {
    min-height: 64px;
}
.testimonial p {
    min-height: 72px;
}

/* About page css */
.about-hero {
    height: 300px;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: top;
    position: relative;
    display: flex;
    align-items: center;
}
.about-hero h1{
    margin-top: 60px;
}
.about-section{
    padding: 80px 0;
}
.about-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;

}
.about-section .image img{
    width: 100%;
}
.about-section .text h2{
    font-size: 30px;
    margin-bottom: 10px;
}
.about-section .text p{
    margin-bottom: 10px;
}
.about-section .text .about-cta{
    margin-top: 30px;
}
.about-section .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.about-section .btn-ghost:hover{
    background: #000;
    color: #fff;
}
.different-section{
    background: #fff5f8;
    padding: 80px;
}
.different-section .caption h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.different-section .caption p{
    margin-bottom: 15px;
    line-height: 1.6em;
}
.different-section .caption ul{
    margin-left: 40px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.different-section .caption ul li{
    margin-bottom: 10px;
}
.different-section .about-cta{
    margin-top: 30px;
    text-align: center;
}
.different-section .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.different-section .btn-ghost:hover{
    background: #000;
    color: #fff;
}
.building-section {
    padding: 80px 0;
}
.building-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;

}
.building-section .image img{
    width: 100%;
}
.building-section .text h2{
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 40px;
}
.building-section .text p{
    margin-bottom: 10px;
}
.building-section .text .about-cta{
    margin-top: 30px;
}
.building-section .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.building-section .btn-ghost:hover{
    background: #000;
    color: #fff;
}


/* Advertise page css */
.advertise-hero{
    height: 400px;
}
.advertise-hero p{
    max-width: 700px;
    margin: auto;
}
.advertise-section {
    padding: 80px;

}
.advertise-section h2{
    text-align: center;
    font-size: 30px;
}
.reach-section{
    background: #fff5f8;
    padding: 80px 0;
}
.reach-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.reach-section .text h2{
    font-size: 30px;
}
.reach-section .text ul{
    margin-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.reach-section .text ul li{
    margin-bottom: 8px;
}
.reach-section .image img{
    width: 100%;
}
.reach-section .text .about-cta{
    margin-top: 30px;
}
.reach-section .btn-ghost{
    color: #000;
    border: 2px solid #000;
    background: transparent;
    margin-left: 10px;
}
.reach-section .btn-ghost:hover{
    background: #000;
    color: #fff;
}

/* -------------------------
       Responsive
    ------------------------- */
@media (max-width: 1000px) {
    .hero {
        height: 520px;
    }
    .hero .hero-inner{
        padding: 20px;
    }
    .hero h1 {
        font-size: 30px;
        margin-top: 30px;
    }
    .hero p{
        font-size: 14px;
    }
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    .how {
        gap: 16px;
    }
}
@media (max-width: 700px) {
    .topbar{
        display: none;
    }
    .nav{
        top: 10px;
    }
    .nav-links {
        display: none;
        width: 100%;
        right: 0 !important;
        background: rgba(0, 0, 0, 0.90) !important;
        top: 70px !important;
        padding: 10px 10px !important;
        gap: 0;
    }
    .nav-links a{
        border-bottom: 1px solid #535353;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    .nav-links a:last-child{
        border-bottom: none;
    }
    .mobile-toggle {
        display: block;
        font-size: 25px;
    }
    .site-header .logo h2{
        font-size: 20px;
    }
    .cta-main{
        font-size: 14px;
        padding: 10px 15px;
    }
    .hero {
        height: 480px;
    }
    .features {
        gap: 20px;
    }
    .value {
        flex-direction: column;
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .partners .row {
        gap: 18px;
    }
    footer .grid {
        grid-template-columns: 1fr 1fr;
    }
    section{
        padding: 60px 10px;
    }
    .feature{
        width: 100%;
        padding: 30px;
    }
    .section-title{
        font-size: 25px;
        margin-bottom: 15px;
    }
    .problem-section{
        padding: 60px 20px;
    }
    .step{
        padding: 30px;
    }
    .testimonial{
        padding: 30px;
    }
    .testimonial strong{
        display: block;
        font-size: 16px;
        margin-bottom: 8px;
    }
    footer .grid{
        padding: 60px 15px;
    }
    footer .copyright p{
        padding: 20px;
    }
    .about-hero{
        height: 260px !important;
    }
    .about-hero h1{
        font-size: 30px !important;
    }
    .about-section{
        padding: 60px 20px;
    }
    .about-section .row{
        grid-template-columns: repeat(1, 1fr);
    }
    .about-section .text h2{
        font-size: 25px;
    }
    .different-section {
        padding: 60px 20px;
    }
    .different-section .caption h2{
        font-size: 25px;
    }
    .building-section{
        padding: 60px 20px;
    }
    .building-section .row {
        grid-template-columns: repeat(1, 1fr);
    }
    .building-section .text h2{
        font-size: 25px;
        margin-top: 0;
    }
    .advertise-hero{
        height: 300px !important;
    }
    .advertise-hero h1{
        margin-top: 40px;
    }
    .reach-section{
        padding: 60px 20px;
    }
    .reach-section .row {
        grid-template-columns: repeat(1, 1fr);
    }
    .reach-section .image img{
        margin-top: 20px;
    }
    .about-section .text ul{
        margin-left: 20px;
        margin-bottom: 15px;
    }


}
@media (max-width: 420px) {
    .hero {
        height: 420px;
    }
    .hero h1 {
        font-size: 24px;
    }
    footer .grid {
        grid-template-columns: 1fr;
    }
}
