/* Page-specific styles for industries/foot-traffic.html */
/* ============================================
           FOOT TRAFFIC INTELLIGENCE - STANDALONE PAGE
           Color Palette: Data Indigo, Alert Orange, Tech Teal
           ============================================ */

        :root {
            /* Foot Traffic Palette */
            --ft-indigo: #2D3A8C;
            --ft-indigo-dark: #1E2761;
            --ft-orange: #E86A33;
            --ft-orange-light: #FF8C5A;
            --ft-teal: #0D9488;
            --ft-teal-light: #14B8A6;
            --ft-cream: #FAFAFA;
            --ft-light: #F3F4F6;
            --ft-deep: #111827;
            --ft-slate: #475569;

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', -apple-system, sans-serif;

            /* Spacing */
            --section-padding: 120px;
            --container-max: 1200px;
        }

        /* Reset & Base */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--ft-cream);
            color: var(--ft-deep);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 500;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        em {
            font-style: italic;
            color: var(--ft-orange);
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--ft-deep);
            opacity: 0.85;
        }

        /* Container */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            background: rgba(45, 58, 140, 0.98);
            padding: 15px 40px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
        }

        .nav-logo span {
            color: var(--ft-orange);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--ft-orange);
        }

        .nav-cta {
            background: var(--ft-orange) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 6px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background: var(--ft-orange-light) !important;
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .nav-mobile svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--ft-indigo-dark);
            padding: 20px;
            flex-direction: column;
            gap: 16px;
            z-index: 999;
        }

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

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--ft-indigo) 0%, var(--ft-indigo-dark) 100%);
            display: flex;
            align-items: center;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 70%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(232, 106, 51, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 106, 51, 0.2);
            border: 1px solid var(--ft-orange);
            color: var(--ft-orange-light);
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 30px;
            margin-bottom: 24px;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .hero h1 {
            color: white;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.35rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 40px;
            max-width: 650px;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-block;
            background: var(--ft-orange);
            color: white;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--ft-orange-light);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--ft-teal-light);
            color: var(--ft-teal-light);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--ft-orange);
            display: block;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
        }

        /* Value Prop Strip */
        .value-strip {
            background: var(--ft-teal);
            padding: 24px 0;
        }

        .value-strip .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            text-align: center;
        }

        .value-strip p {
            color: white;
            font-size: 1.15rem;
            font-weight: 500;
            margin: 0;
            opacity: 1;
        }

        .value-strip strong {
            color: white;
        }

        /* Section Base */
        .section {
            padding: var(--section-padding) 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-block;
            background: var(--ft-indigo);
            color: white;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .section-badge.orange {
            background: var(--ft-orange);
        }

        .section-badge.teal {
            background: var(--ft-teal);
        }

        /* Concept Section */
        .concept-section {
            background: var(--ft-light);
        }

        .concept-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .concept-text h2 {
            margin-bottom: 24px;
        }

        .concept-text p {
            margin-bottom: 20px;
        }

        .concept-text ul {
            list-style: none;
            margin-top: 24px;
        }

        .concept-text li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }

        .concept-text li svg {
            width: 24px;
            height: 24px;
            fill: var(--ft-teal);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .concept-visual {
            background: var(--ft-indigo);
            border-radius: 20px;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .concept-visual::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(232, 106, 51, 0.3) 0%, transparent 70%);
        }

        .concept-visual h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .data-flow {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .data-flow-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255,255,255,0.1);
            padding: 16px 20px;
            border-radius: 10px;
            border-left: 4px solid var(--ft-orange);
        }

        .data-flow-item .step {
            width: 32px;
            height: 32px;
            background: var(--ft-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .data-flow-item span {
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
        }

        /* Use Cases Section */
        .use-cases-section {
            background: var(--ft-cream);
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .use-case-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--ft-indigo) 0%, var(--ft-teal) 100%);
        }

        .use-case-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .use-case-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .use-case-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--ft-indigo) 0%, var(--ft-indigo-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .use-case-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--ft-orange);
        }

        .use-case-header h3 {
            color: var(--ft-deep);
        }

        .use-case-subtitle {
            color: var(--ft-teal);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .use-case-card > p {
            font-size: 1rem;
            margin-bottom: 24px;
        }

        .use-case-details {
            background: var(--ft-light);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }

        .detail-item {
            margin-bottom: 16px;
        }

        .detail-item:last-child {
            margin-bottom: 0;
        }

        .detail-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--ft-indigo);
            margin-bottom: 6px;
        }

        .detail-text {
            font-size: 0.95rem;
            color: var(--ft-deep);
            line-height: 1.6;
        }

        .use-case-benefit {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: linear-gradient(135deg, var(--ft-teal) 0%, var(--ft-teal-light) 100%);
            padding: 16px 20px;
            border-radius: 10px;
        }

        .use-case-benefit svg {
            width: 24px;
            height: 24px;
            fill: white;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .use-case-benefit p {
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0;
            opacity: 1;
        }

        /* Comparison Table Section */
        .table-section {
            background: var(--ft-indigo);
            color: white;
        }

        .table-section .section-header h2 {
            color: white;
        }

        .table-section .section-header p {
            color: rgba(255,255,255,0.8);
        }

        .comparison-wrapper {
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.2);
        }

        .comparison-table thead {
            background: var(--ft-orange);
        }

        .comparison-table th {
            padding: 20px 24px;
            text-align: left;
            font-family: var(--font-display);
            font-weight: 600;
            color: white;
            font-size: 1.05rem;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(0,0,0,0.08);
            transition: background 0.2s;
        }

        .comparison-table tbody tr:hover {
            background: var(--ft-light);
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table td {
            padding: 20px 24px;
            color: var(--ft-deep);
            font-size: 0.95rem;
        }

        .comparison-table td:first-child {
            font-weight: 600;
            font-family: var(--font-display);
            color: var(--ft-indigo);
        }

        /* Trends Section */
        .trends-section {
            background: var(--ft-light);
        }

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

        .trend-card {
            background: white;
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
        }

        .trend-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--ft-orange) 0%, var(--ft-teal) 100%);
        }

        .trend-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--ft-indigo) 0%, var(--ft-indigo-dark) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .trend-icon svg {
            width: 36px;
            height: 36px;
            fill: var(--ft-orange);
        }

        .trend-card h3 {
            color: var(--ft-deep);
            margin-bottom: 16px;
            font-size: 1.5rem;
        }

        .trend-card p {
            margin-bottom: 24px;
        }

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

        .trend-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: var(--ft-deep);
        }

        .trend-features li svg {
            width: 20px;
            height: 20px;
            fill: var(--ft-teal);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Results Section */
        .results-section {
            background: var(--ft-teal);
            color: white;
            text-align: center;
        }

        .results-section h2 {
            color: white;
            margin-bottom: 60px;
        }

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

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

        .result-number {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 600;
            color: white;
            line-height: 1;
            display: block;
        }

        .result-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            margin-top: 12px;
        }

        /* Quote Section */
        .quote-section {
            background: var(--ft-indigo-dark);
            text-align: center;
            padding: 100px 0;
        }

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

        .quote-icon {
            font-family: var(--font-display);
            font-size: 6rem;
            color: var(--ft-orange);
            opacity: 0.5;
            line-height: 0.8;
            margin-bottom: 20px;
        }

        .quote-text {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            font-style: italic;
            color: white;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .quote-attribution {
            color: var(--ft-teal-light);
            font-size: 1rem;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--ft-cream);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 24px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--ft-light);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--ft-deep);
            flex: 1;
            padding-right: 20px;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            background: var(--ft-indigo);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s, background 0.3s;
        }

        .faq-toggle svg {
            width: 16px;
            height: 16px;
            fill: white;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
            background: var(--ft-orange);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 30px 24px;
        }

        .faq-answer p {
            font-size: 1rem;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--ft-orange) 0%, var(--ft-orange-light) 100%);
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: rgba(255,255,255,0.95);
            font-size: 1.25rem;
            margin-bottom: 32px;
        }

        .btn-light {
            display: inline-block;
            background: white;
            color: var(--ft-indigo);
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: var(--ft-deep);
            padding: 80px 0 40px;
            color: white;
        }

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

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

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .footer-brand h3 span {
            color: var(--ft-orange);
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--ft-teal-light);
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-column a {
            display: block;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: var(--ft-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
        }

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

        /* Animations */
        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        [data-animate].visible {
            opacity: 1;
            transform: translateY(0);
        }

        [data-animate="scale"] {
            transform: scale(0.9);
        }

        [data-animate="scale"].visible {
            transform: scale(1);
        }

        [data-animate="slide-left"] {
            transform: translateX(-40px);
        }

        [data-animate="slide-left"].visible {
            transform: translateX(0);
        }

        [data-animate="slide-right"] {
            transform: translateX(40px);
        }

        [data-animate="slide-right"].visible {
            transform: translateX(0);
        }

        [data-animate="flip"] {
            transform: perspective(1000px) rotateY(-15deg);
            transform-origin: left center;
        }

        [data-animate="flip"].visible {
            transform: perspective(1000px) rotateY(0);
        }

        [data-animate="pop"] {
            transform: scale(0.85);
        }

        [data-animate="pop"].visible {
            transform: scale(1);
        }

        [data-animate-delay="1"] { transition-delay: 0.1s; }
        [data-animate-delay="2"] { transition-delay: 0.2s; }
        [data-animate-delay="3"] { transition-delay: 0.3s; }
        [data-animate-delay="4"] { transition-delay: 0.4s; }
        [data-animate-delay="5"] { transition-delay: 0.5s; }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats {
                gap: 32px;
            }

            .concept-content,
            .use-cases-grid,
            .trends-grid {
                grid-template-columns: 1fr;
            }

            .results-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 80px;
            }

            .nav-links {
                display: none;
            }

            .nav-mobile {
                display: block;
            }

            .hero {
                padding: 120px 0 80px;
            }

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

            .hero-cta {
                flex-direction: column;
            }

            .hero-cta a {
                text-align: center;
            }

            .value-strip p {
                font-size: 1rem;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 14px 16px;
            }

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

            .result-number {
                font-size: 3rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
