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

:root {
    --primary: 144 80% 55%;
    --primary-foreground: 240 53% 6%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222 47% 11%;
	--accent: 246 100% 66%;
    --accent-foreground: 222 47% 11%;
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;
    --muted: 210 40% 96%;
    --muted-foreground: 0 0 0;
    --border: 214 32% 91%;
    --radius: 0.5rem;
    --color-violet:246 100% 66%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: hsl(var(----background));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background: hsl(var(--accent));
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-icon-left {
    width: 16px;
    height: 16px;
}

.w-full {
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: hsl(var(--color-violet));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
}

.nav-desktop {
    display: none;
    gap: 32px;
}
.header.scrolled .nav-link {color: hsl(var(--muted-foreground));}
.nav-desktop .nav-link {
    color: hsl(var(--background));
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: hsl(var(--foreground));
}

.header-actions {
    display: none;
    gap: 12px;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid hsl(var(--border));
    padding: 20px;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: hsl(var(--foreground));
    text-decoration: none;
    padding: 8px 0;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: hsl(var(--color-violet));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(220, 89%, 72%) 100%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, currentColor 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-testimonials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials-avatars {
    display: flex;
    margin-left: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -16px;
    background: #fff;
}

.avatar:first-child {
    margin-left: 0;
}

.testimonials-rating {
    color: #ffd700;
    font-size: 14px;
}

.testimonials-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: -40px;
}

.card-2 {
    bottom: 40px;
    right: -40px;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 24px;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.card-subtitle {
    font-size: 12px;
    color: hsl(var(--muted-foreground));
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: hsl(var(--secondary));
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: hsl(var(--muted-foreground));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.bg-primary {
    background: hsl(var(--primary));
    color: white;
}

.bg-secondary {
    background: hsl(var(--secondary));
}

.bg-accent {
    background: hsl(var(--accent));
    color: white;
}
.bg-accent-foreground {border: 1px solid hsl(var(--accent));}
.bg-muted {
    background: hsl(var(--muted));
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bg-primary .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('src/cta-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -3;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(var(--primary), 0.8), hsla(220, 89%, 72%, 0.8));
    z-index: -2;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, currentColor 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-features {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Footer */
/* Footer */
.footer {
    background: hsl(var(--secondary));
    padding: 48px 0 24px;
}

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

/* Адаптивность для футера */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer {
        padding: 32px 0 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 24px;
    }
    
    .footer {
        padding: 24px 0 12px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 24px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contacts a,
.footer-contacts span {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 14px;
}

.footer-contacts a:hover {
    color: hsl(var(--foreground));
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
}

.footer-column a:hover {
    color: hsl(var(--foreground));
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: hsl(var(--foreground));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .cta-title {
        font-size: 42px;
    }
}
.logo img {max-width: 190px;}
.logo-img, .logo-img-w {
    position: absolute;
}

.logo-img {
    display: none;
}

.logo-img-w {
    display: block;
}

.header.scrolled .logo-img {
    display: block;
}

.header.scrolled .logo-img-w {
    display: none;
}
.logo-footer {max-width:150px}
/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: hsl(var(--background));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--border));
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    border-color: hsl(var(--primary));
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--primary));
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
}

.price-currency {
    font-size: 20px;
    margin-right: 4px;
}

.price-period {
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

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

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;

}

.pricing-icon {
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card-popular {
        margin-top: -16px;
    }
}

@media (max-width: 767px) {
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }
}
/* FAQ Section */
.faq {
    padding: 80px 0;
    background: hsl(var(--secondary));
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: hsl(var(--foreground));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: hsl(var(--muted));
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.expanded {
    padding: 0 20px 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
    }
}
/* Стили для списков */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 0;
    padding: 0;
}

/* Стили для нумерованных списков */
ol {
    list-style: decimal;
    padding-left: 20px;
}

ol li {
    margin-bottom: 8px;
}

/* Стили для маркированных списков */
ul.list-disc {
    list-style: disc;
    padding-left: 20px;
}

ul.list-disc li {
    margin-bottom: 8px;
}

/* Стили для списка в футере */
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column li {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-column li:hover {
    color: hsl(var(--foreground));
}

/* Стили для списка в разделе преимуществ */
.benefits-grid ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-grid li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: hsl(var(--foreground));
}

