/* 
    Created on : 16 апр. 2026 г., 21:33:59
    Author     : Svyatoslav Belimov
*/

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #EEF2FF;
    --primary-lighter: #F5F3FF;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --accent: #F59E0B;
    --telegram: #229ED9;
    --max-color: #FF6600;
    --dark: #0F172A;
    --dark-800: #1E293B;
    --dark-700: #334155;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #FFFFFF;
    --rose: #F43F5E;
    --violet: #8B5CF6;
    --cyan: #06B6D4;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 100px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --glow-primary: 0 0 60px rgba(79, 70, 229, 0.15);
    --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--r-pill);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sec-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sec-sub {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.7;
}

.sec-sub.centered {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #7C3AED, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--ff);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: var(--r-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6D5FED);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, .4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-200);
}

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

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--dark-800);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.logo span {
    color: var(--primary);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--r-sm);
    transition: all .15s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark);
    font-size: 24px;
}

/* Hero */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, .06) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .05) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 19px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.platform-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
}

.badge-tg {
    background: rgba(34, 158, 217, .1);
    color: var(--telegram);
}

.badge-max {
    background: rgba(255, 102, 0, .1);
    color: var(--max-color);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-lbl {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 6px;
}

/* Phone */
.hero-visual {
    position: relative;
}

.hero-phone {
    width: 310px;
    margin: 0 auto;
    border-radius: 40px;
    background: var(--dark);
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(79, 70, 229, .1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.ph {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 44px 20px 20px;
    color: #fff;
}

.ph-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ph h3 {
    color: #fff;
    font-size: 17px;
}

.ph-search {
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

.ph-cats {
    display: flex;
    gap: 6px;
    padding: 14px 16px 0;
    overflow: hidden;
}

.ph-cat {
    flex-shrink: 0;
    background: var(--gray-100);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

.ph-cat.on {
    background: var(--primary);
    color: #fff;
}

.ph-prods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px;
}

.ph-prod {
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.ph-prod-img {
    height: 72px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.ph-prod-info {
    padding: 6px 8px 8px;
}

.ph-prod-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ph-prod-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1px;
}

.ph-prod-btn {
    width: 100%;
    padding: 4px;
    margin-top: 3px;
    border: none;
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
}

.ph-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid var(--gray-200);
    font-size: 16px;
    color: var(--gray-400);
}

.ph-bar .act {
    color: var(--primary);
}

/* Story bubble mockup on phone */
.ph-stories {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    overflow: hidden;
}

.ph-story {
    flex-shrink: 0;
    text-align: center;
}

.ph-story-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--rose), var(--violet));
}

.ph-story-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ph-story-lbl {
    font-size: 9px;
    color: var(--gray-600);
    margin-top: 3px;
    font-weight: 500;
}

/* Floating cards */
.hero-float {
    position: absolute;
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-xl);
    padding: 14px 18px;
    z-index: 3;
    animation: floaty 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 30px;
    left: -50px;
}

.hero-float-2 {
    bottom: 130px;
    right: -40px;
    animation-delay: 2s;
}

.hero-float-3 {
    bottom: 30px;
    left: -30px;
    animation-delay: 4s;
}

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

.fl-title {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 3px;
}

.fl-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.fl-change {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
}

.fl-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

/* Social proof */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.sp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.sp-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}

.sp-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.sp-logo {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: -0.02em;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: .15;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    border: 3px solid #fff;
    box-shadow: var(--shadow-lg);
    transition: all .3s ease;
}

