* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background and Gradients */
.main-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #581c87 0%, #1e3a8a 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.bg-animated {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.circle-2 {
    top: 50%;
    left: -5rem;
    width: 15rem;
    height: 15rem;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    opacity: 0.15;
    animation: bounce 2s infinite;
}

.circle-3 {
    bottom: 0;
    right: 33%;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #eab308 0%, #ea580c 100%);
    opacity: 0.1;
    animation: ping 2s infinite;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    position: relative;
}

.logo-svg {
    height: 2.5rem;
    width: 2.5rem;
    color: #06b6d4;
    transition: transform 0.3s ease;
}

.logo-group:hover .logo-svg {
    transform: rotate(12deg);
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: #06b6d4;
    filter: blur(8px);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(to right, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #06b6d4;
    transform: scale(1.1);
}

.cta-button {
    background: linear-gradient(to right, #06b6d4, #9333ea);
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(to right, #0891b2, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
}

.hero-badge {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-gradient-text {
    background: linear-gradient(to right, #06b6d4, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-primary-btn {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-primary-btn:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.5);
}

.hero-secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Stats Section */
.stats {
    padding: 5rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.stat-number.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number.purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number.green {
    background: linear-gradient(to right, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number.yellow {
    background: linear-gradient(to right, #eab308, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 6rem 1.5rem;
    background: linear-gradient(to right, rgba(67, 56, 202, 0.5), rgba(147, 51, 234, 0.5));
    backdrop-filter: blur(4px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out;
}

h3.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    space-y: 2rem;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: scale(1.05);
}

.highlight-icon {
    padding: 0.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.highlight-icon.blue {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.highlight-icon.purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.highlight-text {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    padding: 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: scale(1.05);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card-stat {
    text-align: center;
}

.card-icon {
    padding: 1rem;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.card-stat:hover .card-icon {
    transform: rotate(12deg);
}

.card-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
}

.card-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 6rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.feature-card.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card.cyan:hover {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.25);
}

.feature-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(147, 51, 234, 0.3);
}

.feature-card.purple:hover {
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.25);
}

.feature-card.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card.green:hover {
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
}

.feature-card.yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 88, 12, 0.1));
    border-color: rgba(234, 179, 8, 0.3);
}

.feature-card.yellow:hover {
    box-shadow: 0 25px 50px rgba(234, 179, 8, 0.25);
}

.feature-card.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(239, 68, 68, 0.3);
}

.feature-card.red:hover {
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.25);
}

.feature-card.indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card.indigo:hover {
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
}

.feature-content {
    text-align: center;
}

.feature-icon {
    padding: 1rem;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    width: fit-content;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(12deg);
}

.feature-icon.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
}

.feature-icon.purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.feature-icon.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.feature-icon.yellow {
    background: linear-gradient(to right, #eab308, #ea580c);
}

.feature-icon.red {
    background: linear-gradient(to right, #ef4444, #ec4899);
}

.feature-icon.indigo {
    background: linear-gradient(to right, #6366f1, #a855f7);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

/* Plans Section */
.plans {
    padding: 6rem 1.5rem;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(4px);
}

.plans-container {
    max-width: 1400px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 87.5rem;
    margin: 0 auto;
}

.plan-card {
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.plan-card.basic {
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.5), rgba(17, 24, 39, 0.5));
    border-color: rgba(107, 114, 128, 0.5);
}

.plan-card.pro {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border: 2px solid #06b6d4;
    position: relative;
    transform: scale(1.05);
}

.plan-card.pro:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.5);
}

.plan-card.premium {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 88, 12, 0.2));
    border-color: rgba(234, 179, 8, 0.5);
}

.plan-card.premium:hover {
    box-shadow: 0 25px 50px rgba(234, 179, 8, 0.25);
}

.plan-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 900;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

.plan-content {
    padding: 1.5rem;
    text-align: center;
}

.plan-card.pro .plan-content {
    padding-top: 2rem;
}

.plan-icon {
    padding: 0.75rem;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    width: fit-content;
}

.plan-icon.gray {
    background: linear-gradient(to right, #9ca3af, #6b7280);
}

.plan-icon.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    animation: bounce 2s infinite;
}

.plan-icon.yellow {
    background: linear-gradient(to right, #eab308, #ea580c);
}

.plan-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
}

.plan-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price-main {
    font-size: 3rem;
    font-weight: 900;
}

.plan-price-main.white {
    color: white;
}

.plan-price-main.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-price-main.yellow {
    background: linear-gradient(to right, #eab308, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-price-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.plan-price-old {
    font-size: 1.125rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plan-feature-text {
    color: white;
    font-weight: 500;
}

.plan-button {
    width: 100%;
    font-weight: 900;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button.gray {
    background: linear-gradient(to right, #6b7280, #4b5563);
    color: white;
}

.plan-button.gray:hover {
    background: linear-gradient(to right, #4b5563, #374151);
}

.plan-button.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.plan-button.cyan:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.5);
}

.plan-button.yellow {
    background: linear-gradient(to right, #eab308, #ea580c);
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.plan-button.yellow:hover {
    background: linear-gradient(to right, #d97706, #dc2626);
}

/* FAQ Section */
.faq {
    padding: 6rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 0 2rem;
    border: 1px solid transparent;
}

.faq-item.cyan {
    background: linear-gradient(to right, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
}

.faq-item.purple {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(147, 51, 234, 0.3);
}

.faq-item.green {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item.yellow {
    background: linear-gradient(to right, rgba(234, 179, 8, 0.1), rgba(234, 88, 12, 0.1));
    border-color: rgba(234, 179, 8, 0.3);
}

.faq-item.red {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(239, 68, 68, 0.3);
}

.faq-item.indigo {
    background: linear-gradient(to right, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--hover-color, #06b6d4);
}

.faq-item.cyan .faq-question:hover {
    --hover-color: #06b6d4;
}

.faq-item.purple .faq-question:hover {
    --hover-color: #a855f7;
}

.faq-item.green .faq-question:hover {
    --hover-color: #10b981;
}

.faq-item.yellow .faq-question:hover {
    --hover-color: #eab308;
}

.faq-item.red .faq-question:hover {
    --hover-color: #ef4444;
}

.faq-item.indigo .faq-question:hover {
    --hover-color: #6366f1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Contact Section */
.contact {
    padding: 6rem 1.5rem;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(4px);
}

.contact-container {
    max-width: 96rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 1rem;
}

.contact-icon.cyan {
    background: linear-gradient(to right, #06b6d4, #2563eb);
}

.contact-icon.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.contact-icon.purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: bold;
}

.contact-hours {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.hours-highlight {
    color: #06b6d4;
    font-weight: bold;
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.contact-form {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
}

.form-content {
    padding: 1.5rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #06b6d4;
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(to right, #06b6d4, #9333ea);
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-submit:hover {
    background: linear-gradient(to right, #0891b2, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    color: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.footer-logo-icon {
    position: relative;
}

.footer-logo-svg {
    height: 3rem;
    width: 3rem;
    color: #06b6d4;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-svg {
    transform: rotate(12deg);
}

.footer-logo-glow {
    position: absolute;
    inset: 0;
    background: #06b6d4;
    filter: blur(8px);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.footer-logo-text {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #06b6d4;
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-section.product h4 {
    color: #06b6d4;
}

.footer-section.support h4 {
    color: #a855f7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section.product .footer-link:hover {
    color: #06b6d4;
    transform: scale(1.05);
}

.footer-section.support .footer-link:hover {
    color: #a855f7;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #06b6d4;
    transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.pro {
        transform: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* SVG Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 48px;
    height: 48px;
    stroke: white;
    stroke-width: 2;
}

.icon-xl {
    width: 3rem;
    height: 3rem;
}

/* ====== Бургер ====== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 60;
}

.burger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== Мобильное меню ====== */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 55;
    }

    .nav.show {
        right: 0; /* выезжает */
    }

    .cta-button {
        display: none;
    }
}

/* Main Content */
.main-content {
    padding-top: 4.5rem;
    position: relative;
    z-index: 10;
}

.content-wrapper {
    padding: 2rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #06b6d4;
    transform: scale(1.05);
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-weight: bold;
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.breadcrumb-link:hover .breadcrumb-icon {
    transform: rotate(12deg);
}

.breadcrumb-separator {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 64rem;
    line-height: 1.6;
}

.page-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-button {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-button.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.action-button:hover {
    background: linear-gradient(to right, #9333ea, #db2777);
    transform: scale(1.05);
}

.action-button.green:hover {
    background: linear-gradient(to right, #059669, #047857);
}

/* Section Cards */
.section-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.section-card:hover {
    transform: scale(1.02);
}

.section-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
}

.section-card.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
}

.section-card.yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 88, 12, 0.1));
}

.section-card.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
}

.section-card.cyan-border {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1.5rem 1.5rem 1rem;
}

.section-title-s {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-s p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-icon {
    background: linear-gradient(to right, #06b6d4, #a855f7);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.section-icon:hover {
    transform: rotate(12deg);
}

.section-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.section-content {
    padding: 0 1.5rem 1.5rem;
}

.section-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card Components */
.info-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: scale(1.05);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.info-card-text {
    color: rgba(255, 255, 255, 0.7);
}

.team-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card-name {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.team-card-role {
    color: #a855f7;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-card-experience {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.value-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: scale(1.05);
}

.value-icon {
    font-size: 1.875rem;
}

.value-content h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: rgba(255, 255, 255, 0.8);
}

.achievement-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(234, 179, 8, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: scale(1.1);
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.achievement-number {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(to right, #eab308, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.reason-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: scale(1.05);
}

.reason-card-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.reason-card-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
}

.reason-card-text {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    border: 2px solid rgba(6, 182, 212, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: scale(1.02);
}

.contact-cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.contact-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.5);
}

.cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .page-header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .page-actions {
        margin-top: 0;
    }

    .contact-cta-buttons {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
