@import url('signup-styles.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Layout-only tokens kept here (not part of the design system primitives).
   Color tokens, typography, radius, shadows, motion all come from
   mj-system/tokens.css + mj-system/compat.css. Do NOT re-declare them here. */
:root {
    --navbar-height: 72px;
    --section-padding-y: 80px;
    --section-padding-y-lg: 120px;
    --shadow-xl: 0 24px 48px rgba(6,51,47,.14);
    --shadow-float: 0 20px 60px rgba(6,51,47,.16), 0 8px 20px rgba(6,51,47,.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

body {
    /* font-family comes from mj-system/base.css (--font-body = Readex Pro). */
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1400px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar--dark {
    background: rgba(10, 10, 26, 0.85);
    border-bottom: 1px solid var(--dark-border);
}

.navbar--dark .nav-brand,
.navbar--dark .brand-text {
    color: var(--white);
}

.navbar--dark .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.navbar--dark .nav-link:hover {
    color: var(--white);
}

.navbar--dark .toggle-bar {
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.brand-icon {
    font-size: 28px;
}

.brand-text {
    text-decoration: none;
    color: var(--text);
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

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

.nav-collapse {
    display: contents;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

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

.nav-toggle.open .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-form {
    display: inline-flex;
}

.lang-select {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    transition: border-color var(--transition);
}

.lang-select:hover {
    border-color: var(--text-muted);
}

.lang-select option {
    background: var(--white);
    color: var(--text);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
    line-height: 1.5;
    position: relative;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary--glow {
    box-shadow: 0 4px 20px rgba(33, 32, 156, 0.25);
}

.btn-primary--glow:hover {
    box-shadow: 0 8px 40px rgba(33, 32, 156, 0.4);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
    line-height: 1.5;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent-strong);
}

.btn-secondary {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 12px 28px;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 12px 28px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* The "--light" modifier name predates the redesign — it used to mean
   "for use ON dark surfaces" (white text on transparent). The hero is now
   light, so this modifier now styles a clean light-surface secondary button
   to keep the existing markup working without HTML changes. */
.btn-outline--light {
    color: var(--color-text);
    background: var(--color-surface);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-outline--light:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-surface);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + 60px) 0 40px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--teal-50) 0%, transparent 70%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 100%);
    color: var(--color-text);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
    opacity: 0.55;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: color-mix(in srgb, var(--color-primary) 22%, transparent);
    top: -15%;
    inset-inline-start: -8%;
}

.orb-2 {
    width: 460px;
    height: 460px;
    background: color-mix(in srgb, var(--color-accent) 18%, transparent);
    bottom: -12%;
    inset-inline-end: -8%;
    animation-delay: 7s;
}

.orb-3 {
    width: 360px;
    height: 360px;
    background: color-mix(in srgb, var(--teal-300) 22%, transparent);
    top: 30%;
    inset-inline-end: 20%;
    animation-delay: 14s;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--color-text);
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--teal-400) 45%, var(--color-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 620px;
    margin-inline: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    color: var(--color-text-muted);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-trust p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust svg {
    color: var(--color-primary);
}

.hero-visual {
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 60px;
}

.hero-mockup {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px;
}

.hero-mockup__img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 0 1px var(--color-border),
        0 24px 60px rgba(6, 51, 47, 0.18),
        0 0 80px color-mix(in srgb, var(--color-primary) 12%, transparent);
    display: block;
}

.hero-mockup__glow {
    position: absolute;
    bottom: -60px;
    inset-inline: 10%;
    height: 120px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--color-primary) 18%, transparent) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%;
    display: block;
}

.section-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.inline-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.15;
}

.section-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.intro-section {
    padding: var(--section-padding-y-lg) 0;
}

.intro-shell {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 241, 241, 0.92));
    border: 1px solid rgba(33, 32, 156, 0.1);
    box-shadow: 0 24px 60px rgba(12, 12, 24, 0.08);
    text-align: center;
}

.intro-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(33, 32, 156, 0.22), rgba(253, 184, 39, 0.28), rgba(33, 32, 156, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.intro-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(33, 32, 156, 0.08);
    border: 1px solid rgba(33, 32, 156, 0.14);
}

.intro-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--text);
    max-width: 880px;
    margin: 0 auto 14px;
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.intro-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 840px;
    margin: 0 auto;
}

.intro-tile {
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    border: 1px solid rgba(33, 32, 156, 0.12);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.intro-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 32, 156, 0.28);
    box-shadow: 0 14px 30px rgba(33, 32, 156, 0.12);
}