.step-card:hover .step-num {
    background: linear-gradient(135deg, var(--primary), #6D5FED);
    color: #fff;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Features */
.features-bg {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feat-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity .3s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.fi-purple { background: rgba(79, 70, 229, .1); color: var(--primary); }
.fi-green  { background: rgba(16, 185, 129, .1); color: var(--secondary); }
.fi-blue   { background: rgba(59, 130, 246, .1); color: #3B82F6; }
.fi-amber  { background: rgba(245, 158, 11, .1); color: var(--accent); }
.fi-rose   { background: rgba(244, 63, 94, .1); color: var(--rose); }
.fi-teal   { background: rgba(20, 184, 166, .1); color: #14B8A6; }
.fi-violet { background: rgba(139, 92, 246, .1); color: var(--violet); }
.fi-cyan   { background: rgba(6, 182, 212, .1); color: var(--cyan); }

.feat-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
}

.feat-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    margin-top: 14px;
}

.tag-box { background: rgba(16, 185, 129, .1); color: var(--secondary); }
.tag-ai  { background: rgba(139, 92, 246, .1); color: var(--violet); }
.tag-new { background: rgba(244, 63, 94, .1); color: var(--rose); }

/* Showcase */
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-content {
    max-width: 480px;
}

.showcase-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.showcase-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-600);
}

.check-list .ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-visual {
    position: relative;
}

.sc-card {
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.sc-card-hdr {
    padding: 18px 22px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.sc-card-body {
    padding: 22px;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.mock-s {
    background: var(--gray-50);
    border-radius: var(--r-md);
    padding: 14px;
    text-align: center;
}

.mock-s-v {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.mock-s-l {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 3px;
}

.mock-chart {
    height: 110px;
    background: linear-gradient(180deg, rgba(79, 70, 229, .04) 0%, transparent 100%);
    border-radius: var(--r-md);
    position: relative;
    overflow: hidden;
}

.mock-chart svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Pricing */
.pricing-bg { background: var(--gray-50); }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 60px;
}

.pt-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: color .2s;
}

.pt-label.active {
    color: var(--dark);
    font-weight: 600;
}

.toggle-sw {
    width: 56px;
    height: 30px;
    background: var(--gray-200);
    border-radius: var(--r-pill);
    position: relative;
    cursor: pointer;
    transition: background .3s;
}

.toggle-sw.on {
    background: var(--primary);
}

.toggle-sw::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .3s;
}

.toggle-sw.on::after {
    transform: translateX(26px);
}

.save-badge {
    background: rgba(16, 185, 129, .1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.p-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 36px 28px;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.p-card.popular {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.p-card.popular:hover {
    box-shadow: var(--glow-primary), var(--shadow-xl);
}

.p-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    color: #fff;
    padding: 6px 20px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.p-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.p-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
    min-height: 36px;
}

.p-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
}

.p-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.p-curr {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-400);
}

.p-period {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.p-yearly {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 24px;
    min-height: 18px;
}

.p-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.p-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.p-feat .ic {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

.ic.yes { background: rgba(16, 185, 129, .1); color: var(--secondary); }
.ic.no  { background: var(--gray-100); color: var(--gray-400); }

.p-feat.off { color: var(--gray-400); }

.p-cta {
    margin-top: auto;
}

.p-cta .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.t-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: all .3s;
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.t-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
}

.t-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 22px;
}

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

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.t-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.t-role {
    font-size: 12px;
    color: var(--gray-500);
}

.t-plat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--r-pill);
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all .3s;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--ff);
    gap: 12px;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: all .3s;
}

.faq-item.active .faq-ic {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}

.faq-a.open {
    max-height: 400px;
}

.faq-a-inner {
    padding: 0 26px 22px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--dark), #1a1145, var(--dark-800));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, .15), transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-inner p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-500);
}

.cta-note .fa-check {
    color: var(--secondary);
    margin-right: 6px;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 15px;
    transition: all .2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 13px;
    color: var(--gray-500);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive */
@media(max-width:1200px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero-content, .hero-desc { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 340px; margin: 0 auto; }
    .platform-badges, .btn-group { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-grid::before { display: none; }
    .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .showcase-content { max-width: 100%; text-align: center; }
    .showcase-visual { max-width: 520px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:768px) {
    .nav { display: none; }
    .header-actions .btn-outline { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .section { padding: 60px 0; }
    .hero-float { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .mock-stats { grid-template-columns: 1fr; }
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu.open {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.mobile-menu-close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-nav a {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--r-sm);
    transition: all .15s;
}

.mobile-nav a:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Hide header CTA button on mobile */
@media (max-width: 768px) {
    .header-actions .btn-primary.hide-mobile {
        display: none;
    }
}