/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 50%, #edf2f7 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-greeting {
    font-size: 1rem;
    font-weight: 400;
    color: #4a5568;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #37B349;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1f2937;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.hero-image {
    display: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pain-point {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.125rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.pain-point:hover {
    transform: translateY(-2px);
}

.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.pain-icon.red { background: #fee2e2; }
.pain-icon.orange { background: #fed7aa; }
.pain-icon.amber { background: #fef3c7; }

.tagline {
    margin-bottom: 3rem;
}

.tagline-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2d3748;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #37B349;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 0.05em;
}

.launching-text {
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 500;
}

.highlight-green {
    color: #37B349;
    font-weight: 600;
}

.highlight-blue {
    color: #0066FF;
    font-weight: 600;
}

.highlight-eco {
    color: #059669;
    font-weight: 600;
}

.cta-button {
    background: #37B349;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(55, 179, 73, 0.3);
}

.cta-button:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 179, 73, 0.4);
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(55, 179, 73, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.partner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-prop {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: #6b7280;
}

.partner-benefits {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.partner-benefits p {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
}

/* Form Section */
.form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

.contact-time {
    margin-top: 0.5rem;
}

.hours-highlight {
    color: #37B349;
    font-weight: 700;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #37B349;
    box-shadow: 0 0 0 3px rgba(55, 179, 73, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.submit-button {
    background: #37B349;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Thank You Message */
.thank-you {
    text-align: center;
    padding: 2rem;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thank-you h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.thank-you p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.thank-you-sub {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #37B349;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .tagline-main {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .partner-section,
    .form-section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

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

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

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

/* Sticky Design Partner Panel */
.sticky-partner-panel {
    position: fixed;
    right: -380px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    background: white;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 150;
    transition: right 0.3s ease-out;
    border: 1px solid #e5e7eb;
}

.sticky-partner-panel.open {
    right: 0;
}

.panel-toggle {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: #37B349;
    color: white;
    padding: 15px 8px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #37B349;
    border-right: none;
}

.panel-toggle:hover {
    background: #2f9e3a;
    transform: translateY(-50%) translateX(-2px);
}

.toggle-text {
    display: block;
    margin-bottom: 8px;
}

.toggle-icon {
    display: block;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sticky-partner-panel.open .toggle-icon {
    transform: rotate(180deg);
}

.panel-content {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.panel-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.close-panel {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.close-panel:hover {
    color: #6b7280;
}

.panel-description {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.partner-form-mini .form-group {
    margin-bottom: 16px;
}

.partner-form-mini label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 14px;
}

.partner-form-mini input,
.partner-form-mini textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.partner-form-mini input:focus,
.partner-form-mini textarea:focus {
    outline: none;
    border-color: #37B349;
    box-shadow: 0 0 0 3px rgba(55, 179, 73, 0.1);
}

.partner-form-mini textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button-mini {
    width: 100%;
    background: #37B349;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.submit-button-mini:hover {
    background: #2f9e3a;
    transform: translateY(-1px);
}

.submit-button-mini:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.thank-you-mini {
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.thank-you-mini .thank-you-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.thank-you-mini h4 {
    color: #15803d;
    margin-bottom: 8px;
    font-size: 16px;
}

.thank-you-mini p {
    color: #166534;
    font-size: 14px;
    margin: 0;
}

/* Mobile responsiveness for sticky panel */
@media (max-width: 768px) {
    .sticky-partner-panel {
        width: 100%;
        right: -100%;
        top: 0;
        transform: none;
        height: 100vh;
        border-radius: 0;
    }
    
    .sticky-partner-panel.open {
        right: 0;
    }
    
    .panel-toggle {
        left: -50px;
        padding: 12px 6px;
        font-size: 12px;
    }
    
    .panel-content {
        padding: 20px;
        max-height: 100vh;
    }
}