:root {
  --bg: #09090B;
  --bg-2: #11111A;
  --bg-3: #16161F;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #F5F5F7;
  --muted: #A8A8BC;
  --muted-2: #7C7C92;
  --pink: #FF4FA3;
  --purple: #A855F7;
  --grad: linear-gradient(135deg, #FF4FA3 0%, #A855F7 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 79, 163, 0.16), rgba(168, 85, 247, 0.16));
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 8px 32px rgba(255, 79, 163, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(255, 79, 163, 0.4); }

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.pink-text { color: var(--pink); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 0.98rem; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease; white-space: nowrap; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(168, 85, 247, 0.5); }
.btn-ghost { border: 1px solid var(--border); background: rgba(255, 255, 255, 0.03); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255, 79, 163, 0.6); background: rgba(255, 79, 163, 0.08); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(9, 9, 11, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: border-color 0.3s ease, background 0.3s ease; }
.site-header.scrolled { border-bottom-color: var(--border-soft); background: rgba(9, 9, 11, 0.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 2px; }
.logo .logo-ai { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 0.93rem; font-weight: 500; color: var(--muted); transition: color 0.2s ease; position: relative; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after { content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); width: 18px; height: 3px; border-radius: 3px; background: var(--grad); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s ease; }

.hero { position: relative; padding: 72px 0 88px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -240px; right: -180px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(168, 85, 247, 0.22), transparent 65%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -320px; left: -220px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(255, 79, 163, 0.14), transparent 65%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero-sub { color: var(--muted); font-size: 1.08rem; max-width: 480px; margin-bottom: 26px; }
.hero-points { display: grid; gap: 12px; margin-bottom: 34px; }
.hero-points li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: #D8D8E4; }
.heart-dot { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 14px rgba(255, 79, 163, 0.5); }
.heart-dot svg { width: 11px; height: 11px; fill: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -10px; }
.avatar-stack img:first-child { margin-left: 0; }
.hero-proof p { font-size: 0.86rem; color: var(--muted); line-height: 1.45; }
.hero-proof strong { color: #fff; }

.hero-visual { position: relative; justify-self: center; }
.hero-frame { position: relative; width: min(430px, 100%); border-radius: 28px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg), 0 0 90px rgba(168, 85, 247, 0.28); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.hero-ring { position: absolute; inset: -8%; background: radial-gradient(circle at 60% 40%, rgba(255, 79, 163, 0.22), transparent 60%); filter: blur(8px); z-index: -1; }
.chat-bubble { position: absolute; max-width: 230px; padding: 14px 16px; border-radius: 16px; background: rgba(20, 20, 30, 0.82); border: 1px solid var(--border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); font-size: 0.82rem; line-height: 1.5; color: #E4E4EE; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5); animation: float 6s ease-in-out infinite; }
.chat-bubble .bubble-tag { display: block; font-size: 0.68rem; color: var(--pink); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.04em; }
.chat-bubble.bubble-1 { top: 8%; right: -4%; }
.chat-bubble.bubble-2 { bottom: 10%; left: -8%; animation-delay: 2.4s; }
.chat-bubble .bubble-heart { position: absolute; right: -12px; bottom: -12px; width: 34px; height: 34px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); }
.chat-bubble .bubble-heart svg { width: 16px; height: 16px; fill: #fff; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.char-grid, .char-grid.cols-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.char-card { position: relative; isolation: isolate; aspect-ratio: 3 / 4; min-width: 0; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.07); background: var(--bg-2); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24); transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease; display: block; }
.char-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 44%, rgba(7, 5, 9, 0.2) 58%, rgba(7, 5, 9, 0.94) 100%); }
.char-card:hover { transform: translateY(-5px); border-color: rgba(255, 79, 163, 0.36); box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46), 0 0 32px rgba(255, 79, 163, 0.1); }
.char-card:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.char-card img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.55s ease; }
.char-card:hover img { transform: scale(1.035); }
.char-info { position: absolute; inset: auto 0 0 0; z-index: 2; min-width: 0; padding: 96px 22px 22px; }
.char-info h3 { display: flex; align-items: center; gap: 9px; min-width: 0; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.08; font-weight: 700; letter-spacing: -0.025em; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58); }
.char-info h3::after { content: ""; flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: #31d158; box-shadow: 0 0 0 3px rgba(49, 209, 88, 0.12); }
.char-tag { display: -webkit-box; margin-top: 8px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 0.94rem; line-height: 1.35; color: rgba(245, 245, 247, 0.78); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7); }
.char-tag i { display: none; }
.char-chat { display: none; }
.center-cta { text-align: center; margin-top: 44px; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 22px; transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(168, 85, 247, 0.4); background: var(--card-strong); }
.feature-card .feature-img { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border-soft); }
.feature-card .feature-img img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.feature-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(255, 79, 163, 0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 26px; height: 26px; fill: url(#gradStroke); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 44px; left: 16%; right: 16%; border-top: 2px dashed rgba(168, 85, 247, 0.35); z-index: 0; }
.step-card { position: relative; z-index: 1; text-align: center; background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 40px 26px 32px; transition: transform 0.3s ease, border-color 0.3s ease; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(255, 79, 163, 0.4); }
.step-num { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: #fff; box-shadow: var(--shadow-glow); }
.step-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; background: var(--card); border: 1px solid var(--border-soft); border-radius: 28px; padding: 46px; margin-bottom: 28px; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-body .eyebrow { margin-bottom: 10px; }
.split-body h2, .split-body h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.split-body .split-lead { font-size: 1.05rem; color: #D8D8E4; margin-bottom: 14px; font-weight: 600; }
.split-body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }
.check-list { display: grid; gap: 10px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #D8D8E4; }
.check-list svg { flex: 0 0 auto; width: 18px; height: 18px; }

.stats-band { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 24px; padding: 36px 28px; text-align: center; }
.stat-num { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item.open { border-color: rgba(255, 79, 163, 0.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 22px; font-size: 1rem; font-weight: 600; color: var(--text); }
.faq-q .faq-icon { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--pink); transition: transform 0.3s ease, background 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.94rem; }

.cta-band { position: relative; overflow: hidden; text-align: center; border-radius: 28px; padding: 72px 32px; background: linear-gradient(135deg, rgba(255, 79, 163, 0.16), rgba(168, 85, 247, 0.2)); border: 1px solid rgba(255, 79, 163, 0.3); }
.cta-band::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 480px; height: 480px; background: radial-gradient(circle, rgba(255, 79, 163, 0.28), transparent 65%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; position: relative; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }

.page-hero { padding: 84px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(168, 85, 247, 0.18), transparent 65%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; position: relative; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; position: relative; }
.page-hero .hero-actions { justify-content: center; margin: 30px 0 0; position: relative; }
.breadcrumbs { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 18px; position: relative; }
.breadcrumbs a:hover { color: var(--pink); }
.breadcrumbs span { margin: 0 6px; }
.char-filters button.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-glow); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; background: var(--card); border: 1px solid var(--border-soft); border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: rgba(255, 79, 163, 0.55); background: linear-gradient(180deg, rgba(255, 79, 163, 0.1), rgba(168, 85, 247, 0.06)); box-shadow: 0 0 60px rgba(168, 85, 247, 0.18); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-glow); }
.price-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.price-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; }
.price-amount { font-size: 2.9rem; font-weight: 800; letter-spacing: -0.03em; }
.price-amount small { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-features { display: grid; gap: 12px; margin: 26px 0 30px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: #D8D8E4; }
.price-features svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; }
.price-features li.off { color: var(--muted-2); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-soft); }
.compare-table th, .compare-table td { padding: 15px 20px; text-align: center; font-size: 0.92rem; border-bottom: 1px solid var(--border-soft); }
.compare-table th { background: rgba(255, 255, 255, 0.04); font-weight: 700; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--pink); font-weight: 700; }
.compare-table .no { color: var(--muted-2); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

.app-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.app-visual { position: relative; justify-self: center; }
.app-visual::before { content: ""; position: absolute; inset: -10%; background: radial-gradient(circle, rgba(255, 79, 163, 0.22), transparent 60%); filter: blur(10px); }
.app-visual img { position: relative; border-radius: 26px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); max-height: 640px; }
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; border-radius: 14px; background: #000; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.store-badge:hover { transform: translateY(-3px); border-color: rgba(255, 79, 163, 0.5); }
.store-badge svg { width: 26px; height: 26px; fill: #fff; }
.store-badge small { display: block; font-size: 0.66rem; color: var(--muted); }
.store-badge strong { font-size: 0.95rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(255, 79, 163, 0.4); }
.blog-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.blog-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.blog-meta { font-size: 0.78rem; color: var(--muted-2); margin-top: 16px; }

.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.contact-form { background: var(--card); border: 1px solid var(--border-soft); border-radius: 24px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: #D8D8E4; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.94rem; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 79, 163, 0.18); }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 14px; }
.form-success { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 12px; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.4); color: #6EE7B7; font-size: 0.9rem; }

/* Legal and safety pages */
.legal-content { width: min(860px, 92%); margin: 0 auto; padding: 20px 0 88px; }
.legal-content .legal-updated { color: var(--muted); margin-bottom: 32px; }
.legal-content section { margin-top: 34px; }
.legal-content h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin-bottom: 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content p + p { margin-top: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; }
.legal-note { padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card); }
.info-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 20px; padding: 26px; margin-bottom: 20px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { width: 20px; height: 20px; }
.info-card p { font-size: 0.9rem; color: var(--muted); }
.info-card a { color: var(--pink); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 30px 24px; transition: transform 0.3s ease, border-color 0.3s ease; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(168, 85, 247, 0.4); }
.value-card h3 { font-size: 1.05rem; margin: 16px 0 8px; }
.value-card p { font-size: 0.89rem; color: var(--muted); }

.prose { max-width: 820px; margin: 0 auto; color: var(--muted); }
.prose h2 { color: var(--text); font-size: 1.7rem; margin: 40px 0 14px; letter-spacing: -0.02em; }
.prose h3 { color: var(--text); font-size: 1.25rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 14px; font-size: 0.98rem; }
.prose ul { margin: 0 0 16px 4px; display: grid; gap: 8px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); margin-top: 9px; }
.prose a { color: var(--pink); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

.site-footer { border-top: 1px solid var(--border-soft); background: #070709; padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--muted-2); }
.footer-bottom .footer-legal { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--pink); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .char-grid, .char-grid.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }
  .main-nav { position: fixed; inset: 76px 0 auto 0; background: rgba(9, 9, 11, 0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-soft); padding: 20px 4%; display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta .btn { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-frame { width: min(340px, 88%); margin: 0 auto; }
  .chat-bubble { display: none; }
  .split { grid-template-columns: 1fr; padding: 28px; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { order: -1; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .char-grid, .char-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .char-card { aspect-ratio: 3 / 4; border-radius: 20px; }
  .char-info { padding: 68px 13px 14px; }
  .char-info h3 { gap: 7px; font-size: clamp(0.98rem, 4.6vw, 1.2rem); }
  .char-info h3::after { width: 7px; height: 7px; box-shadow: 0 0 0 2px rgba(49, 209, 88, 0.12); }
  .char-tag { margin-top: 5px; font-size: clamp(0.73rem, 3.2vw, 0.86rem); line-height: 1.3; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .char-grid, .char-grid.cols-4 { gap: 8px; }
  .char-card { border-radius: 17px; }
  .char-info { padding: 56px 11px 12px; }
  .char-info h3 { font-size: 0.94rem; }
  .char-tag { font-size: 0.72rem; }
}
