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

:root {
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --accent-bright: #ff6b6b;
    --accent-yellow: #ffd93d;
    --accent-blue: #4ecdc4;
    --border-white: rgba(255, 255, 255, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Ad Banner */
.ad-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-bright));
    color: var(--bg-dark);
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 20px 80px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.product-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 80vh;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.arrow-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.arrow-circle:hover {
    transform: scale(1.1);
}

.arrow-circle.small {
    width: 30px;
    height: 30px;
    display: inline-flex;
    margin-left: 10px;
}

/* Disclaimer Section (Bright Color) */
.disclaimer-section {
    padding: 60px 20px;
    background: var(--bg-darker);
}

.disclaimer-box {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-bright));
    color: var(--bg-dark);
    padding: 40px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(255, 217, 61, 0.3);
}

.disclaimer-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.more-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.more-link:hover {
    opacity: 0.7;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 20px;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 60px;
    gap: 40px;
}

.services-left {
    flex: 1;
}

.services-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
}

.services-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-box {
    border: 1px solid var(--border-white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-white);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Special Offer Section */
.special-offer {
    padding: 100px 20px;
    position: relative;
}

.offer-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin-bottom: 40px;
}

.offer-price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.offer-image-wrapper {
    flex: 0 0 auto;
    max-width: 400px;
    width: 100%;
}

.offer-product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.offer-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Order Form Section */
.order-section {
    padding: 100px 20px;
    background: var(--bg-darker);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-white);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.15);
}

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

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    opacity: 0.8;
}

.checkbox-group a {
    color: var(--text-white);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 18px;
}

/* Price Styles */
.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-bright));
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}

.price-highlight {
    text-align: center;
    padding: 20px;
    flex: 0 0 auto;
}

.price-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 10px;
}

.price-label {
    font-size: 16px;
    opacity: 0.8;
    display: block;
}

/* Form Success Message */
.form-success-message {
    max-width: 800px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(255, 217, 61, 0.2));
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

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

.success-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.success-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Legal Info Section */
.legal-info-section {
    padding: 80px 20px;
    background: var(--bg-darker);
}

.legal-info-box {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-white);
    border-radius: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.legal-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-white);
}

.legal-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.legal-item p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-white);
    opacity: 0.6;
}

/* 3D Geometric Elements */
.geometric-element {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 0;
    pointer-events: none;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 3%;
    transform: rotate(-20deg);
    animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 10%;
    transform: rotate(30deg);
    animation: float 7s ease-in-out infinite;
}

.element-4 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 8%;
    transform: rotate(-15deg);
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg));
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-header {
        flex-direction: column;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 15px;
        font-size: 12px;
    }

    .offer-price-section {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .disclaimer-box {
        padding: 25px;
    }

    .disclaimer-box h2 {
        font-size: 24px;
    }
}

/* Page Styles for separate pages */
.page-container {
    min-height: 100vh;
    padding: 170px 20px 80px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 30px;
    font-weight: 700;
}

.page-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

.page-content a {
    color: var(--text-white);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.page-content a:hover {
    opacity: 0.7;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 1;
}

