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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

strong {
    font-weight: 600;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #1E90FF, #4AA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00D100;
    color: white;
}

.btn-primary:hover {
    background-color: #00B800;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-cta {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    white-space: normal;
    line-height: 1.4;
}

.btn-full {
    width: 100%;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(to right, #DC2626, #EA580C);
    color: white;
    padding: 0.75rem 0;
    overflow: hidden;
}

.alert-content {
    text-align: center;
}

.alert-text {
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    cursor: pointer;
}

.logo {
    height: 3rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #666;
}

.phone-number {
    color: #333;
    font-size: 1rem;
}

.desktop-cta {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-nav.active {
    display: flex;
}

.nav-link-mobile {
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: #666;
}

.phone-number-mobile {
    color: #333;
    padding: 0.5rem 0;
}

/* Desktop Header Styles */
@media (min-width: 768px) {
    .logo {
        height: 4rem;
    }

    .desktop-nav {
        display: flex;
    }

    .desktop-cta {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .alert-text {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1829 50%, #000000 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url('https://smarttradingscans.com/public/figma/bfb25/f7a07643f3dbd531f6b34677bd65296db051bd12-DFF4S9km.png');
    background-size: cover;
    background-position: right center;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 48rem;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.text-lg {
    font-size: 1.125rem;
    color: #374151;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* What's Inside Section */
.whats-inside {
    padding-top: 4rem;
    padding-bottom: 1rem;
    background-color: white;
}

.video-placeholder {
    background-color: #f3f4f6;
    border: 2px solid #87CEEB;
    border-radius: 0.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Systems Section */
.systems-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background: linear-gradient(to bottom, white, #F0F8FF);
}

.systems-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.system-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-top: 4px solid #1E90FF;
}

.system-header {
    display: flex;
    gap: 1rem;
}

.system-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #1E90FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
}

.system-info {
    flex: 1;
}

.system-title-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.system-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.system-value {
    background-color: #4AA3FF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    align-self: flex-start;
}

.system-description {
    color: #374151;
    margin-bottom: 1.5rem;
}

.system-details {
    display: grid;
    gap: 2rem;
}

.system-column {
    flex: 1;
}

.column-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #374151;
}

.checkmark {
    color: #4AA3FF;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .system-title-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .system-details {
        grid-template-columns: 1fr 1fr;
    }
}

/* Value Breakdown Section */
.value-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-color: white;
}

.value-table-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.value-table {
    width: 100%;
    border-collapse: collapse;
}

.value-table thead tr {
    background-color: #1E90FF;
    color: white;
}

.value-table th,
.value-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.value-table th:last-child,
.value-table td:last-child {
    text-align: right;
}

.value-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.table-alt {
    background-color: #F0F8FF;
}

.table-total {
    background-color: #4AA3FF;
    color: white;
}

/* Pricing Highlight */
.pricing-highlight {
    background: linear-gradient(to right, #1E90FF, #4AA3FF);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.pricing-label {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-savings {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-percentage {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .pricing-amount {
        font-size: 3.75rem;
    }
}

/* Bonus Box */
.bonus-box {
    background-color: #F0F8FF;
    border: 2px solid #4AA3FF;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-title {
    font-size: 1.25rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: #374151;
}

/* Why Powerful Section */
.why-powerful {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, white, #F0F8FF);
}

.benefits-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkmark-large {
    color: #4AA3FF;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1E90FF 0%, #4AA3FF 50%, #87CEEB 100%);
}

.final-cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.urgency-banner {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.urgency-banner p {
    font-size: 1.125rem;
    margin: 0;
}

.cta-text {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-subtext {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 3rem;
}

.cta-box {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
}

.cta-box-label {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
}

.cta-box-price {
    font-size: 3rem;
    font-weight: 600;
    color: #1E90FF;
    margin-bottom: 1.5rem;
}

.cta-box-regular {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.strikethrough {
    text-decoration: line-through;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .btn-cta {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background-color: #f3f4f6;
    color: #374151;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #111827;
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #374151;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.contact-item a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #111827;
}

.icon {
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #111827;
}

.footer-disclaimer {
    color: #374151;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #d1d5db;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #374151;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #374151;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #111827;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Order Page Styles */
.order-main {
    padding: 4rem 0;
    background-color: white;
}

.order-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.order-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.thrivecart-container {
    margin-bottom: 2rem;
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.875rem;
    }

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

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

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

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