:root{
    --black:#0d0d0d;
    --dark:#151515;
    --gold:#d4af37;
    --gold-light:#f0c75e;
    --white:#ffffff;
    --gray:#cfcfcf;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--black);
    color:var(--white);
    font-family:'Poppins', sans-serif;
    line-height:1.7;
}

/* HEADER */

header{
background:#0d0d0d;
border-bottom:2px solid var(--gold);
padding:8px 20px;
position:sticky;
top:0;
z-index:1000;
}

header h1{
    color:var(--gold);
    font-size:42px;
    margin-bottom:15px;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
width:95%;
max-width:1200px;
margin:8px auto 0 auto;
gap:8px;
}

nav a{
flex:1;
text-align:center;
color:white;
text-decoration:none;
padding:8px 6px;
font-size:15px;
font-weight:600;
border:1px solid rgba(212,175,55,.25);
border-radius:6px;
background:#1a1a1a;
transition:all .3s ease;
line-height:1.2;
}

nav a:hover{
background:var(--gold);
color:black;
box-shadow:0 0 12px rgba(212,175,55,.35);
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.08),
    transparent 35%),

    linear-gradient(
    135deg,
    #080808,
    #111111,
    #0a0a0a
    );

    padding:140px 20px;
    text-align:center;
}
.hero-content{
    max-width:1100px;
    margin:auto;
}

.hero h2{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    max-width:1000px;
    margin:0 auto 25px auto;
    color:white;
}

.hero p{
    max-width:900px;
    margin:20px auto;
    color:#d0d0d0;
    font-size:18px;
}

/* BUTTONS */

.btn{
    display:inline-block;
    margin:10px;
    padding:16px 34px;
    background:var(--gold);
    color:#111;
    text-decoration:none;
    font-weight:700;
    border-radius:10px;
    transition:.3s;
}

.btn:hover{
    background:var(--gold-light);
    transform:translateY(-2px);
}

.secondary-btn{
    background:#222;
    color:white;
    border:1px solid var(--gold);
}

/* SECTIONS */

.section{
    width:90%;
    max-width:1200px;
    margin:50px auto;
    padding:45px;
    background:linear-gradient(
        180deg,
        #181818,
        #141414
    );
    border:1px solid #2d2d2d;
    border-radius:18px;
    position:relative;
}

.section h2{
    color:var(--gold);
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
    text-shadow:0 0 8px rgba(212,175,55,.15);
}

.section h3{
    color:var(--gold);
    margin-bottom:15px;
}

.section p{
    font-size:17px;
    line-height:1.9;
}

/* TRUST CARDS */

.trust-bar{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.trust-card{
    flex:1;
    min-width:220px;
    background:#1b1b1b;
    border:1px solid rgba(212,175,55,.35);
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
}

.eco-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 20px rgba(212,175,55,.18);
}
.trust-card h3{
    color:var(--gold);
    font-size:30px;
}

/* ECOSYSTEM */

.ecosystem-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.eco-card{
    background:#181818;
    padding:30px;
    border-left:4px solid var(--gold);
    border-radius:14px;
    transition:.3s;
}
.eco-card h3{
    color:var(--gold);
    margin-bottom:15px;
    font-size:22px;
}

.eco-card:hover{
    transform:translateY(-5px);
}

/* CELL STORE */

.cellstore-banner{
    background:
    linear-gradient(
    135deg,
    #1a1a1a,
    #242424
    );
    border:1px solid var(--gold);
    padding:35px;
    border-radius:15px;
    margin-bottom:30px;
}

.cellstore-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.cell-card{
    background:#181818;
    border-top:3px solid var(--gold);
    padding:25px;
    border-radius:12px;
    transition:.3s;
}

.cell-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 20px rgba(212,175,55,.18);
}
.cell-card ul{
    padding-left:20px;
}

.cell-card li{
    margin-bottom:10px;
}

/* CONTACT */

.contact-box{
    background:#181818;
    border-left:4px solid var(--gold);
    padding:25px;
    border-radius:10px;
}

/* LISTS */

ul{
    padding-left:25px;
}

