:root {
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-gray: #f1f5f9;
    --border-light: #e2e8f0;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-hover);
}

/* ========================================= */
/* HEADER */
/* ========================================= */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: var(--text-dark);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--bg-gray);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 101;
    margin-left: auto;
}

.hamburger:hover {
    background: var(--border-light);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 99;
    padding: 20px 0;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu li:last-child {
    margin-bottom: 0;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--bg-gray);
    color: var(--primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= */
/* BUTTON */
/* ========================================= */
.btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-main);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.1s;
}

.btn:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-1px);
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */
.hero {
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.price-tag {
    background: var(--bg-gray);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--border-light);
}

.time-tag {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-text {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 17px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ========================================= */
/* TERMINAL */
/* ========================================= */
.terminal {
    background-color: #1e293b;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-mono);
    font-size: 13px;
    height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid #334155;
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #22c55e;
}

.terminal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.terminal-line {
    margin-bottom: 6px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.t-cmd {
    color: #94a3b8;
}

.t-cmd b {
    color: #38bdf8;
}

.t-process {
    color: #cbd5e1;
}

.t-success {
    color: #4ade80;
}

.t-warning {
    color: #94a3b8;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #38bdf8;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================= */
/* STATS SECTION */
/* ========================================= */
.stats {
    padding: 60px 0;
}

.stats-grid {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.stat-item span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

/* ========================================= */
/* SEO CONTENT BLOCK */
/* ========================================= */
.seo-content-block {
    padding: 80px 0;
}

.seo-content-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.seo-content-main {
    max-width: 900px;
    margin: 0 auto;
}

.seo-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
}

.seo-text-block {
    margin-bottom: 32px;
}

.seo-text-block p {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.seo-text-block p:last-child {
    margin-bottom: 0;
}

.seo-text-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

.seo-features-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-body);
    border-radius: var(--radius);
}

.seo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.seo-feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-feature-text strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.seo-feature-text span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.seo-cta-inline {
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.seo-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-cta-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.seo-cta-text small {
    font-size: 13px;
    color: var(--text-muted);
}

.seo-cta-inline .btn {
    flex-shrink: 0;
}

/* ========================================= */
/* CONTENT SECTION */
/* ========================================= */
.content-section {
    padding: 100px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 32px 0 16px;
    font-weight: 600;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.content-section ul {
    margin: 20px 0 32px 24px;
    color: var(--text-muted);
}

.content-section li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.content-section .note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

/* Landing Block Styles */
.landing-block {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.landing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.landing-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.landing-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.landing-content {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

.landing-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: var(--bg-body);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 16px;
    font-weight: 600;
    line-height: 1.4;
}

.info-card p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-main);
}

.feature-list li:last-child {
    border-bottom: none;
}

.check-mark {
    width: 20px;
    height: 20px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.info-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px !important;
}

/* ========================================= */
/* CTA BOX */
/* ========================================= */
.cta-box {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-box-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-box-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cta-box-text h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
    font-weight: 600;
}

.cta-box-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    flex-shrink: 0;
}

.cta-box .btn:hover {
    background: var(--bg-body);
    color: var(--primary-hover);
}

/* ========================================= */
/* FEATURES SECTION */
/* ========================================= */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    font-size: 16px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.features-grid .card {
    width: calc(33.333% - 16px);
    box-sizing: border-box;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.features-grid .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-text {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

/* ========================================= */
/* CONTENT SPLIT SECTION */
/* ========================================= */
.content-split {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.checklist-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.checklist-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-main);
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================= */
/* ADVANTAGES SECTION */
/* ========================================= */
.advantages-section {
    padding: 100px 0;
}

.advantages-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.adv-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s, transform 0.2s;
}

.adv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.adv-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.adv-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================= */
/* CTA SECTION */
/* ========================================= */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
}

/* ========================================= */
/* FAQ SECTION */
/* ========================================= */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

details.faq-item {
    border-bottom: 1px solid var(--border-light);
}

details.faq-item:last-child {
    border-bottom: none;
}

summary.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::marker {
    display: none;
    content: "";
}

summary.faq-question::after {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

details[open] summary.faq-question {
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: none;
}

details[open] summary.faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    padding-bottom: 20px;
}

/* ========================================= */
/* TABLE STYLES */
/* ========================================= */
.table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 32px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: block;
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 650px;
    display: table;
}

.content-table thead {
    background: var(--bg-gray);
}

.content-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 2px solid var(--border-light);
    white-space: nowrap;
}

.content-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
}

