/*
 * ===================================================================
 * TouchStone Campaign Platform - Main Stylesheet
 * ===================================================================
 * 
 * Comprehensive styling for TouchStone's political campaign platform website.
 * Built with modern CSS features including custom properties, flexbox, and grid.
 * 
 * Architecture:
 * - Mobile-first responsive design
 * - Custom property system for consistent theming
 * - Component-based organization
 * - Optimized for performance and accessibility
 * 
 * Brand Colors:
 * - Magenta: #CC4B8B (Primary brand color)
 * - Purple: #8D4BBC (Secondary/accent color)
 * - Blue: #4B85CC (Tertiary color)
 * 
 * @version 1.0.0
 * @author TouchStone Development Team
 * ===================================================================
 */

/* External Font Loading */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Roboto:wght@400;500;700&display=swap');

/* ===================================================================
 * CSS Custom Properties (CSS Variables)
 * Central theming system for consistent colors and values
 * ===================================================================
 */
/* Custom properties based on TouchStone logo */
:root {
    /* Primary colors from logo */
    --color-magenta: #CC4B8B;
    /* Top of logo gradient */
    --color-purple: #8D4BBC;
    /* Middle of logo gradient */
    --color-blue: #4B85CC;
    /* Bottom of logo gradient */

    /* Background colors */
    --color-background: #FFFFFF;
    --color-card-bg: #F8F9FA;

    /* Text colors */
    --color-text: #4A5568;
    --color-text-light: #636E72;

    /* Accent colors */
    --color-accent: #8D4BBC;
    --color-success: #00B894;
    --color-error: #FF6B6B;
}

/* ===================================================================
 * CSS Reset & Base Styles
 * Normalizes browser defaults and sets global styling foundation
 * ===================================================================
 */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 100vh;
    background-color: var(--color-background);
    color: var(--color-text);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    transition: all 0.3s ease;
}

/* ===================================================================
 * Site Header & Navigation System
 * Fixed header with responsive navigation and dropdown menus
 * Includes mobile hamburger menu and smooth transitions
 * ===================================================================
 */
/* Header and Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text);
    transform: translateY(-1px);
    text-decoration: none;
}

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

.nav-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-cta-secondary {
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-purple);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta-secondary:hover {
    background: rgba(141, 75, 188, 0.08);
    border-color: var(--color-purple);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(141, 75, 188, 0.3);
    text-decoration: none;
}

.nav-cta-primary {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.2);
}

.nav-cta-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(141, 75, 188, 0.4);
    text-decoration: none;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    margin-top: 8px;
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-dropdown-link:hover {
    background-color: var(--color-card-bg);
    color: var(--color-purple);
    padding-left: 1.5rem;
}

/* Mobile submenu styles */
.mobile-submenu-link {
    padding-left: 3rem !important;
    font-size: 0.95rem;
    background-color: #f5f5f5;
}

.mobile-submenu-link:hover {
    background-color: #ececec !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(141, 75, 188, 0.1);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.active {
    max-height: 400px;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-menu .mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.mobile-dropdown-menu .mobile-menu-link:hover {
    background: #f8f9fa;
    color: var(--color-purple);
}

.mobile-dropdown-menu .mobile-menu-link:active {
    background: #f0f1f3;
}

.mobile-dropdown-menu .mobile-menu-cta {
    display: block;
    margin: 1rem;
    padding: 1rem;
    background: var(--color-purple);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu .mobile-menu-cta:hover {
    background: var(--color-purple-dark, #6B3BA0);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.3);
}

.mobile-dropdown-menu .mobile-menu-cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(141, 75, 188, 0.3);
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================================================
 * Hero Section Layout
 * Primary landing area with split content/form layout
 * Features gradient backgrounds and responsive animations
 * ===================================================================
 */
/* Hero Section Styles */
.hero-section {
    padding-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.05) 0%, rgba(75, 133, 204, 0.1) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.2);
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(141, 75, 188, 0.4);
    text-decoration: none;
}

.cta-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--color-purple);
    padding: 1rem 1.5rem;
    min-height: 48px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    border: 2px solid var(--color-purple);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.cta-secondary:hover {
    background: rgba(141, 75, 188, 0.08);
    border-color: var(--color-purple);
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(141, 75, 188, 0.3);
}

.cta-tertiary {
    color: var(--color-purple);
    padding: 0.5rem 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.cta-tertiary:hover {
    color: var(--color-purple);
    text-decoration: none;
    border-bottom-color: var(--color-purple);
}

.hero-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInRight 0.8s ease-out;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--color-text-light);
    font-size: var(--font-size-base);
}

.signup-form,
.contact-form,
.canvassing-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0;
}

.form-group-row .form-group {
    flex: 1;
    margin-bottom: 1.25rem;
}

.error-message {
    color: var(--color-error);
    font-size: var(--font-size-xs);
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-group.has-error .error-message {
    opacity: 1;
    transform: translateY(0);
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.2s ease;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A5568'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 24px;
    padding-right: 3rem;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--color-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 75, 188, 0.1);
}

input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: #999;
}

input:invalid:not(:placeholder-shown) {
    border-color: var(--color-error);
}

input:invalid:not(:placeholder-shown):focus {
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

.signup-button {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    min-height: 48px;
    width: 100%;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.2);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.signup-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(141, 75, 188, 0.4);
}

.signup-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.3);
}

.signup-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


.form-feedback {
    margin-top: 1rem;
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.4;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-feedback:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback.success {
    color: var(--color-success);
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.form-feedback.error {
    color: var(--color-error);
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

/* ===================================================================
 * Reusable Section Components
 * Base styling for consistent section layouts across pages
 * Includes titles, intros, and container systems
 * ===================================================================
 */
/* Section Base Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: balance;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.4rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* ===================================================================
 * Brand Differentiation Section
 * Highlights TouchStone's unique value proposition
 * ===================================================================
 */
/* What Makes Us Different Section */
.different-section {
    background: white;
    padding: 2.5rem 0;
}

.section-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.about-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(141, 75, 188, 0.2);
}

.about-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(141, 75, 188, 0.4);
    text-decoration: none;
}

.about-link:active {
    transform: translateY(0) scale(0.98);
}

/* ===================================================================
 * Value Proposition Sections
 * Multiple sections showcasing TouchStone's strategic advantages
 * ===================================================================
 */
/* End-to-End Execution Section */
.execution-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.execution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.execution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.execution-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.execution-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* ===================================================================
 * Technology Features Showcase
 * Displays technical capabilities and competitive advantages
 * ===================================================================
 */
/* Technology Moat Section */
.tech-section {
    background: white;
    padding: 4rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: var(--color-card-bg);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(141, 75, 188, 0.25);
    background: white;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(141, 75, 188, 0.4);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s ease;
}

.tech-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.tech-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================================================
 * Media & Campaign Integration
 * Highlights unified campaign operations and media capabilities
 * ===================================================================
 */
/* Media Integration Section */
.media-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.media-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.media-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.media-card p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* ===================================================================
 * Field Operations Features
 * Specialized tools and capabilities for field work
 * ===================================================================
 */
/* Built for Field Section */
.field-section {
    background: white;
    padding: 4rem 0;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.field-card {
    background: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.field-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(141, 75, 188, 0.15);
}

.field-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.field-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.field-card p {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 1rem;
}

/* Relational Section */
.relational-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.relational-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.relational-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(0);
}

.relational-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(141, 75, 188, 0.15);
}

