/* =========================================
   Font: Plus Jakarta Sans / Colors: #07001f, #6e45ff, #3dfd98
   ========================================= */

/* --- Google Font Import (Sharp & High Legibility) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- Global Sharpness Fixes --- */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* --- CSS Variables --- */
:root {
    --black: #07001f;
    --white: #ffffff;
    --purple: #6e45ff;
    --purple-100: #e3dbff;
    --purple-200: #c6b5ff;
    --purple-300: #a990ff;
    --green: #3dfd98;
    --green-100: #d9feeb;
    --green-200: #b3fed7;
    --green-300: #8dfdc3;
    --dark-blue-200: #080024;
    --dark-blue-100: #090029;
    --neutral-lighter: #9895a1;
    --neutral-darker: #302d3a;
    --neutral-light: #aaa;

    /* Updated to Plus Jakarta Sans for maximum clarity */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --container-max: 90rem;
    --section-pad-v: 5rem;
    --global-pad-h: 5%;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    letter-spacing: .5px;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 4rem; font-weight: 400; }
h2 { font-size: 3.25rem; font-weight: 400; }
h3 { font-size: 2.5rem; font-weight: 400; }
h4 { font-size: 2rem; font-weight: 400; }
h5 { font-size: 1.5rem; font-weight: 400; }
h6 { font-size: 1.25rem; font-weight: 400; }

p {
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.7;
}

/* --- Layout Utilities --- */
.padding-global {
    padding-left: var(--global-pad-h);
    padding-right: var(--global-pad-h);
}

