:root {
    --color-text: #333333;
    --color-primary: #bc9041;
    --color-soft: #fdfbf7;
    --color-line: #eadfc9;
    --color-muted: #6f675b;
    --shadow: 0 18px 50px rgba(45, 37, 24, 0.1);
    --nav-height: 74px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--color-text);
    font-family: "MonaSans", "MonaSans-Regular", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

body,
p,
li,
a,
button {
    font-size: 1em;
}

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

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

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.08;
}

h2 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.8;
}

.section {
    width: 100%;
}

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(188, 144, 65, 0.18);
    backdrop-filter: blur(16px);
}

.site-nav {
    width: min(1240px, calc(100% - 32px));
    height: var(--nav-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    height: var(--nav-height);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 700;
}

.brand-logo {
    height: calc(var(--nav-height) - 20px);
    width: calc(var(--nav-height) - 20px);
    display: grid;
    place-items: center;
    background: #fff8eb;
    border: 1px solid rgba(188, 144, 65, 0.25);
    border-radius: 50%;
}

.brand-logo svg {
    width: 62%;
    height: 62%;
    fill: var(--color-primary);
}

.brand-name {
    font-size: 1.05em;
    letter-spacing: 0;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle-label span {
    width: 18px;
    height: 2px;
    background: var(--color-text);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex: 1;
}

.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-item > a,
.dropdown a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--color-text);
    transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.nav-item > a:hover,
.dropdown a:hover {
    color: var(--color-primary);
    background: #fff8ed;
    transform: scale(1.08);
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    width: 100%;
    justify-content: flex-start;
    white-space: nowrap;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: scale(1.2);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-ghost {
    color: var(--color-primary);
    background: #ffffff;
    border-color: rgba(188, 144, 65, 0.35);
}

.btn-outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: #ffffff;
}

.btn-soft {
    background: var(--color-soft);
    color: var(--color-primary);
    border-color: rgba(188, 144, 65, 0.25);
}

.hero-section {
    min-height: 760px;
    margin-top: var(--nav-height);
    background: url("../../img/starfulfill/hero-logistics.png") center / cover no-repeat;
}

.hero-overlay {
    min-height: 760px;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.48);
}

.hero-inner {
    color: #ffffff;
    padding: 120px 0;
}

.hero-inner > * {
    max-width: 720px;
}

.hero-inner h1 {
    margin-top: 12px;
    font-size: clamp(3.2em, 8vw, 6.8em);
    color: #ffffff;
}

.hero-inner h2 {
    margin-top: 18px;
    color: #ffffff;
}

.hero-inner h3 {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
    margin-top: 34px;
}

.eyebrow {
    display: inline-flex;
    color: #f3dcb4;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700;
}

.numbers-section {
    padding: 74px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-item {
    min-height: 160px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(188, 144, 65, 0.08);
}

.stat-number {
    color: var(--color-primary);
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    margin-top: 14px;
    color: var(--color-muted);
    font-weight: 600;
}

.how-section,
.split-section,
.faq-section {
    padding: 96px 0;
}

.section-heading {
    margin-bottom: 44px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-item {
    min-height: 290px;
    padding: 32px 26px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
}

.step-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #fff6e7;
    color: var(--color-primary);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-item h2 {
    min-height: 54px;
}

.step-item p {
    margin-top: 16px;
    color: var(--color-muted);
}

.testimonial-section {
    padding: 86px 0;
    background: var(--color-soft);
}

.testimonial-carousel {
    position: relative;
    min-height: 244px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    gap: 28px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.avatar {
    width: min(220px, 28vw);
    min-height: 220px;
    flex: 0 0 min(220px, 28vw);
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
}

.avatar-one {
    background: linear-gradient(135deg, #bc9041, #d9b979);
}

.avatar-two {
    background: linear-gradient(135deg, #333333, #846b43);
}

.avatar-three {
    background: linear-gradient(135deg, #8d733e, #f0d49c);
}

.avatar-four {
    background: linear-gradient(135deg, #5c5549, #bc9041);
}

.testimonial-copy {
    flex: 1;
    padding: 42px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
}

.testimonial-copy p {
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 1.08em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dbc8a6;
    cursor: pointer;
}

.dot.active {
    background: var(--color-primary);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 54px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 28px 0 32px;
    padding-left: 22px;
}

.feature-list li {
    color: var(--color-muted);
}

.feature-list strong {
    color: var(--color-text);
}

.split-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.why-section {
    padding: 96px 0;
}

.why-list {
    display: grid;
    gap: 24px;
}

.why-item {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 38px;
    align-items: start;
    padding: 40px;
    background: var(--color-soft);
    border-radius: 8px;
}

.why-item.reverse .why-copy {
    order: 2;
}

.why-item.reverse .why-image {
    order: 1;
}

.why-copy p {
    margin: 18px 0 26px;
    color: var(--color-muted);
}

.why-image {
    overflow: hidden;
    border-radius: 8px;
}

.why-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.integrations-section {
    padding: 92px 0;
    background: #fff9ef;
}

.integration-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 28px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--color-line);
}

.integration-logo {
    min-height: 92px;
    border: 1px dashed rgba(188, 144, 65, 0.42);
    border-radius: 8px;
    /* background: linear-gradient(135deg, #ffffff, #fdf5e7); */
    padding: 20px;
}
.integration-logo1{
    min-height: 92px;
    border: 1px dashed rgba(188, 144, 65, 0.42);
    border-radius: 8px;
    /* background: linear-gradient(135deg, #ffffff, #fdf5e7); */
    padding: 30px;
}
.integration-logo2{
    min-height: 92px;
    border: 1px dashed rgba(188, 144, 65, 0.42);
    border-radius: 8px;
    /* background: linear-gradient(135deg, #ffffff, #fdf5e7); */
    padding: 40px;
}
.integration-logo3{
    min-height: 92px;
    border: 1px dashed rgba(188, 144, 65, 0.42);
    border-radius: 8px;
    /* background: linear-gradient(135deg, #ffffff, #fdf5e7); */
    padding: 40px;
    
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--color-line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.faq-item button {
    width: 100%;
    min-height: 66px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: #ffffff;
    color: var(--color-text);
    font-family: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item button::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff4df;
    color: var(--color-primary);
    font-weight: 700;
}

.faq-item.open button::after {
    content: "-";
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: var(--color-muted);
}

.faq-item.open .faq-answer {
    display: block;
}

.quote-section {
    padding: 74px 0;
    background: var(--color-primary);
    color: #ffffff;
}

.quote-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.quote-inner h1 {
    color: #ffffff;
}

.quote-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.quote-section .btn-primary {
    background: #ffffff;
    color: var(--color-primary);
}

.quote-section .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.78);
    background: transparent;
}

.site-footer {
    padding: 70px 0 26px;
    background: #22201d;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero {
    min-height: 520px;
    margin-top: var(--nav-height);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.58);
}

.page-hero-content {
    max-width: 780px;
    color: #ffffff;
}

.page-hero-content h1 {
    color: #ffffff;
}

.page-hero-content h2 {
    margin-top: 18px;
    color: #ffffff;
}

.page-hero-content p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08em;
}

.content-section {
    padding: 96px 0;
}

.content-section.alt {
    background: var(--color-soft);
}

.page-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 54px;
    align-items: center;
}

.page-split.reverse .page-copy {
    order: 2;
}

.page-split.reverse .page-media {
    order: 1;
}

.page-copy p {
    margin-top: 18px;
    color: var(--color-muted);
}

.page-copy .btn {
    margin-top: 28px;
}

.page-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

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

.feature-card {
    padding: 30px;
    min-height: 220px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
}

.feature-card p {
    margin-top: 14px;
    color: var(--color-muted);
}

.mini-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #fff4df;
    color: var(--color-primary);
    font-weight: 700;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--color-line);
    background: #ffffff;
}