/* Staggered animation for cards */
.relational-card:nth-child(1) {
    animation-delay: 0ms;
}

.relational-card:nth-child(2) {
    animation-delay: 100ms;
}

.relational-card:nth-child(3) {
    animation-delay: 200ms;
}

.relational-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.relational-card p {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 1rem;
}

/* We Work With You Section */
.work-section {
    background: white;
    padding: 4rem 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.work-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.work-card p {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 1rem;
}

/* ===================================================================
 * Call-to-Action Sections
 * Final conversion areas with compelling messaging
 * ===================================================================
 */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.1) 0%, rgba(75, 133, 204, 0.1) 100%);
    padding: 3rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================================
 * CSS Animations & Keyframes
 * Smooth entrance animations for improved user experience
 * ===================================================================
 */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* ===================================================================
 * Accessibility & Usability Enhancements
 * Ensures WCAG compliance and improved user experience
 * ===================================================================
 */
/* Focus styles for accessibility */
:focus {
    outline: 2px solid var(--color-purple);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 2px;
}

/* Touch interaction improvements */
@media (hover: none) and (pointer: coarse) {

    .cta-primary,
    .cta-secondary,
    .nav-cta-primary,
    .nav-cta-secondary,
    .signup-button {
        transition: transform var(--duration-fast) ease;
    }

    .cta-primary:active,
    .cta-secondary:active,
    .nav-cta-primary:active,
    .nav-cta-secondary:active,
    .signup-button:active {
        transform: scale(0.95);
    }
}



/* About Page Styles */
.about-hero-section {
    padding-top: 100px;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.05) 0%, rgba(75, 133, 204, 0.1) 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem-solution-section {
    background: white;
    padding: 3rem 0;
}

.key-features-section {
    background: var(--color-card-bg);
    padding: 3rem 0;
}

.founders-section {
    background: white;
    padding: 3rem 0;
}

.contact-page-section {
    background: var(--color-card-bg);
    padding: 3rem 0;
}

.contact-page-section .contact-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-align: center;
}

/* About Section Styles (for compatibility) */
.about-section {
    max-width: 1200px;
    width: 100%;
    background: var(--color-card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(141, 75, 188, 0.1);
    border: 1px solid rgba(75, 133, 204, 0.1);
    margin: 0 auto 2rem auto;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.3;
}

.section-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.problem-solution-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.problem-solution-container .feature-card {
    flex: 1;
}

.features-title,
.founders-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-align: center;
    line-height: 1.3;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* The fifth card (Screenshot-Proof) needs special positioning */
.features-container .feature-card:nth-child(5) {
    grid-column: 2 / span 2;
    margin-top: 0.5rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(141, 75, 188, 0.15);
}

.feature-icon {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    line-height: 1.3;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.3;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.5;
}

.problem-card .feature-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
}

.solution-card .feature-icon {
    background: linear-gradient(135deg, #00B894 0%, #38D9A9 100%);
}

.founders-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(141, 75, 188, 0.15);
}

.founder-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.3;
}

