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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    min-height: 100vh;
}

#app {
    width: 100%;
    min-height: 100vh;
}

/* Page Container */
.page-container {
    position: relative;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Styles */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(139, 90, 43, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(101, 67, 33, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 36, 13, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, #1a1206 0%, #0f0f0f 30%, #0a0a0a 100%);
    pointer-events: none;
    z-index: -2;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23967259' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.3) 0%, rgba(101, 67, 33, 0.2) 100%);
    border: 1px solid rgba(139, 90, 43, 0.4);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #d4a574;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #d4a574 0%, #c08552 50%, #8b5a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a3a3a3;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 14px;
    color: #d4d4d4;
}

.badge-icon {
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(139, 90, 43, 0.08);
    border-color: rgba(139, 90, 43, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.6;
}

/* Real Human Section */
.real-human-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, rgba(139, 90, 43, 0.05) 0%, transparent 100%);
}

.real-human-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.real-human-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 18px;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
}

.real-human-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #fff;
}

.real-human-title .highlight {
    color: #d4a574;
}

.comparison-box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.comparison-item {
    flex: 1;
    max-width: 200px;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
}

.comparison-item.ai {
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.comparison-item.human {
    background: rgba(139, 90, 43, 0.15);
    border: 1px solid rgba(139, 90, 43, 0.4);
}

.comparison-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.comparison-label {
    font-size: 14px;
    font-weight: 700;
    color: #a3a3a3;
    display: block;
    margin-bottom: 16px;
}

.comparison-item.human .comparison-label {
    color: #d4a574;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    font-size: 13px;
    color: #737373;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.comparison-item.ai .comparison-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #666;
    font-size: 11px;
}

.comparison-item.human .comparison-list li {
    color: #c9a882;
}

.comparison-item.human .comparison-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.comparison-divider {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #525252;
}

.real-human-desc {
    font-size: 1.1rem;
    color: #a3a3a3;
    line-height: 1.8;
}

.real-human-desc strong {
    color: #d4a574;
}

/* Cost Saving Section */
.cost-saving-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 90, 43, 0.08) 50%, transparent 100%);
}

.cost-saving-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cost-saving-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 28px;
}

.cost-saving-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #fff;
}

.cost-saving-title .highlight {
    color: #d4a574;
}

.cost-saving-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cost-card {
    flex: 1;
    max-width: 240px;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
}

.cost-card.wrong {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cost-card.right {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cost-card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.cost-card-label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.cost-card.wrong .cost-card-label {
    color: #f87171;
}

.cost-card.right .cost-card-label {
    color: #4ade80;
}

.cost-card-list {
    list-style: none;
    text-align: left;
}

.cost-card-list li {
    font-size: 13px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.cost-card.wrong .cost-card-list li {
    color: #fca5a5;
}

.cost-card.wrong .cost-card-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #f87171;
    font-size: 11px;
}

.cost-card.right .cost-card-list li {
    color: #86efac;
}

.cost-card.right .cost-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.cost-saving-desc {
    font-size: 1.1rem;
    color: #a3a3a3;
    line-height: 1.8;
}

.cost-saving-desc strong {
    color: #d4a574;
}

/* No More Wasting Section */
.no-waste-section {
    padding: 80px 24px;
    background: rgba(0, 0, 0, 0.3);
}

.no-waste-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.no-waste-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.no-waste-subtitle {
    font-size: 1rem;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 32px;
}

.waste-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.waste-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 15px;
    color: #737373;
    text-align: left;
}

.waste-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.no-waste-cta {
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.15) 0%, rgba(101, 67, 33, 0.1) 100%);
    border: 1px solid rgba(139, 90, 43, 0.3);
    border-radius: 20px;
}

.no-waste-highlight {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 12px;
}

.no-waste-highlight strong {
    color: #d4a574;
}

.no-waste-sub {
    font-size: 14px;
    color: #a3a3a3;
}

/* Emotional Quote Section */
.quote-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, rgba(139, 90, 43, 0.05) 0%, transparent 100%);
}

.quote-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(212, 165, 116, 0.15);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-text strong {
    color: #d4a574;
}

.quote-sub {
    font-size: 1rem;
    color: #737373;
    position: relative;
    z-index: 1;
}

