/* ===== CSS Variables / Design Tokens ===== */
:root {
    --primary-blue: #13264B;
    --primary-blue-hover: #1A3366;
    --primary-blue-pressed: #0A1A33;
    --accent-red: #EB1E28;
    --accent-red-hover: #C91920;
    --background: #F8F9FB;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: #E6EAF2;
    --text-primary: #13264B;
    --text-secondary: #7A8599;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(19, 38, 75, 0.08);
    --shadow-md: 0 8px 24px rgba(19, 38, 75, 0.12);
    --shadow-lg: 0 20px 40px rgba(19, 38, 75, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* ===== Sticky Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

.header-nav {
    position: relative;
}

.header-logo {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
    background: linear-gradient(135deg, #F8F9FB 0%, #E8ECF4 50%, #F0F2F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(19, 38, 75, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(19, 38, 75, 0.08);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.brand-clarifier {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.85;
    font-style: italic;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    gap: 0;
}

.hero-ctas-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    width: 100%;
}

.hero-ctas-primary .btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
    max-width: 280px;
}

.hero-ctas-secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-link-secondary {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.hero-link-secondary:hover {
    color: var(--primary-blue);
    border-bottom-color: rgba(19, 38, 75, 0.35);
}

.hero-ctas-sep {
    color: var(--text-secondary);
    opacity: 0.45;
    user-select: none;
}

.hero-social-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(19, 38, 75, 0.1);
    width: 100%;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--card-border);
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-icon-btn svg {
    width: 22px;
    height: 22px;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon-btn--telegram:hover {
    background: #0088cc;
    color: #fff;
    border-color: transparent;
}

.social-icon-btn--youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: transparent;
}

.social-icon-btn--tiktok:hover {
    background: #000;
    color: #fff;
    border-color: transparent;
}

.social-icon-btn--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    /* Reduced padding */
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    /* Slightly smaller font */
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    flex: 1 1 auto;
    /* Allow shrinking/growing but auto basis */
    min-width: 140px;
    /* Reduced min-width */
    text-align: center;
}

/* ===== Social Buttons (Merged into Hero CTAs) ===== */
/* Note: .social-buttons container style removed as it's no longer used */

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    /* Compact padding */
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 120px;
    /* Smaller min-width for social */
}

.social-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: transparent;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.social-btn.telegram:hover {
    background: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.social-btn.tiktok:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.social-btn.youtube:hover {
    background: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(19, 38, 75, 0.3);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 38, 75, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(235, 30, 40, 0.3);
}

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

.btn-download {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(235, 30, 40, 0.3);
}

.btn-download:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 30, 40, 0.4);
}

.btn-download svg {
    stroke: currentColor;
}

.btn-pricing {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(19, 38, 75, 0.22);
}

.btn-pricing:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(19, 38, 75, 0.28);
}

/* ===== Original Tools Layout (3 columns: info | Ultimate | Generators) ===== */
.top-section-container {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1.2fr;
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

.top-section-container > .top-section-generators-span {
    grid-column: auto;
}

.top-left-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
}

.top-left-info-stack .sys-req-card,
.top-left-info-stack .free-tool-card {
    flex: 1 1 0;
    min-height: 0;
}

.top-left-info-stack .sys-req-card {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.top-left-info-stack .free-tool-card {
    overflow: auto;
}

.sys-req-card {
    background: linear-gradient(180deg, #f0f5ff 0%, #e8f0fc 100%);
    border: 1px solid rgba(19, 38, 75, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    flex: 0 0 auto;
    align-self: stretch;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.sys-req-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sys-req-card ul {
    list-style: none;
}

.sys-req-card li {
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.free-tool-card {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    align-self: stretch;
}

/* Trial promo: icon above copy, everything centered */
.free-tool-card.trial-promo-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.free-tool-card.trial-promo-card .free-tool-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.free-tool-card.trial-promo-card .free-tool-content h4,
.free-tool-card.trial-promo-card .free-tool-content p {
    text-align: center;
}

.free-tool-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.free-tool-card.trial-promo-card .free-tool-icon {
    font-size: 2.75rem;
}

.free-tool-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.free-tool-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.free-tool-content .trial-card-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #047857;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.free-tool-content .trial-card-cta:hover {
    background: #fff;
    transform: translateY(-1px);
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19, 38, 75, 0.3);
}

.all-tools-card:hover {
    border-color: rgba(19, 38, 75, 0.28);
    border-top-color: var(--accent-red);
}

.all-tools-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(19, 38, 75, 0.18);
    border-top: 4px solid var(--accent-red);
    box-shadow: 0 8px 28px rgba(19, 38, 75, 0.08);
    flex: 1;
    min-height: 0;
}

.best-value-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8a8 100%);
    color: var(--primary-blue);
    border: 1px solid rgba(235, 30, 40, 0.28);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    max-width: min(140px, 42%);
    text-align: center;
    line-height: 1.25;
}

