:root{
    --yellow:#ffc800;
    --yellow-dark:#e4b300;
    --white:#ffffff;
}

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

body{
    font-family:Inter, system-ui, sans-serif;
    background:#07120c;
    color:white;
}

/* HERO */

.hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

/* Background Image */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(4,22,13,.92),
            rgba(8,37,20,.82),
            rgba(13,30,20,.55)
        ),
        url("https://images.unsplash.com/photo-1591946614720-90a587da4a36?q=80&w=1600&auto=format&fit=crop");
    background-size:cover;
    background-position:center;
}

/* Grid Overlay */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
}

.container{
    width:min(1400px,92%);
    margin:auto;
    position:relative;
    z-index:2;
}

/* NAVIGATION */

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#0e6d2f;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--yellow);
    font-size:20px;
}

.logo-text h3{
    color:var(--yellow);
    font-size:20px;
    font-weight:800;
}

.logo-text span{
    color:#ffdb5f;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.nav-links{
    display:flex;
    gap:48px;
}

.nav-links a{
    color:#ffd84c;
    text-decoration:none;
    font-weight:600;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:22px;
}

.account-btn{
    background:var(--yellow);
    color:#111;
    border:none;
    padding:12px 22px;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
}

.signout{
    color:#ffd84c;
    text-decoration:none;
    font-weight:600;
}

/* CENTERED HERO CONTENT */

.content{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 0 100px;
}

.hero-content{
    max-width:900px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
    margin-bottom:40px;
}

.badge-dot{
    width:10px;
    height:10px;
    background:var(--yellow);
    border-radius:50%;
}

.hero-title{
    font-family:Georgia, serif;
    font-size:clamp(4rem,8vw,7rem);
    line-height:.95;
    margin-bottom:28px;
    max-width:900px;
}

.hero-title .accent{
    display:block;
    color:var(--yellow);
}

.hero-copy{
    max-width:700px;
    color:#e0e0e0;
    font-size:1.25rem;
    line-height:1.7;
    margin-bottom:40px;
}

.cta-row{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:50px;
}

.primary-btn:hover{
    background:var(--yellow-dark);
}


.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color:var(--yellow);
    color: #162a21; /* Dark green/black text color */
    font-size: 24px;
    font-weight: 700;
    padding: 20px 48px;
    border: none;
    border-radius: 40px; /* Highly rounded pill shape */
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
    outline: none;
    
    /* Initial shadow state */
    box-shadow: 0 0 5px rgba(252, 209, 77, 0.4);
    
    /* Attaching the pulsing animation */
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Subtle hover effect for better UX */
.glow-button:hover {
    transform: scale(1.02);
}

/* The Pulsing Glow Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px 1px rgba(252, 209, 77, 0.4);
    }
    50% {
        /* Expands the blur and intensifies the glow at the peak */
        box-shadow: 0 0 10px 5px rgba(252, 209, 77, 0.7);
    }
    100% {
        box-shadow: 0 0 5px 1px rgba(252, 209, 77, 0.4);
    }
}


.secondary-btn{
    background:rgba(255,255,255,.08);
    color:white;
    border:1px solid rgba(255,255,255,.2);
    padding:22px 40px;
    border-radius:18px;
    font-size:1.2rem;
    font-weight:700;
    backdrop-filter:blur(10px);
    cursor:pointer;
}

.features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#e8e8e8;
    font-weight:600;
}

.feature::before{
    content:"✓";
    color:var(--yellow);
    font-weight:900;
}

/* RESPONSIVE */

@media (max-width:1100px){

    .nav-links{
        display:none;
    }
}

@media (max-width:768px){

    .hero-title{
        font-size:clamp(3rem,12vw,5rem);
    }

    .hero-copy{
        font-size:1.05rem;
    }

    .cta-row{
        flex-direction:column;
        width:100%;
        max-width:380px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .features{
        flex-direction:column;
        gap:18px;
        align-items:center;
    }

    .nav-actions{
        display:none;
    }
}

/* FOOTER */

.footer{
    position:relative;
    z-index:2;
    padding:100px 0 40px;
    background:
        linear-gradient(
            90deg,
            #0b2a17,
            #082a13,
            #06250f
        );
}
.footer-grid{
    width:min(1400px,92%);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

.footer-grid > div{
    flex:1;
    min-width:220px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:36px;
}

.footer-logo-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:#008800;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:2rem;
    font-weight:800;
}

.footer-logo h3{
    font-family:Georgia, serif;
    font-size:2rem;
    margin-bottom:4px;
}

.footer-logo span{
    letter-spacing:2px;
    color:#a6b3a6;
    font-size:.9rem;
}

.guarantee-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:24px;
    max-width:380px;
}

