/* ========================================
   Global Styles & Variables
   ======================================== */

:root {
    /* Color Palette - RocStarr Connect Branding */
    --primary-color: #0071EB;
    --primary-dark: #005bb5;
    --primary-light: #338df0;
    --secondary-color: #0071EB;
    --accent-color: #0071EB;
    --auburn-red: #0071EB;
    --auburn-red-dark: #005bb5;
    --auburn-red-light: #338df0;

    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;

    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #0f1621;

    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ========================================
   Global Link Styles - NO PURPLE EVER!
   ======================================== */

a {
    text-decoration: none;
    color: inherit;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* Prevent purple visited links globally */
a:visited {
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0066CC 0%, #0071EB 50%, #00D4FF 100%);

    background-color: #005bb5;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-base);
    padding: 0;
    min-height: 100px;
}



/* Tech pattern overlay */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 85% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    position: relative;
    z-index: 2;
    min-height: 100px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}



/* CSS Brand (replaces image banner) */
.navbar-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-right: auto;
}

.brand-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.brand-icon {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.brand-icon i {
    font-size: 18px;
    color: #fff;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 11px;
    }
}

/* Header banner - full RocStarr Connect branding with tech background */
/* Legacy header logo support */
.logo-img.header-logo {
    height: 70px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 113, 235, 0.3));
    border-radius: 8px;
}

.logo-img-footer {
    height: 140px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-menu .cta-button,
.nav-menu .nav-cta {
    background: white !important;
    color: #0071EB !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-shadow: none !important;
    text-decoration: none !important;
}

.nav-menu .cta-button:visited,
.nav-menu .nav-cta:visited,
.nav-menu .cta-button:link,
.nav-menu .nav-cta:link,
.nav-menu .cta-button:active,
.nav-menu .nav-cta:active {
    color: #0071EB !important;
    background: white !important;
    text-decoration: none !important;
}

.nav-menu .cta-button:hover,
.nav-menu .nav-cta:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #0071EB !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:visited,
.nav-link:link,
.nav-link:active {
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00E5FF;
    box-shadow: 0 0 8px #00E5FF;
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 2001;
    /* ensure above mobile menu */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    transition: var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Buttons
   ======================================== */

.cta-button {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
}

.cta-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.25);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover,
.cta-button.primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.35), 0 0 28px rgba(0, 128, 255, 0.8), var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus-visible {
    background: var(--primary-color);
    color: white;
}

.cta-button.large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Primary CTA button styling */
.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    text-decoration: none !important;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover,
.cta-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.35), 0 0 28px rgba(0, 128, 255, 0.8), var(--shadow-lg);
    color: white !important;
    text-decoration: none !important;
}

.cta-primary:visited,
.cta-primary:link,
.cta-primary:active {
    color: white !important;
    text-decoration: none !important;
}

/* Global glow utility classes for sitewide CTAs */
.cta-glow-auburn:hover,
.cta-glow-auburn:focus-visible {
    outline: none;
    transform: translateY(-3px);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.35), 0 0 28px rgba(160, 82, 45, 0.85), 0 14px 40px rgba(160, 82, 45, 0.45);
}

.cta-glow-blue:hover,
.cta-glow-blue:focus-visible {
    outline: none;
    transform: translateY(-3px);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.35), 0 0 28px rgba(0, 128, 255, 0.85), 0 14px 40px rgba(0, 128, 255, 0.45);
}

/* Prevent background scroll when mobile menu open */
body.no-scroll {
    overflow: hidden;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0071EB 0%, #005bb5 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 28px;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.floating-card.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   Section Headers
   ======================================== */

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Diamond Audience Accelerator Section
   ======================================== */

.diamond-audience {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a2332 0%, #0f1621 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.diamond-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.diamond-audience .container {
    position: relative;
    z-index: 1;
}

.diamond-audience .section-title,
.diamond-audience .section-subtitle {
    color: white;
}

.diamond-audience .section-title i {
    color: #fbbf24;
    margin-right: 10px;
}

.data-points-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.data-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.data-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.data-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0071EB;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-category h3 i {
    font-size: 24px;
}

.data-list {
    list-style: none;
}

.data-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.data-list i {
    color: #0071EB;
    font-size: 14px;
    flex-shrink: 0;
}

.diamond-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.diamond-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0071EB;
}

.diamond-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
    padding: var(--section-padding);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071EB 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 36px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition-base);
}

.pricing-card.featured {
    border-color: #0080FF;
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pricing-icon i {
    font-size: 36px;
    color: white;
}

.pricing-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-amount .currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: super;
}

.pricing-amount .price {
    font-size: 64px;
    font-weight: 800;
    color: #0071EB;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-highlight {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1), rgba(0, 212, 255, 0.1));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 128, 255, 0.2);
}

.pricing-highlight i {
    color: #0071EB;
    margin-right: 10px;
    font-size: 20px;
}