.founder-title {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.founder-card p:not(.founder-title) {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.3;
}

.contact-section p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-section strong {
    color: var(--color-text);
}

.website {
    margin-top: 1rem;
    font-weight: 600;
}

/* ===================================================================
 * Responsive Design System
 * Mobile-first approach with progressive enhancement
 * Breakpoints: Mobile (default), Tablet (768px), Desktop (1024px)
 * ===================================================================
 */
/* Responsive design */
@media (max-width: 1024px) {

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .nav-ctas {
        display: none;
    }

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

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Sections */
    .execution-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .field-grid,
    .relational-grid,
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .features-container .feature-card:nth-child(5) {
        grid-column: auto;
        margin-top: 0;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        padding: 2.5rem 2rem;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }

    .section-container {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

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

@media (max-width: 768px) {

    /* Base typography adjustments for mobile */
    body {
        font-size: 1.25rem;
    }

    /* About link mobile adjustments */
    .about-link {
        width: 100%;
        max-width: 300px;
        padding: 1.25rem 2rem;
        min-height: 56px;
        font-size: 1.125rem;
        font-weight: 700;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    /* Larger hamburger menu button */
    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 0.875rem;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
    }

    /* Mobile dropdown adjustments */
    .mobile-dropdown-menu .mobile-menu-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
    }

    .mobile-dropdown-menu .mobile-menu-cta {
        margin: 1rem;
        padding: 1.25rem;
        font-size: 1.125rem;
    }

    /* Hero */
    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-container {
        padding: 2rem 1.5rem;
    }

    /* All sections */
    .different-section,
    .execution-section,
    .tech-section,
    .media-section,
    .field-section,
    .relational-section,
    .work-section,
    .cta-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
    }

    /* Hide Contact Us button on mobile (form is shown instead) */
    .hero-ctas .cta-primary {
        display: none;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        min-height: 56px;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        font-weight: 700;
        border-radius: 12px;
    }

    .hero-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    /* Sections */
    .section-container {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-intro {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .tech-card,
    .field-card,
    .execution-card,
    .media-card,
    .relational-card,
    .work-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .tech-card h3,
    .field-card h3,
    .execution-card h3,
    .media-card h3,
    .relational-card h3,
    .work-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .tech-card p,
    .field-card p,
    .execution-card p,
    .media-card p,
    .relational-card p,
    .work-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Larger icons on mobile */
    .tech-icon,
    .field-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1.5rem;
    }

    .tech-icon svg,
    .field-icon svg {
        width: 36px;
        height: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        min-height: 56px;
        font-size: 1.125rem;
        padding: 1.25rem 2rem;
        font-weight: 700;
    }


    .landing-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: var(--space-lg);
    }

    .hero-image,
    .signup-section {
        max-width: 100%;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .landing-container {
        padding: 1rem;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group-row .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group-row .form-group:last-child {
        margin-bottom: 0;
    }

    .error-message {
        bottom: -1.1rem;
        font-size: 0.8rem;
    }

    input[type="email"],
    input[type="text"],
    input[type="tel"] {
        font-size: 1rem;
    }

    .logo-background {
        height: 200px;
        width: 200px;
        background-size: contain;
    }

    .about-section {
        padding: 1rem;
    }

    .problem-solution-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .founders-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* Smaller screens but still maintain readability */
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    /* Ensure buttons remain large */
    .cta-primary,
    .cta-secondary,
    .nav-cta-primary,
    .signup-button {
        min-height: 48px;
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
    }

    .landing-content,
    .about-section {
        padding: 1rem;
    }

    .form-feedback {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .founder-card {
        padding: 1rem;
    }

    .contact-section {
        padding: 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        height: 48px;
        width: 48px;
        font-size: 1.25rem;
    }

    .logo-background {
        height: 150px;
        width: 150px;
    }

    .fallback-logo {
        max-width: 100%;
        max-height: 150px;
    }

    input[type="email"],
    input[type="text"],
    input[type="tel"] {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 1rem;
        min-height: 48px;
        border-radius: 12px;
        border: 2px solid #ddd;
    }

    .signup-button {
        min-height: 48px;
        font-size: 1.125rem;
        letter-spacing: 0.05em;
        font-weight: 700;
        border-radius: 12px;
        padding: 0.875rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group-row {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .form-group-row .form-group {
        margin-bottom: 1.5rem;
    }
}

/* New Page Styles */

/* Contact Page Styles */
.contact-hero-section,
.services-hero-section,
.service-hero-section {
    padding: 7rem 0 3rem;
    background: var(--color-card-bg);
    text-align: center;
}

.service-hero-section .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.service-hero-section .hero-cta .cta-secondary {
    background: transparent;
    color: var(--color-purple);
    border: 2px solid var(--color-purple);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-section .hero-cta .cta-secondary:hover {
    background: rgba(141, 75, 188, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 75, 188, 0.3);
}

.canvassing-hero {
    padding: 2rem 0 1.5rem;
    margin-top: 80px;
}

/* Canvassing Hero with Form */
.canvassing-hero .hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.hero-text-content {
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

.canvassing-form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(141, 75, 188, 0.1);
}

.canvassing-form-container .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.canvassing-form-container .form-header h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.canvassing-form-container .form-header p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Canvassing form specific styles removed - using common form styles */

.form-submit-button,
.contact-submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.2);
}

.form-submit-button:hover,
.contact-submit-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(141, 75, 188, 0.4);
}

.form-submit-button:active,
.contact-submit-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(141, 75, 188, 0.3);
}

.form-submit-button:disabled,
.contact-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#canvassing-form-feedback {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.page-title {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.canvassing-hero .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.canvassing-hero .page-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
}

.contact-content-section {
    padding: 3rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

/* Contact submit button styles consolidated with form-submit-button */

.contact-info-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-card-bg);
    border-radius: 12px;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.contact-info-block p {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-cta-section {
    background: var(--color-card-bg);
    padding: 3rem 0;
    text-align: center;
}

/* Services Overview Page */
.services-overview-section {
    padding: 4rem 0;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-overview-card:hover::before {
    opacity: 1;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
}

.service-overview-card .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-overview-card h3 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-highlights li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.4;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-purple);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: var(--color-magenta);
    transform: translateX(5px);
}

.service-cta {
    display: inline-block;
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* Why TouchStone Section */
.why-touchstone-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

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

/* Services CTA Section */
.services-cta-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

/* Service Detail Pages Common Styles */
.breadcrumb {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-purple);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Canvassing Page Specific */
.canvassing-tech-section {
    padding: 4rem 0;
    background: white;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.tech-features-detailed {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-feature-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: var(--color-card-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-feature-detailed:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-content h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.feature-content>p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-benefits li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.feature-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
    font-size: 1.5rem;
    top: -0.25rem;
}

/* Field Services Section */
.field-services-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-detail-card>p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-detail-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.pricing-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: white;
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--color-purple);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-purple);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 75, 188, 0.3);
    text-decoration: none;
}

/* Results Section */
.results-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.result-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-card p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Services Overview Section */
.services-overview-section {
    padding: 3rem 0 2rem;
}

.services-grid-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.service-overview-item {
    flex: 0 1 calc(33.333% - 0.75rem);
    min-width: 280px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.875rem;
    background: var(--color-card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.service-icon-small {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-small svg {
    color: white;
    width: 20px;
    height: 20px;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--color-text);
    font-weight: 600;
}

.service-content p {
    color: var(--color-text-light);
    line-height: 1.35;
    font-size: 0.875rem;
}

.services-footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
}

.services-tagline {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-purple);
}

/* Quality Control Section */
.quality-control-section {
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.05) 0%, rgba(141, 75, 188, 0.05) 50%, rgba(75, 133, 204, 0.05) 100%);
    padding: 4rem 0;
}

.quality-control-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    border-left: 4px solid var(--color-purple);
}

.quality-control-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.quality-control-highlight p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Distributed Canvassing Section */
.distributed-canvassing-section {
    background: white;
    padding: 0.5rem 0 1.5rem;
}

.distributed-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.distributed-feature {
    text-align: center;
    padding: 2rem;
    background: var(--color-card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.distributed-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-medium {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.distributed-feature:hover .feature-icon-medium {
    transform: scale(1.1);
}

.feature-icon-medium svg {
    color: white;
}

.distributed-feature h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.distributed-feature p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.distributed-footer {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text);
    font-weight: 500;
}

/* Service CTA Section */
.service-cta-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-cta-section p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Services Page Specific */
.integrated-media-section {
    padding: 4rem 0;
    background: white;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.integration-benefit {
    text-align: center;
}

.integration-benefit .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.integration-benefit h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.integration-benefit p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Digital Services Grid */
.digital-services-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.media-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.media-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.media-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.media-service-card .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
}

.media-service-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.media-service-card>p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.media-service-card ul {
    list-style: none;
    padding: 0;
}

.media-service-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.media-service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Creative Services */
.creative-services-section {
    background: white;
    padding: 4rem 0;
}

.creative-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.creative-service {
    padding: 2rem;
    background: var(--color-card-bg);
    border-radius: 12px;
}

.creative-service h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.creative-service>p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Analytics Section */
.analytics-section {
    background: var(--color-card-bg);
    padding: 4rem 0;
}

.analytics-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.analytics-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.analytics-feature h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.analytics-feature>p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Media Packages */
.media-packages-section {
    background: white;
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.package-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    background: white;
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.package-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
}

.package-ideal {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-purple);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.package-card.featured .package-cta {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 75, 188, 0.3);
    text-decoration: none;
}

/* Partnership Section */
.partnership-section {
    background: var(--color-card-bg);
    padding: 1rem 0 4rem;
    /* Minimal top padding for very tight spacing */
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.partnership-benefit {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.partnership-benefit h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.partnership-benefit p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.partnership-benefit .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.1) 0%, rgba(141, 75, 188, 0.1) 50%, rgba(75, 133, 204, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.partnership-highlight {
    margin: 2rem 0;
    text-align: center;
}

.partnership-quote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-purple);
    border-left: 4px solid var(--color-purple);
    padding-left: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.partnership-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-card-bg);
    border-radius: 12px;
}

