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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background: #0A0E1A url('img/background_1920x1080.png') center/cover no-repeat fixed;
    color: #ffffff;
    line-height: 1.6;
}

section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
}

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

.header {
    position: relative;
    margin: 10px auto 0;
    width: calc(100% - 20px);
    max-width: 1416px;
    min-height: 69px;
    height: 69px;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.04) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.04) 100%);
    backdrop-filter: blur(20px);
    border-radius: 8px;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    height: 69px;
    max-width: 1416px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 18px;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4285f4;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    display: block;
    flex-shrink: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 4px 0 0;
    padding: 8px 0;
    list-style: none;
    min-width: 200px;
    background: rgba(10, 14, 26, 0.98);
    border: 1px solid rgba(204, 209, 233, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #4285f4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    transition: color 0.3s ease;
}

.contact-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.contact-link:hover {
    color: #4285f4;
}

.get-account-btn {
    position: relative;
    background: #4285f4;
    color: #CCD1E9 !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

.get-account-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.16) 0%, rgba(204, 209, 233, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.get-account-btn:hover {
    background: #3367d6;
    color: #CCD1E9 !important;
}

.get-account-btn:hover::before {
    opacity: 1;
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
}

.nav-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.menu-open .nav-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header.menu-open .nav-burger-line:nth-child(2) {
    opacity: 0;
}

.header.menu-open .nav-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0E1A;
    z-index: 99;
    overflow-y: auto;
}

.nav-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 32px;
    max-width: 400px;
    margin: 0 auto;
}

.nav-mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-mobile-menu a:hover {
    color: #4285f4;
}

.nav-mobile-contact {
    margin-top: 16px;
    padding: 14px 24px !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08) !important;
    width: auto !important;
    display: inline-block;
}

.nav-mobile-contact {
    position: relative;
}

.nav-mobile-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.nav-mobile-copy {
    margin-top: auto;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.hero {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.trustpilot {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    margin: 0 auto;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    background: #00b67a;
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 2px;
}

.rating {
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
}

.avatars {
    display: flex;
}

.avatars img {
    height: 24px;
    width: auto;
}

.trusted {
    color: #b8c5d6;
    font-size: 12px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #b8c5d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: rgba(204, 209, 233, 0.9);
    text-align: center;
    max-width: 600px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 52px;
    background: #516aff;
    color: #CCD1E9;
    padding: 0 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.16) 0%, rgba(204, 209, 233, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.cta-button:hover::before {
    opacity: 1;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.desktop-hero {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mobile-hero {
    display: none;
}

.why-adpulser {
    padding: 80px 0;
    background: transparent;
}

.why-adpulser h2 {
    margin-bottom: 16px;
}

.why-adpulser .section-subtitle {
    color: rgba(255, 255, 255, 0.48);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: #b8c5d6;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-block {
    position: relative;
    background: rgba(204, 209, 233, 0.04);
    border-radius: 6px;
    padding: 24px;
}

.comparison-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-block .comparison-table {
    margin-bottom: 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 48px;
    align-items: start;
}

.comparison-column {
    background: transparent;
    padding: 0 20px;
    border: none;
    min-width: 0;
}

.comparison-column:first-child {
    padding-left: 0;
}

.comparison-column:last-child {
    padding-right: 0;
}

.comparison-column:not(:last-child) {
    border-right: 2px solid rgba(204, 209, 233, 0.04);
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    color: #E0E0E0;
    text-align: center;
    background: #20232E;
    border-radius: 8px;
    padding: 16px 20px;
    border: none;
}

.comparison-column:not(.adpulser) .column-header {
    background: transparent;
    border: none;
    border-radius: 6px;
    position: relative;
    color: rgba(204, 209, 233, 0.64);
}

.comparison-column:not(.adpulser) .column-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-column.adpulser .column-header {
    background: rgba(204, 209, 233, 0.04);
    border: none;
    border-radius: 6px;
    position: relative;
}

.comparison-column.adpulser .column-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.column-header img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.column-body {
    padding-top: 20px;
    padding-bottom: 0;
}

.feature {
    padding: 12px 0 22px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0E0E0;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    position: relative;
}

.column-body .feature:last-child {
    padding-bottom: 12px;
}

.comparison-column:not(.adpulser) .feature {
    color: rgba(204, 209, 233, 0.64);
}

.column-body .feature:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: rgba(204, 209, 233, 0.04);
}

.cta-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(204, 209, 233, 0.04);
    padding: 40px 48px;
    border-radius: 6px;
    position: relative;
    margin-top: 10px;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: #CCD1E9;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: rgba(204, 209, 233, 0.48);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.02em;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.telegram-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 52px;
    padding: 0 20px;
    border-radius: 8px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.telegram-btn:hover, .whatsapp-btn:hover {
    opacity: 0.9;
}

.telegram-btn img, .whatsapp-btn img {
    width: 20px;
    height: 20px;
}

.telegram-btn {
    background: #4A89F4;
}

.whatsapp-btn {
    background: #2C2E3A;
}

/* Referral page */
.referral-page {
    padding: 80px 0 100px;
    background: transparent;
}

.referral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.referral-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.referral-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: fit-content;
}

.referral-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #516aff;
    margin-right: 8px;
    vertical-align: middle;
}

.referral-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin-top: 24px;
}

.referral-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
}

