/* A-Z Drone Service - Ad Landing Page Styles */

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

:root {
    --black: #000000;
    --gray: #f1f1f1;
    --white: #ffffff;
    --text: #000000;
    --border: #000000;
    --urgent: #ff0000;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

/* Jersey 25 Font for Bold/Large Text */
h1, h2, h3, .stat-number, .stat-item strong, .price-amount, .step-number, .logo, .plan-name, .footer-logo {
    font-family: 'Jersey 25', Arial, Helvetica, sans-serif;
}

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

/* Minimal Header */
.ad-header {
    background: var(--black);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.phone-link:hover {
    background: var(--white);
    color: var(--black);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Nav Close Button */
.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

/* Alert Bar */
.alert-bar {
    background: var(--urgent);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    background: var(--gray);
    padding: 80px 0;
    text-align: center;
}

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

.badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-cta {
    margin-top: 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-buy,
.btn-urgent {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid var(--black);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary,
.btn-buy {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover,
.btn-buy:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.btn-buy-featured {
    background: var(--urgent);
    border-color: var(--urgent);
    color: var(--white);
}

.btn-buy-featured:hover {
    background: #cc0000;
    border-color: #cc0000;
}

.btn-urgent {
    background: var(--urgent);
    color: var(--white);
    border-color: var(--urgent);
    font-size: 1.3rem;
    padding: 25px 60px;
}

.btn-urgent:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.05);
}

/* Why FPV Section - Apple Style */
.why-fpv-section {
    padding: 120px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-lead {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 100px;
    font-weight: 400;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 120px auto;
    padding: 0 40px;
}

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

.feature-row-reverse .feature-visual {
    order: 2;
}

.feature-row-reverse .feature-content {
    order: 1;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.animated-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 32px;
    font-weight: 400;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    font-weight: 400;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Problem/Solution Section (Legacy) */
.problem-solution {
    padding: 80px 0;
    background: var(--white);
}

.problem-solution h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.problem-card {
    background: var(--gray);
    padding: 40px;
    border: 3px solid var(--black);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--urgent);
}

.problem-text {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--black);
}

.problem-desc {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.problem-text ul {
    list-style: none;
    padding-left: 0;
}

.problem-text li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-weight: 600;
}

.problem-text li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--urgent);
    font-weight: 900;
}

.solution-label {
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #008800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-text p:last-child {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
}

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

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--gray);
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 600;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.step-arrow {
    font-size: 3rem;
    font-weight: 900;
}

.how-cta {
    text-align: center;
    margin-top: 40px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--white);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
}

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

.testimonial {
    background: var(--gray);
    padding: 30px;
    border-left: 5px solid var(--black);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.author {
    font-weight: 900;
    font-size: 0.95rem;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--black);
    color: var(--white);
    padding: 40px;
}

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

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--gray);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.price-card {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--urgent);
    border-width: 5px;
    transform: scale(1.05);
}

.popular-badge {
    background: var(--urgent);
    color: var(--white);
    padding: 10px 15px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.plan-best-for {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #666;
}

.price {
    margin-bottom: 15px;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.savings {
    background: #008800;
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-buy {
    width: 100%;
    margin-bottom: 15px;
}

.plan-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.pricing-addons {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--black);
}

.pricing-addons h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.addon {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: var(--urgent);
    color: var(--white);
}

.urgency-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.urgency-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

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

.urgency-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-cta {
    margin-top: 40px;
}

.urgency-note {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--gray);
    padding: 30px;
    border-left: 5px solid var(--black);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.final-buttons .btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.final-buttons .btn-primary:hover {
    background: var(--gray);
}

.final-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.final-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee {
    font-size: 1rem;
    font-weight: 700;
}

/* Footer */
.ad-footer {
    background: var(--gray);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--black);
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-contact {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

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

.footer-legal {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .ad-header .container {
        position: relative;
    }

    .header-cta {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        display: flex;
        align-items: stretch;
    }

    .header-cta.active {
        left: 0;
    }

    .nav-close {
        display: block;
    }

    .header-cta a {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        text-align: left;
    }

    .header-cta .phone-link {
        margin-top: 20px;
        text-align: center;
        display: block;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-row-reverse .feature-visual,
    .feature-row-reverse .feature-content {
        order: initial;
    }

    .feature-visual {
        padding: 40px;
    }

    .animated-icon {
        max-width: 300px;
    }

    .pricing-grid,
    .benefits-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

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

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

    .section-lead {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .feature-row {
        padding: 0 20px;
        margin-bottom: 80px;
    }

    .feature-content h3 {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1.1rem;
    }

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

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

    .stat-number {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .guarantees {
        flex-direction: column;
        gap: 15px;
    }

    .urgency-details {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-large {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .btn-urgent {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

    .problem-card {
        padding: 25px;
    }
}
