:root {
    --primary-color: #F5AA1A;
    --text-color: #000000;
    --bg-light: #FDFBF2;
    --bg-gray: #EBEBEB;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    /* background-color: var(--bg-light); */
    overflow-x: hidden;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.bold {
    font-weight: 600;
}

.golden {
    color: #F5AA1A;
}

.main-header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1650px;
    padding: 25px 20px;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 99;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #6C6C6C;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--text-color);
}

.store-icons {
    display: flex;
    gap: 50px;
    align-items: center;
}

.store-icons img {
    height: 24px;
    opacity: 1;
    transition: opacity 0.3s;
}

.store-icons img:hover {
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding-top: 85px;
    padding-bottom: 70px;

    /* MODIFIED: Remove image and restore a base light color to the hero section */
    /* background: url('../images/bg-blur.png') no-repeat center center; */
    background-color: #FDFBF2;

    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    /* Recommended to contain large, soft blurred edges */
}

.hero-container {
    display: flex;
    max-width: 1650px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    padding: 0px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    padding-bottom: clamp(70px, 12vh, 120px);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(42px, 7vh, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: clamp(10px, 3vh, 20px);
    color: #473D34;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: clamp(20px, 5vh, 40px);
}

.hero-bullets li {
    font-size: clamp(1rem, 2vh, 1.2rem);
    margin-bottom: clamp(5px, 2vh, 10px);
    display: flex;
    align-items: center;
}

.hero-bullets li::before {
    content: "•";
    color: var(--primary-color);
    font-size: clamp(1.5rem, 3vh, 2rem);
    margin-right: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    box-shadow: 0px 0px 30px #f5aa1a7a;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 178, 51, 0.3);
}

.download-btn span {
    margin-left: 10px;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* NEW: The soft Figma-style glow */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;

    background: radial-gradient(circle,
            rgba(245, 170, 26, 0.25) 0%,
            rgba(245, 170, 26, 0.05) 45%,
            rgba(245, 170, 26, 0) 70%);

    z-index: -1;
    pointer-events: none;
}

.hero-image img {
    max-width: 80%;
    max-height: clamp(450px, 75vh, 900px);
    object-fit: contain;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(to right, #F5AA1A 0%, rgba(245, 170, 26, 0) 95%);
    color: var(--text-color);
    padding: 33px 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.announcement-bar p {
    text-align: start;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

/* How It Works */
.how-it-works {
    padding: 120px 5%;
    text-align: center;
}

.how-heading {
    font-size: 64px;
    margin-bottom: 50px;
}

/* .how-it-works h2 span {
    color: var(--primary-color);
} */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1150px;
    margin: 0 auto;
}

.step-card button {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    color: #6D4C11;
    margin-bottom: 15px;
    background-color: #FCECD2;
    border: 1px solid #2a2a2a10;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 10px 10px 64px rgba(0, 0, 0, 0.15);
}

.step-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* What People Buy */
.what-people-buy {
    padding: 80px 5%;
    background-color: #EDE2DC;
    text-align: center;
}

.what-people-buy h2 {
    font-size: 86px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #473D34;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer */
footer {
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
}

.footer-links a:hover {
    text-decoration: underline;
}

.step-card {
    padding: 20px 0px;    
}

@media (max-width: 1250px) {
    .hero-content h1 {
        font-size: 62px;
    }

    .hero {
        height: max-content;
        padding-top: 140px;
        padding-bottom: 135px;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .how-it-works {
        padding: 50px 20px;
        text-align: center;
    }

    .how-heading {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fffaf2;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
        box-shadow: 0 29px 48px rgb(0 0 0 / 16%);
        z-index: 98;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
    }

    nav ul li a {
        font-size: 1.1rem;
    }

    .store-icons {
        justify-content: center;
        width: 100%;
        gap: 30px;
    }

    .hero-button-container {
        display: flex;
        justify-content: center;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .hero-container h1 {
        text-align: center;
    }

    .hero-bullets {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-bullets li {
        justify-content: center;
    }

    .announcement-bar p {
        font-size: 1.2rem;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .what-people-buy h2 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}