/* ==== Melt Brand Colors ==== */
:root {
    --orange: #ff9800;
    --black: #212121;
    --light-gray: #aaaaac;
    --blue: #2196F3;
    --red: #E53935;
    --white: #ffffff;
}
  
/* ==== Global Styles ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}
  
body {
    display: flex;
    flex-direction: column;
}
  
main {
    flex: 1;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}
  

main h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
  
main h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
  
main p, main ul {
    margin-bottom: 1.5rem;
}
  
.notice {
    background: #fff8e1;
    padding: 1rem;
    border-left: 4px solid var(--orange);
    margin-bottom: 2rem;
}
  
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}  
  
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
  
/* ==== Header ==== */
.header {
    background-color: var(--white);
    padding: 1rem 0;
}
  
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.logo {
    height: 40px;
}
  
.cta-button {
    background-color: var(--orange);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
  
.cta-button:hover {
    background-color: #e57c00;
}
  
.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}
  
/* ==== Hero Section ==== */
.hero {
    padding: 4rem 0;
    background-color: var(--white);
}
  
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
  
.hero-text {
    flex: 1;
    min-width: 300px;
}
  
.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--black);
}
  
.hero-text .subhead {
    font-size: 1.37rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}
  
.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
  
.hero-image img {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
  
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}
  
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==== Social Proof Strip (Below CTA) ==== */
.social-proof-section {
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: left;
    justify-content: left;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.profile-stack {
    display: flex;
    position: relative;
    height: 48px;
}

.profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    box-shadow: 0 0 0 0px #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.profile-pic:nth-child(1) { z-index: 1; margin-left: 0; }
.profile-pic:nth-child(2) { z-index: 2; }
.profile-pic:nth-child(3) { z-index: 3; }
.profile-pic:nth-child(4) { z-index: 4; }
.profile-pic:nth-child(5) { z-index: 5; }

.social-proof-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    height: 18px;
    margin-bottom: 6px;
}

.caption {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.4;
    max-width: 220px;
}  

.feature-cards {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.feature-card-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--white);
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.5;
}

.how-it-works {
    padding: 3rem 0;
    margin-top: 1rem;
}

.how-it-works h2 {
    font-size: 2.2rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 2rem;
}

.how-works-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    border-left: 3px solid var(--orange);
    padding-left: 1.5rem;
}

.how-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.how-block p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.5;
}

.step {
    flex: 1;
    min-width: 260px;
    text-align: left;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.step p {
    font-size: 1rem;
    color: var(--black);
}

.faq {
    padding: 3rem 0;
}

.faq h2 {
    font-size: 2.2rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-question {
    color: var(--black);
    /* (plus all your existing button styles) */
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--orange);
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0.75rem 1rem 1rem;
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.5;
    background-color: #fafafa;
    border-left: 3px solid var(--orange);
    border-radius: 0 0 6px 6px;
    margin-bottom: 1rem;
}

/* Open State */
.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question {
    color: var(--orange);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg); /* turns + into x shape (like -) */
}


.about-maker {
    background-color: #f9f9f9;
}

.about-maker h3 {
    font-size: 1.7rem;
    color: var(--light-gray);
    text-align: left;
    margin-bottom: 0.5rem; 
}

.about-grid {
    max-width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.maker-photo {
    flex: 0 0 175px;
}

.maker-photo img {
    width: 160px;
    height: 160px;
    border-radius: 15px;
    object-fit: cover;
    border: 1px solid var(--orange);
}

.maker-text {
    flex: 1;
    min-width: 200px;
}

 
/* ==== Footer ==== */
.footer {
    background-color: #f9f9f9;
    padding: 2rem 0;
    font-size: 0.95rem;
    color: var(--light-gray);
}
  
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
  
.footer-links a {
    margin-left: 1rem;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:first-child {
    margin-left: 0;
}
  
.footer-links a:hover {
    color: var(--orange);
}
  
/* ==== Responsive ==== */
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
  
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        height: 36px;
        max-width: 120px;
    }
      
    .cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .social-proof-section {
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .profile-stack {
        height: 45px;
    }
    
    .profile-pic {
        width: 45px;
        height: 45px;
        margin-left: -8px;
    }
    
    .stars {
        height: 20px;
        margin-bottom: 4px;
    }
    
    .caption {
        font-size: 0.9rem;
        text-align: left;
        max-width: 180px;
    }    
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.5rem;
    }
}
  
  