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

:root {
    --primary: #6B5DFF;
    --primary-light: #8B7DFF;
    --primary-dark: #4A3FCC;
    --accent: #00D9FF;
    --accent-dark: #00B8D4;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark-1: #0A0E14;
    --dark-2: #111827;
    --dark-3: #1A1F2E;
    --dark-4: #252D3D;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A9B8;
    --text-tertiary: #6B7280;
    --border: #2A3142;
    --gradient-main: linear-gradient(135deg, #6B5DFF 0%, #00D9FF 100%);
    --gradient-alt: linear-gradient(135deg, #00D9FF 0%, #6B5DFF 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--dark-1);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

/* animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(107, 93, 255, 0.3), inset 0 0 20px rgba(107, 93, 255, 0.1); }
    50% { box-shadow: 0 0 40px rgba(107, 93, 255, 0.5), inset 0 0 40px rgba(107, 93, 255, 0.2); }
}
@keyframes counterUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1.2rem 2rem;
    animation: fadeInDown 0.8s ease;
    transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 14, 20, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.site-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-alt);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(107, 93, 255, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
}

/* hero */
.hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 50%, var(--dark-1) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 93, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -200px;
    animation: float 12s ease-in-out infinite;
}

.hero-blob-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(107, 93, 255, 0.05) 25%, rgba(107, 93, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(107, 93, 255, 0.05) 75%, rgba(107, 93, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(107, 93, 255, 0.05) 25%, rgba(107, 93, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(107, 93, 255, 0.05) 75%, rgba(107, 93, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-content,
.section,
.footer-content,
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left { animation: slideInLeft 1s ease; }
.hero-right { animation: slideInRight 1s ease; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(107, 93, 255, 0.12);
    border: 1.5px solid rgba(107, 93, 255, 0.4);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}
.hero-badge::before {
    content: '⚡';
    font-size: 1rem;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -1.5px;
}

.hero h1 .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.trust-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.demo-window {
    background: rgba(26, 31, 46, 0.7);
    border: 1.5px solid rgba(107, 93, 255, 0.4);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: glow 3s ease-in-out infinite;
    box-shadow: 0 40px 80px rgba(107, 93, 255, 0.2);
}

.window-header {
    background: rgba(17, 24, 39, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.window-buttons {
    display: flex;
    gap: 0.6rem;
}

.window-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.window-btn.red { background: #FF5F56; }
.window-btn.yellow { background: #FFBD2E; }
.window-btn.green { background: #27C93F; }

.window-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: auto;
    font-weight: 600;
}

.chat-container {
    padding: 1.5rem;
    height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
}
.chat-message.user {
    flex-direction: row-reverse;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.avatar.ai {
    background: var(--gradient-main);
    color: white;
}

.avatar.user {
    background: rgba(107, 93, 255, 0.2);
    color: var(--accent);
}

.chat-bubble {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 220px;
    word-break: break-word;
}

.chat-message.ai .chat-bubble {
    background: rgba(107, 93, 255, 0.15);
    border: 1px solid rgba(107, 93, 255, 0.3);
    color: var(--text-primary);
}

.chat-message.user .chat-bubble {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 8px 20px rgba(107, 93, 255, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* sections */
.problem,
.solution,
.features,
.how-it-works,
.results,
.testimonials,
.pricing,
.cta-final,
.page-section {
    padding: 100px 2rem;
    position: relative;
}

.problem { background: var(--dark-2); overflow: hidden; }
.solution { background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%); }
.features { background: var(--dark-1); }
.how-it-works { background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%); }
.results { background: var(--dark-1); }
.testimonials { background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%); }
.pricing { background: var(--dark-1); }

.problem-bg,
.solution-bg,
.features-bg {
    position: absolute;
    border-radius: 50%;
}
.problem-bg {
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
}
.solution-bg {
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(107, 93, 255, 0.15) 0%, transparent 70%);
}
.features-bg {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 93, 255, 0.15) 0%, transparent 70%);
}

.section {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-desc,
.page-content,
.blog-excerpt {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.8;
}

.section-desc {
    margin: 0 auto;
    text-align: center;
}

.problems-grid,
.features-grid,
.steps,
.results-grid,
.testimonials-grid,
.pricing-cards,
.blog-list {
    margin-top: 4rem;
}

.problems-grid,
.features-grid,
.results-grid,
.pricing-cards {
    display: grid;
    gap: 2rem;
}

.problems-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.results-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pricing-cards { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }

.problem-card,
.feature-card,
.result-card,
.testimonial,
.pricing-card,
.step,
.blog-item,
.content-default {
    background: rgba(26, 31, 46, 0.6);
    border-radius: 16px;
}

.problem-card {
    border: 1.5px solid rgba(239, 68, 68, 0.2);
    border-left: 4px solid #EF4444;
    padding: 2rem;
}

.problem-icon,
.feature-icon {
    margin-bottom: 0.85rem;
    line-height: 0;
}

.problem-card h3,
.feature-card h3,
.step h3,
.pricing-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.problem-card p,
.feature-card p,
.step p,
.result-detail,
.testimonial-text,
.blog-meta {
    color: var(--text-secondary);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

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

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.feature-num {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-box {
    background: rgba(26, 31, 46, 0.8);
    border: 1.5px solid rgba(107, 93, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.visual-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(107, 93, 255, 0.1);
    border-radius: 8px;
}

.visual-icon {
    font-size: 1.5rem;
}

.visual-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.visual-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.feature-card {
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.3s ease;
}
.feature-card:hover,
.step:hover,
.testimonial:hover,
.result-card:hover,
.problem-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.step {
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px rgba(107, 93, 255, 0.3);
}

.step-cta {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.result-card {
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--success);
    padding: 2.5rem;
}

.result-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial {
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.pricing-card {
    border: 1.5px solid var(--border);
    padding: 3rem;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(107, 93, 255, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-desc,
.pricing-period,
.pricing-note {
    color: var(--text-secondary);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 950;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.9rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 0.8rem;
    text-align: center;
}

.cta-final {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(107, 93, 255, 0.1) 0%, transparent 70%);
}

.cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-final p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final-buttons .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
}

/* footer */
footer {
    background: rgba(10, 14, 20, 0.9);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.footer-brand span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* inner pages */
.inner-page {
    padding-top: 120px;
    min-height: 70vh;
    background: var(--dark-1);
}
.content-default,
.blog-item {
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.blog-item h2 {
    margin-bottom: .5rem;
}
.blog-item a:hover {
    color: var(--accent);
}
.page-content > * + * {
    margin-top: 1rem;
}

/* responsive */
@media (max-width: 1024px) {
    .hero-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 1rem;
        right: 1rem;
        background: rgba(10, 14, 20, 0.98);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-wrap.is-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
    }

    .nav-cta .btn-primary,
    .nav-cta .btn-secondary {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons,
    .cta-final-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .cta-final-buttons .btn-primary,
    .cta-final-buttons .btn-secondary {
        width: 100%;
    }

    .hero-stats,
    .features-grid,
    .pricing-cards,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .demo-window {
        max-height: 300px;
    }

    .chat-container {
        height: 250px;
    }

    .section-title,
    .cta-final h2 {
        font-size: 2.2rem;
    }
}

.page-hero {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 60px 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.articles-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.1);
    transform: translateY(-8px);
}

.article-card .article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.article-link:hover {
    gap: 0.8rem;
}

.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 2rem 4rem;
}

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

.article-breadcrumb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.article-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-featured {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
}

.article-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 850;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 2rem 0 0.8rem;
    color: var(--primary);
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-body strong {
    color: var(--text-primary);
}

.article-body .highlight-box {
    background: rgba(107, 93, 255, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.article-body .highlight-box strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.article-body .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.article-body .stat {
    text-align: center;
}

.article-body .stat-number {
    font-size: 2rem;
    font-weight: 950;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.article-body .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-body .cta-box {
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.article-body .cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-body .cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.blog-pagination {
    margin-top: 2rem;
    text-align: center;
}

.blog-pagination .nav-links,
.blog-pagination .page-numbers {
    display: inline-flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    padding: .7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    color: #fff;
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.12);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-page {
        padding: 80px 1rem 2rem;
    }

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

.highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-wrapper {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-block {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-block:hover {
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.08);
    transform: translateY(-6px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.contact-block > a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.contact-details {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.detail-item + .detail-item {
    margin-top: 0.8rem;
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 0.3rem;
}

.detail-value {
    color: var(--text-primary);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form h2 {
    margin: 0 0 1.5rem;
}

.contact-form form {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(10, 14, 20, 0.7);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 93, 255, 0.15);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 1rem 1.6rem;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(107, 93, 255, 0.3);
}

.form-note {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.response-message {
    display: none;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.response-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #9ff3cf;
}

.locations-section,
.faq-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.locations-title,
.faq-title {
    text-align: center;
    margin-bottom: 2rem;
}

.locations-title h2,
.faq-title h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.08);
    transform: translateY(-6px);
}

.location-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.location-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-toggle {
    transition: transform 0.25s ease;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.4rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .contacts-wrapper,
    .locations-section,
    .faq-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .locations-title h2,
    .faq-title h2 {
        font-size: 1.8rem;
    }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.story-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 1rem;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mission-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.stats-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.stats-title {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-title h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 0.5rem;
}

.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: center;
    gap: 2rem;
}

.team-member {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--primary);
    background: rgba(107, 93, 255, 0.1);
    transform: translateY(-8px);
}

.member-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-title {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-title h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--dark-1);
    border-radius: 50%;
    z-index: 10;
}

.timeline-content {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.timeline-title-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(107, 93, 255, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 950;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mission-section,
    .stats-section,
    .team-section,
    .timeline-section,
    .cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mission-values,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
        margin-right: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: left;
    }

    .timeline-dot {
        left: -8px;
    }
}
.icon-flat {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: transparent;
    border: none;
    border-radius: 0;
    line-height: 0;
}

.icon-flat svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke-width: 1.8;
}

.problem-icon.icon-flat,
.feature-icon.icon-flat,
.visual-icon.icon-flat {
    font-size: 0;
    line-height: 0;
}

.visual-item .visual-icon.icon-flat {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}
.problem-card .problem-icon.icon-flat,
.feature-card .feature-icon.icon-flat {
    width: 18px;
    height: 18px;
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
}

.problem-card .problem-icon.icon-flat svg,
.feature-card .feature-icon.icon-flat svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke-width: 1.8;
}

.visual-item .visual-icon.icon-flat {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
}

.visual-item .visual-icon.icon-flat svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke-width: 1.8;
}
.embed-page-feature .section-header {

    margin-bottom: 4rem;

}

.meta-feature .section-header {
    margin-bottom: 4rem;
}

/* ===== UKR HOMEPAGE FIXES ===== */

.hero .chat-container {
    height: 430px;
    overflow-y: auto;
    padding-right: 6px;
}

.hero .chat-container::-webkit-scrollbar {
    width: 6px;
}

.hero .chat-container::-webkit-scrollbar-thumb {
    background: rgba(107, 93, 255, 0.35);
    border-radius: 999px;
}

.pricing-cta {
    min-height: 64px;
    font-size: 0.95rem;
    line-height: 1.25;
    text-align: center;
}

.pricing-cta span {
    white-space: nowrap;
}

.pricing-period span {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.cases-section .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.cases-section .testimonial-text {
    font-style: normal;
}

.cases-section .author {
    margin-top: 1rem;
    align-items: flex-start;
}

.cases-section .author-avatar {
    min-width: 56px;
    width: 56px;
    height: 56px;
    font-size: 1rem;
    font-weight: 900;
}

.cases-section .author-info h4 {
    line-height: 1.35;
}

.hero-badge,
.section-label,
.pricing-badge {
    letter-spacing: 0.04em;
}

.hero h1,
.section-title,
.cta-final h2 {
    text-wrap: balance;
}

.problem-card h3,
.feature-card h3,
.testimonial .stars,
.pricing-name {
    text-wrap: balance;
}

@media (max-width: 1024px) {
    .hero .chat-container {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .pricing-cta span {
        white-space: normal;
    }

    .hero .chat-container {
        height: 320px;
    }

    .cases-section .author {
        flex-direction: row;
    }

    .cases-section .author-avatar {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
}

.language-switcher ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.language-switcher li {
	margin: 0;
	padding: 0;
}

.language-switcher a,
.language-switcher span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 40px;
	padding: 0 0.9rem;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-secondary);
	background: transparent;
	text-decoration: none;
	transition: all 0.3s ease;
}

.language-switcher a:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-2px);
}

.language-switcher .current-lang span,
.language-switcher .current-lang a {
	border-color: var(--primary);
	color: #fff;
	background: rgba(107, 93, 255, 0.14);
}

@media (max-width: 768px) {
	.language-switcher {
		width: 100%;
	}

	.language-switcher ul {
		width: 100%;
	}

	.language-switcher li {
		flex: 1;
	}

	.language-switcher a,
	.language-switcher span {
		width: 100%;
	}
}