@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #1f1f2e;
    font-family: 'Rubik', sans-serif;
    font-size: var(--font-size);
}
body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}
input,
textarea {
    width: 100%;
}
label {
    display: inline-block;
}
button,
select,
option {
    cursor: pointer;
}
a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

main {
    overflow-x: hidden;
}

.header {
    background-color: #1f1f2e;
    box-shadow: 0 2px 4px 0 1px 2px rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #f3f4f6;
    text-decoration: none;
}

.header__logo i {
    color: #a78bfa;
    font-size: 26px;
}

.nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__list a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 150ms ease-in-out;
}

.nav__list a:hover {
    color: #a78bfa;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #f3f4f6;
    cursor: pointer;
    position: relative;
    z-index: 6;
}

.footer {
    background-color: #2c2c3c;
    padding: 48px 0;
    border-top: 1px solid #3a3a4f;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3f4f6;
    font-weight: 600;
    font-size: 26px;
}

.footer-logo i {
    color: #a78bfa;
    font-size: 34px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
}

.footer-contact-icon {
    color: #a78bfa;
    width: 20px;
    text-align: center;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #3a3a4f;
}

.footer-section-title {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 19px;
}

.footer-section-toggle {
    color: #a78bfa;
    transition: transform 300ms ease-in-out;
    display: none;
}

