*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}

body{
    background:#0a0a0a;
    color:white;
    font-family:Arial, sans-serif;
}

header{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    background:#111111;
    border-bottom:1px solid rgba(255,255,255,0.08);
}


.logo img{
    height:60px;
    width:auto;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#A3A3A3;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.25s;
}

nav a:hover{
    color:#6B8E23;
}

.dashboard-btn{
    background:#556B2F;
    color:white;
    border:none;
    padding:11px 24px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:0.25s;
}

.dashboard-btn:hover{
    background:#6B8E23;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(107,142,35,0.35);
}

/* HERO */

.hero{
    min-height:calc(100vh - 75px);
    display:flex;
    align-items:center;
    padding:0 60px;
    background:
        radial-gradient(circle at 80% 30%, rgba(107,142,35,0.18), transparent 30%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 55%, #151812 100%);
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
}

.hero h1 span{
    color:#8FAF4D;
}

.hero p{
    margin-top:25px;
    max-width:620px;
    font-size:20px;
    line-height:1.6;
    color:#B5B5B5;
}

.hero-btn{
    display:inline-block;
    margin-top:40px;

    background:#556B2F;
    color:white;
    text-decoration:none;

    padding:16px 34px;
    border-radius:10px;

    font-size:15px;
    font-weight:bold;

    transition:0.25s;
}

.hero-btn:hover{
    background:#6B8E23;
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(107,142,35,0.35);
}


/* BENEFITS SECTION */

.benefits{
    padding:120px 60px;
}

.benefits h2{
    text-align:center;
    font-size:52px;
    font-weight:800;
    margin-bottom:80px;

    background:linear-gradient(
    90deg,
    #999595 12%,
    #426605 80%
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
}


.benefits-grid{

    max-width:1200px;

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px 60px;
}

.benefit-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.benefit-card{

    border-top:2px solid #556B2F;

    padding-top:25px;
}

.benefit-icon{

    width:42px;

    height:42px;

    object-fit:contain;

    margin-bottom:15px;
}

.benefit-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.benefit-card p{

    color:#B5B5B5;

    line-height:1.8;
}


/* SECTION DIVIDER */
.section-divider{
    width:100%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(107,142,35,0.5),
        transparent
    );
}

/* PRICING SECTION */

.pricing{
    padding:120px 60px;
    background:#0b0b0b;
}

.pricing h2{
    text-align:center;
    font-size:52px;
    font-weight:800;
    margin-bottom:50px;
    
    background:linear-gradient(
    90deg,
    
    #426605 15%,
    #999595 80%
    );

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.account-tabs{
    max-width:850px;
    margin:0 auto 60px;
    padding:6px;
    border:1px solid #556B2F;
    border-radius:12px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:6px;
}

.account-tabs button{
    background:transparent;
    color:white;
    border:none;
    padding:16px 0;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
    transition:0.25s;
}

.account-tabs button:hover,
.account-tabs button.active{
    background:#556B2F;
}

.pricing-grid{
    max-width:900px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.pricing-card{
    background:#111111;
    border:1px solid rgba(85,107,47,0.45);
    border-radius:18px;
    padding:40px;
}

.pricing-card h3{
    font-size:26px;
    margin-bottom:8px;
}

.small{
    color:#9b9b9b;
    margin-bottom:30px;
}

.price{
    font-size:48px;
    font-weight:800;
    color:#8FAF4D;
    margin-bottom:30px;
}

.rule{
    display:flex;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:16px 0;
    color:#B5B5B5;
}

.rule b{
    color:white;
}

.pricing-card button{
    margin-top:30px;
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#556B2F;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.25s;
}

.pricing-card button:hover{
    background:#6B8E23;
    transform:translateY(-2px);
}

/* FAQ SECTION */

.faq{
    padding:120px 60px;
    background:#0a0a0a;
}

.faq h2{
    text-align:center;
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #999595 12%,
        #426605 80%
    );

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.faq-subtitle{
    text-align:center;
    color:#B5B5B5;
    font-size:16px;
    margin-bottom:60px;
}

.faq-container{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:#111111;
    border:1px solid rgba(85,107,47,0.45);
    border-radius:16px;
    overflow:hidden;
    transition:0.25s;
}

.faq-item.active{
    border-color:#6B8E23;
    box-shadow:0 0 25px rgba(107,142,35,0.25);
}

.faq-question{
    width:100%;
    background:transparent;
    border:none;
    color:white;
    padding:22px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
    text-align:left;
}

.faq-icon{
    color:#8FAF4D;
    font-size:22px;
    transition:0.25s;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
}

.faq-answer p{
    padding:0 26px 24px;
    color:#B5B5B5;
    line-height:1.7;
}

.rule-number{
    color:#8FAF4D;
    font-weight:700;
    margin-right:4px;
}

.faq-answer strong{
    color:white;
    font-size:17px;
}

.faq-answer p{
    margin-bottom:20px;
}

/* FOOTER */

.footer{
    padding:60px 60px;
    background:#111111;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
}

.footer-logo{
    height:60px;
    width:auto;
    margin-bottom:20px;
}

.footer-left p{
    color:#B5B5B5;
    max-width:420px;
    line-height:1.8;
    margin-bottom:20px;
}

.footer-left a{
    color:#8FAF4D;
    text-decoration:none;
    font-weight:bold;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:35px;
}

.footer-socials h4{
    color:white;
    margin-right:10px;
}

.social-icon img{
    width:24px;
    height:24px;
    opacity:0.7;
    transition:0.25s;
}

.social-icon img:hover{
    opacity:1;
    transform:translateY(-2px);
    filter:drop-shadow(0 0 10px rgba(107,142,35,0.5));
}

.footer-mailing{
    background:#151515;
    border:1px solid rgba(85,107,47,0.4);
    border-radius:18px;
    padding:25px;
}

.footer-mailing h4{
    font-size:24px;
    color:white;
    margin-bottom:15px;
}

.footer-mailing p{
    color:#B5B5B5;
    margin-bottom:20px;
    line-height:1.7;
}

.footer-mailing input{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    margin-bottom:15px;
    background:#222222;
    color:white;
    outline:none;
}

.footer-mailing input:focus{
    box-shadow:0 0 15px rgba(107,142,35,0.25);
}

.footer-mailing button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#556B2F;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.25s;
}

.footer-mailing button:hover{
    background:#6B8E23;
    box-shadow:0 0 20px rgba(107,142,35,0.3);
}

.footer-bottom{
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#8d8d8d;
    background:#111111;
}