.referral-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(204, 209, 233, 0.78);
    margin: 0 0 8px;
}

.referral-right {
    display: flex;
    flex-direction: column;
}

.referral-card {
    background: rgba(204, 209, 233, 0.04);
    border-radius: 12px;
    padding: 28px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.referral-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.referral-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.referral-heading {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 8px;
}

.referral-desc {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(204, 209, 233, 0.78);
    margin: 0 0 16px;
}

.referral-buttons {
    display: flex;
    gap: 12px;
}

.referral-buttons .telegram-btn,
.referral-buttons .whatsapp-btn {
    min-width: 160px;
}

.features {
    padding: 80px 0;
    background: transparent;
}

.features h2 {
    margin-bottom: 16px;
}

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

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 15px 16px;
    align-items: start;
    background: rgba(204, 209, 233, 0.04);
    padding: 24px;
    border-radius: 8px;
    border: none;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
}

.feature-card-header {
    display: contents;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-icon-mobile {
    display: none;
}

.feature-card-header h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #E0E0E0;
    align-self: center;
}

.feature-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    color: rgba(204, 209, 233, 0.64);
    font-size: 14px;
    line-height: 1.5;
}

.partners {
    padding: 60px 0;
    background: transparent;
}

.partners h2 {
    margin-bottom: 24px;
    color: #E0E0E0;
}

.partners-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 -20px;
}

.partners-slider-wrap {
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 5%,
        rgba(0, 0, 0, 0.5) 12%,
        black 22%,
        black 78%,
        rgba(0, 0, 0, 0.5) 88%,
        rgba(0, 0, 0, 0.15) 95%,
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 5%,
        rgba(0, 0, 0, 0.5) 12%,
        black 22%,
        black 78%,
        rgba(0, 0, 0, 0.5) 88%,
        rgba(0, 0, 0, 0.15) 95%,
        transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.partners-slider-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: max-content;
    animation: partners-slider-scroll 50s linear infinite;
}

