body.homepage {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8;
    color: #0f172a;
}

.homepage-layout {
    padding-top: 2rem;
}

.seller-application {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #fff, #f7f7f7);
}

.seller-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}

.seller-info {
    border-radius: 40px;
    min-height: 360px;
    background: linear-gradient(140deg, #f9fbff, #eef2f8);
    box-shadow: 0 45px 80px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.seller-info::before {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 32px;
    background: url('https://images.unsplash.com/photo-1523958203904-cdcb402031fd?auto=format&fit=crop&w=1500&q=80') center/cover;
    opacity: 0.15;
    filter: blur(0.5px);
}

.seller-form {
    background: #fff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.seller-form h1 {
    margin: 0.4rem 0;
}

.seller-form form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.input-field input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    background: #fdfdfd;
}

.btn-primary {
    border: none;
    border-radius: 16px;
    background: #ff8a24;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.eyebrow {
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #c5c9d6;
}

.subtitle {
    color: #6b7280;
}

.how-it-works {
    padding: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
}

.workflow-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.workflow-card {
    border-radius: 32px;
    color: #fff;
    padding: 2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.card-navy {
    background: #1d1f3e;
}

.card-teal {
    background: #3ac3b7;
    color: #0f172a;
}

.card-gray {
    background: #f3f3f5;
    color: #1d1f3e;
}

.workflow-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.workflow-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
}

.workflow-icon svg {
    width: 36px;
    height: 36px;
}

.about-us {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.18);
}

.faq-section {
    background: #1d1f3e;
    color: #fff;
    padding: 5rem 0;
    margin-top: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.accordion-item {
    border-radius: 14px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.accordion-item button {
    width: 100%;
    background: #2d3156;
    border: none;
    color: inherit;
    padding: 1.15rem 1.4rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordion-item button span:first-child {
    font-weight: 600;
}

.accordion-item .arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-item:not(.open) .arrow::before {
    content: '→';
}

.accordion-item.open .arrow::before {
    content: '↑';
    color: #fff;
}

.accordion-item.open button {
    background: #ff8a24;
    color: #fff;
}

.accordion-item.open {
    border-color: #ff8a24;
    background: rgba(255, 255, 255, 0.08);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.4rem;
    color: #dbeafe;
    line-height: 1.6;
}

.accordion-item.open .accordion-panel {
    max-height: 220px;
    padding-bottom: 1rem;
    color: #f9fafb;
}

.accordion-panel p {
    margin: 0;
}

.faq-chart .chart-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 24px;
}

.chart-body svg {
    width: 100%;
    height: 160px;
}

.advantages {
    padding: 4rem 0;
}

.advantages-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 2.8rem 2.4rem;
}

.advantages-grid .adv-card:nth-child(n+4) {
    margin-top: 1rem;
}

.adv-card {
    background: #f8f8f8;
    border-radius: 32px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.06);
}

.adv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #55c6bc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon svg {
    width: 42px;
    height: 42px;
    color: #fff;
}

.adv-body h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #0f172a;
}

.adv-body p {
    margin: 0.5rem 0 0;
    color: #6b7280;
    line-height: 1.5;
}

.adv-body .underline {
    display: block;
    margin-top: 0.9rem;
    height: 3px;
    width: 100%;
    background: #dce1e6;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
}

.adv-body .underline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #55c6bc, #ff8a24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.adv-card:hover .underline::after {
    transform: scaleX(1);
}

.team {
    padding: 4rem 0;
}

.team-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.plus-btn {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border: none;
    background: #fff;
    border-radius: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: #111;
    cursor: pointer;
}

.team-info {
    padding: 1.2rem;
}

.team-info p {
    color: #f97316;
    font-weight: 600;
    margin: 0.3rem 0 0;
}

.contact-cta {
    padding: 5rem 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.18);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff8a24;
    font-weight: 600;
}

.link-arrow::after {
    content: '→';
    font-size: 1.2rem;
}

.scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    border: none;
    background: #ff8a24;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 15px 25px rgba(249, 138, 36, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.homepage .site-footer {
    background: var(--top-bar-color);
    color: #fff;
}

@media (max-width: 900px) {
    .seller-grid {
        grid-template-columns: 1fr;
    }

    .seller-info {
        display: none;
    }
}