.pricing-highlight strong {
    color: #0071EB;
    font-size: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.pricing-features i {
    color: #0071EB;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* HIGH-INTENT bolt icon special styling */
.pricing-features i.fa-bolt {
    color: #f59e0b;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-requirement {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 128, 255, 0.1));
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-requirement i {
    color: #0071EB;
}

.pricing-requirement a {
    color: #0071EB;
    text-decoration: none;
    border-bottom: 2px solid #0080FF;
}

.pricing-requirement a:hover {
    color: #0071EB;
    border-color: #00D4FF;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-guarantee i {
    color: #0071EB;
    margin-right: 6px;
}

.daa-requirement-notice {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(0, 128, 255, 0.2);
}

.notice-content {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 36px;
    color: white;
}

.notice-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.notice-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.notice-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0071EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.notice-cta:hover {
    color: #0071EB;
    gap: 12px;
}

.notice-cta i {
    transition: transform 0.3s ease;
}

.notice-cta:hover i {
    transform: translateX(4px);
}

.pricing-details {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.pricing-details h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

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

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

.detail-number {
    font-size: 48px;
    font-weight: 800;
    color: #0071EB;
    margin-bottom: 8px;
}

.detail-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
    line-height: 1.4;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #005bb5 0%, #0071EB 100%);
    color: white;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.how-it-works .section-title .gradient-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.step-connector {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    top: -60px;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--section-padding);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: #0071EB;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition-base);
    color: #FFFFFF;
    background-color: #1a2332;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0080FF;
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 64px;
    color: #0071EB;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-dark);
    background-image: none !important;
    border-top: none !important;
    box-shadow: none !important;
    color: white;
    padding: 40px 0 20px;
    overflow: hidden !important;
    position: relative !important;
    z-index: 10 !important;
}

.footer::before,
.footer::after,
.footer>*::before,
.footer>*::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: none !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: #0071EB;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: none;
}

/* CRITICAL FIX: Hide all SVG decorative elements that create diagonal lines */
.footer svg,
.footer path,
footer svg,
footer path {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {

    /* Logo sizing for tablet */
    .logo-img.header-logo {
        height: 60px;
        max-width: 380px;
    }

    .data-points-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 100px;
        /* match navbar height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: #ffffff;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        color: #1a2332;
        text-shadow: none;
    }

    .nav-menu li a:hover {
        background: #f8f9fa;
        color: #0071EB;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    /* Diamond Audience */
    .data-points-showcase {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* How It Works */
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-form {
        padding: 24px;
    }

    .logo-img {
        height: 55px;
    }

    .logo-img.header-logo {
        height: 50px;
        max-width: 280px;
    }

    .logo-img-footer {
        height: 100px;
        max-width: 280px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-amount .price {
        font-size: 48px;
    }

    .pricing-title {
        font-size: 24px;
    }
}

/* Desktop-only secondary CTA */
.nav-cta-secondary {
    margin-left: -10px;
}

@media (max-width: 768px) {
    .nav-cta-secondary {
        display: none !important;
    }
}


/* Calculator: make checkout CTA unmistakable */
.order-cta-prominent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-decoration: none !important;
}

.order-cta-prominent:hover,
.order-cta-prominent:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35), 0 14px 40px rgba(16, 185, 129, 0.55);
    outline: none;
}


/* Mobile Sticky Bar (profit-focused) */
.mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    padding: 10px 12px;
    background: rgba(15, 22, 33, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-sticky-bar .msb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

.mobile-sticky-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.msb-buy {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
}

.msb-calc {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff !important;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: none;
    }

    body {
        padding-bottom: 84px;
    }
}


/* Calculator reassurance line (above checkout CTA) */
.checkout-reassurance {
    margin: 14px 0 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .checkout-reassurance {
        font-size: 12px;
        margin: 12px 0 8px;
    }
}


/* AI upsell note (keeps buyers on the main checkout path) */
.ai-upsell-note {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.4;
}


/* Step 2 prompt (keeps lead package completion high) */
.ai-step2-prompt {
    margin: 8px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}


/* Pulse animation after AI upsell (keeps package completion high) */
.pulse-checkout {
    animation: checkoutPulse 1.1s ease-in-out infinite;
}

@keyframes checkoutPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35), 0 18px 45px rgba(16, 185, 129, 0.55);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
    }
}


@media (max-width: 768px) {
    .mobile-sticky-bar.show {
        display: block;
    }
}


.next-steps-line {
    display: inline-block;
    margin-top: 6px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
}

.lawfirm-microline {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
    .lawfirm-microline {
        font-size: 13px;
    }
}


/* Law Firms landing page profit blocks */
.lawfirm-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
}

.lawfirm-next-steps {
    margin-top: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.lawfirm-who {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-weight: 700;
}

.social-proof-strip {
    background: rgba(15, 22, 33, 0.96);
    color: #fff;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 10px 12px;
    border-radius: 12px;
}

.proof-item i {
    color: #00D4FF;
}

.proof-sub {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.booking-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 14px;
}

.bp-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    font-size: 12px;
}

.booking-title {
    margin: 10px 0 6px;
    color: #00D4FF;
    font-size: 26px;
    text-align: center;
}

.booking-subtitle {
    margin: 0 0 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

@media (max-width: 768px) {
    .proof-items {
        grid-template-columns: 1fr 1fr;
    }

    .booking-proof {
        grid-template-columns: 1fr 1fr;
    }

    .booking-title {
        font-size: 22px;
    }
}



/* =========================
   Law Firms Meta-Proof Blocks
   ========================= */
.lawfirm-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 10px 0
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(10px)
}

.lawfirm-objection {
    margin: 12px 0 10px 0;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .22);
    color: #eafff6;
    font-weight: 700
}

.lawfirm-qualifier {
    margin: 16px 0 6px 0
}

.qualifier-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 16px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .22)
}

.qualifier-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px
}

.qualifier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

.qualifier-q {
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .16);
    border: 1px solid rgba(255, 255, 255, .10)
}

.q-label {
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.q-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.q-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 900;
    background: linear-gradient(135deg, #0071EB, #00E5FF);
    color: #00121f;
    min-height: 44px
}

.q-btn.q-secondary {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22)
}

.q-btn:focus {
    outline: 3px solid rgba(0, 229, 255, .35);
    outline-offset: 2px
}

.qualifier-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35
}

@media (max-width:768px) {
    .trust-pill {
        font-size: 13px;
        padding: 9px 11px
    }

    .lawfirm-objection {
        font-size: 13px
    }
}