/*
Theme Name: MapMyAudience
Theme URI: https://mapmyaudience.com
Author: MapMyAudience
Author URI: https://mapmyaudience.com
Description: Custom audience intelligence platform theme with geospatial analytics, entrance/scroll animations, stats showcase, and modern SaaS layout.
Version: 2.0.0
License: GPL v2 or later
Text Domain: mapmyaudience
*/


        /* MapMyAudience Theme with Custom Logo */
        :root {
            --primary: rgb(162, 46, 20);
            --primary-dark: rgb(140, 35, 15);
            --primary-light: rgb(238, 112, 70);
            --secondary: rgb(33, 33, 33);
            --light: rgb(252, 237, 230);
            --dark: rgb(51, 51, 51);
            --gray: rgb(108, 117, 125);
            --light-gray: rgb(233, 236, 239);
            --border-radius: 12px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

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

        /* Modern Header with Animation */
        .modern-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(162, 46, 20, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            transform: translateY(-100%);
            animation: slideDownHeader 0.8s ease 0.2s forwards;
        }

        @keyframes slideDownHeader {
            to {
                transform: translateY(0);
            }
        }

        .header-scrolled {
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            animation: fadeIn 0.8s ease 0.4s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .logo-img {
            height: 45px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05) rotate(-2deg);
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 25px;
            transition: var(--transition);
            position: relative;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(-10px);
        }

        .nav-link:nth-child(1) { animation: fadeInUp 0.6s ease 0.5s forwards; }
        .nav-link:nth-child(2) { animation: fadeInUp 0.6s ease 0.6s forwards; }
        .nav-link:nth-child(3) { animation: fadeInUp 0.6s ease 0.7s forwards; }
        .nav-link:nth-child(4) { animation: fadeInUp 0.6s ease 0.8s forwards; }
        .nav-link:nth-child(5) { animation: fadeInUp 0.6s ease 0.9s forwards; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(162, 46, 20, 0.05);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary);
            background: rgba(162, 46, 20, 0.1);
        }

        .nav-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            opacity: 1;
            animation: fadeIn 0.8s ease 1s forwards;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(162, 46, 20, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(162, 46, 20, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

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

        /* Glass Morphism Hero with Enhanced Animations */
        .glass-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--light) 0%, rgba(252, 237, 230, 0.7) 50%, transparent 100%);
            overflow: hidden;
        }

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

        .hero-text {
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(162, 46, 20, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            margin-bottom: 30px;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInRight 0.8s ease 0.3s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--secondary);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-description {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 500px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        .stat-item {
            text-align: center;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

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

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInLeft 1s ease 0.8s forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .floating-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
        }

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

        .card-action {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .card-action:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .map-container {
            height: 300px;
            background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(162, 46, 20, 0.1) 0%, transparent 100%);
        }

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

        .mini-stat {
            background: var(--light);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .mini-stat:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .mini-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .mini-label {
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 600;
        }

        /* Features Grid with Staggered Animations */
        .features-section {
            padding: 100px 0;
            background: white;
        }

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

        .section-subtitle {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            pointer-events: none;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-light);
        }

        .feature-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--light);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .feature-description {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .feature-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .feature-link:hover {
            gap: 12px;
            color: var(--primary-dark);
        }

        /* Stats Showcase with Counter Animations */
        .stats-showcase {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
        }

        .stats-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .stats-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInRight 1s ease forwards;
        }

        .stats-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 500px;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInRight 1s ease 0.2s forwards;
        }

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

        .stat-large {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-large-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary-light);
        }

        .stat-large-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 600;
        }

        .stat-large-label p {
            margin: 0;
        }

        .feature-description p {
            margin: 0 0 20px;
        }

        .stat-large-link {
            display: block;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .stat-large-link:hover {
            transform: translateY(-5px);
        }

        .section-description a,
        .hero-description a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            transition: var(--transition);
        }

        .section-description a:hover,
        .hero-description a:hover {
            color: var(--primary-dark);
        }

        /* CTA Section with Floating Card Animation */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--light) 0%, rgba(252, 237, 230, 0.8) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card {
            background: white;
            padding: 80px 60px;
            border-radius: 30px;
            box-shadow: var(--box-shadow);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
            /* Floating animation */
            animation: float 6s ease-in-out infinite, scaleIn 1s ease 0.3s forwards;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-15px) scale(1.02);
            }
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

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

        /* Add floating elements around the card */
        .cta-card::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
            border-radius: 50%;
            top: -80px;
            right: -80px;
            opacity: 0.1;
            z-index: 0;
            animation: floatElement 8s ease-in-out infinite;
        }

        .floating-element-1 {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 20%;
            left: 5%;
            opacity: 0.1;
            animation: floatElement 12s ease-in-out infinite;
            z-index: 0;
        }

        .floating-element-2 {
            position: absolute;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            bottom: 10%;
            right: 10%;
            opacity: 0.08;
            animation: floatElement 10s ease-in-out infinite reverse;
            z-index: 0;
        }

        @keyframes floatElement {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--secondary);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.5s forwards;
            position: relative;
            z-index: 2;
        }

        .cta-description {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.7s forwards;
            position: relative;
            z-index: 2;
        }

        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.9s forwards;
            position: relative;
            z-index: 2;
        }

        .btn-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(162, 46, 20, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(162, 46, 20, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(162, 46, 20, 0);
            }
        }

        /* Enhanced hover effects for CTA card */
        
        @keyframes cardHover {
            to {
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            }
        }

        /* Footer */
        .modern-footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }

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

        .footer-brand {
            max-width: 300px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .footer-logo-img {
            height: 45px;
            width: auto;
        }

        .footer-logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: white;
        }

        .footer-description {
            color: #adb5bd;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(10px);
        }

        .social-link:nth-child(1) { animation: fadeInUp 0.6s ease 0.2s forwards; }
        .social-link:nth-child(2) { animation: fadeInUp 0.6s ease 0.3s forwards; }
        .social-link:nth-child(3) { animation: fadeInUp 0.6s ease 0.4s forwards; }
        .social-link:nth-child(4) { animation: fadeInUp 0.6s ease 0.5s forwards; }

        .social-link:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }

        .footer-column {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .footer-column:nth-child(2) { animation-delay: 0.4s; }
        .footer-column:nth-child(3) { animation-delay: 0.5s; }
        .footer-column:nth-child(4) { animation-delay: 0.6s; }
        .footer-column:nth-child(5) { animation-delay: 0.7s; }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-light);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links li:nth-child(1) { animation: slideInRight 0.5s ease 0.7s forwards; }
        .footer-links li:nth-child(2) { animation: slideInRight 0.5s ease 0.8s forwards; }
        .footer-links li:nth-child(3) { animation: slideInRight 0.5s ease 0.9s forwards; }
        .footer-links li:nth-child(4) { animation: slideInRight 0.5s ease 1s forwards; }
        .footer-links li:nth-child(5) { animation: slideInRight 0.5s ease 1.1s forwards; }

        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            opacity: 0;
            animation: fadeIn 1s ease 1.2s forwards;
        }

        .footer-bottom a {
            color: white;
            text-decoration: underline;
        }

        .footer-bottom a:hover {
            color: var(--primary-light);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            color: var(--primary);
            font-size: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content,
            .stats-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 20px 20px;
            }

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

            .mobile-toggle {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-actions,
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .stats-grid-large {
                grid-template-columns: 1fr;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .logo-img {
                height: 35px;
            }

            .cta-card {
                padding: 50px 30px;
            }

            .cta-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-card {
                padding: 40px 20px;
            }

            .logo-text {
                display: none;
            }
        }

        /* ============================
           Inner Page Header (Pricing, Resources, About Us, Contact Us)
        ============================ */
        .page-hero {
            padding: 160px 0 70px;
            background: linear-gradient(135deg, var(--light) 0%, rgba(252, 237, 230, 0.7) 50%, transparent 100%);
            text-align: center;
        }

        .page-hero .hero-badge {
            margin: 0 auto 25px;
        }

        .page-hero .hero-title {
            margin-bottom: 20px;
        }

        .page-hero .hero-description {
            margin: 0 auto;
        }

        /* ============================
           Pricing Page
        ============================ */
        .pricing-section {
            padding: 100px 0;
            background: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 45px 35px;
            box-shadow: var(--box-shadow);
            border: 2px solid var(--light-gray);
            position: relative;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured {
            border-color: var(--primary);
        }

        .pricing-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 6px 22px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .pricing-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray);
        }

        .pricing-audience {
            color: var(--gray);
            font-weight: 600;
            margin: 15px 0 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--light-gray);
        }

        /* .pricing-features wraps either a hardcoded <ul> (fallback content)
           or a plain <ul> from the block editor's List block (CPT content) */
        .pricing-features {
            list-style: none;
            margin: 0 0 30px;
            padding: 0;
            flex-grow: 1;
        }

        .pricing-features ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            color: var(--dark);
        }

        .pricing-features li i {
            color: var(--primary);
            margin-top: 4px;
        }

        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .pricing-note {
            text-align: center;
            color: var(--gray);
            margin-top: 50px;
        }

        /* ============================
           Contact Us Page
        ============================ */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-form-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 45px;
            box-shadow: var(--box-shadow);
        }

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

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--light-gray);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-message {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .form-message.success {
            background: rgba(46, 125, 50, 0.1);
            color: #2e7d32;
        }

        .form-message.error {
            background: rgba(198, 40, 40, 0.1);
            color: #c62828;
        }

        .contact-info-card {
            background: var(--light);
            border-radius: var(--border-radius);
            padding: 40px;
        }

        .contact-info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

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

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-info-title {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .contact-info-text a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-info-text a:hover {
            color: var(--primary);
        }

        .contact-info-card .social-link {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .contact-info-card .social-link:hover {
            background: var(--primary);
            color: white;
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 130px 0 50px;
            }

            .pricing-card.featured {
                transform: none;
            }
        }
    