/* =========================================================
   WorthyTech Solutions
   Register Extractor Page
   =========================================================

   Brand Colors

   Primary      #2D466D
   Primary Dark #243D5A
   Secondary    #7893B1
   Silver       #B0B8C1
   Dark         #333333
   White        #FFFFFF

   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --register-primary: #2D466D;
    --register-primary-dark: #243D5A;
    --register-secondary: #7893B1;
    --register-silver: #B0B8C1;

    --register-dark: #333333;

    --register-white: #FFFFFF;
    --register-light: #F8FAFC;

    --register-gray-100: #F1F5F9;
    --register-gray-200: #E2E8F0;
    --register-gray-300: #CBD5E1;
    --register-gray-400: #94A3B8;
    --register-gray-500: #64748B;
    --register-gray-600: #475569;
    --register-gray-700: #334155;


    --register-gradient:
        linear-gradient(
            135deg,
            #2D466D,
            #7893B1
        );


    --register-dark-gradient:
        linear-gradient(
            135deg,
            #333333,
            #2D466D
        );


    --register-shadow:
        0 10px 30px
        rgba(45,70,109,0.08);


    --register-shadow-lg:
        0 20px 55px
        rgba(45,70,109,0.14);

}


/* =========================================================
   HERO
   ========================================================= */

.register-hero {

    position: relative;

    overflow: hidden;

    padding: 105px 0 85px;

    color: #FFFFFF;

    background:

        radial-gradient(
            circle at 15% 25%,
            rgba(45,70,109,0.40),
            transparent 45%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(176,184,193,0.14),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #333333 0%,
            #2D466D 100%
        );

}


.register-hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.register-glow-one {

    width: 430px;
    height: 430px;

    left: -220px;
    top: -230px;

    background:

        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent 70%
        );

}


.register-glow-two {

    width: 380px;
    height: 380px;

    right: -190px;
    bottom: -240px;

    background:

        radial-gradient(
            circle,
            rgba(176,184,193,0.12),
            transparent 70%
        );

}


.register-hero .container {

    position: relative;

    z-index: 2;

}


.register-hero-content {

    max-width: 850px;

    margin: 0 auto;

}


/* =========================================================
   EYEBROW
   ========================================================= */

.register-eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 7px 15px;

    margin-bottom: 18px;

    border:
        1px solid
        rgba(255,255,255,0.20);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.07);

    color:
        rgba(255,255,255,0.88);

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 0.5px;

    backdrop-filter: blur(8px);

}


.register-eyebrow i {

    color:
        var(--register-silver);

}


/* =========================================================
   HERO TITLE
   ========================================================= */

.register-title {

    margin: 0 0 20px;

    color: #FFFFFF;

    font-size:
        clamp(2.4rem, 5vw, 3.6rem);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.5px;

}


.register-title span {

    background:

        linear-gradient(
            135deg,
            #B0B8C1,
            #FFFFFF 50%,
            #B0B8C1
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    background-size: 200% auto;

    animation:
        registerGradient 5s linear infinite;

}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.register-description {

    max-width: 720px;

    margin: 0 auto;

    color:
        rgba(255,255,255,0.86);

    font-size: 1.08rem;

    line-height: 1.8;

}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.register-hero-features {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

}


.register-hero-features span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius: 7px;

    background:
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.82);

    font-size: 0.78rem;

}


.register-hero-features i {

    color:
        var(--register-silver);

}


/* =========================================================
   HERO LINE
   ========================================================= */

.register-hero-line {

    width: 75px;

    height: 3px;

    margin: 28px auto 0;

    border-radius: 10px;

    background:

        linear-gradient(
            90deg,
            #2D466D,
            #B0B8C1
        );

}


/* =========================================================
   MAIN TOOL SECTION
   ========================================================= */

.register-tool-section {

    position: relative;

    padding: 80px 0 85px;

    background:
        #FFFFFF;

    overflow: hidden;

}


.register-tool-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 250px;

    background:

        linear-gradient(
            180deg,
            rgba(45,70,109,0.035),
            transparent
        );

    pointer-events: none;

}


.register-tool-section .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.register-section-heading {

    max-width: 750px;

    margin: 0 auto 45px;

}


.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color:
        var(--register-primary);

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.section-kicker i {

    color:
        var(--register-secondary);

}