.content-table td strong {
    color: var(--primary);
    font-size: 15px;
}

.content-table td small {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

.content-table tr:last-child td {
    border-bottom: none;
}

.content-table tr:hover {
    background: var(--bg-body);
}

.note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    padding: 0 15px;
}

/* ========================================= */
/* MODAL STYLES */
/* ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 40px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    z-index: 100000;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-gray);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--border-light);
    color: var(--text-dark);
}

.modal-popup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-popup .row1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-popup .row2 {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-popup .row3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.messenger-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.messenger-btn .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.messenger-btn .icon svg {
    width: 24px;
    height: 24px;
}

.messenger-btn.telegram .icon {
    background: #eff6ff;
    color: #2aabee;
}

.messenger-btn.whatsapp .icon {
    background: #ecfdf5;
    color: #25d366;
}

.messenger-btn .text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.messenger-btn .text-msg {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.messenger-btn .arrow {
    margin-left: auto;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    max-width: 300px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer a {
    color: #94a3b8;
    font-weight: 400;
    font-size: 14px;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: #64748b;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */
@media (max-width: 1024px) {
    .advantages-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-features-inline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .features-grid .card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }

    .header-inner {
        padding: 0px 12px;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        order: 3;
    }

    nav ul {
        display: none;
    }

    .header-inner .btn {
        display: none;
    }

    .logo {
        font-size: 14px;
        gap: 6px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
    }

    .terminal {
        display: none;
    }

    .stats {
        padding: 25px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 15px;
    }

    .stat-item strong {
        font-size: 1.2rem;
    }

    .stat-item span {
        font-size: 11px;
    }

    .seo-content-block {
        padding: 25px 0;
    }

    .seo-content-wrapper {
        padding: 32px 20px;
    }

    .seo-features-inline {
        padding: 24px 20px;
        grid-template-columns: 1fr;
    }

    .seo-cta-inline {
        padding: 24px 20px;
        flex-direction: column;
    }

    .seo-cta-inline .btn {
        width: 100%;
        justify-content: center;
    }

    .content-section {
        padding: 25px 0;
    }

    .landing-block {
        padding: 32px 20px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 24px 20px;
    }

    .features {
        padding: 25px 0;
    }

    .features-grid {
        padding: 0;
        gap: 16px;
    }

    .features-grid .card {
        width: 100%;
        padding: 24px 20px;
    }

    .content-split {
        padding: 25px 0;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checklist-card {
        padding: 32px 20px;
    }

    .advantages-section {
        padding: 25px 0;
    }

    .advantages-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .adv-card {
        padding: 24px 20px;
    }

    .cta-section {
        padding: 25px 0;
    }

    .cta-inner {
        padding: 0 15px;
    }

    .faq-section {
        padding: 25px 0;
    }

    .faq-container {
        padding: 32px 20px;
        margin: 0;
    }

    summary.faq-question::after {
        width: 20px;
        height: 20px;
    }

    .table-wrapper {
        margin: 24px 0;
        overflow-x: auto;
        border-radius: 8px;
    }

    .content-table {
        min-width: 650px;
    }

    .content-table th,
    .content-table td {
        padding: 14px 18px;
        font-size: 13px;
    }

    .note {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .cta-box {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
    }

    .cta-box-content {
        flex-direction: column;
    }

    .cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    footer {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2, .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 15px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 12px;
    }

    .header-inner {
        padding: 0px 12px;
    }

    .hero {
        padding: 50px 0 30px;
    }

    .hero-content {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2, .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 14px;
    }

    .stats {
        padding: 25px 0;
    }

    .stats-grid {
        gap: 10px;
        padding: 16px 12px;
    }

    .stat-item strong {
        font-size: 1.1rem;
    }

    .stat-item span {
        font-size: 10px;
    }

    .seo-content-wrapper {
        padding: 24px 15px;
    }

    .landing-block {
        padding: 24px 15px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .features-grid .card {
        padding: 20px 15px;
    }

    .checklist-card {
        padding: 24px 15px;
    }

    .adv-card {
        padding: 20px 15px;
    }

    .faq-container {
        padding: 24px 15px;
    }

    .cta-box {
        padding: 20px 15px;
    }

    .content-table th,
    .content-table td {
        padding: 12px 15px;
        font-size: 12px;
    }

    .content-table {
        min-width: 600px;
    }
}