/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
    display: flex;
    align-items: center;
    line-height: 1;
    min-height: 40px;
}

.logo img {
    max-height: 30px !important;
    height: auto;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide text when image is present */
.logo:has(img) {
    font-size: 0;
    color: transparent;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #ff0000;
}

.nav-cta {
    display: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.2s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* When CTA is placed inside the mobile dropdown */
.nav-menu .nav-cta {
    display: block;
    width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: #ff0000;
    color: #fff;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-ghost:hover {
    background: #fff;
    color: #0a0a0a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.label {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Offer Strip */
.offer-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-item {
    text-align: center;
}

.offer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.offer-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0000;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.trust-line {
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Countdown */
.countdown-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 100, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 0, 0.2);
}

.countdown-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.countdown-message {
    text-align: center;
    color: #ff0000;
    font-weight: 600;
    margin-top: 1rem;
}

/* ========================================
   WHY OFFER SECTION
   ======================================== */

.why-offer {
    background: #f5f5f5;
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.why-content h2 {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.why-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.why-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #333;
}

.why-list strong {
    color: #ff0000;
}

.urgency-text {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
    font-weight: 600;
}

.why-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 1rem;
    color: #666;
}

/* ========================================
   PRICING CARDS
   ======================================== */

.packages {
    background: #1a1a1a;
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: #ff0000;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a1a1a 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-pricing .old-price {
    display: block;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.card-pricing .new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
}

.features-list {
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: #ccc;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: 700;
}

.bundle-note {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.bundle-note p {
    font-size: 1.2rem;
    color: #fff;
}

.bundle-note a {
    color: #ff0000;
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio {
    background: #2a2a2a;
    padding: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3a3a3a;
    color: #999;
    font-weight: 600;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.portfolio-note {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* ========================================
   PROCESS
   ======================================== */

.process {
    background: #f5f5f5;
    padding: 5rem 0;
}

.process .section-title {
    color: #0a0a0a;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ff0000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #0a0a0a;
    margin-bottom: 1rem;
    text-align: center;
}

.process-step p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.process-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 3rem;
    font-size: 1.1rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: #fff;
    padding: 5rem 0;
}

.testimonials .section-title {
    color: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff0000;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
}

.author-business {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    background: #1a1a1a;
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff0000;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    content: '−';
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.offer-list {
    margin: 2rem 0;
}

.offer-list li {
    padding: 0.75rem 0;
    color: #fff;
    font-size: 1.1rem;
}

.offer-list strong {
    color: #ff0000;
}

.countdown-section-small {
    margin-top: 2rem;
}

.countdown-section-small h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.countdown-small .countdown-value {
    font-size: 2rem;
}

.contact-form-wrapper {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-success {
    background: #006400;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
}

.form-error {
    display: block;
    color: #ff0000;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.privacy-note {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: inline-block;
    }
    
    .burger-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .offer-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE ENHANCEMENTS
   ======================================== */
@media (max-width: 767px) {
    .hero-ctas .btn {
        width: 100%;
    }
}
