* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Hide scrollbar while keeping functionality */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-top: 26px;
    min-height: 4500px;
    overflow-x: hidden;
    /* Hide scrollbar while keeping functionality */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* --- Navigation Bar --- */
.navbar {
    position: sticky;
    top: 26px;
    width: 1078px;
    height: 72px;
    margin: 0 auto;

    background: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0px 4px 39.4px rgba(0, 0, 0, 0.17);
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    /* Make sure navbar is always on top */
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Scrolled Navbar Style */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.7);
    /* Semi-transparent white */
    backdrop-filter: blur(12px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
}

/* Inner Auto Layout Frame (Width 965px) */
.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;

    width: 965px;
    height: 42px;
}

/* --- Project Brand --- */
.navbar-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.navbar-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: #181A1F;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    /* Move up slightly to visually center with text */
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1);
}

.navbar-title {
    font-family: 'Satoshi Variable', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

/* --- Navigation Menu --- */
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Center items vertically */
    padding: 0px;
    gap: 10px;
    /* Reduced gap since links now have internal padding */

    width: auto;
    /* Dynamic width */
    height: 42px;
    /* Match container height */

    list-style: none;

    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Navigation Links */
.nav-item {
    flex: none;
    flex-grow: 0;
}

.nav-link {
    font-family: 'Satoshi Variable', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    /* Slightly smaller for better fit with pills */
    line-height: 22px;
    color: #4A4D55;
    /* Soft dark gray */
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #000000;
    background: rgba(24, 26, 31, 0.05);
    /* Subtle hover pill */
}

.nav-link.active {
    color: #000000;
    font-weight: 600;
    background: rgba(24, 26, 31, 0.08);
    /* More pronounced active pill */
}

/* --- Get Started Button --- */
.btn-get-started {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 29px;
    gap: 10px;

    /* width: 126px; */
    min-width: 140px;
    height: 42px;

    background: #181A1F;
    box-shadow: 0px 4px 12.4px rgba(0, 0, 0, 0.32);
    border-radius: 5px;

    flex: none;
    order: 2;
    flex-grow: 0;

    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started svg {
    transition: transform 0.3s ease;
}

.btn-get-started:hover {
    background: #2b2e36;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-get-started:hover svg {
    transform: translateX(4px);
}


/* Button Text */
.btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;

    text-align: center;
    color: #FFFFFF;
}

/* --- Hero Section --- */
.hero-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 800px;
    /* Covers the top part until the dashboard wireframe */
    z-index: -1;
    overflow: hidden;
}

/* Background Glows */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: #246BFD;
    /* Theme blue from pricing button */
    top: -200px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: #181A1F;
    /* Theme dark */
    top: 100px;
    right: -50px;
}