.container-large {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.padding-section-medium {
    padding-top: var(--section-pad-v);
    padding-bottom: var(--section-pad-v);
}

.padding-section-large {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

/* --- Text Utilities --- */
.text-color-green {
    color: var(--green);
}

.text-color-purple {
    color: var(--purple);
}

.text-color-grey {
    color: var(--neutral-lighter);
}

.text-weight-bold {
    font-weight: 700;
}

.text-weight-semibold {
    font-weight: 600;
}

.text-weight-light {
    font-weight: 300;
}

/* --- Buttons --- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.7px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 100rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.button.is-primary {
    background-color: var(--purple);
    color: var(--white);
}

.button.is-primary:hover {
    background-color: var(--purple-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(110, 69, 255, 0.35);
}

.button.is-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--neutral-darker);
}

.button.is-secondary:hover {
    border-color: var(--purple);
    color: var(--purple-200);
}

.button.is-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.button-group.is-center {
    justify-content: center;
}

/* --- Caption / Decorative Lines --- */
.caption-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.caption-text {
    color: var(--neutral-lighter);
    font-size: 0.875rem;
    font-weight: 300;
}

.caption-line-wrapper {
    display: flex;
    align-items: center;
}

.caption-line-wrapper.is-vertical {
    flex-direction: column;
    z-index: 15;
    position: relative;
}

.caption-line-mask {
    width: 2.5rem;
    height: 1px;
    overflow: hidden;
}

.caption-line-mask.is-vertical {
    width: 1px;
    height: 2.5rem;
}

.caption-line-mask.is-vertical.is-hero {
    height: 4.5rem;
}

.caption-line {
    background-image: linear-gradient(90deg, transparent, #fff);
    width: 100%;
    height: 100%;
}

.caption-line.is-vertical {
    background-image: linear-gradient(transparent, #fff);
}

.caption-line.is-vertical.is-hero {
    background-image: linear-gradient(transparent 30%, #fff);
}

.caption-line.is-green {
    background-image: linear-gradient(90deg, transparent, var(--green));
}

.caption-dot {
    background-color: var(--white);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.caption-dot.is-green {
    background-color: var(--green);
}

/* --- Icon Embeds --- */
.icon-embed-small {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
}

.icon-embed-small.is-purple { color: var(--purple); }
.icon-embed-small.is-green { color: var(--green); }

.icon-embed-xsmall {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
}

.icon-embed-xsmall.is-green { color: var(--green); }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar_component {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: rgba(7, 0, 31, 0);
    background-image: linear-gradient(#07001f, rgba(7, 0, 31, 0.3));
    align-items: center;
    width: 100%;
    min-height: 5.5rem;
    padding-left: var(--global-pad-h);
    padding-right: var(--global-pad-h);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.navbar_component.is-scrolled {
    background-color: rgba(7, 0, 31, 0.92);
}

.navbar_container {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.navbar_logo-link {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.navbar_logo {
    height: 2.125rem;
    width: auto;
}

.navbar_menu {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 0;
}

.navbar_link {
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar_link:hover {
    color: var(--purple-200);
}

.navbar_button-wrapper {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    align-items: center;
}

.navbar_mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
}

.navbar_mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar_mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 6rem var(--global-pad-h) 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 100vh;
    max-height: 100dvh;
    background: rgba(7, 0, 31, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--neutral-darker);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.navbar_mobile-menu.active {
    display: flex;
}

.navbar_mobile-link {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s;
}

.navbar_mobile-link:hover {
    color: var(--purple-200);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-section .padding-global {
    width: 100%;
}

.hero_content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.hero_heading {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 56rem;
}

.hero_heading .text-color-green {
    color: var(--green);
}

.hero_subtitle {
    color: var(--neutral-lighter);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 38rem;
    line-height: 1.7;
}

.hero_caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Hero Screen Showcase */
.hero_screen-component {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    position: relative;
}

.hero_screen-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.hero_screen-border {
    z-index: 10;
    background-image: linear-gradient(261deg, var(--green), rgba(61, 253, 152, 0.2) 80%, var(--green));
    border-radius: 16px;
    width: 100%;
    max-width: 70rem;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.hero_screen-image {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: block;
}

.hero_screen-overlay {
    z-index: 15;
    background-image: linear-gradient(0deg, var(--black), transparent);
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

/* Circular Hero Background */
.hero_circular-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150vw;
    height: 100%;
    margin-top: 5.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero_circular-1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    animation: rotateCircle 120s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.hero_circular-overlay {
    z-index: 5;
    background-color: var(--black);
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero_glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(110, 69, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.15); }
}

/* =========================================
   FEATURE HIGHLIGHTS (Caption Row)
   ========================================= */
.features-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.features-row_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.features-row_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.features-row_icon-wrapper {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.features-row_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.features-row_desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--neutral-lighter);
    line-height: 1.7;
}

/* =========================================
   VALUE PROPOSITION SECTION
   ========================================= */
.value-section {
    position: relative;
}

.value_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.value_left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value_heading {
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.2;
}

.value_text {
    color: var(--neutral-lighter);
    font-weight: 300;
    line-height: 1.7;
}

.value_right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* =========================================
   FOR-WHO SECTION (Sticky Cards)
   ========================================= */
.for-who-section {
    position: relative;
}

.for-who_component {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.for-who_card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

.for-who_item {
    border-radius: 16px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 3rem;
    align-items: start;
    position: sticky;
    top: 6.5rem;
}

.for-who_item.is-green {
    background-image: linear-gradient(135deg, #120b2e, #1a1040);
    border: 1px solid rgba(110, 69, 255, 0.2);
    box-shadow: 0 2px 94px rgba(6, 0, 28, 0.32);
    z-index: 9;
    color: var(--white);
}

.for-who_item.is-purple {
    background-image: linear-gradient(135deg, var(--purple-100), var(--purple-200));
    color: var(--black);
}

.for-who_item.is-white {
    background-color: var(--white);
    color: var(--black);
}

.for-who_image-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.for-who_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.for-who_content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.for-who_heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

.for-who_text {
    font-weight: 300;
    color: inherit;
    opacity: 0.8;
    line-height: 1.7;
}

.for-who_features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.for-who_features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--black);
}

.for-who_check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--purple);
    flex-shrink: 0;
}

/* =========================================
   WHY-YELDRA / GRID SECTION
   ========================================= */
.why-section {
    position: relative;
}

.why_heading-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.why_heading-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.why_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: start;
}

.why_grid-item {
    border-radius: 16px;
    padding: 1px;
    background-image: linear-gradient(135deg, #6b6580, #2a2545);
}

.why_grid-item:nth-child(even) {
    margin-top: 0;
}

.why_grid-item-inner {
    background-color: var(--dark-blue-200);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    height: 100%;
}

.why_grid-item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why_grid-item-image {
    width: 100%;
    border-radius: 8px;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    position: relative;
}

.stats_heading-wrapper {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.stats_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.stats_card {
    background-image: linear-gradient(135deg, #6b6580, #2a2545);
    border-radius: 16px;
    padding: 1px;
}

.stats_card-inner {
    background-color: var(--dark-blue-200);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats_number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.stats_label {
    font-size: 1rem;
    font-weight: 300;
    color: var(--neutral-lighter);
    line-height: 1.7;
}

.stats_bar-wrapper {
    width: 100%;
    height: 8px;
    background: var(--neutral-darker);
    border-radius: 100px;
    overflow: hidden;
}

.stats_bar {
    height: 100%;
    border-radius: 100px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats_bar.is-purple-green {
    background: linear-gradient(90deg, var(--purple), var(--green));
}

.stats_bar.is-green-purple {
    background: linear-gradient(90deg, var(--green), var(--purple));
}

/* =========================================
   METHOD / STEPS SECTION
   ========================================= */
.method-section {
    position: relative;
}

.method_component {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 5rem;
    align-items: start;
}

.method_left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 30%;
}

.method_cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.method_card-wrapper {
    background-image: linear-gradient(315deg, #2a2545, #6b6580);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 1px;
    box-shadow: 0 -60px 80px rgba(6, 0, 28, 0.8);
    position: sticky;
}

.method_card-wrapper:nth-child(1) { top: 30%; }
.method_card-wrapper:nth-child(2) { top: 32%; }
.method_card-wrapper:nth-child(3) { top: 34%; }

.method_card-inner {
    background-color: var(--dark-blue-200);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method_card-header {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1rem;
    align-items: center;
}

.method_number {
    color: var(--green);
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(61, 253, 152, 0.7);
}

.method_card-text {
    color: var(--white);
    font-weight: 300;
    line-height: 1.7;
}

.method_card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.method_card-list li {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--white);
    padding-left: 1.25rem;
    position: relative;
}

.method_card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    position: relative;
}

.faq_content {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 6rem;
    align-items: start;
}

.faq_left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq_accordion {
    display: flex;
    flex-direction: column;
}

.faq_item {
    border-bottom: 1px solid var(--neutral-darker);
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 1.5rem 0;
}

.faq_question-text {
    color: var(--white);
    font-weight: 400;
    font-size: 1.125rem;
}

.faq_icon-wrapper {
    background-image: linear-gradient(var(--purple-300), var(--purple));
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    padding: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.faq_icon-inner {
    background-color: var(--black);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq_plus-line-1 {
    background-color: var(--white);
    border-radius: 10px;
    width: 1.5px;
    height: 12px;
    transition: transform 0.3s ease;
}

.faq_plus-line-2 {
    background-color: var(--white);
    border-radius: 10px;
    width: 12px;
    height: 1.5px;
    position: absolute;
}

.faq_answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.faq_answer.is-open {
    max-height: 500px;
}

.faq_answer-inner {
    padding-bottom: 1.5rem;
}

.faq_answer-text {
    color: #c8c5d0;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
}

.faq_question.is-open .faq_plus-line-1 {
    transform: rotate(90deg);
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing_heading-wrapper {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Billing Toggle */
.pricing_toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-blue-200);
    border: 1px solid var(--neutral-darker);
    border-radius: 100rem;
    padding: 4px;
    position: relative;
}

.pricing_toggle-btn {
    background: none;
    border: none;
    color: var(--neutral-lighter);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 1.25rem;
    border-radius: 100rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pricing_toggle-btn.is-active {
    background: var(--purple);
    color: var(--white);
    font-weight: 500;
}

.pricing_toggle-btn:hover:not(.is-active) {
    color: var(--white);
}

.pricing_save-badge {
    background: linear-gradient(135deg, var(--green), var(--green-300));
    color: var(--black);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100rem;
    margin-left: 0.25rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Pricing Grid */
.pricing_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* Pricing Card */
.pricing_card {
    border-radius: 16px;
    padding: 1px;
    background-image: linear-gradient(135deg, #6b6580, #2a2545);
    position: relative;
}

.pricing_card.is-featured {
    background-image: linear-gradient(135deg, var(--green), var(--purple));
    transform: scale(1.03);
    z-index: 2;
}

.pricing_popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--green-300));
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100rem;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 3;
}

.pricing_card-inner {
    background-color: var(--dark-blue-200);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    height: 100%;
}

.pricing_card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing_plan-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-200);
}

.pricing_plan-label.is-green {
    color: var(--green);
}

.pricing_plan-name {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
}

/* Price Display */
.pricing_price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing_price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.pricing_amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    transition: all 0.3s ease;
}

.pricing_price-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing_currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.pricing_period {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--neutral-lighter);
}

.pricing_billed-text {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--neutral-lighter);
}

.pricing_discount-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    background: rgba(61, 253, 152, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    width: fit-content;
}

/* Description */
.pricing_description {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--neutral-lighter);
    line-height: 1.7;
}

/* Feature List */
.pricing_feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.pricing_feature-list li {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--white);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.pricing_feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-300));
}

/* Full-width button */
.button.is-full {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Enterprise note */
.pricing_enterprise-note {
    text-align: center;
}

/* Pricing Responsive */
@media (max-width: 991px) {
    .pricing_grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing_card.is-featured {
        transform: none;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta_wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.cta_heading {
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 48rem;
}

.cta_text {
    color: var(--neutral-lighter);
    font-weight: 300;
    max-width: 36rem;
    line-height: 1.7;
}

.cta_glow {
    position: absolute;
    width: 100%;
    height: 400px;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(110, 69, 255, 0.08), transparent 50%),
                linear-gradient(to top, rgba(61, 253, 152, 0.05), transparent 30%);
    pointer-events: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer_component {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='100%25' cy='0%25' r='80%25'%3E%3Cstop offset='0%25' stop-color='%236e45ff' stop-opacity='0.06'/%3E%3Cstop offset='100%25' stop-color='%2307001f' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='400' height='400'/%3E%3C/svg%3E");
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 50% auto;
}

.footer_top-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 0.5fr;
    gap: 4vw;
    padding-bottom: 6rem;
    align-items: start;
}

.footer_logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer_logo-img {
    height: 2.125rem;
    width: auto;
}

.footer_tagline {
    color: var(--neutral-lighter);
    font-size: 0.875rem;
    font-weight: 300;
    max-width: 24rem;
    line-height: 1.7;
}

.footer_right-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-end;
    height: 100%;
}

.footer_menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    align-items: end;
}

.footer_link-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_link-heading {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer_link {
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer_link:hover {
    color: var(--green);
}

.footer_bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-darker);
}

.footer_credit-text {
    color: var(--neutral-lighter);
    font-size: 0.75rem;
    font-weight: 300;
}

.footer_legal-list {
    display: flex;
    gap: 1.5rem;
}

.footer_legal-link {
    color: var(--neutral-lighter);
    font-size: 0.75rem;
    font-weight: 300;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer_legal-link:hover {
    color: var(--green);
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   DIVIDER
   ========================================= */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-darker), transparent);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    h1, .hero_heading { font-size: 3rem; }
    h2, .value_heading, .cta_heading { font-size: 2.5rem; }

    .hero_screen-border {
        border-radius: 8px;
        padding: 2px;
    }

    .hero_screen-image {
        border-radius: 6px;
    }

    .hero_circular-bg {
        width: 130vw;
        margin-top: 4.5rem;
    }

    .hero_circular-1 {
        top: 5rem;
    }

    .hero_circular-overlay {
        height: 50%;
    }

    .value_content,
    .for-who_component,
    .why_heading-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why_grid-item:nth-child(even) {
        margin-top: 0;
    }

    .method_component {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .method_left {
        position: static;
    }

    .faq_content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats_grid {
        grid-template-columns: 1fr;
    }

    .for-who_item {
        grid-template-columns: 1fr;
        position: static;
    }

    .method_card-wrapper {
        position: static !important;
    }

    .footer_top-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad-v: 3.5rem;
    }

    h1, .hero_heading { font-size: 2.25rem; }
    h2, .value_heading, .cta_heading { font-size: 2rem; }

    .navbar_menu,
    .navbar_button-wrapper {
        display: none;
    }

    .navbar_mobile-toggle {
        display: flex;
    }

    .navbar_mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar_mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar_mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-section {
        padding-top: 8rem;
    }

    .hero_circular-1 {
        top: 2rem;
    }

    .hero_circular-overlay {
        background-color: transparent;
        background-image: linear-gradient(transparent, var(--black) 30%);
        height: 100%;
    }

    .features-row_grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why_grid {
        grid-template-columns: 1fr;
    }

    .for-who_item {
        padding: 2rem;
    }

    .footer_bottom-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer_menu-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    h1, .hero_heading { font-size: 1.85rem; }

    .stats_number {
        font-size: 2.5rem;
    }

    .for-who_item {
        padding: 1.5rem;
    }
}

/* --- Language Switcher --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.5rem;
}

.lang-switch_btn {
    background: none;
    border: none;
    color: var(--neutral-lighter);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0.25rem 0.35rem;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
    position: relative;
}

.lang-switch_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 44px;
    min-height: 44px;
}

.lang-switch_btn:hover {
    color: var(--white);
}

.lang-switch_btn.is-active {
    color: var(--white);
    background-color: rgba(110, 69, 255, 0.25);
    font-weight: 600;
}

.lang-switch_divider {
    color: var(--neutral-darker);
    font-size: 0.75rem;
    user-select: none;
}

.lang-switch.is-mobile {
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-switch.is-mobile .lang-switch_btn {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
}

.lang-switch.is-mobile .lang-switch_divider {
    font-size: 1rem;
}

/* --- Legal Pages (Privacy, Terms) --- */
.legal-page {
    padding: 8rem var(--global-pad-h) 5rem;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem;
}

.legal-header p {
    font-size: 1.125rem;
    color: var(--neutral-lighter);
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 3rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-lighter);
    margin: 0 0 1rem;
}

.legal-content ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-lighter);
    margin-bottom: 0.5rem;
}

.legal-content li strong {
    color: var(--white);
}

.legal-content a {
    color: var(--purple-200);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-meta {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
    color: var(--neutral-lighter);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple-200);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 2rem;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.gdpr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(110, 69, 255, 0.15), rgba(110, 69, 255, 0.05));
    border: 1px solid rgba(110, 69, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-200);
    margin-bottom: 1.5rem;
}

.gdpr-badge svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(110, 69, 255, 0.1), rgba(110, 69, 255, 0.03));
    border: 1px solid rgba(110, 69, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
    color: var(--white);
}

.info-box strong {
    color: var(--purple-200);
}