.register-section-heading h2 {

    margin: 0 0 14px;

    color:
        var(--register-dark);

    font-size:
        clamp(1.9rem,4vw,2.5rem);

    font-weight: 800;

    line-height: 1.2;

}


.register-section-heading h2 span {

    background:

        linear-gradient(
            90deg,
            #2D466D,
            #7893B1,
            #2D466D
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


.register-section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color:
        var(--register-gray-600);

    font-size: 1rem;

    line-height: 1.75;

}


/* =========================================================
   TOOL CARD
   ========================================================= */

.register-tool-card {

    max-width: 1150px;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid
        var(--register-gray-200);

    border-radius: 18px;

    background:
        #FFFFFF;

    box-shadow:
        var(--register-shadow-lg);

}


/* =========================================================
   TOOL HEADER
   ========================================================= */

.register-tool-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 19px 24px;

    border-bottom:
        1px solid
        var(--register-gray-200);

    background:

        linear-gradient(
            180deg,
            #FFFFFF,
            #F8FAFC
        );

}


.register-tool-brand {

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

}


/* =========================================================
   TOOL ICON
   ========================================================= */

.register-tool-icon {

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        var(--register-gradient);

    color:
        #FFFFFF;

    font-size: 21px;

    box-shadow:
        0 8px 20px
        rgba(45,70,109,0.18);

}


/* =========================================================
   TOOL INFO
   ========================================================= */

.register-tool-info h3 {

    margin: 0 0 3px;

    color:
        var(--register-dark);

    font-size: 1.05rem;

    font-weight: 700;

}


.register-tool-info p {

    margin: 0;

    color:
        var(--register-gray-500);

    font-size: 0.80rem;

}


/* =========================================================
   STATUS
   ========================================================= */

.register-tool-status {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 11px;

    border-radius: 50px;

    background:
        rgba(45,70,109,0.07);

    color:
        var(--register-primary);

    font-size: 0.75rem;

    font-weight: 600;

    white-space: nowrap;

}


.register-status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #10B981;

    box-shadow:
        0 0 0 4px
        rgba(16,185,129,0.10);

}


/* =========================================================
   IFRAME WRAPPER
   ========================================================= */

.register-frame-wrapper {

    position: relative;

    width: 100%;

    height: 720px;

    overflow: hidden;

    background:
        #FFFFFF;

}


/* =========================================================
   IFRAME
   ========================================================= */

.register-frame {

    display: block;

    position: relative;

    width: 100%;
    height: 100%;

    border: 0;

    background:
        #FFFFFF;

}


/* =========================================================
   TOOL INFORMATION BAR
   ========================================================= */

.register-tool-info-bar {

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;

    gap: 16px;

    padding: 18px 22px;

    border-top:
        1px solid
        var(--register-gray-200);

    background:
        #FFFFFF;

}


.register-info-item {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

}


.register-info-icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(45,70,109,0.08);

    color:
        var(--register-primary);

    font-size: 14px;

}


.register-info-item strong {

    display: block;

    margin-bottom: 2px;

    color:
        var(--register-dark);

    font-size: 0.78rem;

    font-weight: 700;

}


.register-info-item span {

    display: block;

    color:
        var(--register-gray-500);

    font-size: 0.68rem;

    line-height: 1.3;

}


.register-info-divider {

    width: 1px;

    height: 35px;

    background:
        var(--register-gray-200);

}


/* =========================================================
   BENEFITS SECTION
   ========================================================= */

.register-benefits-section {

    padding: 75px 0 85px;

    background:
        #F8FAFC;

}


.register-benefits-heading {

    max-width: 700px;

    margin: 0 auto 40px;

}


.register-benefits-heading h2 {

    margin: 0;

    color:
        var(--register-dark);

    font-size:
        clamp(1.9rem,4vw,2.4rem);

    font-weight: 800;

}