.intro-tile--featured {
    background: linear-gradient(135deg, rgba(33, 32, 156, 0.95), rgba(53, 52, 184, 0.95));
    border-color: rgba(253, 184, 39, 0.4);
    box-shadow: 0 16px 34px rgba(33, 32, 156, 0.24);
}

.intro-tile--featured .intro-kpi {
    color: var(--accent);
}

.intro-tile--featured .intro-kpi-label {
    color: rgba(255, 255, 255, 0.8);
}

.intro-kpi {
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.intro-kpi-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.capability-lab {
    padding: 0 0 var(--section-padding-y-lg);
}

.capability-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.capability-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    border: 1px solid rgba(33, 32, 156, 0.1);
    background: var(--white);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(22, 22, 40, 0.1);
    border-color: rgba(33, 32, 156, 0.22);
}

.capability-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(253, 184, 39, 0.1), rgba(33, 32, 156, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.capability-card__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.capability-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.capability-card--dark {
    background: var(--dark-bg);
    border-color: var(--dark-border);
}

.capability-card--dark:hover {
    box-shadow: var(--glow-primary);
    border-color: rgba(255, 255, 255, 0.14);
}

.capability-card--dark .capability-card__icon {
    background: rgba(253, 184, 39, 0.12);
}

.capability-card--dark .capability-card__title {
    color: var(--white);
}

.capability-card--dark .capability-card__desc {
    color: rgba(255, 255, 255, 0.55);
}

.capability-card--accent {
    background: var(--accent);
    border-color: transparent;
}

.capability-card--accent:hover {
    box-shadow: var(--glow-accent-strong);
}

.capability-card--accent .capability-card__icon {
    background: rgba(35, 18, 11, 0.08);
}

.capability-card--accent .capability-card__title {
    color: var(--dark);
}

.capability-card--accent .capability-card__desc {
    color: rgba(35, 18, 11, 0.72);
}

.showcase-grid {
    display: grid;
    gap: 20px;
}

.showcase-grid--2 {
    grid-template-columns: 1fr 1fr;
}

.showcase-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.showcase-grid--bento {
    grid-template-columns: repeat(12, 1fr);
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.showcase-card--span-7 { grid-column: span 7; }
.showcase-card--span-5 { grid-column: span 5; }
.showcase-card--span-6 { grid-column: span 6; }
.showcase-card--span-4 { grid-column: span 4; }
.showcase-card--span-8 { grid-column: span 8; }
.showcase-card--span-12 { grid-column: span 12; }

.showcase-card__body {
    padding: 32px 32px 0;
}

.showcase-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.showcase-card__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.showcase-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.showcase-card__img {
    width: 100%;
    display: block;
    margin-top: auto;
}

.showcase-card__img--padded {
    padding: 0 32px 0;
}

.showcase-card__img--rounded {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.showcase-card--dark {
    background: var(--dark-bg);
    border-color: var(--dark-border);
}

.showcase-card--dark .showcase-card__label {
    color: var(--accent);
}

.showcase-card--dark .showcase-card__title {
    color: var(--white);
}

.showcase-card--dark .showcase-card__desc {
    color: rgba(255, 255, 255, 0.6);
}

.showcase-card--dark:hover {
    box-shadow: var(--glow-primary);
}

.showcase-card--accent {
    background: var(--accent);
    border-color: transparent;
}

.showcase-card--accent .showcase-card__label {
    color: var(--primary);
    opacity: 0.8;
}

.showcase-card--accent .showcase-card__title {
    color: var(--dark);
}

.showcase-card--accent .showcase-card__desc {
    color: var(--dark);
    opacity: 0.75;
}

.showcase-card--accent:hover {
    box-shadow: var(--glow-accent-strong);
}

.showcase-card--glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card--glass .showcase-card__title {
    color: var(--white);
}

.showcase-card--glass .showcase-card__desc {
    color: rgba(255, 255, 255, 0.6);
}

.showcase-card--glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: var(--section-padding-y-lg) 0;
}

.split-section--reverse {
    direction: ltr;
}

body[dir="rtl"] .split-section--reverse {
    direction: rtl;
}

.split-content {
    direction: ltr;
}

body[dir="rtl"] .split-content {
    direction: rtl;
}

.split-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
}

.split-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.split-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.split-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

.split-img-wrap {
    position: relative;
}

.split-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-float);
    position: relative;
    z-index: 1;
}