/* Examples Section */
.examples-section {
    padding: 40px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 24px;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.example-tag {
    padding: 10px 18px;
    background: rgba(139, 90, 43, 0.15);
    border: 1px solid rgba(139, 90, 43, 0.3);
    border-radius: 100px;
    font-size: 14px;
    color: #c9a882;
    transition: all 0.2s ease;
    cursor: default;
}

.example-tag:hover {
    background: rgba(139, 90, 43, 0.25);
    border-color: rgba(139, 90, 43, 0.5);
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 60px 24px 80px;
    max-width: 560px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 1rem;
    color: #a3a3a3;
    line-height: 1.6;
}

/* Form Styles */
.coffee-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #e5e5e5;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    padding: 16px;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

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

.form-input:focus,
.form-textarea:focus {
    border-color: #d4a574;
    background: rgba(139, 90, 43, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-hint {
    font-size: 13px;
    color: #737373;
    margin-top: 4px;
}

/* Guide Box */
.guide-box {
    background: rgba(139, 90, 43, 0.1);
    border: 1px solid rgba(139, 90, 43, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
}

.guide-title {
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 12px;
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-list li {
    font-size: 13px;
    color: #a3a3a3;
    padding-left: 16px;
    position: relative;
}

.guide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5a2b;
}

.guide-list li strong {
    color: #c9a882;
    font-weight: 500;
}

/* Privacy Checkbox */
.privacy-checkbox-wrapper {
    margin-top: 16px;
    margin-bottom: 24px;
}

.privacy-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.privacy-checkbox {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '✓';
    font-size: 14px;
    color: #1a1206;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.privacy-checkbox:checked + .checkbox-custom {
    background: linear-gradient(135deg, #d4a574 0%, #b8804a 100%);
    border-color: #d4a574;
}

.privacy-checkbox:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    font-size: 14px;
    color: #a3a3a3;
}

.privacy-link {
    color: #d4a574;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-link:hover {
    color: #e0b68a;
}

/* Submit Button */
.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #d4a574 0%, #b8804a 100%);
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    color: #1a1206;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #e0b68a 0%, #c89058 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

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

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

.button-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.submit-button:hover:not(:disabled) .button-icon {
    transform: translateX(4px);
}

.form-notice {
    text-align: center;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-top: 8px;
}

/* Message Toast */
.message-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.message-toast.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
    color: #fff;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.message-toast.error {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.message-toast.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Confirm Modal */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.confirm-modal.hidden {
    display: none;
}

.confirm-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.confirm-content {
    position: relative;
    background: linear-gradient(180deg, #1f1a14 0%, #151210 100%);
    border: 1px solid rgba(139, 90, 43, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 360px;
    width: 100%;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.confirm-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.confirm-message {
    font-size: 15px;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 32px;
}

.confirm-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4a574 0%, #b8804a 100%);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: #1a1206;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-button:hover {
    background: linear-gradient(135deg, #e0b68a 0%, #c89058 100%);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #525252;
    font-size: 13px;
}

/* Spinner Animation */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26, 18, 6, 0.3);
    border-top-color: #1a1206;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .hero-section {
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .benefits-section {
        padding: 40px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .benefit-title {
        font-size: 14px;
    }
    
    .benefit-desc {
        font-size: 12px;
    }
    
    .real-human-section {
        padding: 60px 20px;
    }
    
    .real-human-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .real-human-title {
        font-size: 1.5rem;
    }
    
    .comparison-box {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .comparison-item {
        max-width: 280px;
        width: 100%;
    }
    
    .comparison-divider {
        padding: 8px 0;
    }
    
    .real-human-desc {
        font-size: 1rem;
    }
    
    .cost-saving-section {
        padding: 60px 20px;
    }
    
    .cost-saving-title {
        font-size: 1.5rem;
    }
    
    .cost-saving-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .cost-card {
        max-width: 100%;
        width: 100%;
    }
    
    .cost-saving-desc {
        font-size: 1rem;
    }
    
    .no-waste-section {
        padding: 60px 20px;
    }
    
    .no-waste-title {
        font-size: 1.4rem;
    }
    
    .waste-item {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .no-waste-cta {
        padding: 24px 20px;
    }
    
    .no-waste-highlight {
        font-size: 1.1rem;
    }
    
    .quote-section {
        padding: 60px 20px;
    }
    
    .quote-mark {
        font-size: 80px;
        top: -40px;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .quote-sub {
        font-size: 0.9rem;
    }
    
    .examples-section {
        padding: 30px 20px 40px;
    }
    
    .example-tags {
        gap: 8px;
    }
    
    .example-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .form-section {
        padding: 40px 20px 60px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    .submit-button {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .guide-box {
        padding: 14px;
    }
    
    .guide-title {
        font-size: 13px;
    }
    
    .guide-list li {
        font-size: 12px;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 120px 24px 80px;
    }
}

/* Hidden Utility */
.hidden {
    display: none !important;
}

/* Animation for form elements */
.form-group {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

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