/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: linear-gradient(45deg, #1c1c1c, #2e2e2e);
    background-image: url('/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Smooth scrolling and offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    /* reserve space for fixed header */
}

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

button {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

button:hover {
    opacity: 0.9;
}

/* Header styles */
.header {
    height: 70px;
    background: rgba(0, 0, 0, 0.85);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
}

.logo {
    font-weight: 800;
    color: #fff;
}

.nav {
    display: flex;
    gap: 24px;
    color: #fff;
}

.nav a {
    position: relative;
}

.nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: #4ac710;
    width: 0;
    transition: width .2s;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.nav a:hover::after {
    width: 100%;
}

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

.btn-signin {
    background: #4ac710;
    color: #000;
    padding: 8px 18px;
    border-radius: 48px;
    font-weight: 700;
    font-size: 14px;
}

.btn-signup {
    background: #4ac710;
    color: #000;
    padding: 8px 18px;
    border-radius: 48px;
    font-weight: 700;
    font-size: 14px;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero .content {
    max-width: 980px;
    text-align: center;
    padding: 40px 20px;
}

.headline {
    margin-top: 40px;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.05;
}

.headline .accent,
.h2 .accent,
h2 .accent {
    color: #4ac710;
}

.subtext {
    margin-top: 18px;
    font-size: 18px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    display: inline-block;
    background: #4ac710;
    color: #fff;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    margin-top: 20px;
}

.btn-cta:hover {
    opacity: 0.95;
}

.scroll-hint {
    margin-top: 7vh;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-arrow {
    font-size: 32px;
    opacity: 1;
    display: inline-block;
    margin-top: 10px;
}

/* subtle bounce animation for the scroll hint arrow */
@keyframes scroll-bounce {
    0% {
        transform: translateY(0);
        opacity: 0.95;
    }

    25% {
        transform: translateY(-6px);
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 0.95;
    }

    75% {
        transform: translateY(-3px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.95;
    }
}

.scroll-arrow {
    animation: scroll-bounce 1.6s ease-in-out infinite;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        animation: none !important;
    }
}

/* Slight fade/translate on hover to indicate interactivity */
.scroll-hint:hover .scroll-arrow {
    transform: translateY(-4px);
}

/* Features / steps section (mobile-first) */
.features {
    padding: 48px 16px;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.feature {
    max-width: 270px;
    text-align: center;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 800;
    color: #4ac710;
    font-size: 22px;
}

.feature h3 {
    margin: 6px 0;
    font-size: 18px;
    font-weight: 700;
}

.feature p {
    opacity: 1;
    font-size: 15px;
    line-height: 1.4;
}

/* Use image icons for steps */
.feature-icon img {
    width: 86px;
    height: 86px;
    display: block;
    object-fit: contain;
    margin-bottom: 30px;
}

.feature-arrow {
    display: none;
    align-items: center;
    justify-content: center;
}

.feature-arrow img {
    width: 120px;
    height: auto;
    opacity: 0.95;
}

.section {
    padding: 48px 16px;
    text-align: center;
}

.section-inner {
    max-width: 75vw;
    margin: 0 auto;
}

/* Contact section */
.contact-section {
    padding: 48px 16px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-left {
    text-align: left;
}

.contact-brand img {
    display: block;
    margin-bottom: 18px;
}

.contact-left h3 {
    font-size: 28px;
    margin: 6px 0 8px 0;
}

.contact-lead {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: bold;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.social-circle.white {
    background: #ffffff;
    height: 48px;
    width: 48px;
}

.digits {
    width: 26px;
    height: 26px;
    margin-bottom: -7px;
}

.contact-right {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input,
.textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 22px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 15px;
}

.input::placeholder,
.textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.textarea {
    resize: vertical;
}

/* accessibility helper */
.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* What makes us different (extended features grid) */
.diff-section {
    padding: 56px 16px;
}

.diff-title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 28px;
}

.diff-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.diff-item {
    max-width: 380px;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: transparent;
    color: #4ac710;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.diff-item h4 {
    margin: 0px 0 40px 0;
    font-size: 18px;
    font-weight: 900;
}

.diff-item p {
    margin: 0;
    font-size: 16px;
    opacity: 1;
}

.diff-grid {
    width: 78%;
    margin: 5vh auto;
}

.diff-item h4 img {
    margin-bottom: -26px;
}

h2.section-title.diff-title {
    font-size: 32px;
}

/* Commissions grid */
.commissions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
}

.commission-card {
    max-width: 720px;
    text-align: center;
    padding: 22px 18px;
}

.commission-badge {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: #4ac710;
    color: #000;
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
    margin-left: 50px;
}

.commission-card p {
    max-width: 640px;
    margin: 0 auto;
    opacity: 1;
    font-size: 17px;
}

.commission-badge span {
    margin-right: -150px;
    font-size: 44px;
    color: #fff;
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

details {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    padding: 14px 18px;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #fff;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-body {
    margin-top: 8px;
    opacity: 0.9;
    font-size: 14px;
}

details {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 44px;
    padding: 20px 20px;
    margin-bottom: 8px;
}

h2.section-title.diff-title img {
    margin-bottom: -25px;
}

.contact-inner {
    background: #00000073;
    padding: 60px;
    border-radius: 32px;
    border: 1px solid #cccccc33;
    margin: 100px auto;
}

/* Prevent the whole FAQ grid from jumping when a single item opens.
   On desktop we render the opened details body as an overlay so it doesn't resize the grid.
   On mobile we keep the standard stacked behavior for accessibility and space constraints. */
/* Use a slide-down animation for the FAQ body so opening an item
   animates the expansion downward and remains readable (pushes content).
   This works on all viewports and respects prefers-reduced-motion. */
details {
    position: relative;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top;
    transition: max-height 300ms ease, opacity 220ms ease, padding 220ms ease;
}

details[open] .faq-body {
    max-height: 420px;
    opacity: 1;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-body {
        transition: none;
    }
}


section#faq {
    background: #8080802b;
    padding: 30px;
    border-radius: 32px;
    max-width: 100vw !important;
    margin: 0 20%;
}

section#commissions {
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .features-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .feature-arrow {
        display: flex;
    }

    .feature {
        margin: 0 24px;
    }

    .headline {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .logo img {
        height: 32px !important;
    }

    .btn-signin,
    .btn-signup {
        padding: 8px 18px;
        font-size: 15px;
    }

    /* larger layouts */
    /* layout as a 3-column grid for desktop to ensure 3 cols x 2 rows */
    .diff-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 60px;
        gap: 60px;
        justify-content: center;
        align-items: start;
    }

    .diff-item {
        width: auto;
        max-width: none;
    }

    .commissions-grid {
        flex-direction: row;
        justify-content: center;
        gap: 36px;
    }

    .commission-card {
        width: 320px;
    }

    .faq-grid {
        flex-direction: row;
        gap: 18px;
    }

    /* Display FAQ as 2 columns x N rows on desktop (2 columns x 3 rows when 6 items exist) */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 18px;
        gap: 18px;
    }

    .faq-grid details {
        width: auto;
    }

    .contact-inner {
        flex-direction: row;
    }

    .contact-left {
        width: 42%;
        padding-right: 32px;
    }

    .contact-right {
        width: 58%;
    }
}


input::placeholder,
textarea::placeholder {
    color: #fff;
    padding: 15px 15px;
    font-weight: 900;
    text-decoration: none;
    font-size: 18px;
}

textarea::placeholder {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}



@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .headline {
        font-size: 32px;
    }

    .header {
        padding: 0 16px;
    }

    .logo img {
        height: 24px !important;
        margin-left: 5px;
    }

    .btn-signin,
    .btn-signup {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width:425px) {
    .headline {
        font-size: 22px;
        margin-bottom: 60px;
    }

    .hero {
        padding: 40px 0;
    }

    .subtext {
        line-height: 24px;
        font-weight: 400;
        opacity: 1;
    }

    .diff-grid {
        width: 100%;
        gap: 40px;
    }

    .diff-grid p {
        text-align: center;
    }

    .diff-item h4 span {
        display: block;
        width: 75%;
        float: right;
        padding-top: 20px;
    }

    section#faq {
        background: #8080802b;
        padding: 0px;
        padding-top: 37px;
        margin: 0 15px;
    }

    .section-inner {
        max-width: 85vw;
        margin: 0 auto;
    }

    summary {
        opacity: 0.85;
        font-weight: 600;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left h2 {
        font-size: 36px !important;

    }

    .contact-brand {
        text-align: center;
        display: inline-block;
    }

    .contact-social {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .contact-right {
        display: block;
        text-align: center;
    }

    .input,
    .textarea {
        width: auto;
    }

    .input::placeholder,
    .textarea::placeholder {
        font-weight: 600 !important;
        font-size: 18px !important;
        text-align: center;
    }

    .contact-form .btn-cta {
        display: inline-block;
        width: 100%;
    }

    .contact-inner {
        padding: 30px;
        padding-top: 60px;

    }
}