.split-img-glow {
    position: absolute;
    inset: 20%;
    background: radial-gradient(ellipse, rgba(33, 32, 156, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.stats-section {
    padding: var(--section-padding-y-lg) 0;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(33, 32, 156, 0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 32px 16px;
}

.stat-item__number {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent);
    letter-spacing: -2px;
    text-shadow: 0 0 60px rgba(253, 184, 39, 0.4);
}

.stat-item__label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.features-section {
    padding: var(--section-padding-y) 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(253, 184, 39, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(253, 184, 39, 0.15);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(253, 184, 39, 0.12), rgba(33, 32, 156, 0.08));
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pricing-preview {
    padding: var(--section-padding-y-lg) 0;
    background: var(--bg-alt);
}

.pricing-preview .section-title {
    margin-bottom: 24px;
}

.price-card-main {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
}

.price-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price-card-main h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text);
}

.price-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.price-big .currency {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
}

.price-big .period {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.price-features li:last-child {
    border-bottom: none;
}

.pricing-section {
    padding: var(--section-padding-y-lg) 0;
    background: var(--bg-alt);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-float);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    overflow: hidden;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
}

.pricing-title {
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--text);
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-trial {
    text-align: center;
    margin-bottom: 20px;
}

.trial-badge {
    display: inline-block;
    background: rgba(253, 184, 39, 0.1);
    border: 1px solid rgba(253, 184, 39, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-card-wrap {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
}

.pricing-plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.how-it-works {
    padding: var(--section-padding-y) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step-counter;
}

.step-card-modern {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all var(--transition-slow);
    counter-increment: step-counter;
}

.step-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: rgba(253, 184, 39, 0.3);
}

.step-card-modern__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(33, 32, 156, 0.2);
}

.step-card-modern__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.step-card-modern__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: fadeInUp 0.5s ease-out both;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.15s; }
.step-item:nth-child(3) { animation-delay: 0.2s; }
.step-item:nth-child(4) { animation-delay: 0.25s; }

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
}

.final-cta {
    padding: var(--section-padding-y-lg) 0;
    text-align: center;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(33, 32, 156, 0.25) 0%, transparent 60%);
    filter: blur(60px);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.cta-banner {
    background: var(--dark-bg);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(33, 32, 156, 0.15), transparent 70%);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.5px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    position: relative;
}

.cta-banner a {
    position: relative;
}

.landing-section {
    padding: var(--section-padding-y) 0;
}

.landing-section--lg {
    padding: var(--section-padding-y-lg) 0;
}

.landing-content {
    max-width: 900px;
    margin: 0 auto;
}

.landing-content h3,
.landing-content h4 {
    color: var(--text);
}

.landing-content p {
    color: var(--text-secondary);
}

.faq-content {
    max-width: 800px;
}

.faq-section {
    padding: var(--section-padding-y) 0;
}

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

.faq-item {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(253, 184, 39, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transform: translateX(-4px);
}

body[dir="rtl"] .faq-item:hover {
    transform: translateX(4px);
}

.faq-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.faq-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.faq-item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.faq-item-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(33, 32, 156, 0.15);
}

.page-hero {
    padding: calc(var(--navbar-height) + 56px) 0 48px;
    background: var(--dark-bg);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(33, 32, 156, 0.2) 0%, transparent 60%);
    filter: blur(80px);
}

.page-hero h1,
.page-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -1px;
    position: relative;
}

.page-hero p,
.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    position: relative;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-1px);
}

