/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: #0078ff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0078ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0078ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Order Header */
.order-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%230078ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0078ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.header-icon i {
    font-size: 3rem;
    color: white;
    z-index: 1;
}

.order-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0078ff;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Header GIF Animation */
.header-gif {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
}

.hack-animation {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 120, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 120, 255, 0.2);
}

.hack-animation:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 120, 255, 0.4);
    border-color: rgba(0, 120, 255, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078ff, #00d4ff);
}

.pricing-card.basic::before {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.pricing-card.professional::before {
    background: linear-gradient(90deg, #0078ff, #0056cc);
}

.pricing-card.enterprise::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #0078ff;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
    font-family: 'Orbitron', monospace;
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.plan-features i {
    color: #4caf50;
    font-size: 1.1rem;
}

.select-plan-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #0078ff, #0056cc);
    color: white;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.3);
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: #fff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.order-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #0078ff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078ff;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-option:hover {
    border-color: #0078ff;
    background: rgba(0, 120, 255, 0.05);
}

.feature-option input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.feature-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

.feature-option i {
    color: #0078ff;
    font-size: 1.1rem;
}

/* Delivery Notice */
.delivery-notice {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 120, 255, 0.3);
}

.delivery-notice h3 {
    color: #0078ff;
    margin-bottom: 25px;
}

.notice-content {
    display: grid;
    gap: 20px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 120, 255, 0.2);
}

.notice-item i {
    color: #0078ff;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.notice-text {
    line-height: 1.6;
}

.notice-text strong {
    color: #0078ff;
    display: block;
    margin-bottom: 5px;
}

/* Legal Disclaimer */
.legal-disclaimer-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.legal-disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff4444" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.legal-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    color: #fff;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 68, 68, 0.3);
}

.disclaimer-header i {
    color: #ff4444;
    font-size: 2rem;
}

.disclaimer-header h2 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin: 0;
}

.disclaimer-content {
    position: relative;
    z-index: 2;
}

.disclaimer-intro {
    font-size: 1.1rem;
    color: #ffcccc;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    padding: 15px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.disclaimer-section h3 {
    color: #ff4444;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-list {
    list-style: none;
    margin-bottom: 30px;
}

.disclaimer-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.disclaimer-list li:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.4);
}

.disclaimer-list li i {
    color: #ff4444;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.disclaimer-list li:first-child i {
    color: #4caf50;
}

.disclaimer-list li:nth-child(2) i {
    color: #ff4444;
}

.disclaimer-list li:nth-child(3) i {
    color: #ff9800;
}

.disclaimer-list li:nth-child(4) i {
    color: #2196f3;
}

.disclaimer-list li:nth-child(5) i {
    color: #9c27b0;
}

.warning-section {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.4);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.warning-section h3 {
    color: #ff4444;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.warning-section h3 i {
    font-size: 1.6rem;
}

.warning-text {
    color: #ffcccc;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Legal Agreement Modal */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 68, 68, 0.3);
}

.modal-header i {
    color: #ff4444;
    font-size: 2rem;
}

.modal-header h2 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin: 0;
}

.modal-body {
    margin-bottom: 30px;
}

.agreement-content {
    position: relative;
    z-index: 2;
}

.agreement-intro {
    font-size: 1.1rem;
    color: #ffcccc;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    padding: 15px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.agreement-section h3 {
    color: #ff4444;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.agreement-list {
    list-style: none;
    margin-bottom: 30px;
}

.agreement-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.agreement-list li:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.4);
}

.agreement-list li i {
    color: #ff4444;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.agreement-list li:first-child i {
    color: #4caf50;
}

.agreement-list li:nth-child(2) i {
    color: #ff4444;
}

.agreement-list li:nth-child(3) i {
    color: #ff9800;
}

.agreement-list li:nth-child(4) i {
    color: #2196f3;
}

.agreement-list li:nth-child(5) i {
    color: #9c27b0;
}

.warning-section-modal {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.4);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.warning-section-modal h3 {
    color: #ff4444;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.warning-section-modal h3 i {
    font-size: 1.6rem;
}

.warning-text-modal {
    color: #ffcccc;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.agree-btn,
.disagree-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.agree-btn {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
}

.agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.disagree-btn {
    background: linear-gradient(45deg, #ff4444, #cc3333);
    color: white;
}

.disagree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

/* Order Summary */
.order-summary {
    background: #1a1a2e;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.order-summary h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0078ff;
}

.summary-content {
    display: grid;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0078ff;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.submit-btn,
.reset-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn {
    background: linear-gradient(45deg, #0078ff, #0056cc);
    color: white;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.3);
}

.reset-btn {
    background: transparent;
    color: #0078ff;
    border: 2px solid #0078ff;
}

.reset-btn:hover {
    background: #0078ff;
    color: white;
}

/* Contact Information */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0078ff, #0056cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-link {
    color: #0078ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056cc;
}

.response-time {
    color: #4caf50;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Back to Portfolio */
.back-to-portfolio {
    padding: 40px 0;
    background: #1a1a2e;
    text-align: center;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #0078ff, #0056cc);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', monospace;
    color: #0078ff;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 120, 255, 0.1);
    border: 1px solid rgba(0, 120, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078ff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0078ff;
    color: #fff;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0078ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .order-header h1 {
        font-size: 2.5rem;
    }

    .header-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-gif {
        margin: 20px 0;
        padding: 15px;
    }
    
    .hack-animation {
        max-width: 250px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 20px;
    }
    
    .delivery-notice {
        padding: 20px;
    }
    
    .notice-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .notice-item i {
        margin-top: 0;
    }
    
    .legal-disclaimer {
        padding: 25px;
    }
    
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .disclaimer-header h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .disclaimer-list li i {
        margin-top: 0;
    }
    
    .warning-section h3 {
        flex-direction: column;
        gap: 5px;
    }
    
    .modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .agreement-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .agreement-list li i {
        margin-top: 0;
    }
    
    .warning-section-modal h3 {
        flex-direction: column;
        gap: 5px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .agree-btn,
    .disagree-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .order-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 2rem;
    }
} 