/* Стили для списка в тарифах */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: hsl(var(--foreground));
}

/* Стили для списка в FAQ */
.faq-answer ul {
    padding-left: 20px;
    margin: 12px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Стили для списка в герой-секции (аватары) */
.testimonials-avatars ul {
    display: flex;
    margin-left: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -16px;
    background: #fff;
}

.avatar:first-child {
    margin-left: 0;
}

/* Стили для списка в навигации */
.nav-desktop ul {
    display: flex;
    gap: 32px;
}

.nav-desktop li {
    list-style: none;
}

/* Стили для мобильного меню */
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-nav li {
    list-style: none;
}

/* Общие стили для списков с иконками */
.list-with-icons li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-with-icons .list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили для вложенных списков */
ul ul,
ol ul,
ul ol,
ol ol {
    margin: 8px 0;
    padding-left: 16px;
}

/* Стили для списков в карточках */
.card-content ul {
    padding: 16px 0;
}

.card-content li {
    padding: 4px 0;
    color: hsl(var(--muted-foreground));
}

/* Стили для списков с чекбоксами */
.checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist .check-icon {
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* Адаптивность для списков */
@media (max-width: 767px) {
    .footer-column ul {
        gap: 6px;
    }
    
    .benefits-grid ul {
        gap: 10px;
    }
    
    .pricing-list {
        gap: 10px;
    }
    
    .faq-answer ul {
        padding-left: 16px;
    }
    
    .nav-desktop ul {
        gap: 20px;
    }
}
/* FAQ Section */
.faq {
    padding: 80px 0;
    background: hsl(var(--secondary));
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: hsl(var(--foreground));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: hsl(var(--muted));
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.expanded {
    padding: 0 20px 20px;
    max-height: 1000px; /* увеличено для вложенных списков */
    opacity: 1;
}

.faq-answer p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Стили для списков внутри FAQ */
.faq-answer ul {
    padding-left: 20px;
    margin: 12px 0 16px;
}

.faq-answer li {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

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

/* Стили для маркера списка в FAQ */
.faq-answer li::before {
    content: "•";
    color: hsl(var(--primary));
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Стили для жирного текста в FAQ */
.faq-answer strong {
    color: hsl(var(--foreground));
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-answer.expanded {
        padding: 0 16px 16px;
    }
    
    .faq-answer ul {
        padding-left: 16px;
    }
}
/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: hsl(var(--background));
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    margin-top: 48px;
    align-items: center;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    z-index: 2;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon-container {
    position: relative;
    margin-bottom: 24px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 28% 72% 50% 50% / 26% 20% 80% 74%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--accent-foreground));
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid hsl(var(--background));
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: hsl(var(--foreground));
}

.step-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 14px;
    margin-top: auto;
}

/* Step Arrows */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    height: 100%;
    position: relative;
    align-self: center;
    padding: 0 10%;
}

.step-arrow-1 {
    align-self: center;
}

.step-arrow-2 {
    align-self: center;
}

.step-arrow .arrow-svg {
    width: 100%;
    height: 100px;
    color: hsl(var(--muted-foreground));
}

.arrow-line {
    stroke: hsl(var(--muted-foreground));
    stroke-width: 2;
    stroke-dasharray: 5,5;
}

.arrow-head {
    fill: hsl(var(--muted-foreground));
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
    }
    
    .step-item {
        padding: 16px;
        min-height: auto;
        margin: 0;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-arrow {
        display: none;
    }
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: hsl(var(--background));
}

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

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsl(var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: hsl(var(--foreground));
}

.contact-details p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}



.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: hsl(var(--foreground));
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 14px;
    background: hsl(var(--background));
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px rgba(144, 80, 255, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 14px;
    background: hsl(var(--background));
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px rgba(144, 80, 255, 0.1);
}

.form-agreement {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid hsl(var(--border));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.checkbox-text a {
    color: hsl(var(--primary));
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .contact-grid {
        gap: 32px;
    }
}
.bg-blue-500\/10 {
    background-color: rgb(59 130 246 / .1);
}
.bg-emerald-500\/10 {
    background-color: rgb(16 185 129 / .1);
}
.bg-amber-500\/10 {
    background-color: rgb(245 158 11 / .1);
}