.guarantee-title{
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:14px;
    color:white;
}

.guarantee-card p{
    color:#aeb8ae;
    line-height:1.6;
    font-size:1.1rem;
}

.footer h4{
    font-family:Georgia, serif;
    font-size:2rem;
    margin-bottom:32px;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    text-decoration:none;
    color:#aeb8ae;
    font-size:1.25rem;
}

.footer-links a:hover{
    color:white;
}

.rating{
    margin-top:30px;
    color:var(--yellow);
    font-size:1.5rem;
    display:flex;
    align-items:center;
    gap:12px;
}

.rating span{
    color:#cfd3cf;
    font-size:1.1rem;
}

.social-heading{
    margin-top:40px;
    margin-bottom:18px;
    color:#8ea08e;
    letter-spacing:3px;
    font-size:.95rem;
}

.socials{
    display:flex;
    gap:18px;
}

.socials a{
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
}

.contact-list{
    list-style:none;
}

.contact-list li{
    margin-bottom:26px;
    color:#aeb8ae;
    font-size:1.2rem;
}


@media (max-width:1100px){

    .footer-grid{
        flex-wrap:wrap;
        gap:50px;
    }

    .footer-grid > div{
        flex:1 1 calc(50% - 25px);
    }

    .footer-brand{
        flex-basis:100%;
        max-width:none;
    }
}

@media (max-width:768px){

    .footer-grid{
        flex-direction:column;
        gap:40px;
    }

    .footer-grid > div{
        width:100%;
        flex:none;
    }

    .footer-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.10);
    margin-top:80px;
    }
}
/* Bottom Copyright Bar */

.footer-bottom{
    width:min(1700px,92%);
    margin:0 auto;
    padding:40px 0 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    margin:0;
    color:#8f9a8f;
    font-size:1.1rem;
    font-weight:500;
    line-height:1;
}

.footer-divider{
    width:min(1700px,92%);
    margin:80px auto 0;
    height:1px;
    background:rgba(255,255,255,.10);
}

.flower-badge{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #173b1d 0%,
        #0f2d17 100%
    );

    box-shadow:
        0 8px 20px rgba(0,0,0,.15),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.flower-icon{
    width:38px;
    height:38px;
    display:block;
}

.dd-section-wrapper {
    --dd-dark-green: #112A1D;
    --dd-gold: #F2C010;
    --dd-text-muted: #5A6560;     /* Softer, warm gray/green text tint */
    --dd-light-bg: #F4F7F5;       /* Ultra soft light green tint matching image 1 backdrop */
    --dd-font-serif: 'Lora', Georgia, serif;
    --dd-font-sans: 'Plus Jakarta Sans', sans-serif;

    width: 100%;
    box-sizing: border-box;
    font-family: var(--dd-font-sans);
    line-height: 1.6;
}

.dd-section-wrapper *,
.dd-section-wrapper *::before,
.dd-section-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 1. Slimmer, Cleaner Stats Ribbon */
.dd-stats-ribbon {
    background-color: var(--dd-dark-green);
    padding: 24px 20px;
    color: #ffffff;
    width: 100%;
}

.dd-stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dd-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-stat-number {
    font-family: var(--dd-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dd-gold);
}

.dd-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
    color: #ffffff;
}

/* 2. Soft, Lighter Features Section */
.dd-features-section {
    background-color: var(--dd-light-bg);
    padding: 100px 20px;
}

.dd-features-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.dd-badge {
    display: inline-block;
    background-color: rgba(17, 42, 29, 0.06);
    color: var(--dd-dark-green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dd-section-title {
    font-family: var(--dd-font-serif);
    font-size: 2.75rem;
    color: var(--dd-dark-green);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dd-section-subtitle {
    color: var(--dd-text-muted);
    font-size: 1.1rem;
}

/* Cleaner 2x2 Layout with Crisp White Cards */
.dd-features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dd-feature-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Extremely soft shadow */
    transition: transform 0.2s ease;
}

.dd-feature-card:hover {
    transform: translateY(-2px);
}

.dd-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(17, 42, 29, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dd-dark-green);
    flex-shrink: 0;
}

.dd-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.dd-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dd-feature-title {
    font-family: var(--dd-font-sans); /* Swapped to sans for cleaner look in cards */
    font-size: 1.15rem;
    color: var(--dd-dark-green);
    font-weight: 600;
}

.dd-feature-text {
    color: var(--dd-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Scaling */
@media (max-width: 900px) {
    .dd-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .dd-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dd-stats-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .dd-stat-item {
        justify-content: flex-start;
    }
    .dd-section-title {
        font-size: 2.2rem;
    }
    .dd-feature-card {
        flex-direction: column;
        padding: 24px;
    }
}
