/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    /*max-width: 1100px;*/
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
    /*padding: 0 24px;*/
}

/* ===== Header ===== */
.header {
    position: fixed;
    height: 138px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(126deg, #F5CE93 -65.57%, #E24A11 100%);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 138px;
}

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

.logo-icon {
    width: 327px;
    height: 120px;
    /*border-radius: 8px;*/
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    /*font-size: 15px;*/
    /*font-weight: 500;*/
    /*transition: color 0.2s;*/
    /*position: relative;*/
    font-family: "SF Pro";
    font-size: 26px;
    font-style: normal;
    font-weight: 510;
    line-height: 31px;
    /* 119.231% */
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    margin-top: 138px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 85%;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.hero-label {
    color: #FFF;
    font-family: "SF Pro";
    font-size: 36px;
    font-style: normal;
    font-weight: 590;
    line-height: normal;
}

.hero-title {
    color: #FFF;
    font-family: "SF Pro";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero-subtitle {
    color: #FFF;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #d4653e;
    color: #fff;
    border-color: #d4653e;
}

.btn-primary:hover {
    background: #c0562f;
    border-color: #c0562f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 101, 62, 0.35);
}

.btn-outline {
    background: #fff;
    color: #333;
    border-color: #ccc;
}

.btn-outline:hover {
    border-color: #d4653e;
    color: #d4653e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Standout Section ===== */
.standout-section {
    padding: 60px 0;
    background: #fff;
}

.standout-card {
    background: #EA834A;
    border-radius: 10px;
    padding: 48px 48px 36px;
    color: #fff;
}

.standout-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.standout-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.section-tag {
    font-size: 36px;
    font-weight: 510;
    color: #d4653e;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.standout-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-name {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.feature-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.standout-tagline {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    /*font-style: italic;*/
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-container {
    width: 1680px;
    max-width: 100%;
    height: 875px;
    margin: 0 auto;
    background: #FAFAFA;
    border-radius: 10px;
    padding: 70px 100px;
    display: flex;
    flex-direction: column;
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 40px;
    /* Based on typical proportion to the 36px tag */
    font-weight: 800;
    color: #d4653e;
}

.benefits-header .section-tag {
    background: none;
    color: #C94615;
    padding: 0;
    font-family: "SF Pro", sans-serif;
    font-size: 36px;
    font-weight: 510;
}

.benefits-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
    padding-left: 4px;
}

.benefit-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d4653e;
    flex-shrink: 0;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.benefit-line {
    position: absolute;
    left: 11px;
    top: 26px;
    bottom: 0;
    width: 2px;
    background: #d4653e;
    opacity: 0.3;
}

.benefit-text {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    max-width: 599px;
}

.benefits-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.benefits-img-wrapper {
    position: relative;
    width: 780px;
    height: 550px;
}

.benefits-img {
    border-radius: 12px;
    object-fit: cover;
    position: absolute;
    width: 434px;
    height: 550px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.benefits-img-1 {
    left: 0;
    top: 0;
    z-index: 1;
}

.benefits-img-2 {
    right: 0;
    top: 130px;
    z-index: 2;
    /* Optional: adds a nice separation for the overlap */
}

/* ===== Story Section ===== */
.story-section {
    padding: 80px 0;
    background: #fff;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.story-header .section-tag {
    background: none;
    color: #d4653e;
    padding: 0;
}

.story-content {
    position: relative;
    min-height: 400px;
}

.story-card {
    background: rgba(212, 101, 62, 0.95);
    color: #fff;
    padding: 48px 40px;
    width: 55%;
    max-width: 540px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 180px 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
}

.story-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.story-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 220px 0 0 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    background: #fff;
    border-radius: 12px;
    padding: 60px 80px;
    box-shadow: 0 4px 30px rgba(0 0 0 / 17%);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 1680px;
    margin: 0 auto;
}

.faq-title {
    margin-bottom: 36px;
    font-size: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    background: #f5f5f5d9;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 32px;
    background: #F2F2F2;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: left;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: #888;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item:not(.active) .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease, border-width 0.35s ease;
    padding: 0 32px;
    margin: 0;
    border-top: 0px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 24px 0 32px 0;
    margin: 0 32px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: #d4653e;
    padding: 40px 0;
}

.footer-inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-links {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .header {
        height: 90px;
    }

    .header-inner {
        height: 90px;
        width: 100%;
        padding: 0 40px;
    }

    .logo-icon {
        width: 200px;
        height: auto;
    }

    .nav-link {
        font-size: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero {
        margin-top: 90px;
        min-height: 460px;
    }

    .benefits-container {
        height: auto;
        padding: 40px;
    }

    .benefits-content {
        flex-direction: column;
        gap: 40px;
    }

    .benefits-images {
        max-width: 100%;
        justify-content: center;
    }

    .benefits-img-wrapper {
        width: 100%;
        max-width: 500px;
        height: 480px;
        margin: 0 auto;
    }

    .benefits-img {
        width: 320px;
        height: 400px;
    }

    .benefits-img-2 {
        top: 80px;
    }

    .standout-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-divider {
        display: none;
    }

    .feature-item {
        width: 45%;
        flex: none;
    }

    .story-content {
        flex-direction: column;
    }

    .story-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        bottom: auto;
        border-radius: 0 40px 0 0;
        padding: 32px;
    }

    .story-image {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .story-img {
        border-radius: 40px 0 0 0;
    }

    .faq-container {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .header {
        height: 70px;
    }

    .header-inner {
        height: 70px;
        padding: 0 20px;
    }

    .logo-icon {
        width: 150px;
        height: auto;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #e8944c, #d4653e);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .nav.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-content {
        padding: 48px 20px;
    }

    .hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .standout-card {
        padding: 32px 24px 24px;
    }

    .standout-title {
        font-size: 22px;
    }

    .benefits-header,
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .benefits-container {
        padding: 32px 20px;
    }

    .benefit-text {
        font-size: 22px;
    }

    .benefits-header .section-tag {
        font-size: 28px;
    }

    .benefits-img-wrapper {
        max-width: 320px;
        height: 320px;
    }

    .benefits-img {
        width: 200px;
        height: 260px;
    }

    .benefits-img-2 {
        top: 60px;
    }

    .faq-container {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }
}