.partnership-cta h3 {
    margin-bottom: 1rem;
    color: var(--color-purple);
}

/* Service Learn More Links */
.service-learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-learn-more:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* Service Pricing */
.service-pricing {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(141, 75, 188, 0.08);
    border-radius: 8px;
    font-style: italic;
    color: var(--color-text);
}

/* Political Expertise Section */
.political-expertise-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(204, 75, 139, 0.1) 0%, rgba(141, 75, 188, 0.1) 50%, rgba(75, 133, 204, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.expertise-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

/* Data Research Section */
.data-research-section {
    padding: 4rem 0;
}

/* Media Grid Two Column Layout */
.media-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Features Layout */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.feature-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 0.75rem;
}

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

.feature-group ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-group ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: 700;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 0.75rem 1.25rem;
    background: rgba(141, 75, 188, 0.08);
    border-radius: 24px;
}

.hero-benefit svg {
    color: var(--color-purple);
}

/* Services Hub Section */
.services-hub-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.service-tab:hover {
    color: var(--color-purple);
}

.service-tab.active {
    color: var(--color-purple);
    border-bottom-color: var(--color-purple);
}

.service-tab svg {
    transition: all 0.3s ease;
}

.service-tab:hover svg,
.service-tab.active svg {
    transform: scale(1.1);
}

/* Service Panels */
.service-panels {
    margin-top: 3rem;
}

.service-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Expertise Grid Compact */
.expertise-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.expertise-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: var(--color-purple);
}

.expertise-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expertise-item svg {
    flex-shrink: 0;
    color: var(--color-purple);
    background: rgba(141, 75, 188, 0.08);
    padding: 1rem;
    border-radius: 12px;
    width: 48px;
    height: 48px;
}