li{
    margin-bottom:10px;
    color:#d8d8d8;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:25px;
    z-index:9999;
    background:var(--gold);
    color:#111;
    text-decoration:none;
    padding:12px 20px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 0 20px rgba(212,175,55,.4);
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

/* FOOTER */

footer{
    background:#000;
    border-top:2px solid var(--gold);
    color:#999;
    text-align:center;
    padding:30px;
    margin-top:40px;
}

/* MOBILE */

@media(max-width:768px){

    header h1{
        font-size:28px;
    }

    .hero h2{
    font-size:60px;
    color:white;
    margin-bottom:25px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.15;
}
    .section{
        padding:25px;
    }

    .trust-bar{
        flex-direction:column;
    }
}
.eco-card a{
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

.eco-card a:hover{
    color:var(--gold-light);
}
.eco-card a{
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

.eco-card a:hover{
    color:var(--gold-light);
}

.eco-card{
    transition:0.3s;
}

.eco-card:hover{
    transform:translateY(-5px);
}
.logo-area{
    width:100%;
    max-width:1200px;
    margin:auto;
    text-align:left;
}

.company-name{
    display:flex;
    justify-content:flex-start;
    align-items:baseline;
    gap:15px;
}

.brand-name{
    font-size:58px;
    font-weight:800;
    color:var(--gold);
}

.company-type{
    font-size:24px;
    color:#cfcfcf;
    font-weight:600;
}

.tagline{
    color:var(--gold);
    font-size:18px;
    letter-spacing:1px;
    margin-top:10px;
}
.tagline{
    color:#d4af37;
    font-size:16px;
    letter-spacing:1px;
    margin-top:5px;
}

.company-type{
    color:#999;
    font-size:14px;
}
.hero-stats{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:35px 0;
}

.hero-stats div{
    border:1px solid #d4af37;
    padding:15px 25px;
    border-radius:10px;
    min-width:140px;
}

.hero-stats h3{
    color:#d4af37;
    margin-bottom:5px;
}
footer hr{
    margin:20px auto;
    border:none;
    border-top:1px solid #333;
    max-width:400px;
}
#about,
#services,
#cellstore,
#rewards,
#contact{
    scroll-margin-top:120px;
}
html{
    scroll-behavior:smooth;
}
header{
    height:auto;
}

html{
    scroll-padding-top:180px;
    scroll-behavior:smooth;
}
.hero-divider{
    width:120px;
    height:2px;
    background:var(--gold);
    margin:40px auto 20px auto;
}

.hero-subtext{
    color:#999;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border:1px solid rgba(212,175,55,.08);
    border-radius:50%;
    top:-250px;
    right:-200px;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(212,175,55,.06);
    border-radius:50%;
    bottom:-200px;
    left:-150px;
}
.section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:80px;
    height:3px;
    background:var(--gold);
}
footer h3{
    color:var(--gold);
    margin-bottom:15px;
}

footer p{
    margin-bottom:10px;
}
.company-name{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:15px;
}

.logo-placeholder{
    width:55px;
    height:55px;
    border:2px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-weight:800;
    font-size:22px;
}

.company-details{
    display:flex;
    align-items:baseline;
    gap:10px;
}
.section{
    overflow:hidden;
}
.section h2{
    position:relative;
}
.section h2::after{
    content:"";
    display:block;
    width:80px;
    height:2px;
    background:var(--gold);
    margin-top:10px;
}
.announcement-bar{
    background:var(--gold);
    color:black;
    text-align:center;
    padding:6px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
}
.hero{
    padding-top:100px;
}

.hero::before{
    content:"";
    position:absolute;

    width:900px;
    height:900px;

    border:1px solid rgba(212,175,55,.08);
    border-radius:50%;

    top:-350px;
    right:-300px;
}

.hero::after{
    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border:1px solid rgba(212,175,55,.05);
    border-radius:50%;

    bottom:-250px;
    left:-200px;
}

.hero-content{
    position:relative;
    z-index:2;
}
.hero-metrics{
    width:90%;
    max-width:1200px;
    margin:-40px auto 40px auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:20px;

    position:relative;
    z-index:5;
}

.hero-metrics div{
    background:#151515;

    border:1px solid rgba(212,175,55,.25);

    border-radius:14px;

    padding:25px;

    text-align:center;
}

.hero-metrics h3{
    color:var(--gold);
    font-size:28px;
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero-globe{
    position:absolute;

    right:-150px;
    top:50%;

    transform:translateY(-50%);

    width:700px;
    height:700px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.08);

    z-index:1;
}

.hero-globe::before{
    content:"";

    position:absolute;

    inset:50px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.06);
}

.hero-globe::after{
    content:"";

    position:absolute;

    inset:100px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.04);
}
.hero::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    url("world-map.png");

    background-size:70%;

    background-repeat:no-repeat;

    background-position:right center;

    opacity:.05;
}