:root {
    /* Quartal Light Theme Colors */
    --black: #0d0d0d;
    --light-black: #111111;
    --gray-dark: #333333;
    --gray-mid: #4a4d51;
    --gray-light: #dadce0;
    --surface-variant: #f8f9fa;
    --white: #ffffff;
    
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;
    --space-2xl: 96px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

.mb-16 { margin-bottom: 16px; }
.mt-16 { margin-top: 16px; }

/* Screen Reader Only (For SEO & Accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.nav-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 64px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-mid);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--black);
}

.nav-cta-hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 15px;
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--light-black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--black);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.btn-magnet {
    transform: scale(1);
    animation: magnet-pulse 2s infinite;
}

.btn-magnet:hover {
    transform: scale(1.05);
    animation: none;
}

@keyframes magnet-pulse {
    0% { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(17, 17, 17, 0); }
    100% { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0); }
}

/* Scroll hint arrow */
.scroll-hint {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-mid);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: scroll-pulse 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-hint.visible {
    opacity: 1;
}

.scroll-hint.hidden {
    opacity: 0 !important;
    transition: opacity 0.4s ease;
}

@keyframes scroll-pulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
    50% { transform: translateX(-50%) translateY(5px); opacity: 0.7; }
}

/* Hero Section */
.hero {
    padding: 140px 24px var(--space-xl);
    text-align: center;
    background-color: var(--white);
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--black);
    min-height: 150px;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--black);
}

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

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--gray-mid);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-mid);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
}

/* Mockup Graphic */
.hero-image-wrapper {
    margin-top: var(--space-xl);
    padding: 0 24px;
}

.mockup-window {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.mockup-header {
    height: 48px;
    background: var(--surface-variant);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
}

.mockup-body {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 200px;
    border-right: 1px solid var(--gray-light);
    padding: 16px 0;
    background: var(--surface-variant);
}

.sidebar-item {
    padding: 12px 24px;
    font-size: 14px;
    color: var(--gray-mid);
    font-weight: 500;
}

.sidebar-item.active {
    background: var(--gray-light);
    color: var(--black);
    border-right: 3px solid var(--black);
}

.mockup-content {
    flex: 1;
    padding: 32px;
    background: var(--white);
}

.dashboard-card {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.dashboard-card.sm {
    margin-bottom: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card-title {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-value {
    font-size: 36px;
    color: var(--black);
    font-weight: 400;
    letter-spacing: -1px;
}

.card-value.sm {
    font-size: 24px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: var(--surface-variant);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--black);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-mid);
    line-height: 1.6;
    font-size: 15px;
}

/* Functionality Section — Numbered List */
.func-section {
    padding: 80px 0 100px;
    border-top: 1px solid var(--gray-light);
}

.func-header {
    margin-bottom: 64px;
}

.func-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--black);
    font-weight: 700;
    margin-top: 12px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.feature-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-pro-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.feature-pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: var(--gray-mid);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--surface-variant);
    color: var(--black);
    border: 1px solid var(--gray-light);
}

.feat-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8px;
}

.bg-blue, .bg-orange, .bg-red, .bg-green, .bg-indigo, .bg-yellow, .bg-teal, .bg-gray, .bg-pink { 
    background: var(--surface-variant); 
    color: var(--black); 
}

.feature-pro-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--black);
    line-height: 1.3;
}

.feature-pro-card p {
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.feature-pro-card .func-tags {
    margin-top: auto;
}

.func-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.func-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    background: var(--surface-variant);
    border: 1px solid var(--gray-light);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.text-black {
    color: var(--black);
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: var(--surface-variant);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--light-black);
}

.p-0 {
    padding: 0 !important;
}

.transaction-list {
    display: flex;
    flex-direction: column;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-light);
}

.transaction-item:last-child {
    border-bottom: none;
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
}

.tx-icon.monobank { background: #000; }
.tx-icon.privatbank { background: #73A82C; }

.tx-details {
    flex: 1;
}

.tx-title {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 2px;
}

.tx-subtitle {
    font-size: 13px;
    color: var(--gray-mid);
}

.tx-amount {
    font-weight: 600;
    font-size: 16px;
}

.tx-amount.positive {
    color: #2e7d32;
}

/* Feature Header Shared */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.feature-header h2 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.feature-header p {
    font-size: 18px;
    color: var(--gray-mid);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--surface-variant);
    color: var(--black);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Split Features (50/50 Layout) */
.split-features {
    padding: var(--space-2xl) 24px;
    background: var(--white);
}

.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 120px;
}

.split-block.reverse {
    direction: rtl;
}

.split-block.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.split-content p {
    font-size: 18px;
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--black);
    font-weight: 500;
}

/* Split Visuals */
.split-visual {
    background: var(--surface-variant);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.f-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    width: 280px;
}

.f-card-1 {
    top: 25%;
    left: 10%;
    z-index: 2;
}

.f-card-2 {
    bottom: 25%;
    right: 10%;
    z-index: 1;
}

.f-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.f-logo.privat {
    background: #73A82C;
}

.f-text {
    display: flex;
    flex-direction: column;
}

.f-title {
    font-size: 13px;
    color: var(--gray-mid);
}

.f-amount {
    font-size: 18px;
    font-weight: 700;
}

.bento-box {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.bento-header {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 8px;
}

.bento-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.bento-footer {
    font-size: 12px;
    color: var(--gray-mid);
    margin-top: 16px;
}

.sync-premium-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.sync-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
}

.sync-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bank-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin-left: -16px;
    transition: transform 0.3s ease;
}