.expertise-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.expertise-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Enhanced Hero */
.media-hero-enhanced {
    margin-top: 72px;
    /* Account for fixed header */
    padding: 4rem 0 4rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Inline Links */
.inline-link {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.inline-link:hover {
    text-decoration: underline;
    transform: translateX(2px);
}

/* Responsive Updates for New Pages */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .tech-feature-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-icon-large {
        margin: 0 auto;
    }

    .services-grid-detailed,
    .media-services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .integration-benefits,
    .creative-services-grid,
    .analytics-features,
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
}

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

    .page-subtitle {
        font-size: 1.125rem;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.75rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-overview-card {
        padding: 2rem;
    }

    .service-overview-card h3 {
        font-size: 1.75rem;
    }

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

    .tech-features-detailed {
        gap: 2rem;
    }

    .tech-feature-detailed {
        padding: 1.5rem;
    }

    .feature-icon-large {
        width: 80px;
        height: 80px;
    }

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

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

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

    .service-cta-section h2 {
        font-size: 2rem;
    }

    .service-cta-section p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 0 1rem;
    }

    .service-overview-card {
        padding: 1.5rem;
    }

    .service-overview-card .service-icon {
        width: 64px;
        height: 64px;
    }

    .pricing-card,
    .package-card {
        padding: 1.5rem;
    }

    .pricing-card h3,
    .package-card h3 {
        font-size: 1.5rem;
    }

    /* New sections responsive styles */
    .services-grid-overview {
        gap: 0.75rem;
    }

    .service-overview-item {
        flex: 0 1 100%;
        min-width: auto;
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .service-icon-small {
        width: 40px;
        height: 40px;
    }

    .service-icon-small svg {
        width: 20px;
        height: 20px;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .quality-control-highlight {
        padding: 1.5rem;
    }

    .quality-control-highlight p {
        font-size: 1rem;
    }

    .distributed-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .distributed-feature {
        padding: 1.5rem;
    }

    .feature-icon-medium {
        width: 64px;
        height: 64px;
    }

    .feature-icon-medium svg {
        width: 32px;
        height: 32px;
    }

    .distributed-footer {
        font-size: 1rem;
    }

    /* Canvassing form responsive */
    .canvassing-hero .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .hero-text-content {
        min-height: auto;
        margin-bottom: 2rem;
    }

    .canvassing-form-container {
        max-width: 500px;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .canvassing-form .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons a {
        width: 100%;
    }
}

/* ===================================================================
 * Site Footer
 * Simple copyright and legal information display
 * ===================================================================
 */
/* Copyright Footer */
.copyright-footer {
    width: 100%;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.copyright-footer p {
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .copyright-footer {
        padding: 1rem 0;
    }

    .copyright-footer p {
        font-size: 0.875rem;
    }
}

/* ===================================================================
 * Enhanced Content Sections
 * Updated layouts and components for improved user engagement
 * ===================================================================
 */
/* NEW SECTION STYLES */

/* Core Value Proposition Section */
.value-prop-section {
    background: var(--color-card-bg);
    padding: 3rem 0;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Both value cards now equal size */

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(141, 75, 188, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-summary {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.value-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-highlights li {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.5;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.value-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology & Features Section */
.tech-features-section {
    background: white;
    padding: 3rem 0;
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.tech-feature {
    background: var(--color-card-bg);
    text-align: center;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tech-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
    background: white;
}

.tech-feature:hover .feature-icon {
    transform: scale(1.1);
}

.tech-feature .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.tech-feature .feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.tech-feature h3 {
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.2;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.4;
}

.tech-feature p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.3;
}

.feature-detail {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(141, 75, 188, 0.1);
}

.feature-detail.expanded {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Field Operations Features */
.subsection-title {
    font-size: 1.75rem;
    color: var(--color-text);
    margin: 2rem 0 1.25rem;
    text-align: center;
    font-weight: 600;
}

.field-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.field-feature {
    background: var(--color-card-bg);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
    border-radius: 12px;
}

.field-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon-small {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon-small svg {
    width: 32px;
    height: 32px;
}

.field-feature h4 {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.field-feature p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* Relational Organizing */
.relational-features {
    background: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.relational-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.relational-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.relational-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 75, 188, 0.1);
}

.relational-item svg {
    color: var(--color-purple);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.relational-item span {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.3;
    font-weight: 500;
}

/* Integrated Campaign Operations Section */
.integrated-operations-section {
    background: var(--color-card-bg);
    padding: 3rem 0;
}

.integration-showcase {
    margin-top: 2rem;
}

.integration-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-card-bg);
}

.integration-header svg {
    width: 64px;
    height: 64px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    color: white;
}

.integration-header h3 {
    font-size: 2rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 700;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.integration-feature {
    position: relative;
    padding-left: 2rem;
}

.integration-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-purple);
}

.integration-feature h4 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.integration-feature p {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 1.1rem;
}

/* How We Partner Section */
.partner-section {
    background: white;
    padding: 4rem 0;
}

.partner-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 75, 188, 0.15);
    background: white;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 0;
    text-align: left;
}

/* Service expand buttons removed - content now always visible */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Mobile-specific improvements */
@media (max-width: 768px) {

    /* Better visual hierarchy with consistent margins */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 0;
    }

    /* Larger logo and text in mobile menu */
    .mobile-menu-header .nav-logo .nav-logo-img,
    .site-header .nav-logo .nav-logo-img {
        width: 56px !important;
        height: 56px !important;
    }

    .mobile-menu-header .nav-logo .nav-logo-text,
    .site-header .nav-logo .nav-logo-text {
        font-size: 2rem !important;
    }

    /* Ensure proper spacing with larger logo */
    .mobile-menu-header .nav-logo {
        gap: 0.75rem;
    }

    /* Consistent button styling */
    button,
    .cta-primary,
    .cta-secondary {
        font-weight: 600;
        letter-spacing: 0.02em;
        transition: all 0.2s ease;
    }

    /* Better card shadows on mobile */
    .value-card,
    .tech-feature,
    .service-card,
    .integration-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .value-card:active,
    .tech-feature:active,
    .service-card:active {
        transform: scale(0.98);
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
    }

    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-feature .feature-icon {
        width: 72px;
        height: 72px;
    }

    .tech-feature .feature-icon svg {
        width: 42px;
        height: 42px;
    }

    .relational-grid-compact {
        grid-template-columns: 1fr;
    }

    .integration-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .integration-header svg {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {

    /* Consistent section padding */
    .value-prop-section,
    .tech-features-section,
    .integrated-operations-section,
    .partner-section,
    .different-section {
        padding: 2rem 0;
    }

    /* Consistent typography scale */
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-subtitle,
    .section-intro {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .subsection-title {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }

    /* Consistent card layouts */
    .value-card,
    .tech-feature,
    .field-feature,
    .service-card,
    .integration-card {
        padding: 1.5rem;
    }

    /* Card headings */
    .value-card h3,
    .tech-feature h3,
    .field-feature h4,
    .service-card h3,
    .integration-feature h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    /* Center value proposition cards on mobile */
    .value-card {
        text-align: center;
    }

    .value-card .value-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .value-card .value-highlights {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Card body text */
    .value-card p,
    .tech-feature p,
    .field-feature p,
    .service-card p,
    .integration-feature p,
    .value-highlights li {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Consistent grids */
    .field-features-grid,
    .partner-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Icons */
    .value-icon,
    .service-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon-small {
        width: 48px;
        height: 48px;
    }

    .integration-header h3 {
        font-size: 1.5rem;
    }

    .relational-features {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Section container */
    .section-container {
        padding: 2rem 1rem;
    }

    /* Typography - smaller but consistent */
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    /* Grids */
    .tech-features-grid,
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cards - consistent padding */
    .value-card,
    .tech-feature,
    .field-feature,
    .service-card {
        padding: 1.25rem;
    }

    /* Ensure value cards stay centered on small screens */
    .value-card {
        text-align: center;
    }

    .value-card .value-highlights {
        max-width: 280px;
    }

    /* Icons - consistent sizes */
    .value-icon,
    .tech-feature .feature-icon {
        width: 56px;
        height: 56px;
    }

    .value-icon svg,
    .tech-feature .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-icon-small {
        width: 44px;
        height: 44px;
    }

    .feature-icon-small svg {
        width: 26px;
        height: 26px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Relational items */
    .relational-item {
        padding: 1rem;
    }

    .relational-item span {
        font-size: 1rem;
    }

    .relational-item svg {
        width: 24px;
        height: 24px;
    }

    /* Buttons - ensure touch targets */
    .cta-primary,
    .cta-secondary,
    .signup-button {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
    }
}

/* ============================================
   MOBILE STYLING CONSISTENCY UPDATES
   Ensures services pages match homepage mobile experience
   ============================================ */

/* Services Hero Section Mobile Enhancements */
@media (max-width: 768px) {
    .services-hero-section {
        padding: 5rem 0 2rem;
        text-align: center;
    }

    .services-hero-section .page-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .services-hero-section .page-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    /* Services Overview Section */
    .services-overview-section {
        padding: 2.5rem 0;
    }

    .services-intro {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .services-intro h2 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .services-intro p {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    /* Service Overview Cards Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-overview-card {
        padding: 1.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .service-overview-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(141, 75, 188, 0.1);
    }

    .service-overview-card .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .service-overview-card .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-overview-card h3 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .service-highlights {
        font-size: 1rem;
        line-height: 1.5;
    }

    .service-highlights li {
        margin-bottom: 0.75rem;
        padding-left: 1.75rem;
    }

    .service-cta {
        display: inline-block;
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
        font-weight: 600;
        margin-top: 1rem;
        min-height: 48px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--color-purple);
        border: 2px solid var(--color-purple);
        transition: all 0.2s ease;
    }

    .service-cta:hover {
        background: var(--color-purple);
        color: white;
        transform: translateY(-1px);
    }

    /* Why TouchStone Section Mobile */
    .why-touchstone-section {
        padding: 2.5rem 0;
    }

    .why-touchstone-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Service Detail Cards Mobile */
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-detail-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .service-detail-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .service-detail-card>p {
        font-size: 1.0625rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .service-detail-card li {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    /* Tech Features Detailed Mobile */
    .tech-feature-detailed {
        padding: 1.75rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .feature-icon-large {
        width: 72px;
        height: 72px;
        margin: 0 auto;
    }

    .feature-icon-large svg {
        width: 36px;
        height: 36px;
    }

    .feature-content h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-content p {
        font-size: 1.0625rem;
        line-height: 1.5;
    }

    /* Canvassing Hero Mobile */
    .canvassing-hero {
        padding: 1.5rem 1rem;
        margin-top: 80px;
        padding-top: 3rem;
    }

    .canvassing-hero .section-container {
        padding: 0;
    }

    .canvassing-hero .page-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .canvassing-hero .page-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    /* Form Container Mobile */
    .canvassing-form-container {
        padding: 1.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .canvassing-form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .canvassing-form-container p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-section .section-container {
        padding: 0 1rem;
    }

    .cta-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Smaller Mobile Devices (480px) */
@media (max-width: 480px) {

    /* Hero Sections */
    .services-hero-section .page-title,
    .canvassing-hero .page-title {
        font-size: 1.875rem;
    }

    .services-hero-section .page-subtitle,
    .canvassing-hero .page-subtitle {
        font-size: 1.0625rem;
    }

    /* Service Cards */
    .service-overview-card {
        padding: 1.5rem;
    }

    .service-overview-card .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-overview-card .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-overview-card h3 {
        font-size: 1.5rem;
    }

    /* Benefits */
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-card h3 {
        font-size: 1.125rem;
    }

    /* Section Titles */
    .section-title,
    .services-intro h2,
    .why-touchstone-section .section-title,
    .cta-title {
        font-size: 1.625rem;
    }

    /* Forms */
    .canvassing-form-container {
        padding: 1.5rem;
    }

    .canvassing-form-container h3 {
        font-size: 1.25rem;
    }

    /* Buttons */
    .service-cta,
    .cta-primary,
    .cta-secondary {
        font-size: 1.0625rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Touch Target Enhancements for All Interactive Elements */
@media (max-width: 768px) {

    /* Ensure all clickable elements have proper touch targets */
    a.service-cta,
    a.nav-link,
    a.mobile-menu-link,
    button,
    .cta-primary,
    .cta-secondary,
    .signup-button {
        position: relative;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        min-height: 48px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
    }

    /* Improve tap areas for small links */
    .service-highlights a,
    .service-description a {
        padding: 0.25rem 0;
        margin: -0.25rem 0;
    }
}

/* Consistent Box Shadows and Hover States */
@media (max-width: 768px) {

    /* Cards should have subtle shadows on mobile */
    .service-overview-card,
    .benefit-card,
    .service-detail-card,
    .tech-feature-detailed,
    .value-card,
    .canvassing-form-container {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease;
    }

    /* Reduce hover effects on touch devices */
    @media (hover: none) {

        .service-overview-card:hover,
        .benefit-card:hover,
        .service-detail-card:hover {
            transform: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
    }
}

/* Additional Service-Specific Mobile Styles */
@media (max-width: 768px) {

    /* Media Services Grid */
    .media-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .media-service-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    /* Media Grid Two Column - Mobile */
    .media-grid-two {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Features - Mobile */
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-group {
        margin-bottom: 1rem;
    }

    .feature-group:last-child {
        margin-bottom: 0;
    }

    /* Hero Benefits - Mobile */
    .hero-benefits {
        gap: 1rem;
    }

    .hero-benefit {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* Service Tabs - Mobile */
    .service-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 0.5rem;
    }

    .service-tab {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 0;
    }

    .service-tab.active {
        background: rgba(141, 75, 188, 0.08);
        border-bottom-color: var(--color-purple);
    }

    /* Expertise Grid - Mobile */
    .expertise-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .media-service-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .media-service-card p {
        font-size: 1.0625rem;
        line-height: 1.5;
    }

    /* Creative Services Grid */
    .creative-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .creative-service {
        padding: 1.75rem;
        text-align: center;
    }

    .creative-service h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .creative-service p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Analytics Features */
    .analytics-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .analytics-feature {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .analytics-feature h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .analytics-feature p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Partnership Benefits */
    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .partnership-benefit {
        padding: 1.5rem;
        text-align: center;
    }

    .partnership-benefit h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .partnership-benefit p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 2.5rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .pricing-price {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pricing-price span {
        font-size: 1rem;
    }

    /* Packages Grid */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    .package-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .package-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .package-price {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* Quality Control Section */
    .quality-control-section {
        padding: 2.5rem 0;
    }

    .quality-control-highlight {
        padding: 1.75rem;
        margin: 1.5rem 1rem 0;
        border-radius: 12px;
    }

    .quality-control-highlight p {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    /* Distributed Features */
    .distributed-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }

    .distributed-feature {
        padding: 1.75rem;
        border-radius: 12px;
        text-align: center;
    }

    .feature-icon-medium {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
    }

    .feature-icon-medium svg {
        width: 36px;
        height: 36px;
    }

    .distributed-feature h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .distributed-feature p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Service-specific Hero Sections */
    .service-hero-section {
        padding: 5rem 0 3rem;
        text-align: center;
    }

    /* Services Hub Section Mobile */
    .services-hub-section {
        padding: 3rem 0;
    }

    .services-hub-section .section-title {
        margin-bottom: 1rem;
    }

    .services-hub-section .section-intro {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .service-hero-section .page-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .service-hero-section .page-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    /* Integration sections */
    .integration-section {
        padding: 2.5rem 0;
    }

    .integration-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .integration-benefit {
        padding: 1.5rem;
        text-align: center;
    }

    /* Results and stats sections */
    .results-section {
        padding: 2.5rem 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .result-card {
        padding: 1.75rem;
        text-align: center;
    }

    .result-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .result-label {
        font-size: 1.125rem;
    }

    /* Service CTAs */
    .service-cta-section {
        padding: 2.5rem 0;
    }

    .service-cta-section h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .service-cta-section p {
        font-size: 1.125rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Smaller Mobile Devices - Service Specific */
@media (max-width: 480px) {

    /* Reduce padding on smaller screens */
    .media-service-card,
    .creative-service,
    .analytics-feature,
    .partnership-benefit,
    .pricing-card,
    .package-card,
    .distributed-feature,
    .quality-control-highlight {
        padding: 1.5rem;
    }

    /* Smaller headings */
    .media-service-card h3,
    .creative-service h3,
    .analytics-feature h3,
    .partnership-benefit h3,
    .distributed-feature h3 {
        font-size: 1.125rem;
    }

    /* Smaller body text */
    .media-service-card p,
    .creative-service p,
    .analytics-feature p,
    .partnership-benefit p,
    .distributed-feature p,
    .quality-control-highlight p {
        font-size: 0.9375rem;
    }

    /* Pricing adjustments */
    .pricing-card h3,
    .package-card h3 {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }

    /* Icons */
    .feature-icon-medium {
        width: 56px;
        height: 56px;
    }

    .feature-icon-medium svg {
        width: 32px;
        height: 32px;
    }

    /* Section spacing */
    .quality-control-section,
    .pricing-section,
    .service-cta-section,
    .results-section,
    .integration-section {
        padding: 2rem 0;
    }
}

/* ============================================
   CANVASSING PAGE MOBILE STYLING
   Ensures canvassing page matches mobile consistency
   ============================================ */

/* Services Grid Overview Mobile */
@media (max-width: 768px) {
    .services-grid-overview {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 1rem;
    }

    .service-overview-item {
        flex: 1 1 100%;
        min-width: unset;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.25rem;
        background: var(--color-card-bg);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }

    .service-overview-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-icon-small {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon-small svg {
        width: 28px;
        height: 28px;
    }

    .service-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }

    .service-content p {
        font-size: 0.9375rem;
        line-height: 1.5;
        color: var(--color-text-light);
    }

    .services-footer {
        font-size: 1.0625rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    /* Tech Features Detailed Mobile */
    .canvassing-tech-section {
        padding: 2.5rem 0;
    }

    .tech-features-detailed {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .tech-feature-detailed {
        padding: 1.75rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .tech-feature-detailed:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .feature-icon-large {
        width: 72px;
        height: 72px;
        margin: 0 auto;
    }

    .feature-icon-large svg {
        width: 40px;
        height: 40px;
    }

    .feature-content h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-content>p {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
    }

    .feature-benefits {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .feature-benefits li {
        margin-bottom: 0.625rem;
        padding-left: 1.5rem;
    }

    /* Distributed Canvassing Mobile */
    .distributed-canvassing-section {
        padding: 2.5rem 0;
    }

    .distributed-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .distributed-feature {
        padding: 1.75rem;
        background: var(--color-card-bg);
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .feature-icon-medium {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-icon-medium svg {
        width: 36px;
        height: 36px;
        color: white;
    }

    .distributed-feature h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .distributed-feature p {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--color-text-light);
    }

    .distributed-footer {
        font-size: 1.0625rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    /* Field Services Section Mobile */
    .field-services-section {
        padding: 2.5rem 0;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .service-detail-card {
        padding: 1.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .service-detail-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-detail-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .service-detail-card>p {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: var(--color-text-light);
    }

    .service-detail-card ul {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .service-detail-card li {
        margin-bottom: 0.625rem;
        padding-left: 1.5rem;
    }

    /* Canvassing Form Container Enhanced Mobile */
    .canvassing-hero .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .hero-text-content {
        text-align: center;
        margin-bottom: 0;
        padding: 0 1rem;
    }

    .canvassing-form-container {
        max-width: none;
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .canvassing-form-container .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .canvassing-form-container .form-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .canvassing-form .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .canvassing-form .form-group {
        margin-bottom: 1.25rem;
    }

    .canvassing-form input,
    .canvassing-form select {
        min-height: 48px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #ddd;
        width: 100%;
    }

    .canvassing-form select {
        background-position: right 0.75rem center;
        background-size: 20px;
    }

    .form-submit-button {
        min-height: 56px;
        font-size: 1.125rem;
        font-weight: 600;
        padding: 1.25rem 2rem;
        margin-top: 1rem;
        width: 100%;
        border-radius: 8px;
    }

    /* Section Spacing and Typography */
    .services-overview-section,
    .quality-control-section,
    .canvassing-tech-section,
    .distributed-canvassing-section,
    .field-services-section,
    .service-cta-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .section-intro {
        font-size: 1.125rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* Service CTA Section Mobile */
    .service-cta-section h2 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .service-cta-section p {
        font-size: 1.125rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Smaller Mobile Devices - Canvassing Specific */
@media (max-width: 480px) {

    /* Canvassing Hero Section */
    .canvassing-hero {
        padding: 1rem;
        margin-top: 70px;
        padding-top: 2.5rem;
    }

    .canvassing-hero .hero-content-wrapper {
        gap: 1rem;
    }

    .hero-text-content {
        padding: 0;
    }

    .canvassing-hero .page-title {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }

    .canvassing-hero .page-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }

    /* Service Overview Items */
    .service-overview-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .service-icon-small {
        width: 44px;
        height: 44px;
    }

    .service-icon-small svg {
        width: 24px;
        height: 24px;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.875rem;
    }

    /* Tech Features */
    .tech-feature-detailed {
        padding: 1.5rem;
    }

    .feature-icon-large {
        width: 64px;
        height: 64px;
    }

    .feature-icon-large svg {
        width: 36px;
        height: 36px;
    }

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

    .feature-content>p {
        font-size: 1rem;
    }

    .feature-benefits {
        font-size: 0.875rem;
    }

    /* Distributed Features */
    .distributed-feature {
        padding: 1.5rem;
    }

    .feature-icon-medium {
        width: 56px;
        height: 56px;
    }

    .feature-icon-medium svg {
        width: 32px;
        height: 32px;
    }

    .distributed-feature h3 {
        font-size: 1.125rem;
    }

    .distributed-feature p {
        font-size: 0.9375rem;
    }

    /* Service Detail Cards */
    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-card h3 {
        font-size: 1.25rem;
    }

    .service-detail-card>p {
        font-size: 1rem;
    }

    .service-detail-card ul {
        font-size: 0.875rem;
    }

    /* Form Container */
    .canvassing-form-container {
        padding: 2rem 1.5rem;
    }

    .canvassing-form-container .form-header h3 {
        font-size: 1.5rem;
    }

    .canvassing-form-container .form-header p {
        font-size: 1rem;
    }

    .form-submit-button {
        font-size: 1.125rem;
        min-height: 56px;
        padding: 1.25rem 2rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.625rem;
    }

    .section-intro {
        font-size: 1.0625rem;
    }

    .services-footer,
    .distributed-footer {
        font-size: 1rem;
    }

    /* Spacing Adjustments */
    .services-overview-section,
    .quality-control-section,
    .canvassing-tech-section,
    .distributed-canvassing-section,
    .field-services-section,
    .service-cta-section {
        padding: 2rem 0;
    }
}

/* Touch-Friendly Enhancements for Canvassing Page */
@media (max-width: 768px) {

    /* Ensure all interactive elements have proper touch targets */
    .service-overview-item,
    .tech-feature-detailed,
    .distributed-feature,
    .service-detail-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Form elements touch optimization */
    .canvassing-form input,
    .canvassing-form select,
    .form-submit-button {
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Reduce hover effects on touch devices */
    @media (hover: none) {

        .service-overview-item:hover,
        .tech-feature-detailed:hover,
        .distributed-feature:hover,
        .service-detail-card:hover {
            transform: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
    }
}

/* ============================================
   MEDIA PAGE MOBILE STYLING
   Ensures media page matches canvassing mobile consistency
   ============================================ */

/* Media Hero Section Mobile */
@media (max-width: 768px) {
    .media-hero-enhanced {
        margin-top: 85px;
        /* Account for mobile fixed header with extra breathing room */
        padding: 3rem 0 2rem;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .media-hero-enhanced .section-container {
        padding: 0 1.5rem;
    }

    .media-hero-enhanced .page-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }

    .media-hero-enhanced .page-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Hero Benefits Mobile */
    .hero-benefits {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .hero-benefit {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
}

/* Media Services Sections Mobile */
@media (max-width: 768px) {

    /* Partner Benefits Section */
    .partner-benefits-section {
        padding: 3.5rem 0;
    }

    .partner-benefits-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .partner-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .benefit-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 1rem;
    }

    .benefit-icon svg {
        width: 36px;
        height: 36px;
    }

    .benefit-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .benefit-card p {
        font-size: 1.0625rem;
        line-height: 1.6;
    }
}

/* Expertise Section Mobile */
@media (max-width: 768px) {
    .expertise-section {
        padding: 3rem 1rem;
        border-top: 1px solid #e9ecef;
    }

    .expertise-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .expertise-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .expertise-item {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: var(--color-card-bg);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .expertise-item svg {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        padding: 1rem;
    }

    .expertise-item h4 {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }

    .expertise-item p {
        font-size: 0.9375rem;
        line-height: 1.5;
        color: var(--color-text-light);
    }
}

/* Media Service Cards Mobile Enhancement */
@media (max-width: 768px) {
    .media-services-grid {
        padding: 0;
        gap: 2rem;
    }

    .media-service-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background: white;
    }

    .media-service-card .service-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .media-service-card .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .media-service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .media-service-card>p {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-features {
        gap: 1.5rem;
    }

    .feature-group h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
        color: var(--color-purple);
    }

    .feature-group ul {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .feature-group li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }
}

/* Service Tabs Mobile Enhancement */
@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 0.75rem;
        padding: 0 1rem;
        margin: 2rem 0 2.5rem;
    }

    .service-tab {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1.25rem 1.5rem;
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 0;
        font-size: 1.0625rem;
        min-height: 52px;
        border-radius: 8px;
    }

    .service-tab svg {
        width: 24px;
        height: 24px;
    }

    .service-tab.active {
        background: rgba(141, 75, 188, 0.08);
        border-bottom-color: var(--color-purple);
        font-weight: 700;
    }
}

/* Creative Services Mobile */
@media (max-width: 768px) {
    .creative-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .creative-service {
        padding: 1.75rem;
        text-align: center;
    }

    .creative-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
    }

    .creative-icon svg {
        width: 32px;
        height: 32px;
    }

    .creative-service h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .creative-service p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Analytics Features Mobile */
@media (max-width: 768px) {
    .analytics-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .analytics-feature {
        padding: 1.5rem;
    }

    .analytics-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .analytics-icon svg {
        width: 28px;
        height: 28px;
    }

    .analytics-feature h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .analytics-feature p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
}

/* Touch Targets for Media Page */
@media (max-width: 768px) {

    /* Ensure all interactive elements have proper touch targets */
    .service-tab,
    .media-service-card,
    .expertise-item,
    .benefit-card,
    .creative-service,
    .analytics-feature {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Links within content */
    .page-subtitle a,
    .expertise-item a,
    .benefit-card a {
        display: inline-block;
        padding: 0.25rem 0;
        margin: -0.25rem 0;
        min-height: 44px;
        line-height: 44px;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {

        .media-service-card:hover,
        .expertise-item:hover,
        .benefit-card:hover {
            transform: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
    }
}

/* Smaller Mobile Devices - Media Page */
@media (max-width: 480px) {

    /* Media Hero Adjustments */
    .media-hero-enhanced {
        margin-top: 75px;
        /* Account for smaller mobile fixed header with extra breathing room */
        padding: 2.5rem 0 1.5rem;
    }

    .media-hero-enhanced .page-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .media-hero-enhanced .page-subtitle {
        font-size: 1.0625rem;
        line-height: 1.5;
    }

    /* Expertise Section */
    .expertise-section {
        padding: 1.5rem 1rem;
    }

    .expertise-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .expertise-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .expertise-item svg {
        width: 48px;
        height: 48px;
        padding: 0.875rem;
    }

    .expertise-item h4 {
        font-size: 1.0625rem;
    }

    .expertise-item p {
        font-size: 0.875rem;
    }

    /* Service Cards */
    .media-service-card {
        padding: 1.5rem;
    }

    .media-service-card .service-icon {
        width: 64px;
        height: 64px;
    }

    .media-service-card h3 {
        font-size: 1.375rem;
    }

    .media-service-card>p {
        font-size: 1rem;
    }

    /* Benefit Cards */
    .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    /* Service Tabs */
    .service-tab {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    /* Section Spacing */
    .partner-benefits-section,
    .services-hub-section,
    .service-cta-section {
        padding: 3rem 0;
    }

    /* CTA Section Mobile */
    .service-cta-section h2 {
        margin-bottom: 1rem;
    }

    .service-cta-section p {
        margin-bottom: 1.5rem;
    }

    .service-cta-section .cta-buttons {
        gap: 1rem;
    }
}

/* About Page Hero Styles */
.hero-about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-about .hero-content {
    flex: 1;
}

.hero-logo-wrapper {
    flex-shrink: 0;
}

.hero-logo {
    width: 300px;
    height: auto;
    display: block;
}

/* Mobile Styles for About Hero */
@media (max-width: 768px) {
    .hero-about-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-about .hero-content {
        order: 2;
    }

    .hero-logo-wrapper {
        order: 1;
    }

    .hero-logo {
        width: 200px;
        max-width: 70vw;
        margin: 0 auto;
    }

    .hero-about .hero-title {
        text-align: center;
    }

    .hero-about .hero-subtitle {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 150px;
    }

    .hero-about-container {
        gap: 1.5rem;
    }
}