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

html, body {
    height: 100%;
    overflow: hidden;
}




body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #F6F6F4;
    background-image: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%),
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    position: relative;
}

/* Main Wrapper */
.main-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo-container {
    text-align: center;
    padding-top: 20px;
}

.logo {
    height: 45px;
    width: auto;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 1000px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0B2B20;
}

.flame-icon {
    width: 20px;
    height: 20px;
}

.main-heading {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 84px;
    font-weight: 600;
    color: #0B2B20;
    line-height: 1.15;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
}

.underline-wrapper {
    position: relative;
    display: inline-block;
}

.underline-wrapper .text {
    position: relative;
    z-index: 1;
}

.underline-wrapper .underline {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 16px;
    background-color: #D2EE39;
    z-index: 0;
}

.subheading {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #0B2B20;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0.8;
}

.contact-button {
    background: #0B2B20;
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(11, 43, 32, 0.25);
}

.contact-button:hover {
    background: #164034;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11, 43, 32, 0.35);
}

.contact-button:active {
    transform: translateY(-1px);
}

/* Partners Section */
.partners-section {
    width: 100%;
    padding-bottom: 40px;
}

.logo-scroll-container {
    overflow: hidden;
    padding: 30px 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logo-scroll-track {
    display: flex;
    gap: 80px;
    animation: scrollLogos 35s linear infinite;
    width: fit-content;
}

.partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-scroll-container:hover .logo-scroll-track {
    animation-play-state: paused;
}

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

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

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

.modal-content {
    background: white;
    padding: 40px 50px;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

/* Skeleton Loader */
.skeleton-loader {
    display: none;
}

.skeleton-loader.active {
    display: block;
}

.form-wrapper {
    display: block;
}

.form-wrapper.loading {
    display: none;
}

.skeleton-header {
    height: 40px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 60%;
}

.skeleton-text {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
    margin-bottom: 30px;
    width: 100%;
}

.skeleton-input {
    height: 50px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 20px;
}

.skeleton-textarea {
    height: 120px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 20px;
}

.skeleton-button {
    height: 50px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    margin-top: 10px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.modal-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #0B2B20;
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    font-size: 36px;
    color: #0B2B20;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.close-button:hover {
    transform: rotate(90deg);
}

.modal-description {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #0B2B20;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Rate Limit Warning */
.rate-limit-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.rate-limit-warning p {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #856404;
    margin: 0;
}

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

.form-group label {
    display: block;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0B2B20;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #0B2B20;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2EE39;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.submit-button {
    width: 100%;
    background: #0B2B20;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.submit-button:hover:not(:disabled) {
    background: #164034;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 43, 32, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow: auto;
    }
    
    .main-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .main-heading {
        font-size: 52px;
    }
    
    .subheading {
        font-size: 18px;
        text-align: center;
    }
    
    .desktop-break {
        display: none;
    }
    
    .logo-scroll-track {
        gap: 50px;
    }
    
    .partner-logo {
        height: 24px;
    }
    
    .underline-wrapper .underline {
        height: 12px;
        bottom: 6px;
    }
    
    .modal-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .modal-content h2 {
        font-size: 26px;
    }
    
    .modal-icon {
        width: 32px;
        height: 32px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 40px;
        text-align: center;
    }
    
    .main-heading br {
        display: none;
    }
    
    .subheading {
        font-size: 16px;
        text-align: center;
    }
    
    .contact-button {
        padding: 16px 36px;
        font-size: 12px;
    }
    
    .badge {
        font-size: 12px;
        padding: 12px 24px;
    }
    
    .underline-wrapper .underline {
        height: 10px;
        bottom: 4px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .modal-content h2 {
        font-size: 22px;
    }
}