.partners-slider-track .partner-item {
    flex-shrink: 0;
    width: 170px;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes partners-slider-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.partner-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: rgba(204, 209, 233, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partner-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.partner-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.partner-label {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: rgba(204, 209, 233, 0.64);
    text-align: center;
}

.enterprise {
    padding: 80px 0;
    background: transparent;
}

.enterprise h2 {
    margin-bottom: 16px;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.enterprise-card-combo {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
}

.enterprise-combo-left {
    max-width: 520px;
    padding: 0;
}

.enterprise-combo-left h3 {
    margin-bottom: 16px;
    text-align: left;
}

.enterprise-combo-left p {
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.enterprise-combo-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    align-self: center;
}

.enterprise-combo-right .enterprise-chart-img {
    max-width: 280px;
}

.enterprise-chart-card {
    border-radius: 8px;
    overflow: hidden;
}

.enterprise-card {
    background: rgba(204, 209, 233, 0.04);
    border-radius: 8px;
    padding: 28px;
    position: relative;
}

.enterprise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.enterprise-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #E0E0E0;
    margin-bottom: 16px;
}

.enterprise-card p {
    color: rgba(204, 209, 233, 0.64);
    font-size: 14px;
    line-height: 1.6;
}

.enterprise-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.enterprise-card-icon img {
    width: 24px;
    height: 24px;
}

.enterprise-card-icon-plus {
    font-size: 24px;
    font-weight: 300;
    color: #E0E0E0;
}

.enterprise-chart-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.enterprise-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enterprise-list-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.enterprise-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #E0E0E0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b67a;
    flex-shrink: 0;
    margin-left: auto;
}

.enterprise-list-item-muted {
    color: rgba(204, 209, 233, 0.64);
}

.enterprise-list-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enterprise-list-item-muted .enterprise-list-shield {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.ecosystem {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.ecosystem h2 {
    margin-bottom: 40px;
}

.ecosystem-slider-wrap {
    margin-bottom: 40px;
}

.ecosystem-description {
    color: rgba(204, 209, 233, 0.64);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
    text-align: center;
}

.learn-more-btn {
    display: inline-block;
    background: rgba(204, 209, 233, 0.08);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    border: none;
    position: relative;
    transition: opacity 0.2s ease;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.learn-more-btn:hover {
    opacity: 0.9;
}

.results {
    padding: 80px 0;
    background: transparent;
}

.results h2 {
    margin-bottom: 16px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    background: rgba(204, 209, 233, 0.04);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    text-align: left;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.stat-item .stat-label {
    font-size: 18px;
    font-weight: 400;
    color: #E0E0E0;
    margin: 0 0 12px;
}

.stat-item .stat-description {
    color: rgba(204, 209, 233, 0.64);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.stat-metric {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
    margin-top: auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: right;
    background: linear-gradient(90deg, #CCD1E9 0%, rgba(204, 209, 233, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.stat-plus {
    font-size: 0.6em;
    font-weight: 400;
    color: rgba(204, 209, 233, 0.7);
}

.testimonials {
    padding: 80px 0;
    background: transparent;
}

.testimonials-slider-wrap {
    position: relative;
}

.testimonials-nav {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: rgba(204, 209, 233, 0.04);
    padding: 28px;
    border-radius: 8px;
    border: none;
    position: relative;
    text-align: left;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-stars {
    margin-bottom: 18px;
}

.testimonial-stars img {
    width: auto;
    height: 20px;
    display: block;
}

.testimonial p {
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    text-align: left;
}

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

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    font-weight: 400;
    font-size: 14px;
    color: #E0E0E0;
}

.guarantee {
    padding: 80px 0;
    background: transparent;
}

.guarantee h2 {
    margin-bottom: 16px;
}

.guarantee-block {
    margin-top: 60px;
    background: rgba(204, 209, 233, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(204, 209, 233, 0.15);
    border-radius: 12px;
    padding: 48px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.guarantee-block::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px dashed rgba(204, 209, 233, 0.15);
    border-radius: 6px;
    pointer-events: none;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    grid-column: 1;
    grid-row: 1;
}

.guarantee-badge {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.guarantee-badge-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.guarantee-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.guarantee-feature:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.guarantee-feature:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.guarantee-feature:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
}

.guarantee-feature h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #E0E0E0;
}

.guarantee-feature p {
    color: rgba(204, 209, 233, 0.64);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.guarantee-satisfaction {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(204, 209, 233, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.guarantee-satisfaction h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #E0E0E0;
}

.guarantee-satisfaction p {
    color: rgba(204, 209, 233, 0.64);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.guarantee-signature {
    display: block;
    height: 48px;
    width: auto;
    margin-left: auto;
    opacity: 0.95;
}

.faq {
    padding: 80px 0;
    background: transparent;
}

.faq h2 {
    margin-bottom: 16px;
}

.faq .section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.48);
    text-align: center;
}

.faq-subtitle .faq-highlight,
.faq-subtitle a.faq-highlight {
    color: #ffffff;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(204, 209, 233, 0.5);
}

.faq-subtitle a.faq-highlight:hover,
.faq-subtitle a.faq-highlight:visited {
    color: #ffffff;
}

/* FAQ page header (standalone page) */
.faq-page .faq-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-page .faq-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
}

.faq-page .faq-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
}

.faq-page .faq-badge {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.faq-page .faq-page-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
}

.faq-page .faq-page-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.48);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .faq-page-subtitle .faq-highlight {
    color: #ffffff;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(204, 209, 233, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: rgba(204, 209, 233, 0.04);
    border-radius: 8px;
    border: none;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-item-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 400;
    color: #E0E0E0;
    margin: 0;
    text-align: left;
}

.faq-toggle {
    flex-shrink: 0;
    color: #E0E0E0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item-answer {
    display: none;
    padding: 0 24px 20px;
}

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

.faq-item-answer p,
.faq-item-answer ul {
    margin: 0;
    color: rgba(204, 209, 233, 0.64);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item-answer ul {
    padding-left: 20px;
}

.faq-item-answer li {
    margin-bottom: 6px;
}

.faq-item-answer li:last-child {
    margin-bottom: 0;
}

.contact {
    padding: 80px 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    margin-bottom: 16px;
    color: #E0E0E0;
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}

.contact-text p {
    color: rgba(204, 209, 233, 0.64);
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.contact-form {
    background: rgba(204, 209, 233, 0.04);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.calendar-placeholder {
    color: rgba(204, 209, 233, 0.48);
    font-size: 16px;
    text-align: center;
}

/* Contact page (standalone) */
.contact-page {
    padding: 80px 0 100px;
    background: transparent;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-page-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #516aff;
}

.contact-page-badge {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.contact-page-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 32px;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page-label {
    display: block;
    font-size: 14px;
    color: rgba(204, 209, 233, 0.6);
    margin-bottom: 8px;
}

.contact-page-email {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.contact-page-email:hover {
    color: rgba(204, 209, 233, 0.9);
}

.contact-page-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-page-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(204, 209, 233, 0.04);
    border: 1px solid rgba(204, 209, 233, 0.12);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.contact-page-social-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-page-social-btn img {
    width: 18px;
    height: 18px;
}

.contact-form-status {
    margin-bottom: 20px;
    min-height: 0;
}
.contact-form-status:not(.contact-form-status-visible) {
    margin-bottom: 0;
}
.contact-form-status-visible {
    animation: contact-form-status-in 0.3s ease;
}
@keyframes contact-form-status-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-form-message {
    margin: 0 0 16px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
}
.contact-form-message:last-child {
    margin-bottom: 0;
}
.contact-form-message strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}
.contact-form-message--success {
    background: rgba(76, 175, 80, 0.2);
    color: #a5d6a7;
    border: 1px solid rgba(76, 175, 80, 0.4);
}
.contact-form-message--error {
    background: rgba(244, 67, 54, 0.15);
    color: #ef9a9a;
    border: 1px solid rgba(244, 67, 54, 0.35);
}

.contact-form-error-link {
    color: #90caf9;
    text-decoration: underline;
}

.contact-form-error-link:hover {
    color: #bbdefb;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-page-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page-field-label {
    font-size: 14px;
    color: rgba(204, 209, 233, 0.7);
}

.contact-page-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(204, 209, 233, 0.04);
    border: 1px solid rgba(204, 209, 233, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-page-input::placeholder {
    color: rgba(204, 209, 233, 0.4);
}

.contact-page-input:focus {
    outline: none;
    border-color: rgba(81, 106, 255, 0.5);
}

.contact-page-input.contact-input-error,
.contact-page-field .contact-page-input.contact-input-error {
    border-color: rgba(255, 100, 100, 0.6);
}

.contact-page-checkbox-wrap.contact-input-error {
    outline: 1px solid rgba(255, 100, 100, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

.contact-page-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-page-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.contact-page-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(204, 209, 233, 0.8);
}

.contact-page-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-page-terms-link {
    color: #ffffff;
    text-decoration: underline;
}

.contact-page-terms-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.contact-page-submit {
    padding: 14px 28px;
    background: #516aff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-page-submit:hover {
    background: #4060e8;
}

.contact-link-active {
    background: transparent !important;
    color: #516aff !important;
    border: 1px solid rgba(81, 106, 255, 0.5);
}

.contact-link-active::before {
    display: none;
}

/* Get account popup */
.get-account-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.get-account-popup.get-account-popup-visible {
    opacity: 1;
    visibility: visible;
}

.get-account-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.get-account-popup-box {
    position: relative;
    background: rgba(20, 24, 38, 0.98);
    border: 1px solid rgba(204, 209, 233, 0.12);
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 420px;
    width: 100%;
}

.get-account-popup-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 36px 0 0;
    padding-right: 10px;
}

.get-account-popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-account-popup-close img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.get-account-popup-close:hover img {
    opacity: 1;
}

.get-account-popup-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.get-account-popup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(204, 209, 233, 0.85);
    font-size: 13px;
    transition: color 0.2s ease;
}

.get-account-popup-item:hover {
    color: #ffffff;
}

.get-account-popup-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-account-popup-icon svg {
    width: 24px;
    height: 24px;
    color: rgba(204, 209, 233, 0.8);
}

.get-account-popup-icon-email {
    background: rgba(255, 255, 255, 0.08);
}

.get-account-popup-icon-email svg {
    color: rgba(204, 209, 233, 0.9);
}

.get-account-popup-icon-telegram {
    background: #4A89F4;
}

.get-account-popup-icon-telegram img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.get-account-popup-icon-whatsapp {
    background: #25D366;
}

.get-account-popup-icon-whatsapp img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.get-account-popup-text {
    text-align: center;
    white-space: nowrap;
}

/* Terms page */
.terms-page {
    padding: 40px 0 80px;
    background: transparent;
}

.terms-breadcrumb {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 16px;
}

.terms-breadcrumb::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #516aff;
    margin-right: 8px;
    vertical-align: middle;
}

.terms-title {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 32px;
}

.terms-content {
    background: rgba(204, 209, 233, 0.04);
    border: 1px solid rgba(204, 209, 233, 0.1);
    border-radius: 12px;
    padding: 40px 48px;
    width: 100%;
    text-align: left;
}

.terms-content h2 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 28px 0 12px;
    text-align: left;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h2.terms-subheading {
    font-size: 17px;
    margin-top: 24px;
}

.terms-content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #E0E0E0;
    margin: 20px 0 10px;
    text-align: left;
}

.terms-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(204, 209, 233, 0.9);
    margin: 0 0 14px;
    text-align: left;
}

.terms-content ul {
    margin: 0 0 14px;
    padding-left: 24px;
    text-align: left;
}

.terms-content li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(204, 209, 233, 0.9);
    margin-bottom: 8px;
    text-align: left;
}

.terms-content li:last-child {
    margin-bottom: 0;
}

/* Partners page */
.partners-page {
    padding: 40px 0 80px;
    background: transparent;
}

.partners-breadcrumb {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 16px;
}

.partners-breadcrumb::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #516aff;
    margin-right: 8px;
    vertical-align: middle;
}

.partners-title {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px;
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-card {
    background: rgba(204, 209, 233, 0.04);
    border: 1px solid rgba(204, 209, 233, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

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

.partner-card-logo-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(204, 209, 233, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.partner-card-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.partner-card-logo-wrap .partner-card-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.partner-card-logo {
    flex-shrink: 0;
}

.partner-card-name {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.partner-card-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(204, 209, 233, 0.8);
    margin: 0;
    flex: 1;
}

.partner-card-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s;
}

.partner-card-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 480px) {
    .get-account-popup-contacts {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: transparent;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(204, 209, 233, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: auto;
}

.footer-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #E0E0E0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.footer-address {
    color: rgba(204, 209, 233, 0.48);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.footer-contact {
    display: grid;
    grid-template-columns: auto auto;
    gap: 48px;
}

.contact-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(204, 209, 233, 0.48);
    margin: 0 0 12px;
}

.footer-email {
    color: #E0E0E0;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
}

.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(204, 209, 233, 0.04);
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 14px;
    text-decoration: none;
    min-width: 200px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.footer-social-link:hover {
    color: #ffffff;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.footer-copyright {
    color: rgba(204, 209, 233, 0.48);
    font-size: 12px;
}

.footer-terms {
    color: #E0E0E0;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-color: rgba(204, 209, 233, 0.5);
    transition: color 0.3s ease;
}

.footer-terms:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 24px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .column-body {
        border-right: none;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }
    
    .cta-buttons {
        justify-content: flex-start;
    }
    
    .telegram-btn, .whatsapp-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-card-combo {
        grid-column: span 1;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }

    .enterprise-card-combo:not(.enterprise-card-combo-list) .enterprise-combo-left {
        order: 2;
        padding-top: 0;
    }

    .enterprise-card-combo:not(.enterprise-card-combo-list) .enterprise-combo-right {
        order: 1;
        align-items: center;
    }

    .enterprise-combo-right .enterprise-chart-img {
        max-width: 100%;
    }

    .enterprise-chart-card {
        background: rgba(204, 209, 233, 0.04);
        border-radius: 8px;
        padding: 28px;
        position: relative;
    }

    .enterprise-chart-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 8px;
        padding: 2px;
        background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .enterprise-card-combo.enterprise-card-combo-list {
        flex-direction: column-reverse;
        display: flex;
    }

    .enterprise-card-combo-list .enterprise-combo-left {
        order: 2;
    }

    .enterprise-card-combo-list .enterprise-combo-right {
        order: 1;
        align-items: center;
    }

    .enterprise-card-combo-list .enterprise-list-img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .enterprise-card h3,
    .enterprise-card p,
    .enterprise-combo-left h3,
    .enterprise-combo-left p {
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 56px;
    }
    
    .nav {
        padding: 8px 12px;
        height: auto;
        min-height: 56px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .nav-actions {
        margin-left: auto;
        gap: 10px;
    }
    
    .nav-mobile-overlay {
        display: none;
    }
    
    .header.menu-open .nav-mobile-overlay {
        display: block;
    }
    
    .nav-mobile-menu {
        min-height: calc(100vh - 56px - 48px);
        justify-content: flex-start;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    /* На мобильных скрываем hero-image, чтобы не дублировать блок (если hero-mob.svg — скрин всего героя) */
    .hero-image {
        display: none !important;
    }
    
    .desktop-hero {
        display: none;
    }
    
    .mobile-hero {
        display: none;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .comparison-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto repeat(6, minmax(24px, auto));
        gap: 0;
        align-items: stretch;
    }
    
    .comparison-column:first-child {
        display: none;
    }
    
    .why-adpulser .comparison-column:nth-child(2),
    .why-adpulser .comparison-column:nth-child(3) {
        display: contents;
    }
    
    .why-adpulser .comparison-column:nth-child(2) .column-header {
        grid-column: 1;
        grid-row: 1;
    }
    
    .why-adpulser .comparison-column:nth-child(3) .column-header {
        grid-column: 2;
        grid-row: 1;
    }
    
    .why-adpulser .comparison-column:nth-child(2) .column-body,
    .why-adpulser .comparison-column:nth-child(3) .column-body {
        display: contents;
    }
    
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(1) { grid-column: 1; grid-row: 2; }
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(2) { grid-column: 1; grid-row: 3; }
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(3) { grid-column: 1; grid-row: 4; }
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(4) { grid-column: 1; grid-row: 5; }
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(5) { grid-column: 1; grid-row: 6; }
    .why-adpulser .comparison-column:nth-child(2) .feature:nth-child(6) { grid-column: 1; grid-row: 7; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(1) { grid-column: 2; grid-row: 2; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(2) { grid-column: 2; grid-row: 3; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(3) { grid-column: 2; grid-row: 4; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(4) { grid-column: 2; grid-row: 5; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(5) { grid-column: 2; grid-row: 6; }
    .why-adpulser .comparison-column:nth-child(3) .feature:nth-child(6) { grid-column: 2; grid-row: 7; }
    
    .why-adpulser .column-header {
        flex-direction: column;
        gap: 10px;
        background: rgba(204, 209, 233, 0.08);
        padding: 16px 12px;
        border-radius: 8px;
        font-size: 14px;
    }
    
    .why-adpulser .comparison-column:not(.adpulser) .column-header {
        background: rgba(204, 209, 233, 0.08);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .why-adpulser .comparison-column:not(.adpulser) .column-header::before {
        display: none;
    }
    
    .why-adpulser .comparison-column.adpulser .column-header::before {
        display: none;
    }
    
    .why-adpulser .column-header img {
        width: 28px;
        height: 28px;
    }
    
    .why-adpulser .column-body .feature {
        font-size: 14px;
        padding: 12px 16px;
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        text-align: center;
        box-sizing: border-box;
    }
    
    .why-adpulser .column-body .feature:last-child {
        border-bottom: none;
    }
    
    .why-adpulser .column-body .feature:not(:last-child)::after {
        display: none;
    }
    
    .why-adpulser .comparison-column:nth-child(3) .column-body .feature {
        position: relative;
        padding-left: 17px;
    }
    
    .why-adpulser .comparison-column:nth-child(3) .column-body .feature::before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 24px;
        background: rgba(204, 209, 233, 0.04);
    }
    
    .why-adpulser .comparison-block {
        padding: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-lcs .feature-icon-desktop {
        display: none;
    }
    
    .feature-card-lcs .feature-icon-mobile {
        display: block;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-metric {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .telegram-btn, .whatsapp-btn {
        width: 100%;
        max-width: 100%;
    }
    
    h2 {
        font-size: 22px !important;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .referral-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .referral-title {
        font-size: 28px;
    }
    
    .referral-card {
        padding: 24px 20px;
    }
    
    .referral-heading {
        font-size: 20px;
    }
    
    .referral-buttons .telegram-btn,
    .referral-buttons .whatsapp-btn {
        flex: 1;
        min-width: 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-page-title {
        font-size: 28px;
    }
    
    .contact-page-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-page-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-page-submit {
        width: 100%;
    }
    
    .terms-title {
        font-size: 24px;
    }
    
    .terms-content {
        padding: 24px 20px;
    }
    
    .partners-title {
        font-size: 24px;
    }
    
    .partners-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px 22px;
    }
    
    .faq-page .faq-page-title {
        font-size: 28px;
    }
    
    .faq-page .faq-page-header {
        margin-bottom: 40px;
    }
    
    .testimonials-slider-wrap {
        overflow: hidden;
        width: 100%;
    }
    
    .testimonials-grid.testimonials-track {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        width: 510%;
        transition: transform 0.3s ease;
    }
    
    /* Слайд ~85% ширины контейнера — по краям видно соседние */
    .testimonials-grid.testimonials-track .testimonial {
        flex: 0 0 16.666%;
        width: 16.666%;
        min-width: 16.666%;
        box-sizing: border-box;
    }
    
    .testimonials-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }
    
    .testimonials-prev,
    .testimonials-next {
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: rgba(204, 209, 233, 0.04);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .testimonials-prev img,
    .testimonials-next img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }
    
    .testimonials-prev::before,
    .testimonials-next::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 8px;
        padding: 2px;
        background: linear-gradient(90deg, rgba(204, 209, 233, 0.08) 0%, rgba(204, 209, 233, 0) 50%, rgba(204, 209, 233, 0.08) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }
    
    .testimonials-dots {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .testimonials-dot {
        width: 24px;
        height: 4px;
        border-radius: 2px;
        background: rgba(204, 209, 233, 0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    
    .testimonials-dot.active {
        background: #516aff;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 8px;
    }
    
    .get-account-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 200px;
        height: 52px;
        padding: 0 24px;
        font-size: 14px;
    }
    
    .comparison-column {
        padding: 24px 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .testimonial {
        padding: 24px 16px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .guarantee-block {
        padding: 24px 16px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .guarantee-feature:nth-child(1),
    .guarantee-feature:nth-child(2),
    .guarantee-feature:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .guarantee-badge-img {
        max-width: 180px;
        margin: 0 auto;
    }
    
}