.highlight-icon {
    font-size: 16px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.footer {
    background: var(--dark-bg);
    padding: 80px 0 40px;
    border-top: none;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-message {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

.footer-brand-section {
    max-width: 280px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 12px;
}

.footer-section {
    min-width: 140px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(33, 32, 156, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input[type="color"] {
    height: 46px;
    cursor: pointer;
}

.form-group small {
    font-size: 12px;
    color: var(--text-muted);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.testing-links-section {
    padding: calc(var(--navbar-height) + 24px) 0 24px;
    background: var(--bg-alt);
}

.testing-links-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
}

.testing-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.testing-link-card {
    display: block;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all var(--transition);
}

.testing-link-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    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; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}

.noise-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.browser-frame {
    background: var(--dark-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(33, 32, 156, 0.12);
}

.browser-frame__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-frame__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.browser-frame__dot--red { background: #ff5f57; }
.browser-frame__dot--yellow { background: #ffbd2e; }
.browser-frame__dot--green { background: #28c840; }

.browser-frame__url {
    flex: 1;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.browser-frame img {
    width: 100%;
    display: block;
}

.marquee-strip {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.02em;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(33, 32, 156, 0.3), rgba(253, 184, 39, 0.3), rgba(33, 32, 156, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.float-anim {
    animation: floatSoft 6s ease-in-out infinite;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.section-dark .section-header::after {
    background: var(--accent);
}

.counter { font-variant-numeric: tabular-nums; }

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    background: rgba(253, 184, 39, 0.1);
    color: var(--accent);
    border: 1px solid rgba(253, 184, 39, 0.2);
}

.tag-pill--light {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

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

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(253, 184, 39, 0.2); }
    50% { box-shadow: 0 0 40px rgba(253, 184, 39, 0.4); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes shimmerSlide {
    0% { left: -100%; }
    40%, 100% { left: 150%; }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 56px;
        --section-padding-y-lg: 72px;
    }

    .hero {
        padding: calc(var(--navbar-height) + 32px) 0 40px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-visual {
        margin-top: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .page-hero {
        padding: calc(var(--navbar-height) + 32px) 0 32px;
    }

    .page-hero h1,
    .page-title {
        font-size: 30px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .features-section,
    .how-it-works,
    .faq-section,
    .landing-section,
    .landing-section--lg,
    .pricing-preview,
    .pricing-section {
        padding: 48px 0;
    }

    .features-grid,
    .steps-container,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .pricing-card,
    .price-card-main {
        padding: 28px 20px;
    }

    .showcase-grid--2,
    .showcase-grid--3,
    .showcase-grid--bento {
        grid-template-columns: 1fr;
    }

    .showcase-card--span-7,
    .showcase-card--span-5,
    .showcase-card--span-6,
    .showcase-card--span-4,
    .showcase-card--span-8,
    .showcase-card--span-12 {
        grid-column: span 1;
    }

    .showcase-card__body {
        padding: 24px 24px 0;
    }

    .showcase-card__title {
        font-size: 18px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0;
    }

    .split-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-item__number {
        font-size: 32px;
    }

    .stat-item__label {
        font-size: 12px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-subtitle {
        font-size: 16px;
    }

    .intro-shell {
        padding: 34px 22px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .intro-kpi {
        font-size: 32px;
    }

    .capability-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .price-amount,
    .price-big .currency {
        font-size: 42px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .footer-brand-section {
        max-width: 100%;
    }

    .footer-section {
        min-width: auto;
    }

    .footer-links {
        justify-content: center;
        gap: 12px;
    }

    .container {
        padding: 0 16px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-collapse {
        display: flex;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 8px 0 20px;
        z-index: 999;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.25s ease;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .nav-collapse.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-overlay.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2px;
        width: 100%;
        padding: 8px 16px;
    }

    .nav-link {
        padding: 12px 14px;
        font-size: 15px;
        border-radius: var(--radius-md);
        display: block;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-bg);
        color: var(--primary);
    }

    .nav-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 12px 16px;
        border-top: 1px solid var(--border-light);
        margin-top: 4px;
    }

    .nav-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .lang-form {
        width: 100%;
    }

    .lang-select {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .highlight-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-accent {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
    }

    .hero {
        padding: calc(var(--navbar-height) + 24px) 0 32px;
    }

    .features-section,
    .how-it-works,
    .faq-section,
    .landing-section,
    .landing-section--lg,
    .pricing-preview,
    .pricing-section {
        padding: 36px 0;
    }

    .page-hero {
        padding: calc(var(--navbar-height) + 24px) 0 24px;
    }

    .page-hero h1,
    .page-title {
        font-size: 24px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-highlights {
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero-trust {
        gap: 8px;
        font-size: 12px;
    }

    .container {
        padding: 0 14px;
    }

    .step-card {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .step-card > div:first-child {
        margin: 0 auto;
    }

    .showcase-card__body {
        padding: 20px 20px 0;
    }

    .showcase-card__title {
        font-size: 16px;
    }

    .showcase-card__desc {
        font-size: 13px;
    }

    .split-title {
        font-size: 24px;
    }

    .split-desc {
        font-size: 14px;
    }

    .stat-item__number {
        font-size: 28px;
    }

    .intro-title {
        font-size: 24px;
    }

    .intro-subtitle {
        font-size: 14px;
    }

    .intro-shell {
        padding: 28px 16px;
    }

    .intro-kpi {
        font-size: 28px;
    }

    .capability-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .capability-card {
        padding: 22px 18px;
    }

    .final-cta h2 {
        font-size: 24px;
    }
}