.register-benefits-heading h2 span {

    background:

        linear-gradient(
            90deg,
            #2D466D,
            #7893B1
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


/* =========================================================
   BENEFIT CARD
   ========================================================= */

.register-benefit-card {

    height: 100%;

    padding: 30px;

    border:
        1px solid
        var(--register-gray-200);

    border-radius: 16px;

    background:
        #FFFFFF;

    box-shadow:
        var(--register-shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.register-benefit-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(45,70,109,0.25);

    box-shadow:
        var(--register-shadow-lg);

}


/* =========================================================
   BENEFIT ICON
   ========================================================= */

.benefit-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        var(--register-gradient);

    color:
        #FFFFFF;

    font-size: 23px;

    box-shadow:
        0 8px 20px
        rgba(45,70,109,0.16);

}


.register-benefit-card h3 {

    margin: 0 0 10px;

    color:
        var(--register-dark);

    font-size: 1.25rem;

    font-weight: 700;

}


.register-benefit-card p {

    margin: 0;

    color:
        var(--register-gray-600);

    font-size: 0.92rem;

    line-height: 1.7;

}


/* =========================================================
   CTA
   ========================================================= */

.register-cta {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    color:
        #FFFFFF;

    background:

        radial-gradient(
            circle at 20% 30%,
            rgba(176,184,193,0.10),
            transparent 42%
        ),

        radial-gradient(
            circle at 80% 70%,
            rgba(45,70,109,0.35),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #333333,
            #2D466D
        );

}


.register-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,0.03) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255,255,255,0.03) 50%,
            rgba(255,255,255,0.03) 75%,
            transparent 75%
        );

    background-size:
        70px 70px;

    opacity: 0.25;

    pointer-events: none;

}


.register-cta .container {

    position: relative;

    z-index: 2;

}


.register-cta-content {

    max-width: 820px;

    margin: 0 auto;

}


/* =========================================================
   CTA
   ========================================================= */

