/* CSS Reset & Variables */
:root {
    --primary-color: #0056b3;
    /* Deep Professional Blue */
    --accent-color: #00c6ff;
    /* Cyan Gradient Start */
    --accent-color-2: #0072ff;
    /* Cyan Gradient End */
    --cta-color: #ff6b00;
    /* Vibrant Orange for Conversions */
    --cta-hover: #e65100;
    --dark-bg: #0a0e17;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #e0e0e0;
    --surface-dark: #151a28;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--cta-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.logo .highlight {
    color: var(--cta-color);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, #f0f4ff, #ffffff);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: #e6f0ff;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-mockup {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

.trust-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 500;
}

/* Pain Points */
.pain-points {
    padding: 6rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alert-text {
    color: #dc3545;
    position: relative;
    display: inline-block;
}

.alert-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(220, 53, 69, 0.2);
    z-index: -1;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pain-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.pain-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #ddd;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Method */
.method {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: white;
}

.method h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--surface-dark);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #ccc;
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: #f8f9fa;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.quote {
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Avatar Styling - V11 Fix */
.author .avatar-img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    display: block;
}

/* Fallback/Safety for broken contexts */
img.avatar-img {
    max-width: 60px;
}

/* FAQ */
.faq {
    padding: 6rem 0;
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--dark-bg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #555;
}

.arrow {
    transition: transform 0.3s;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.audit-form {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1rem;
}

.audit-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--cta-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--cta-hover);
}

/* Specialist Block Redesign */
.specialist-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.specialist-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.specialist-block h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: #f4f8ff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
}

.specialist-block p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

/* NFC Offer Section */
.nfc-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #121212, #000);
    color: white;
    overflow: hidden;
}

.nfc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-gold {
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.urgency-text {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-pulse {
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.nfc-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nfc-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.nfc-benefits {
    list-style: none;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.nfc-benefits li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nfc-benefits li:last-child {
    margin-bottom: 0;
}

.nfc-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nfc-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.2));
    transition: transform 0.5s;
    margin: 0 auto;
    display: block;
}

.nfc-image:hover {
    transform: scale(1.02);
}

.footer {
    background: #000;
    color: #666;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        /* Mobile menu hidden for now as per V2 */
    }

    .hero-container,
    .nfc-container,
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p,
    .nfc-content p {
        margin: 0 auto 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nfc-benefits li {
        justify-content: center;
    }

    .nfc-container {
        gap: 3rem;
    }

    .social-icons {
        justify-content: center;
    }
}