/* =========================================================
   Gizmoo Core
   Hero Section
   ========================================================= */

.gizmoo-hero {
    position: relative;
    overflow: hidden;

    padding: 72px 0;

    background:
        radial-gradient(
            circle at 88% 22%,
            rgba(16, 185, 129, 0.10),
            transparent 38%
        ),
        radial-gradient(
            circle at 12% 90%,
            rgba(16, 185, 129, 0.045),
            transparent 32%
        ),
        #ffffff;
}


/* =========================================================
   Hero Layout
   ========================================================= */

.gizmoo-hero-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   Hero Text
   ========================================================= */

.gizmoo-hero-text {
    max-width: 560px;
}


.gizmoo-hero-eyebrow {
    margin: 0 0 18px;

    color: var(--gizmoo-primary);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 0.08em;
}


.gizmoo-hero h1 {
    max-width: 560px;

    margin: 0;

    color: var(--gizmoo-text);

    font-size: clamp(42px, 5vw, 58px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -0.035em;
}


.gizmoo-hero-description {
    max-width: 500px;

    margin: 24px 0 0;

    color: var(--gizmoo-text-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   Hero Buttons
   ========================================================= */

.gizmoo-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.gizmoo-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.gizmoo-button-primary {
    color: #ffffff;

    background: var(--gizmoo-primary);
}


.gizmoo-button-primary:hover {
    color: #ffffff;

    background: var(--gizmoo-primary-hover);

    transform: translateY(-1px);
}


.gizmoo-button-secondary {
    color: var(--gizmoo-text);

    background: transparent;

    border: 1px solid var(--gizmoo-border);
}


.gizmoo-button-secondary:hover {
    color: var(--gizmoo-primary);

    border-color: var(--gizmoo-primary);
}


/* =========================================================
   Hero Visual
   ========================================================= */

.gizmoo-hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   Ambient Glow
   ========================================================= */

.gizmoo-hero-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(16, 185, 129, 0.08);

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================================
   Browser Mockup
   ========================================================= */

.gizmoo-browser {
    position: relative;

    z-index: 2;

    width: min(100%, 510px);

    overflow: hidden;

    border: 1px solid rgba(15, 23, 42, 0.08);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.12);
}


/* Browser Top */

.gizmoo-browser-top {
    display: flex;

    align-items: center;

    gap: 16px;

    height: 42px;

    padding: 0 16px;

    border-bottom: 1px solid #e8eeeb;

    background: #f7f9f8;
}


.gizmoo-browser-dots {
    display: flex;

    align-items: center;

    gap: 5px;
}


.gizmoo-browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #cbd5e1;
}


.gizmoo-browser-url {
    color: #7b8791;

    font-size: 10px;
}


/* Browser Content */

.gizmoo-browser-content {
    padding: 26px;
}


/* Browser Header */

.gizmoo-browser-header {
    display: flex;

    align-items: center;
    justify-content: space-between;
}


.gizmoo-browser-header strong {
    color: #17211d;

    font-size: 15px;
}


.gizmoo-browser-nav {
    display: flex;

    gap: 6px;
}


.gizmoo-browser-nav span {
    width: 22px;
    height: 4px;

    border-radius: 10px;

    background: #dfe6e2;
}


/* Browser Hero */

.gizmoo-browser-hero {
    padding: 46px 0 38px;
}


.gizmoo-browser-label {
    display: block;

    margin-bottom: 12px;

    color: var(--gizmoo-primary);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.1em;
}


.gizmoo-browser-title {
    max-width: 260px;

    color: #17211d;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.03em;
}


.gizmoo-browser-line {
    width: 70%;
    height: 7px;

    margin-top: 16px;

    border-radius: 10px;

    background: #dce5e1;
}


.gizmoo-browser-line.short {
    width: 45%;

    margin-top: 8px;
}


.gizmoo-browser-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 28px;

    margin-top: 18px;

    padding: 0 12px;

    border-radius: 6px;

    color: #ffffff;

    background: var(--gizmoo-primary);

    font-size: 8px;

    font-weight: 600;
}


/* =========================================================
   Browser Cards
   ========================================================= */

.gizmoo-browser-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.gizmoo-browser-card {
    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 58px;

    padding: 10px;

    box-sizing: border-box;

    border: 1px solid #e4ebe7;

    border-radius: 9px;

    background: #fafcfb;
}


