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

body {
    overflow-x: hidden;
    background-color: #FFDE59;
    font-family: "DM Sans", sans-serif;
}

@font-face {
  font-family: 'GulfDisplay';
  src: url('../fonts/gulfs-display-normal.woff2') format('woff2'),
       url('../fonts/gulfs-display-normal.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
    font-family: 'GulfDisplay', sans-serif;
}

section {
    padding-inline: 40px;
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
    position: relative;
}

.navbar {
    padding-block: 15px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.navbar .logo {
    cursor: pointer;
    width: 200px;
}

.navbar .container .links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar .container .links a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-decoration: none;
}

.navbar .container .links a:hover {
    opacity: 60%;
}

.navbar .container .links button {
    border: 2px solid #000;
    outline: none;
    background-color: #000;
    color: #fff;
    padding: 14px 30px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease 300ms;
}  

.navbar .container .links button:hover {
    background-color: #FFDE59;
    color: #000;
}

.hero .container {
    padding-block: 130px;
    text-align: center;
    max-width: 670px;
}

.hero .container h1 {
    font-size: 85px;
    line-height: 94px;
}

.hero .container p {
    font-size: 22px;
    line-height: 30px;
    margin: 0 auto 20px;
    max-width: 450px;
}

.hero .container .cta {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 6px;
}

.hero .container .cta input {
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    width: 100%;
}

.hero .container .cta input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.hero .container .cta button {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all ease 300ms;
}

.hero .container .cta button:hover {
    transform: translatex(4px);
}

.hero .container .benefits {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero .container .benefits .item {
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero .container .benefits .item img {
    width: 16px;
}

.hero .container .hero-icon {
    position: absolute;
    top: 135px;
    right: 5px;
}

.what {
    padding-block: 100px;
    background-color: #fff;
    text-align: center;
}

.what h2 {
    margin: 0 auto 40px;
    max-width: 780px;
    font-size: 50px;
    line-height: 68px;
    text-transform: uppercase;
}

.what .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.what .grid .card {
    padding: 40px;
    border-radius: 10px;
    background-color: #FFDE59;
    border: 2px solid #000;
}

.what .grid .card h3 {
    font-size: 24px;
    line-height: 32px;
    margin: 20px 0 6px;
}

.what .grid .card p {
    font-size: 18px;
    line-height: 26px;
}

/* ── Hamburger button ──────────────────────────────────── */

.navbar {
    position: relative;
    z-index: 300;
    background-color: #FFDE59;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: none;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Animate to × when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media screen and (max-width: 999px) {
    .what .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 821px) {
    .navbar .container .links a,
    .navbar .container .links button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding-inline: 25px;
    }
}

@media screen and (max-width: 720px) {
    .what .grid {
        grid-template-columns: repeat(1, 1fr);
    } 

    .what {
        padding-block: 65px;
    }

    .what h2 {
        margin: 0 auto 30px;
        font-size: 36px;
        line-height: 50px;
    }

    .hero .container h1 {
        font-size: 75px;
        line-height: 84px;
    }

    .hero .container {
        max-width: none;
        padding-block: 110px;
    }

    .hero .container p {
        font-size: 18px;
        line-height: 26px;
        max-width: none;
    }
    
    .hero .container .hero-icon {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .hero .container h1 {
        font-size: 50px;
        line-height:58px;
    }
}

/* ── Mobile menu overlay ───────────────────────────────── */

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: #000;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 40px;
}

.mobile-menu.open {
    display: flex;
    animation: menuFadeIn 0.2s ease;
}

@keyframes menuFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.mobile-menu a {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.15s ease;
}

.mobile-menu a:hover { color: #FFDE59; }

.mobile-menu .mob-signin {
    margin-top: 32px;
    align-self: flex-start;
    border: 2px solid #FFDE59;
    background-color: #FFDE59;
    color: #000;
    padding: 14px 30px;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu .mob-signin:hover {
    background-color: transparent;
    color: #FFDE59;
}

@media screen and (max-width: 500px) {
    .mobile-menu { padding: 0 25px 40px; }
    .mobile-menu a { font-size: 42px; }
}

@media screen and (max-width: 404px) {
    .hero .container h1 {
        font-size: 45px;
        line-height: 52px;
    }

    .hero .container .benefits {
        flex-direction: column;
        gap: 10px;
    }
}

/* ─────────────────────────────────────────────────────────
   SHARED UTILITY
───────────────────────────────────────────────────────── */

.section-sub {
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 56px;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */

.how {
    padding-block: 100px;
    background-color: #fff;
    text-align: center;
}

.how h2 {
    font-size: 50px;
    line-height: 68px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.how .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.how .step {
    padding: 36px 30px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #FFDE59;
}

.how .step .step-num {
    display: block;
    font-family: 'GulfDisplay', sans-serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.2;
}

.how .step h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
}

.how .step p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.65);
}

/* ─────────────────────────────────────────────────────────
   WHY FOLDED
───────────────────────────────────────────────────────── */

.why {
    padding-block: 100px;
    background-color: #FFDE59;
    text-align: center;
}

.why h2 {
    font-size: 50px;
    line-height: 68px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.why .perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

.why .perk {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
}

.why .perk .perk-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFDE59;
    border: 2px solid #000;
    border-radius: 8px;
}

.why .perk h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 6px;
}

.why .perk p {
    font-size: 15px;
    line-height: 23px;
    color: rgba(0, 0, 0, 0.6);
}

/* ─────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────── */

.pricing {
    padding-block: 100px;
    background-color: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 50px;
    line-height: 68px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pricing .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.pricing .plan {
    padding: 40px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #FFDE59;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing .plan.featured {
    background-color: #000;
}

.pricing .plan .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFDE59;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 4px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: #000;
}

.pricing .plan h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 22px;
}

.pricing .plan.featured h3 {
    color: #fff;
}

.pricing .plan .price {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 76px;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing .plan.featured .price {
    color: #fff;
}

.pricing .plan .price span {
    font-size: 30px;
    vertical-align: super;
}

.pricing .plan .price-desc {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 32px;
}

.pricing .plan.featured .price-desc {
    color: rgba(255, 255, 255, 0.45);
}

.pricing .plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    flex: 1;
}

.pricing .plan ul li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 26px;
    position: relative;
}