.cta-kicker {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color:
        rgba(255,255,255,0.75);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.cta-kicker i {

    color:
        var(--register-silver);

}


.register-cta-title {

    margin: 0 0 18px;

    color:
        #FFFFFF;

    font-size:
        clamp(2rem,4vw,2.65rem);

    font-weight: 800;

    line-height: 1.2;

}


.register-cta-title span {

    background:

        linear-gradient(
            90deg,
            #B0B8C1,
            #FFFFFF,
            #B0B8C1
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


.register-cta-description {

    max-width: 720px;

    margin: 0 auto 30px;

    color:
        rgba(255,255,255,0.82);

    font-size: 1rem;

    line-height: 1.75;

}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.register-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}


.register-btn-primary,
.register-btn-outline {

    min-width: 150px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 25px;

    border-radius: 9px;

    font-size: 0.94rem;

    font-weight: 650;

    text-decoration: none;

    transition:
        all 0.3s ease;

}


/* Primary */

.register-btn-primary {

    border:
        2px solid #FFFFFF;

    background:
        #FFFFFF;

    color:
        var(--register-primary) !important;

}


.register-btn-primary:hover {

    transform:
        translateY(-3px);

    background:
        #F8FAFC;

    color:
        var(--register-primary-dark) !important;

    box-shadow:
        0 12px 28px
        rgba(0,0,0,0.20);

}


/* Outline */

.register-btn-outline {

    border:
        2px solid
        rgba(255,255,255,0.80);

    background:
        transparent;

    color:
        #FFFFFF !important;

}


.register-btn-outline:hover {

    transform:
        translateY(-3px);

    border-color:
        #FFFFFF;

    background:
        #FFFFFF;

    color:
        var(--register-primary) !important;

    box-shadow:
        0 12px 28px
        rgba(0,0,0,0.16);

}


/* =========================================================
   CTA GLOW
   ========================================================= */

.register-cta-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.register-cta-glow-one {

    width: 280px;
    height: 280px;

    left: -160px;
    top: -140px;

    background:

        radial-gradient(
            circle,
            rgba(176,184,193,0.10),
            transparent 70%
        );

}


.register-cta-glow-two {

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -180px;

    background:

        radial-gradient(
            circle,
            rgba(45,70,109,0.30),
            transparent 70%
        );

}


/* =========================================================
   ANIMATIONS
   ========================================================= */

.fade-in-up {

    animation:
        registerFadeUp
        0.8s
        ease
        forwards;

}


.delay-1 {

    animation-delay:
        0.18s;

}


.delay-2 {

    animation-delay:
        0.35s;

}


@keyframes registerFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes registerGradient {

    0% {

        background-position:
            0% center;

    }

    100% {

        background-position:
            200% center;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .register-hero {

        padding:
            90px 0 75px;

    }


    .register-tool-section {

        padding:
            70px 0 75px;

    }


    .register-frame-wrapper {

        height:
            650px;

    }


    .register-tool-info-bar {

        grid-template-columns:
            1fr 1fr;

        gap:
            18px;

    }


    .register-info-divider {

        display:
            none;

    }


    .register-cta {

        padding:
            70px 0;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    /* HERO */

    .register-hero {

        padding:
            75px 0 60px;

    }


    .register-title {

        font-size:
            2.1rem;

    }


    .register-description {

        padding:
            0 10px;

        font-size:
            0.93rem;

        line-height:
            1.7;

    }


    .register-eyebrow {

        padding:
            6px 12px;

        font-size:
            0.74rem;

    }


    .register-hero-features {

        gap:
            7px;

        padding:
            0 8px;

    }


    .register-hero-features span {

        font-size:
            0.70rem;

        padding:
            6px 9px;

    }


    /* TOOL SECTION */

    .register-tool-section {

        padding:
            55px 0 65px;

    }


    .register-section-heading {

        margin-bottom:
            32px;

    }


    .register-section-heading h2 {

        font-size:
            1.8rem;

    }


    .register-section-heading p {

        padding:
            0 8px;

        font-size:
            0.90rem;

    }


    /* TOOL HEADER */

    .register-tool-header {

        padding:
            15px;

        gap:
            10px;

    }


    .register-tool-icon {

        width:
            44px;

        height:
            44px;

        flex-basis:
            44px;

        border-radius:
            10px;

        font-size:
            17px;

    }


    .register-tool-info h3 {

        font-size:
            0.94rem;

    }


    .register-tool-info p {

        font-size:
            0.70rem;

    }


    .register-tool-status {

        padding:
            5px 8px;

        font-size:
            0.65rem;

    }


    /* IFRAME */

    .register-frame-wrapper {

        height:
            650px;

    }


    /* INFO BAR */

    .register-tool-info-bar {

        grid-template-columns:
            1fr 1fr;

        gap:
            15px;

        padding:
            16px;

    }


    .register-info-item {

        gap:
            8px;

    }


    .register-info-icon {

        width:
            34px;

        height:
            34px;

        flex-basis:
            34px;

        font-size:
            12px;

    }


    .register-info-item strong {

        font-size:
            0.70rem;

    }


    .register-info-item span {

        font-size:
            0.60rem;

    }


    /* BENEFITS */

    .register-benefits-section {

        padding:
            55px 0 65px;

    }


    .register-benefits-heading {

        margin-bottom:
            30px;

    }


    .register-benefits-heading h2 {

        font-size:
            1.8rem;

    }


    .register-benefit-card {

        padding:
            23px;

    }


    /* CTA */

    .register-cta {

        padding:
            60px 0;

    }


    .register-cta-title {

        padding:
            0 8px;

        font-size:
            1.85rem;

    }


    .register-cta-description {

        padding:
            0 10px;

        font-size:
            0.90rem;

    }


    .register-cta-buttons {

        width:
            100%;

        padding:
            0 12px;

        gap:
            10px;

    }


    .register-btn-primary,
    .register-btn-outline {

        width:
            100%;

        min-width:
            0;

        min-height:
            48px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .register-hero {

        padding:
            65px 0 52px;

    }


    .register-title {

        font-size:
            1.85rem;

    }


    .register-description {

        font-size:
            0.87rem;

    }


    .register-hero-features {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            7px;

    }


    .register-hero-features span {

        justify-content:
            center;

        font-size:
            0.66rem;

    }


    .register-tool-section {

        padding:
            48px 0 55px;

    }


    .register-section-heading h2 {

        font-size:
            1.65rem;

    }


    .register-section-heading p {

        font-size:
            0.85rem;

    }


    .register-tool-header {

        flex-wrap:
            wrap;

    }


    .register-tool-status {

        margin-left:
            auto;

    }


    .register-frame-wrapper {

        height:
            680px;

    }


    .register-tool-info-bar {

        grid-template-columns:
            1fr 1fr;

        gap:
            13px;

    }


    .register-benefits-section {

        padding:
            48px 0 55px;

    }


    .register-benefits-heading h2 {

        font-size:
            1.65rem;

    }


    .register-cta {

        padding:
            52px 0;

    }


    .register-cta-title {

        font-size:
            1.65rem;

    }


    .register-cta-description {

        font-size:
            0.85rem;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .register-title span {

        animation:
            none;

    }


    .fade-in-up {

        animation:
            none;

    }


    .register-benefit-card,
    .register-btn-primary,
    .register-btn-outline {

        transition:
            none;

    }

}