.footer-section-content {
    padding: 20px 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.footer-section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section-link {
    color: #d1d5db;
    transition: all 150ms ease-in-out;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.footer-section-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #a78bfa;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 150ms ease-in-out;
}

.footer-section-link:hover {
    color: #a78bfa;
    padding-left: 30px;
}

.footer-section-link:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-text {
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-input {
    background-color: #1f1f2e;
    border: 1px solid #3a3a4f;
    padding: 20px;
    border-radius: 5px;
    color: #f3f4f6;
    transition: border-color 150ms ease-in-out;
}

.footer-input:focus {
    outline: none;
    border-color: #a78bfa;
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-button {
    background-color: #a78bfa;
    color: #111827;
    padding: 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 150ms ease-in-out;
}

.footer-button:hover {
    background-color: #f472b6;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #3a3a4f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-policy-links {
    display: flex;
    gap: 30px;
}

.footer-policy-link {
    color: #9ca3af;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}

.footer-policy-link:hover {
    color: #a78bfa;
}

.hero-cards {
    min-height: 100vh;
    padding: 48px 0;
    background: linear-gradient(135deg, #2c2c3c, #3a3a4f);
}

.hero-cards__container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-cards__header {
    text-align: center;
    margin-bottom: 64px;
}

.hero-cards__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 30px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease 0.2s forwards;
}

.hero-cards__subtitle {
    font-size: 26px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease 0.4s forwards;
}

.hero-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.hero-cards__card {
    background: #1f1f2e;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px 0 1px 2px rgba(255, 255, 255, 0.04);
    transition: all 300ms ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
}

.hero-cards__card:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-cards__card:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-cards__card:nth-child(3) {
    animation-delay: 1s;
}

.hero-cards__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}

.hero-cards__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px 0 3px 6px rgba(255, 255, 255, 0.08);
}

.hero-cards__card:hover::before {
    transform: scaleX(1);
}

.hero-cards__card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 26px;
    color: #111827;
    font-weight: 700;
}

.hero-cards__card-title {
    font-size: 26px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.hero-cards__card-text {
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cards__card-link {
    color: #a78bfa;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 300ms ease-in-out;
}

.hero-cards__card-link:hover {
    color: #f472b6;
    transform: translateX(5px);
}

.hero-cards__cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease 1.2s forwards;
}

.hero-cards__cta-button {
    display: inline-block;
    padding: 20px 48px;
    background: #a78bfa;
    color: #111827;
    border-radius: 24px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-cards__cta-button:hover {
    background: #f472b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.about-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-section {
    padding: 48px 0;
    background: #2c2c3c;
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 19px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.about-tabs-container {
    background: #1f1f2e;
    border-radius: 24px;
    box-shadow: 0 8px 25px 0 1px 2px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.about-tabs-nav {
    display: flex;
    background: #3a3a4f;
    border-bottom: 1px solid #3a3a4f;
}

.about-tab-button {
    flex: 1;
    padding: 30px 48px;
    background: transparent;
    border: none;
    font-size: var(--font-size);
    font-weight: 500;
    color: #d1d5db;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    position: relative;
}

.about-tab-button.about-active {
    color: #a78bfa;
    background: #1f1f2e;
}

.about-tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a78bfa;
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}

.about-tab-button.about-active::after {
    transform: scaleX(1);
}

.about-tab-content {
    padding: 48px;
}

.about-tab-panel {
    display: none;
}

.about-tab-panel.about-active {
    display: block;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.about-service-card {
    background: #2c2c3c;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px 0 3px 6px rgba(255, 255, 255, 0.08);
}

.about-service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-service-title {
    font-size: 19px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.about-service-description {
    color: #d1d5db;
    font-size: 14px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.about-team-member {
    text-align: center;
}

.about-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #a78bfa;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.about-team-name {
    font-size: 19px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 4px;
}

.about-team-role {
    color: #a78bfa;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-team-bio {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

.about-achievements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.about-achievement-item {
    background: #2c2c3c;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #10b981;
}

.about-achievement-title {
    font-size: 19px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.about-achievement-description {
    color: #d1d5db;
    line-height: 1.6;
}

.about-animate {
    opacity: 0;
    transition: all 500ms ease;
}

.about-fade-in {
    transform: translateY(30px);
}

.about-fade-in.about-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-slide-up {
    transform: translateY(50px);
}

.about-slide-up.about-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-scale-in {
    transform: scale(0.9);
}

.about-scale-in.about-visible {
    opacity: 1;
    transform: scale(1);
}

.about-tab-fade {
    opacity: 0;
    transform: translateX(20px);
    transition: all 300ms ease-in-out;
}

.about-tab-fade.about-active {
    opacity: 1;
    transform: translateX(0);
}

.about-stagger-delay-1 {
    transition-delay: 0.1s;
}

.about-stagger-delay-2 {
    transition-delay: 0.2s;
}

.about-stagger-delay-3 {
    transition-delay: 0.3s;
}

.benefits-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
}

.benefits-section {
    padding: 48px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 64px;
}

.benefits-title {
    font-size: 34px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.benefits-subtitle {
    font-size: 19px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-comparison-table {
    background: #1f1f2e;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px 0 1px 2px rgba(255, 255, 255, 0.04);
    border: 1px solid #3a3a4f;
}

.benefits-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #3a3a4f;
    color: #f3f4f6;
}

.benefits-header-cell {
    padding: 30px 48px;
    font-weight: 600;
    font-size: 19px;
    text-align: center;
}

.benefits-header-cell:first-child {
    text-align: left;
}

.benefits-table-body {
    display: grid;
    grid-template-columns: 1fr;
}

.benefits-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #3a3a4f;
    transition: all 300ms ease-in-out;
}

.benefits-table-row:hover {
    background: #2c2c3c;
}

.benefits-table-row:last-child {
    border-bottom: none;
}

.benefits-table-cell {
    padding: 30px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefits-table-cell:first-child {
    justify-content: flex-start;
    text-align: left;
}

.benefits-feature-name {
    font-weight: 600;
    color: #f3f4f6;
}

.benefits-feature-description {
    color: #d1d5db;
    font-size: 14px;
    margin-top: 4px;
}

.benefits-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #111827;
}

.benefits-check.benefits-yes {
    background: #10b981;
}

.benefits-check.benefits-no {
    background: #dc2626;
}

.benefits-check.benefits-partial {
    background: #f59e0b;
}

.benefits-highlight-section {
    background: #2c2c3c;
    padding: 64px;
    border-radius: 24px;
    margin-top: 64px;
    text-align: center;
}

.benefits-highlight-title {
    font-size: 26px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 30px;
}

.benefits-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

.benefits-highlight-item {
    background: #1f1f2e;
    padding: 30px;
    border-radius: 16px;
    transition: all 300ms ease-in-out;
}

.benefits-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px 0 3px 6px rgba(255, 255, 255, 0.08);
}

.benefits-highlight-number {
    font-size: 34px;
    font-weight: 700;
    color: #a78bfa;
    display: block;
    margin-bottom: 4px;
}

.benefits-highlight-label {
    color: #d1d5db;
    font-size: 14px;
}

.benefits-animate {
    opacity: 0;
    transition: all 500ms ease;
}

.benefits-fade-in {
    transform: translateY(30px);
}

.benefits-fade-in.benefits-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits-slide-up {
    transform: translateY(50px);
}

.benefits-slide-up.benefits-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits-scale-in {
    transform: scale(0.9);
}

.benefits-scale-in.benefits-visible {
    opacity: 1;
    transform: scale(1);
}

.benefits-table-animate {
    transform: translateX(-20px);
}

.benefits-table-animate.benefits-visible {
    opacity: 1;
    transform: translateX(0);
}

.benefits-stagger-delay-1 {
    transition-delay: 0.1s;
}

.benefits-stagger-delay-2 {
    transition-delay: 0.2s;
}

.benefits-stagger-delay-3 {
    transition-delay: 0.3s;
}

.benefits-stagger-delay-4 {
    transition-delay: 0.4s;
}

.benefits-stagger-delay-5 {
    transition-delay: 0.5s;
}

.services-tabs {
    padding: 64px 30px;
    background: #2c2c3c;
    min-height: 100vh;
}

.services-tabs__container {
    max-width: 1160px;
    margin: 0 auto;
}

.services-tabs__title {
    font-size: 34px;
    font-weight: 700;
    color: #f3f4f6;
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(-30px);
}

.services-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.services-tabs__tab {
    padding: 20px 30px;
    background: #1f1f2e;
    border-radius: 10px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
}

.services-tabs__tab:hover {
    background: #3a3a4f;
    color: #f3f4f6;
}

.services-tabs__tab--active {
    background: #a78bfa;
    color: #111827;
}

.services-tabs__tab--active:hover {
    background: #a78bfa;
    color: #111827;
}

.services-tabs__content {
    background: #1f1f2e;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px 0 1px 2px rgba(255, 255, 255, 0.04);
    min-height: 400px;
}

.services-tabs__panel {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 300ms ease-in-out;
}

.services-tabs__panel--active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.services-tabs__panel-title {
    font-size: 26px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-tabs__panel-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #111827;
}

.services-tabs__panel:nth-child(1) .services-tabs__panel-icon {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
}

.services-tabs__panel:nth-child(2) .services-tabs__panel-icon {
    background: linear-gradient(135deg, #10b981, #a78bfa);
}

.services-tabs__panel:nth-child(3) .services-tabs__panel-icon {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.services-tabs__panel:nth-child(4) .services-tabs__panel-icon {
    background: linear-gradient(135deg, #f472b6, #10b981);
}

.services-tabs__panel-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 48px;
}

.services-tabs__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.services-tabs__feature {
    padding: 30px;
    background: #2c2c3c;
    border-radius: 10px;
    border-left: 3px solid #a78bfa;
}

.services-tabs__feature-title {
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.services-tabs__feature-text {
    color: #d1d5db;
    font-size: 14px;
}

.services-tabs__price {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #3a3a4f, #2c2c3c);
    border-radius: 10px;
}

.services-tabs__price-label {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 10px;
}

.services-tabs__price-value {
    font-size: 26px;
    font-weight: 700;
    color: #a78bfa;
}

.services-tabs__animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.cta-particles-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.cta-particles-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: #f3f4f6;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: cta-glow-pulse 3s ease-in-out infinite alternate;
    line-height: 1;
}

.cta-particles-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #f3f4f6;
    margin-bottom: 64px;
    opacity: 0.8;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-particles-button {
    display: inline-block;
    background: transparent;
    color: #f3f4f6;
    padding: 30px 48px;
    border: 2px solid #a78bfa;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-particles-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #a78bfa;
    transition: left 300ms ease-in-out;
    z-index: -1;
}

.cta-particles-button:hover::before {
    left: 0;
}

.cta-particles-button:hover {
    color: #f3f4f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
}

@keyframes cta-glow-pulse {
    0% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.3);
    }
}

.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
    padding: 30px;
}

.policy-modal.policy-modal--visible {
    opacity: 1;
    visibility: visible;
}

.policy-modal__content {
    background: #1f1f2e;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px 0 6px 10px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: transform 300ms ease-in-out;
    position: relative;
}

.policy-modal.policy-modal--visible .policy-modal__content {
    transform: scale(1) translateY(0);
}

.policy-modal__header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-modal__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.policy-modal__title {
    font-size: 26px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.policy-modal__subtitle {
    color: #d1d5db;
    font-size: var(--font-size);
}

.policy-modal__text {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: center;
}

.policy-modal__policies {
    background: #2c2c3c;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 48px;
}

.policy-modal__policies-title {
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 20px;
    text-align: center;
}

.policy-modal__links {
    display: grid;
    gap: 20px;
}

.policy-modal__link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #1f1f2e;
    border-radius: 10px;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    border: 2px solid transparent;
}

.policy-modal__link:hover {
    border-color: #a78bfa;
    transform: translateX(4px);
}

.policy-modal__link-icon {
    width: 24px;
    height: 24px;
    background: #a78bfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #111827;
    font-size: 12px;
}

.policy-modal__link-text {
    flex: 1;
}

.policy-modal__link-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.policy-modal__link-desc {
    font-size: 14px;
    color: #9ca3af;
}

.policy-modal__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.policy-modal__button {
    padding: 20px 48px;
    border-radius: 10px;
    font-size: var(--font-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    border: 2px solid transparent;
    min-width: 140px;
}

.policy-modal__button--primary {
    background: #a78bfa;
    color: #111827;
}

.policy-modal__button--primary:hover {
    background: #f472b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 3px 6px rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1f1f2e;
        box-shadow: -2px 0 8px 0 3px 6px rgba(255, 255, 255, 0.08);
        transition: right 300ms ease-in-out;
        padding: 48px;
        z-index: 5;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        margin-top: 64px;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .footer-section-toggle {
        display: block;
    }

    .footer-section-content {
        max-height: 0;
        padding: 0;
    }

    .footer-section.footer-section-active .footer-section-content {
        max-height: 300px;
        padding: 20px 0;
    }

    .footer-section.footer-section-active .footer-section-toggle {
        transform: rotate(180deg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 769px) {
    .footer-section-content {
        max-height: none !important;
        padding: 20px 0 !important;
    }
}
@media (max-width: 768px) {
    .hero-cards__title {
        font-size: 2.5rem;
    }

    .hero-cards__grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    .about-tabs-nav {
        flex-direction: column;
    }

    .about-tab-content {
        padding: 30px;
    }

    .about-title {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
    .benefits-table-header,
    .benefits-table-row {
        grid-template-columns: 1fr;
    }

    .benefits-header-cell,
    .benefits-table-cell {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .benefits-header-cell:not(:first-child) {
        display: none;
    }

    .benefits-table-cell:not(:first-child) {
        padding-left: calc(48px + 20px);
        font-size: 14px;
    }

    .benefits-table-cell:not(:first-child)::before {
        content: attr(data-label) ': ';
        font-weight: 600;
        margin-right: 10px;
    }

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

    .benefits-title {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
    .services-tabs__nav {
        flex-direction: column;
        align-items: center;
    }

    .services-tabs__features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .policy-modal__content {
        padding: 30px;
        margin: 20px;
    }

    .policy-modal__actions {
        flex-direction: column;
    }
}