.bank-avatar:first-child {
    margin-left: 0;
    z-index: 3;
}

.bank-avatar:nth-child(2) {
    z-index: 2;
}

.bank-avatar:nth-child(3) {
    z-index: 1;
}

.bank-avatar:hover {
    transform: translateY(-4px);
    z-index: 4;
}

.bank-avatar.mono { background: #000; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 20px;}
.bank-avatar.mono::after { content: 'M'; }
.bank-avatar.privat { background: #82C836; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 20px;}
.bank-avatar.privat::after { content: 'П'; }
.bank-avatar.abank { background: #00A453; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 20px;}
.bank-avatar.abank::after { content: 'А'; }


.sync-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.sync-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sync-title::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #34C759;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(52, 199, 89, 0.6);
}

.sync-subtitle {
    font-size: 13px;
    color: var(--gray-mid);
}


.limits-premium {
    background: linear-gradient(145deg, #ffffff, #fcfcfd);
    padding: 32px;
}

.limits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    margin-bottom: 24px;
}

.limits-min-wage {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-mid);
    background: var(--surface-variant);
    padding: 6px 12px;
    border-radius: 100px;
}

.limits-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.limit-row:hover {
    transform: translateX(4px);
    border-color: var(--black);
}

.limit-row.highlight {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.limit-row.highlight:hover {
    transform: scale(1.02) translateX(4px);
}

.limit-group {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.limit-row:not(.highlight) .limit-group {
    color: var(--gray-mid);
}

.limit-value {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
}

/* Bento Grid Section */
.bento-section {
    padding: var(--space-xl) 24px var(--space-2xl);
    background: var(--surface-variant);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--gray-mid);
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--gray-light);
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--black);
}

.pricing-header p {
    font-size: 18px;
    color: var(--gray-mid);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: center;
}

.pricing-card {
    background: var(--surface-variant);
    border: 1px solid var(--gray-light);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-duration {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.pricing-card.popular .pricing-duration {
    color: var(--white);
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    color: var(--black);
}

.pricing-card.popular .pricing-price {
    color: var(--white);
}

.pricing-price span {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-mid);
}

.pricing-card.popular .pricing-price span {
    color: rgba(255,255,255,0.6);
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 32px;
}

.pricing-card.popular .pricing-desc {
    color: rgba(255,255,255,0.7);
}

.pricing-btn {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background: var(--surface-hover);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-2xl) 24px;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.faq-question {
    padding: 24px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gray-mid);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 24px;
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.6;
    display: none;
}

/* Ultimate Bottom CTA */
.bottom-cta {
    padding: 0 24px var(--space-2xl);
    background: var(--white);
}

.cta-card {
    background: var(--light-black);
    color: var(--white);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-card h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 18px;
    color: #999;
    margin-bottom: 40px;
    position: relative;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-card .btn-primary:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* SEO Section */
.seo-text-section {
    padding: var(--space-xl) 24px;
    background: var(--surface-variant);
    border-top: 1px solid var(--gray-light);
}

.seo-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.seo-text-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-mid);
    margin-bottom: 12px;
    text-align: justify;
}

.seo-text-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    border-top: 1px solid var(--gray-light);
    padding: 40px 24px;
    background: var(--surface-variant);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-mid);
}

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

.footer-links a {
    color: var(--gray-mid);
    font-size: 14px;
}

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

/* Animations */
.hidden-element {
    opacity: 0;
    transform: translateY(15px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .split-block, .split-block.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
        margin-bottom: 80px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .mockup-body {
        flex-direction: column;
        height: auto;
    }
    
    .mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    
    .sidebar-item {
        border-right: none;
        white-space: nowrap;
    }
    
    .sidebar-item.active {
        border-bottom: 3px solid var(--black);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .feature-pro-grid {
        grid-template-columns: 1fr;
    }

    .split-visual {
        padding: 24px 16px;
        min-height: auto;
    }

    .bento-box {
        padding: 24px 16px;
    }
    
    .limit-value {
        font-size: 16px;
        white-space: nowrap;
    }
}

/* --- Changelog Styles --- */
.changelog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.changelog-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 80px;
}

.changelog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .changelog-item {
        flex-direction: row;
        gap: 64px;
    }
    .changelog-aside {
        flex: 0 0 160px;
    }
}

.changelog-date {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-mid);
    position: sticky;
    top: 100px;
}

.changelog-main {
    flex: 1;
}

.changelog-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.2;
}

.changelog-main h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.changelog-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-new { background: #e8f5e9; color: #1b5e20; }
.badge-improved { background: #e3f2fd; color: #0d47a1; }
.badge-fix { background: #ffebee; color: #b71c1c; }

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-list li {
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.changelog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--gray-light);
    border-radius: 50%;
}

/* Press Section (Mentions) */
.press-section {
    padding: var(--space-lg) 24px var(--space-xl);
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    overflow: hidden;
}

.press-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--black);
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: -0.5px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}

.press-card {
    background: transparent;
    border: none;
    border-left: 2px solid var(--gray-light);
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease;
    height: 100%;
}

.press-card:hover {
    border-color: var(--black);
}

.press-card-header {
    margin-bottom: 20px;
    height: 24px;
    display: flex;
    align-items: center;
}

.press-card-quote {
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
    text-align: left;
}

.press-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.press-card-link:hover {
    color: var(--black);
}

.press-card-link svg {
    transition: transform 0.2s ease;
}

.press-card-link:hover svg {
    transform: translateX(4px);
}