/* Optional subtle grid overlaid */
.hero-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(24, 26, 31, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(24, 26, 31, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: absolute;
    width: 675px;
    height: 311px;
    left: calc(50% - 675px/2 - 0.5px);
    top: 238px;
    z-index: 10;
}

.hero-title {
    position: absolute;
    width: 675px;
    height: 136px;
    left: 0px;
    top: 0px;

    font-family: 'Satoshi Variable', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 68px;
    display: flex;
    align-items: center;
    text-align: center;

    /* Text Gradient */
    background: linear-gradient(93.55deg, #000000 0%, #535353 27.88%, #000000 54.81%, #535353 80.29%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    position: absolute;
    width: 537px;
    height: 60px;
    left: 69px;
    top: 157px;

    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-align: center;

    color: #181A1F;
}

.hero-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 16px;

    position: absolute;
    width: 363px;
    height: 46px;
    left: 156px;
    top: 265px;
}

.btn-hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    /* Slightly reduced padding to accommodate icons */
    gap: 10px;

    height: 46px;

    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    white-space: nowrap;

    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-explore {
    min-width: 182px;
    background: #181A1F;
    box-shadow: 0px 4px 12.4px rgba(0, 0, 0, 0.36);
    color: #FFFFFF;
}

.btn-explore:hover {
    background: #2b2e36;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-explore:hover svg {
    transform: rotate(15deg) scale(1.3);
}

.btn-premium {
    box-sizing: border-box;
    min-width: 165px;
    background: transparent;
    border: 2px solid #181A1F;
    box-shadow: 0px 4px 12.4px rgba(0, 0, 0, 0.17);
    color: #181A1F;
}

.btn-premium:hover {

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover svg {
    transform: scale(1.3);
}

/* --- Dashboard Preview Section --- */
.dashboard-preview-container {
    position: absolute;
    width: 1200px;
    left: calc(50% - 1200px/2);
    top: 640px;
    z-index: 5;
    perspective: 1500px;
}

.preview-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(36, 107, 253, 0.05);
    overflow: hidden;
    /* Initial state: Tilted and scaled down */
    transform: rotateX(15deg) scale(0.95);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}



.slideshow-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: filter 0.5s ease, opacity 1s ease-in-out;

    /* For slideshow fade effect */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.preview-image.active {
    opacity: 1;
    position: relative;
    /* First or active image defines heights */
    pointer-events: auto;
    z-index: 2;
}

.preview-overlay {
    position: absolute;
    inset: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(2px);
    z-index: 5;
    cursor: pointer;
}

.preview-overlay iconify-icon {
    font-size: 48px;
    color: white;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-glass:hover .preview-overlay {
    opacity: 1;
}

.preview-glass:hover .preview-overlay iconify-icon {
    transform: scale(1);
}

.preview-glass:hover .preview-image {
    filter: brightness(0.7);
}

.preview-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 107, 253, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* --- Benefits Section --- */
.benefits-container {
    scroll-margin-top: 120px;
    position: absolute;
    width: 712px;
    height: 156px;
    left: calc(50% - 712px/2);
    top: 1650px;
    /* Positioned below the dashboard wireframe */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.benefits-small-title {
    width: 90px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #181A1F;
}

.benefits-main-heading {
    width: 472px;
    height: 60px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.03em;

    background: radial-gradient(50% 50% at 50% 50%, #000000 30%, rgba(35, 39, 47, 0.6) 84.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.benefits-subtitle {
    width: 712px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #17191C;
}

/* --- Benefits List (Left Sidebar) --- */
.benefits-list-container {
    position: absolute;
    width: 497px;
    height: 364px;
    left: calc(50% - 1201px/2);
    /* Align with the dashboard wireframe left edge */
    top: 1900px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between the 3 benefits */
}

.benefit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 497px;
    height: 108px;
}

.benefit-icon-box {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    border: 1px solid #181A1F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.benefit-number {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: #181A1F;
}

.benefit-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 415px;
    height: 108px;
    flex: none;
}

.benefit-title {
    width: 280px;
    height: 36px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #000000;
}

.benefit-description {
    width: 415px;
    height: 72px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #3C414C;
}

/* --- Benefits Content Box (Right side) --- */
.benefits-content-box {
    position: absolute;
    width: 620px;
    height: 450px;
    left: calc(50% + 1201px/2 - 620px);
    top: 1846px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    overflow: visible;
}

/* --- Pricing Title Section --- */
.pricing-title-container {
    scroll-margin-top: 120px;
    position: absolute;
    width: 712px;
    height: 156px;
    left: calc(50% - 712px/2);
    top: 2400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pricing-small-title {
    width: 82px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #181A1F;
}

.pricing-main-heading {
    width: 506px;
    height: 60px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.03em;

    background: radial-gradient(50% 50% at 50% 50%, #000000 30%, rgba(35, 39, 47, 0.6) 84.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pricing-subtitle {
    width: 712px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #17191C;
}

/* --- Pricing Plans Grid --- */
.pricing-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;

    position: absolute;
    width: 1184px;
    height: 659px;
    left: calc(50% - 1184px/2);
    top: 2600px;
    /* Positioned below the pricing title */
}

/* Individual Plan Card */
.plan-card {
    position: relative;
    box-sizing: border-box;
    width: 384px;
    height: 659px;

    border: 2px solid rgba(24, 26, 31, 0.61);
    border-radius: 12px;
    flex: none;
}

/* Plan Title & Icon */
.plan-header-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 32px;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-title {
    position: absolute;
    width: 120px;
    height: 48px;
    left: 76px;
    top: 32px;

    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #181A1F;
}

.plan-subtitle {
    position: absolute;
    width: 200px;
    height: 24px;
    left: 32px;
    top: 92px;

    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #2B2E36;
}

/* Price Group */
.price-container {
    position: absolute;
    width: 200px;
    height: 60px;
    left: 32px;
    top: 140px;
    display: flex;
    align-items: baseline;
}

.price-value {
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #000000;
}

.price-suffix {
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #2B2E36;
    margin-left: 8px;
}

.plan-description {
    position: absolute;
    width: 320px;
    height: 48px;
    left: 32px;
    top: 224px;

    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #2B2E36;
}

/* Benefits List */
.plan-benefits-list {
    position: absolute;
    width: 320px;
    left: 32px;
    top: 304px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-check-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 320px;
    height: 27px;
}

.benefit-check-text {
    width: 284px;
    height: 27px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #000000;
}

/* Disabled Benefit Items */
.benefit-disabled .benefit-check-text {
    color: #3C414B;
    font-weight: 500;
}

.benefit-disabled svg {
    stroke: #3C414B;
}

/* Pricing Button */
.btn-pricing {
    position: absolute;
    width: 320px;
    height: 52px;
    left: 32px;
    top: 575px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    gap: 8px;

    background: linear-gradient(95.02deg, #000000 13.23%, #363636 81.63%), #246BFD;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-pricing-icon {
    font-size: 18px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.btn-pricing:hover .btn-pricing-icon {
    transform: translateX(3px) rotate(10deg);
}

.discount-badge {
    background: #FFD700;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.price-old {
    font-weight: 500;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-card:hover .discount-badge {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.btn-pricing-text {
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* --- FAQ Title Section --- */
.faq-title-container {
    scroll-margin-top: 120px;
    position: absolute;
    width: 712px;
    height: 156px;
    left: calc(50% - 712px/2);
    top: 3400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.faq-small-title {
    width: 70px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #181A1F;
}

.faq-main-heading {
    width: 619px;
    height: 60px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.03em;

    background: radial-gradient(50% 50% at 50% 50%, #000000 30%, rgba(35, 39, 47, 0.6) 84.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-subtitle {
    width: 712px;
    height: 30px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #17191C;
}

/* --- FAQ Questions Section --- */
.faq-list-container {
    position: absolute;
    width: 1200px;
    height: auto;
    left: calc(50% - 1200px/2);
    top: 3600px;
    /* Positioned below the FAQ title sction */
}

.faq-item-frame {
    position: relative;
    width: 1136px;
    height: auto;
    min-height: 80px;
    margin: 0 auto 30px auto;
    cursor: pointer;
    padding-top: 50px;
    z-index: 10;
}

.faq-number {
    position: absolute;
    width: 28px;
    height: 38px;
    left: 0px;
    top: 0px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 160%;
    color: #181A1F;
}

.faq-question-text {
    position: absolute;
    height: 38px;
    left: 98px;
    top: 0px;
    font-family: 'Satoshi Variable', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    color: #181A1F;
}

.faq-icon-union {
    position: absolute;
    width: 23px;
    height: 23px;
    left: 1124px;
    top: 7px;
    color: #181A1F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-item-frame.active .faq-icon-union {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    margin-left: 98px;
    width: 800px;
    opacity: 0;
}

.faq-item-frame.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-text {
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #3C414B;
    padding-bottom: 20px;
}

.faq-separator-line {
    width: 100%;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}



/* --- Benefit Preview Styling --- */
.dual-screens-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ambient glow behind the screens */
.dual-screens-container::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(36, 107, 253, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: blur(20px);
}

.screen-item {
    position: absolute;
    width: 360px;
    height: auto;
    /* Premium device frame look */
    border-radius: 14px;
    /* Multi-layer shadow for depth */
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 35px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.screen-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.5s ease;
}

.screen-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(2px);
    z-index: 5;
}

.screen-overlay iconify-icon {
    font-size: 38px;
    color: white;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-item:hover .screen-overlay {
    opacity: 1;
}

.screen-item:hover .screen-overlay iconify-icon {
    transform: scale(1);
}

.screen-item:hover img {
    filter: brightness(0.7);
}

/* Thin highlight bar at top of each screen to look like a device frame */
.screen-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    z-index: 10;
}

/* Back screen — lower-right, dimmed */
.screen-back {
    z-index: 1;
    transform: translateX(80px) translateY(28px) rotateY(-5deg) scale(0.96);
    filter: brightness(0.55) saturate(0.7) blur(0.3px);
}

/* Front screen — upper-left, on top, sharp and bright */
.screen-front {
    z-index: 2;
    transform: translateX(-80px) translateY(-28px) rotateY(5deg) scale(0.96);
    filter: brightness(1);
}

/* --- Swapped States (Animation/Click) --- */
.dual-screens-container.is-swapped .screen-back {
    z-index: 2;
    transform: translateX(-80px) translateY(-28px) rotateY(5deg) scale(0.96);
    filter: brightness(1);
}

.dual-screens-container.is-swapped .screen-front {
    z-index: 1;
    transform: translateX(80px) translateY(28px) rotateY(-5deg) scale(0.96);
    filter: brightness(0.55) saturate(0.7) blur(0.3px);
}

.dual-screens-container:hover .screen-back {
    transform: translateX(95px) translateY(40px) rotateY(-8deg) scale(0.97);
    filter: brightness(0.75) saturate(1) blur(0px);
}

.dual-screens-container:hover .screen-front {
    transform: translateX(-95px) translateY(-40px) rotateY(8deg) scale(1.05);
    filter: brightness(1.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(36, 107, 253, 0.15);
}

/* --- Image Focus Modal (Lightbox) --- */
.image-focus-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: opacity 0.3s ease;
}

.image-focus-modal.hidden {
    display: none !important;
}

.focus-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.focus-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-focus-modal:not(.hidden) .focus-modal-content {
    animation: zoom-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoom-out {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.image-focus-modal.closing {
    opacity: 0;
    pointer-events: none;
}

.image-focus-modal.closing .focus-modal-content {
    animation: zoom-out 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.focused-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

.focus-modal-close {
    position: absolute;
    top: -60px;
    right: 0px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.focus-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: #34d399;
}

/* Hover effects for swapped state */
.dual-screens-container.is-swapped:hover .screen-back {
    transform: translateX(-95px) translateY(-40px) rotateY(8deg) scale(1.05);
    filter: brightness(1.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(36, 107, 253, 0.15);
}

.dual-screens-container.is-swapped:hover .screen-front {
    transform: translateX(95px) translateY(40px) rotateY(-8deg) scale(0.97);
    filter: brightness(0.75) saturate(1) blur(0px);
}


/* --- Footer Styling --- */
.footer {
    position: absolute;
    top: 4000px;
    /* Position it at the very bottom */
    width: 100%;
    background: #FFFFFF;
    padding: 80px 0 40px 0;
    margin-top: 100px;
}

.footer-container {
    max-width: 1136px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #181A1F;
    margin-bottom: 16px;
}

.footer-desc {
    color: #616161;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    color: #181A1F;
    margin-bottom: 24px;
    font-family: 'Satoshi Variable', sans-serif;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #616161;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #181A1F;
}

.footer-bottom {
    max-width: 1136px;
    margin: 40px auto 0;
    text-align: center;
    color: #9E9E9E;
    font-size: 14px;
}

/* --- Payment Modal New Design --- */
.p-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.p-modal.hidden,
.hidden {
    display: none !important;
}

.p-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.p-modal.active .p-modal-overlay {
    opacity: 1;
    visibility: visible;
}

.p-modal-content-new {
    position: relative;
    width: 100%;
    max-width: 448px;
    background: #09090b;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

@keyframes modal-in {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modal-out {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
}

.animate-modal-in {
    animation: modal-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-modal-out {
    animation: modal-out 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-modal-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.p-modal-close-new {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.p-modal-close-new:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.close-icon-rotate {
    font-size: 18px;
    transition: transform 0.3s;
}

.p-modal-close-new:hover .close-icon-rotate {
    transform: rotate(90deg);
}

.p-modal-inner {
    padding: 32px;
}

.p-modal-header-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 32px;
}

.p-modal-icon-crown {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.p-modal-title-new {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.p-modal-subtitle-new {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 280px;
}

.p-options-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-method-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    overflow: hidden;
}

#paypal-button-container {
    height: 100% !important;
    width: 100% !important;
}

#paypal-button-container iframe {
    height: 100% !important;
    width: 100% !important;
    cursor: pointer !important;
}

.p-method-card:hover {
    background: rgba(24, 24, 27, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.p-method-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    font-size: 20px;
    transition: color 0.3s;
}

.p-method-card:hover .p-method-icon-box {
    color: #e4e4e7;
}

.p-method-info {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    z-index: 1;
}

.p-method-name {
    font-size: 14px;
    color: #e4e4e7;
    transition: color 0.3s;
}

.p-method-card:hover .p-method-name {
    color: white;
}

.p-method-tag {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.tag-rose {
    background: rgba(244, 63, 94, 0.1);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.tag-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.p-method-arrow {
    color: #3f3f46;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 1;
}

.p-method-card:hover .p-method-arrow {
    color: #d4d4d8;
    transform: translateX(4px);
}

/* Crypto Highlight Special Styles */
.method-crypto {
    background: rgba(6, 78, 59, 0.2);
    border-color: rgba(16, 185, 129, 0.2);
}

.method-crypto:hover {
    background: rgba(6, 78, 59, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 30px -5px rgba(16, 185, 129, 0.15);
}

.p-method-highlight {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.method-crypto:hover .p-method-highlight {
    opacity: 1;
}

.crypto-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.method-crypto:hover .crypto-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
    color: #34d399;
}

.crypto-text {
    color: #ecfdf5;
}

.crypto-arrow {
    color: rgba(16, 185, 129, 0.4);
}

.method-crypto:hover .crypto-arrow {
    color: #34d399;
}

.p-modal-footer-new {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #71717a;
}

/* --- Crypto Step 2 Premium Styles --- */
.crypto-amount-card {
    position: relative;
    overflow: hidden;
}

.crypto-amount-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.crypto-amount-card:hover::after {
    opacity: 1;
}

.crypto-input-refined {
    background: rgba(24, 24, 27, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-input-refined:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(24, 24, 27, 0.6) !important;
}

.crypto-input-refined:focus {
    border-color: rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 0 20px -5px rgba(16, 185, 129, 0.1);
}

.status-check-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 99px;
    color: #34d399;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.confirm-btn-shine {
    position: relative;
    overflow: hidden;
}

.confirm-btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 55%);
    transform: rotate(45deg);
    transition: all 0.3s;
    animation: shine-loop 3s infinite;
}

@keyframes shine-loop {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* ========================================================================= */
/* --- RESPONSIVE DESIGN (Media Queries) --- */
/* ========================================================================= */

@media screen and (max-width: 965px) {

    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    /* Root container adjustments */
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #FDFDFD;
        position: relative;
    }

    /* Override all absolute body-children positioning to relative flow */
    .hero-container,
    .dashboard-preview-container,
    .benefits-container,
    .benefits-list-container,
    .benefits-content-box,
    .pricing-title-container,
    .pricing-group,
    .faq-title-container,
    .faq-list-container,
    .footer {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 60px !important;
        padding: 0 20px !important;
        box-sizing: border-box;
    }

    /* Navbar */
    .navbar {
        width: 90%;
        max-width: 400px;
        /* will flex anyway */
    }

    .navbar-container {
        width: 100%;
        height: auto;
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-menu {
        display: none;
        /* Hide nav links on mobile for cleaner look */
    }

    /* Hero Section */
    .hero-container {
        margin-top: 140px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto !important;
    }

    .hero-title {
        position: relative;
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-top: 20px;
        font-size: 16px;
    }

    .hero-buttons-container {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        flex-direction: column;
        margin-top: 30px;
        gap: 15px;
    }

    .btn-hero {
        width: 100%;
    }

    /* Dashboard Preview */
    .dashboard-preview-container {
        perspective: none;
        margin-top: 40px !important;
    }

    .preview-glass {
        transform: none !important;
        /* disable rotateX on mobile */
    }

    /* Benefits Section Header */
    .benefits-container {
        height: auto !important;
        gap: 15px;
        margin-bottom: 20px;
    }

    .benefits-main-heading {
        width: 100%;
        height: auto;
        font-size: 32px;
    }

    .benefits-subtitle {
        width: 100%;
        height: auto;
    }

    /* Benefits List */
    .benefits-list-container {
        height: auto !important;
        margin-top: 0 !important;
        padding: 0 20px !important;
    }

    .benefit-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        height: auto;
        text-align: center;
        gap: 15px;
    }

    .benefit-info,
    .benefit-title,
    .benefit-description {
        width: 100%;
        height: auto;
    }

    /* Benefits Screen Graphic */
    .benefits-content-box {
        margin-top: 40px !important;
        height: 300px !important;
    }

    .dual-screens-container {
        transform: scale(0.5);
        /* Scale down for mobile */
    }

    /* Pricing Section */
    .pricing-title-container {
        height: auto !important;
        gap: 15px;
    }

    .pricing-main-heading {
        width: 100%;
        height: auto;
        font-size: 32px;
    }

    .pricing-subtitle {
        width: 100%;
        height: auto;
    }

    /* Pricing Cards */
    .pricing-group {
        flex-direction: column;
        height: auto !important;
        gap: 30px !important;
    }

    .plan-card {
        width: 100% !important;
        max-width: 384px;
        height: auto !important;
        min-height: 600px;
        /* Keep enough height */
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 30px 20px !important;
    }

    /* Convert inner absolute positioning to flow layout */
    .plan-header-icon,
    .plan-title,
    .plan-subtitle,
    .price-container,
    .plan-description,
    .plan-benefits-list,
    .btn-pricing {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
    }

    .plan-header-icon {
        margin-bottom: 20px;
    }

    .plan-title {
        height: auto;
        margin-bottom: 10px;
    }

    .plan-subtitle {
        height: auto;
        margin-bottom: 20px;
    }

    .price-container {
        height: auto;
        margin-bottom: 20px;
    }

    .plan-description {
        height: auto;
        margin-bottom: 30px;
    }

    .plan-benefits-list {
        margin-bottom: 30px;
    }

    .benefit-check-item {
        width: 100%;
    }

    .benefit-check-text {
        width: auto;
    }

    .btn-pricing {
        margin-top: auto;
        width: 100% !important;
    }

    /* FAQ Section */
    .faq-title-container {
        height: auto !important;
        gap: 15px;
    }

    .faq-main-heading {
        width: 100%;
        height: auto;
        font-size: 28px;
    }

    .faq-subtitle {
        width: 100%;
        height: auto;
    }

    .faq-list-container {
        height: auto !important;
        padding: 0 20px !important;
        margin-bottom: 60px !important;
    }

    .faq-item-frame {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto;
        min-height: 80px;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .faq-question-text {
        width: calc(100% - 80px) !important;
        font-size: 18px;
    }

    .faq-answer {
        width: calc(100% - 80px) !important;
    }

    /* Footer */
    .footer {
        padding: 40px 20px !important;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    /* Payment Modal adjust */
    .p-modal-content-new {
        width: 95% !important;
        height: auto !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    .p-options-flex {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .benefits-main-heading,
    .pricing-main-heading {
        font-size: 28px;
    }

    .dual-screens-container {
        transform: scale(0.4);
    }
}