.all-tools-card .tool-header {
    padding-right: 0;
}

.generators-package-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    flex: 1;
    min-height: 0;
}

.all-tools-card .tool-title {
    color: var(--accent-red);
}

.all-tools-card .tool-icon {
    font-size: 2rem;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tool-icon {
    font-size: 2rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Grid tool cards: intro + feature chips */
.tool-card-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.tool-card-main .tool-description {
    margin-bottom: 0;
    flex-grow: 0;
}

.tool-card-features {
    flex-grow: 1;
}

.tool-card-features .bundle-includes-label {
    margin-bottom: 8px;
}

/* Bundle cards: tool chips (aligned with license email pill style, site blue theme) */
.bundle-includes {
    flex-grow: 1;
    margin-bottom: 20px;
}

.bundle-includes-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
}

.bundle-includes-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bundle-includes-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.bundle-tool-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.45;
}

.bundle-tool-chip {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(180deg, #eef4ff 0%, #e2ebfb 100%);
    color: var(--primary-blue);
    border: 1px solid rgba(19, 38, 75, 0.2);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(19, 38, 75, 0.07);
    transition: var(--transition);
}

.bundle-tool-chip:hover {
    border-color: rgba(19, 38, 75, 0.35);
    box-shadow: 0 2px 8px rgba(19, 38, 75, 0.1);
}

.all-tools-card .bundle-tool-chip {
    background: linear-gradient(180deg, #f0f5ff 0%, #e3ecfc 100%);
    border-color: rgba(235, 30, 40, 0.22);
}

.all-tools-card .bundle-tool-chip:hover {
    border-color: rgba(235, 30, 40, 0.4);
}

.bundle-excludes-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.45;
}

.card-actions {
    margin-top: auto;
}

.pricing-dropdown {
    position: relative;
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.all-tools-card .pricing-dropdown {
    background: var(--background);
}

.price-display {
    margin: 16px 0;
}

.bundle-price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: 6px;
}

.price-compare {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.price-compare del {
    text-decoration: line-through;
    opacity: 0.85;
}

.bundle-price-block .price {
    display: inline;
    font-size: 2.25rem;
}

.price-save-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.billing-cycle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
}

.all-tools-card .billing-cycle {
    color: var(--text-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 32px;
}

/* ===== Cards ===== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

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

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card.featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-red);
    grid-column: span 4;
}

.product-card.featured .product-title,
.product-card.featured .product-icon {
    color: #ffd700;
}

.product-card.featured .product-desc {
    color: #ccc;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-icon {
    font-size: 2rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-pricing {
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.product-card.featured .product-pricing {
    background: rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.price-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-card.featured .price-info {
    color: #aaa;
}

/* ===== License tier: pills + visually hidden native <select> (checkout) ===== */
.tier-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.tier-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.tier-pill {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tier-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: 1.2;
}

.tier-desc {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1.2;
}

.tier-pill:hover {
    border-color: rgba(19, 38, 75, 0.35);
}

.tier-pill:hover .tier-name {
    color: var(--primary-blue);
}

.tier-pill.is-active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(19, 38, 75, 0.15);
}

.tier-pill.is-active .tier-name,
.tier-pill.is-active .tier-desc {
    color: var(--white);
}

.tier-pill:focus-visible {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

.all-tools-card .tier-pill.is-active {
    border-color: var(--accent-red);
    background: var(--accent-red);
    box-shadow: 0 4px 12px rgba(235, 30, 40, 0.2);
}

.all-tools-card .tier-pill:hover:not(.is-active) {
    border-color: rgba(235, 30, 40, 0.45);
}

.all-tools-card .tier-pill:hover:not(.is-active) .tier-name {
    color: var(--accent-red);
}

.buy-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.buy-button:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
}

/* ===== Services Section ===== */
.services-section {
    background: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.service-card {
    text-align: center;
    padding: 32px 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.service-title {
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
}

/* ===== Process Flow ===== */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 8px;
}

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

.process-arrow {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-top: 12px;
}

.services-cta {
    text-align: center;
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.services-cta h3 {
    margin-bottom: 16px;
}

.services-email {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 16px;
}

.services-email a {
    color: var(--primary-blue);
    text-decoration: none;
}

.services-email a:hover {
    color: var(--accent-red);
}

/* ===== Audience Section ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audience-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-red);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.audience-title {
    font-size: 1.1rem;
}

/* ===== Trust Section ===== */
.trust-section {
    background: var(--primary-blue);
    color: var(--white);
}

.trust-section .section-title,
.trust-section .section-subtitle {
    color: var(--white);
}

.trust-section .section-subtitle {
    opacity: 0.9;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    max-width: 280px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===== Videos Section ===== */
.videos-section {
    background: var(--white);
}

.main-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    padding-bottom: 50.625%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
    box-shadow: var(--shadow-lg);
}

.main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.main-video-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.video-thumbnails-gallery {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.video-thumb {
    flex: 0 0 auto;
    width: 150px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 3px solid transparent;
    background: #000;
}

.video-thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb.active {
    border-color: var(--accent-red);
}

.video-thumb-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumb:hover .video-thumb-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-thumb.active .video-thumb-overlay {
    background: rgba(235, 30, 40, 0.3);
}

.video-thumb-play {
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.video-thumb-title {
    text-align: center;
    padding: 8px 4px;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-thumb.active .video-thumb-title {
    color: var(--accent-red);
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--background);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-email {
    font-size: 1.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-email a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-email a:hover {
    color: var(--accent-red);
}

.contact-checklist {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.contact-checklist h4 {
    margin-bottom: 16px;
}

.contact-checklist ul {
    list-style: none;
}

.contact-checklist li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.contact-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.social-icon-btn--footer {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    box-shadow: none;
}

.social-icon-btn--footer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 16px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-red);
}

.footer-trust {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ===== Social Buttons ===== */
.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.telegram:hover {
    background: #006699;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.youtube:hover {
    background: #cc0000;
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn.tiktok:hover {
    background: #333333;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01472 100%);
}

/* ===== Email Modal ===== */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.email-modal.active {
    display: flex;
}

.email-modal-content {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.email-modal-content h3 {
    margin-bottom: 16px;
}

.email-modal-content p {
    margin-bottom: 20px;
}

.email-input-group {
    margin-bottom: 24px;
}

.email-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.email-input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--accent-red);
}

.email-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    background: var(--card-border);
    color: var(--text-primary);
}

.btn-continue {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== Post-download Telegram modal ===== */
.post-download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.post-download-modal.active {
    display: flex;
}

.post-download-modal-content {
    position: relative;
    background: var(--white);
    padding: 32px 28px 28px;
    border-radius: var(--radius-md);
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.post-download-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.post-download-modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}

.post-download-modal-icon {
    margin-bottom: 12px;
}

.post-download-modal-content h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.post-download-modal-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.55;
}

.post-download-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.btn-telegram-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #229ED9;
    color: #fff !important;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.btn-telegram-channel:hover {
    background: #1b8ec4;
    color: #fff !important;
}

.btn-post-download-dismiss {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-post-download-dismiss:hover {
    color: var(--text-primary);
}

/* ===== Free Trial Button ===== */
.free-trial-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.free-trial-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
}

.free-trial-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.trial-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 8px;
    white-space: nowrap;
}

/* ===== Social Buttons ===== */
/* ===== Old Social Styles Removed ===== */
/* Social styles are now defined near hero-ctas and buttons section */

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }

    .services-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        gap: 24px;
    }

    .process-arrow {
        display: none;
    }

    .top-section-container {
        grid-template-columns: 1fr 1fr;
    }

    .top-left-info-stack {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smaller tablets: stack trial + system cards vertically */
@media (max-width: 900px) {
    .top-left-info-stack {
        flex-direction: column;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px 24px;
        margin: 0;
        box-shadow: var(--shadow-md);
        gap: 0;
        border-bottom: 1px solid var(--card-border);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 8px;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .products-grid,
    .services-grid,
    .audience-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-column: span 1;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-ctas-primary {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas-primary .btn {
        max-width: none;
    }

    .top-section-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .top-left-info-stack {
        grid-column: auto;
    }

    .trust-items {
        flex-direction: column;
        gap: 32px;
    }

    .contact-box {
        padding: 32px 24px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }
}