.pricing .plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing .plan.featured ul li {
    color: #fff;
}

.pricing .plan .plan-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    background-color: #fff;
    color: #000;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pricing .plan .plan-btn:hover {
    background-color: #000;
    color: #fff;
}

.pricing .plan.featured .plan-btn {
    background-color: #FFDE59;
    border-color: #FFDE59;
    color: #000;
}

.pricing .plan.featured .plan-btn:hover {
    background-color: #fff;
    border-color: #fff;
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────── */

.testimonials {
    padding-block: 100px;
    background-color: #FFDE59;
    text-align: center;
}

.testimonials h2 {
    font-size: 50px;
    line-height: 68px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.testimonials .reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.testimonials .review {
    padding: 36px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials .review .stars {
    font-size: 18px;
    letter-spacing: 3px;
}

.testimonials .review p {
    font-size: 17px;
    line-height: 26px;
    flex: 1;
    font-style: italic;
    color: rgba(0, 0, 0, 0.75);
}

.testimonials .review .reviewer {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */

.footer {
    background-color: #000;
    padding-block: 50px;
    padding-inline: 40px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 36px;
}

.footer .footer-logo {
    width: 150px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #FFDE59;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — NEW SECTIONS
───────────────────────────────────────────────────────── */

@media screen and (max-width: 999px) {
    .how .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing .plans {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials .reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 820px) {
    .why .perks {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-inline: 25px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media screen and (max-width: 720px) {
    .how,
    .why,
    .pricing,
    .testimonials {
        padding-block: 65px;
    }

    .how h2,
    .why h2,
    .pricing h2,
    .testimonials h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .section-sub {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .how .steps {
        grid-template-columns: 1fr;
    }

    .pricing .plans {
        grid-template-columns: 1fr;
    }

    .testimonials .reviews {
        grid-template-columns: 1fr;
    }
}