.gizmoo-browser-card .card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 25px;
    height: 25px;

    border-radius: 7px;

    color: var(--gizmoo-primary);

    background: rgba(16, 185, 129, 0.10);

    font-size: 9px;

    font-weight: 700;
}


.gizmoo-browser-card strong {
    overflow: hidden;

    color: #334039;

    font-size: 8px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   Mobile Mockup
   ========================================================= */

.gizmoo-mobile {
    position: absolute;

    z-index: 3;

    right: -24px;
    bottom: -34px;

    width: 130px;
    height: 260px;

    padding: 7px;

    box-sizing: border-box;

    border: 1px solid #c8d1cd;

    border-radius: 22px;

    background: #101714;

    box-shadow:
        0 22px 45px rgba(15, 23, 42, 0.20);

    transform: rotate(3deg);
}


.gizmoo-mobile-speaker {
    width: 34px;
    height: 4px;

    margin: 3px auto 7px;

    border-radius: 10px;

    background: #36423d;
}


.gizmoo-mobile-screen {
    height: calc(100% - 14px);

    padding: 16px 11px;

    box-sizing: border-box;

    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;
}


/* Mobile Header */

.gizmoo-mobile-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


.gizmoo-mobile-header strong {
    color: #17211d;

    font-size: 10px;
}


.gizmoo-mobile-header span {
    color: #94a3a0;

    font-size: 8px;
}


/* Mobile Content */

.gizmoo-mobile-label {
    margin-bottom: 8px;

    color: var(--gizmoo-primary);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.gizmoo-mobile-title {
    color: #17211d;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2;
}


.gizmoo-mobile-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 24px;

    margin-top: 15px;

    padding: 0 10px;

    border-radius: 5px;

    color: #ffffff;

    background: var(--gizmoo-primary);

    font-size: 7px;

    font-weight: 600;
}


.gizmoo-mobile-card {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 18px;

    padding: 8px;

    border: 1px solid #e5ebe8;

    border-radius: 8px;

    background: #f8faf9;
}


.gizmoo-mobile-card > span {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    border-radius: 6px;

    background: rgba(16, 185, 129, 0.12);
}


.gizmoo-mobile-card strong {
    display: block;

    color: #334039;

    font-size: 7px;
}


.gizmoo-mobile-card small {
    display: block;

    margin-top: 2px;

    color: #94a3a0;

    font-size: 5px;
}


/* =========================================================
   Accent
   ========================================================= */

.gizmoo-hero-accent {
    position: absolute;

    z-index: 1;

    top: 24px;
    right: 18px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--gizmoo-primary);

    box-shadow:
        0 0 0 8px rgba(16, 185, 129, 0.08);
}


/* =========================================================
   Service Strip
   ========================================================= */

.gizmoo-service-strip {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 64px;
}


.gizmoo-service-strip span {
    color: var(--gizmoo-text-muted);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.06em;
}


.gizmoo-service-strip i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gizmoo-primary);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {

    .gizmoo-hero-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .gizmoo-hero-text {
        max-width: 680px;
    }


    .gizmoo-hero h1 {
        max-width: 650px;
    }


    .gizmoo-hero-description {
        max-width: 600px;
    }


    .gizmoo-hero-visual {
        min-height: 390px;
    }


    .gizmoo-browser {
        max-width: 560px;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .gizmoo-hero {
        padding: 56px 0;
    }


    .gizmoo-hero-text {
        text-align: center;
    }


    .gizmoo-hero-eyebrow {
        font-size: 12px;
    }


    .gizmoo-hero h1 {
        font-size: clamp(38px, 10vw, 46px);

        letter-spacing: -0.025em;
    }


    .gizmoo-hero-description {
        font-size: 16px;
    }


    .gizmoo-hero-actions {
        justify-content: center;
    }


    .gizmoo-button {
        min-height: 46px;

        padding: 0 20px;
    }


    .gizmoo-hero-visual {
        min-height: 310px;
    }


    .gizmoo-browser {
        width: calc(100% - 20px);

        border-radius: 14px;
    }


    .gizmoo-browser-content {
        padding: 18px;
    }


    .gizmoo-browser-hero {
        padding: 32px 0;
    }


    .gizmoo-browser-title {
        font-size: 21px;
    }


    .gizmoo-mobile {
        right: -8px;
        bottom: -20px;

        width: 105px;
        height: 215px;
    }


    .gizmoo-service-strip {
        gap: 10px;

        margin-top: 48px;
    }


    .gizmoo-service-strip span {
        font-size: 10px;
    }

}