/* ==========================================================================
   Order Page Specific Styles
   ========================================================================== */

/* Order Hero */
.order-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at top, rgba(255, 102, 0, 0.05) 0%, var(--primary-bg) 40%);
    overflow: hidden;
}

.security-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--primary-orange) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-orange) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.order-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.order-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-word {
    display: inline-block;
    color: var(--text-primary);
}

.title-word:nth-child(2) {
    margin-left: 1rem;
}

.title-word.accent {
    color: var(--primary-orange);
    text-shadow: 0 0 40px var(--orange-glow);
}

.order-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* Product Showcase */
.product-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-visual {
    position: relative;
}

.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255, 102, 0, 0.3));
    animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.feature-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.feature-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: featureReveal 0.8s ease-out forwards;
}

.feature-point[data-feature="secure"] {
    top: 20%;
    left: -50px;
    animation-delay: 1s;
}

.feature-point[data-feature="airgap"] {
    top: 50%;
    right: -50px;
    animation-delay: 1.2s;
}

.feature-point[data-feature="open"] {
    bottom: 20%;
    left: -50px;
    animation-delay: 1.4s;
}

@keyframes featureReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.point-marker {
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange-glow);
    animation: pulse 2s ease-in-out infinite;
}

.point-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-details {
    animation: slideInFromRight 1s ease-out;
}

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

.product-name {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.spec-list {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.spec-item:hover {
    color: var(--text-primary);
    padding-left: 1rem;
}

.spec-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.price-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-orange);
    border-radius: 16px;
    padding: 2rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 0 20px var(--orange-glow);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    position: relative;
    padding: 2.5rem;
    text-align: center;
    animation: stepReveal 0.8s ease-out backwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    opacity: 0.3;
}

.step-card:last-child .step-connector {
    display: none;
}

/* Order Form */
.order-form-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), var(--glass-bg));
}

.form-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(2, 8, 23, 0.8);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.form-input::placeholder {
    color: var(--text-dim);
    opacity: 0.5;
}

.form-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.form-disclaimer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 8px;
}

.form-disclaimer p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.disclaimer-icon {
    font-size: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 102, 0, 0.1));
    border: 2px solid var(--primary-orange);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.social-link.telegram-link:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.05));
    border-color: #0088cc;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.social-link.telegram-link:hover .social-icon {
    color: #0088cc;
}

.social-link.x-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.social-link.x-link:hover .social-icon {
    color: #ffffff;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.social-link span {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .social-links {
        max-width: 100%;
    }

    .social-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.guarantee-content {
    padding: 3rem;
}

.guarantee-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--orange-glow));
}

.guarantee-item h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Order FAQ */
.order-faq {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    padding: 2rem;
}

.faq-card h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.faq-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.1) 0%, var(--primary-bg) 50%);
}

.countdown-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    padding: 2rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-orange);
    border-radius: 20px;
}

.countdown-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 0 30px var(--orange-glow);
    animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 968px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .order-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 50vh;
    }

    .order-title {
        font-size: 2.5rem;
    }

    .order-tagline {
        font-size: 1.1rem;
    }

    .product-image {
        width: 200px;
    }

    .spec-list {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .order-title {
        font-size: 2rem;
    }

    .order-tagline {
        font-size: 1rem;
    }

    .product-name {
        font-size: 1.6rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .product-image {
        width: 160px;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 2rem 1.2rem;
    }

    .form-title {
        font-size: 1.6rem;
    }
}