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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1e293b 0%, #6b46c1 25%, #1e293b 75%, #1e293b 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #6b46c1 25%, #1e293b 75%, #1e293b 100%);
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.dec-1 {
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
    filter: blur(30px);
    opacity: 0.6;
}

.dec-2 {
    top: 80px;
    right: 80px;
    width: 24px;
    height: 24px;
    background: #60a5fa;
    opacity: 0.8;
}

.dec-3 {
    top: 160px;
    right: 160px;
    width: 16px;
    height: 16px;
    background: #fbbf24;
    opacity: 0.7;
}

.dec-4 {
    bottom: 80px;
    left: 80px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
    filter: blur(20px);
    opacity: 0.6;
}

.dec-5 {
    bottom: 160px;
    right: 40px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    filter: blur(15px);
    opacity: 0.5;
}

.dec-6 {
    left: 25%;
    top: 33%;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    filter: blur(25px);
    opacity: 0.4;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 24px 24px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-placeholder svg,
.logo-placeholder img {
    width: 200px;
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 600px) {
  .logo-placeholder svg,
  .logo-placeholder img {
    width: 140px;
  }
}

.logo-text {
    width: 128px;
    height: 32px;
    background: #4b5563;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #edf0f4;
}

/* Buttons */
.btn {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #24B387 0%, #00A6CC 100%);
    color: #ffffff;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00A7CF 0%, #25B88B 100%);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.btn-border {
  position: relative;
  z-index: 0;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.2s ease;
}

.btn-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(36, 179, 135, 0.7) 0%, rgba(0, 166, 204, 0.7) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  transition: background 0.4s ease;
}


.btn-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #24B387 0%, #00A6CC 100%);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.4s ease;
}

.btn-border:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-border:hover::after {
  opacity: 1;
}


.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #4b5563;
    color: #c9cdd1;
}

.btn-outline:hover {
    background: #374151;
    color: #ffffff;
    border-color: #6b7280;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    padding: 64px 24px 96px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #5EA6FF 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #edf0f4;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sections */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #edf0f4;
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    z-index: 10;
    padding: 64px 0 96px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-content {
    padding: 32px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.icon-purple {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.card-description {
    color: #edf0f4;
    line-height: 1.6;
}

/* Learn More Section */
.learn-more {
    position: relative;
    z-index: 10;
    padding: 64px 0 96px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-description {
    color: #edf0f4;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 32px 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(107, 70, 193, 0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.2);
}

.modal-body {
    padding: 32px;
}

.modal-description {
    color: #edf0f4;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.modal-option:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

.modal-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.modal-option-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
}

.modal-option-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20b954 100%);
}

.modal-option-icon.email {
    background: linear-gradient(135deg, #ea4335 0%, #d33b2c 100%);
}

.modal-option-text h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.modal-option-text p {
    color: #edf0f4;
    font-size: 0.875rem;
    margin: 0;
}

.modal-form {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 32px;
}

.modal-form h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    color: #edf0f4;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.modal-submit {
    width: 100%;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 16px 16px;
    }
    
    .hero {
        padding: 48px 16px 64px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-content {
        padding: 0 16px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-card {
        padding: 32px 24px;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-options {
        gap: 12px;
    }
    
    .modal-option {
        padding: 12px;
    }
    
    .modal-option-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-option {
  text-decoration: none;
}

.modal-option h4,
.modal-option p {
  text-decoration: none;
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}