.process-number {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 700;
}

.process-item p {
    margin-top: 10px;
    color: var(--color-muted);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.platform-logo {
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 1.15em;
    font-weight: 700;
    text-align: center;
}

.pricing-table {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.pricing-row {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 0;
    border-bottom: 1px solid var(--color-line);
}

.pricing-row:last-child {
    border-bottom: 0;
}

.pricing-service,
.pricing-cost {
    padding: 22px 26px;
}

.pricing-service {
    background: var(--color-soft);
    font-weight: 700;
}

.pricing-cost {
    color: var(--color-muted);
}

.pricing-note {
    margin-top: 22px;
    color: var(--color-muted);
}

.affiliate-card {
    padding: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-line);
    background: #ffffff;
}

.affiliate-card p {
    margin-top: 14px;
    color: var(--color-muted);
}

.formula {
    margin-top: 22px;
    padding: 24px;
    border-radius: 8px;
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 1.4em;
    font-weight: 700;
}

.about-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 38px;
    align-items: start;
    padding: 40px;
    border-radius: 8px;
    background: var(--color-soft);
}

.about-row.reverse .about-copy {
    order: 2;
}

.about-row.reverse .about-media {
    order: 1;
}

.about-copy p {
    margin-top: 18px;
    color: var(--color-muted);
}

.about-media {
    overflow: hidden;
    border-radius: 8px;
}

.about-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.about-list {
    display: grid;
    gap: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
    gap: 42px;
}

.footer-brand {
    height: auto;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.6em;
    }

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

    .split-grid,
    .why-item,
    .page-split,
    .about-row {
        grid-template-columns: 1fr;
    }

    .why-item.reverse .why-copy,
    .why-item.reverse .why-image,
    .page-split.reverse .page-copy,
    .page-split.reverse .page-media,
    .about-row.reverse .about-copy,
    .about-row.reverse .about-media {
        order: initial;
    }

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

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

@media (max-width: 880px) {
    .nav-toggle-label {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: #ffffff;
        border: 1px solid var(--color-line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin: 0;
    }

    .nav-item > a {
        width: 100%;
        justify-content: center;
    }

    .dropdown {
        position: static;
        display: none;
        min-width: auto;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
        display: block;
    }

    .nav-actions {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    :root {
        --nav-height: 66px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.25em;
    }

    h2 {
        font-size: 1.25em;
    }

    .section-inner {
        width: min(100% - 28px, 1180px);
    }

    .hero-section,
    .hero-overlay {
        min-height: 640px;
    }

    .hero-inner {
        padding: 90px 0;
    }

    .stats-grid,
    .steps-grid,
    .integration-row,
    .feature-grid,
    .platform-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .page-hero-overlay {
        min-height: 480px;
    }

    .process-item,
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        min-height: 460px;
    }

    .testimonial-slide {
        flex-direction: column;
    }

    .avatar {
        width: 100%;
        min-height: 150px;
        flex-basis: auto;
    }

    .testimonial-copy,
    .why-item {
        padding: 28px;
    }

    .quote-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .brand-name {
        display: none;
    }

    .nav-actions,
    .quote-actions {
        width: 100%;
    }

    .nav-actions .btn,
    .quote-actions .btn {
        flex: 1;
        padding-inline: 18px;
    }
}
