/* Cannabis Dispensary SEO Landing Page Styles */
/* Brand Colors: Deep Blue #172B42, Orange #E05E0F, Teal #4D9A88, White #FFFFFF */

:root {
    --primary-blue: #0A0A0B;
    --accent-orange: #FF6B35;
    --highlight-teal: #00D4AA;
    --text-white: #FFFFFF;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
    --success-green: #00D4AA;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Cross-browser compatibility */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html {
    overflow-x: hidden;
    width: 100%;
}



/* Cross-browser reset and compatibility */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Internet Explorer 11 compatibility */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hero-stats {
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
    }
    
    .btn {
        display: -ms-inline-flexbox;
    }
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    select, 
    textarea {
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    .btn {
        -webkit-appearance: none;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: -webkit-linear-gradient(135deg, var(--primary-blue) 0%, #1a1a1b 100%);
    background: -moz-linear-gradient(135deg, var(--primary-blue) 0%, #1a1a1b 100%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1a1b 100%);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    /* Cross-browser compatibility */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #c54e0a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--highlight-teal);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: #3a7a6b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight-teal);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1a1b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%234D9A88" stop-opacity="0.1"/><stop offset="100%" stop-color="%234D9A88" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23g)"/><circle cx="800" cy="300" r="200" fill="url(%23g)"/><circle cx="400" cy="700" r="180" fill="url(%23g)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(77, 154, 136, 0.1);
    border: 1px solid var(--highlight-teal);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.badge-text {
    font-weight: 700;
    color: var(--highlight-teal);
    font-size: 1.1rem;
}

.badge-proof {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.hero-trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--highlight-teal);
}

/* Sections */
section {
    padding: 40px 0;
    background: #1a1a1b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Definition Section */
.definition-section {
    background: rgba(77, 154, 136, 0.1);
    border-top: 1px solid rgba(77, 154, 136, 0.2);
    border-bottom: 1px solid rgba(77, 154, 136, 0.2);
}

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

.definition-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--highlight-teal);
}

.entity-relationships h3 {
    color: var(--highlight-teal);
    margin-bottom: 2rem;
    text-align: center;
}

.relationships-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.relationship {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-wrap: wrap;
}

.entity {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--highlight-teal);
    font-weight: 600;
}

.arrow {
    color: var(--accent-orange);
    font-weight: bold;
}

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

.component {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.component i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #1a1a1b 0%, var(--primary-blue) 100%);
}

.problem-badge {
    display: inline-block;
    background: var(--danger-red);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.cost-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
}

.cost-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger-red);
    display: block;
    margin-bottom: 0.5rem;
}

.cost-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.failure-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--danger-red);
}

.failure-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.failure-icon i {
    font-size: 2.5rem;
    color: var(--danger-red);
}

.failure-category h4 {
    color: var(--danger-red);
    margin-bottom: 1rem;
}

.failure-category ul {
    list-style: none;
}

.failure-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.failure-category li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-red);
    font-weight: bold;
}

/* Industry Insights Section */
.industry-insights-section {
    background: rgba(77, 154, 136, 0.03);
    border-top: 1px solid rgba(77, 154, 136, 0.1);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--highlight-teal);
    transition: transform 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.metric-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin: 1rem 0;
}

.metric-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.analysis-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.analysis-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-teal);
    font-weight: bold;
}

/* Search Behavior */
.behavior-insights {
    margin-top: 3rem;
}

.behavior-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.search-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-term {
    font-weight: 600;
    color: var(--text-white);
    font-family: monospace;
    background: rgba(77, 154, 136, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.search-volume {
    color: var(--accent-orange);
    font-weight: 600;
}

.search-intent {
    color: var(--highlight-teal);
    font-size: 0.9rem;
}

.decision-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.factor {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.factor-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.factor-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.seasonal-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.season {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-top: 3px solid var(--highlight-teal);
}

.season h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.season ul {
    list-style: none;
}

.season li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Regulatory Landscape */
.regulatory-content {
    margin-top: 2rem;
}

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

.reg-column {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--accent-orange);
}

.reg-column h5 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.compliance-requirements {
    margin-top: 3rem;
}

.state-requirements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.state-category {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--highlight-teal);
}

.state-category h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.state-category p {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Market Opportunities */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opportunity {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--success-green);
    transition: transform 0.3s ease;
}

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

.opp-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.growth-rate {
    background: var(--success-green);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.market-value {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.seo-opportunities {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.opportunity-tag {
    background: rgba(77, 154, 136, 0.2);
    color: var(--highlight-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* AI Agents Section */
.ai-agents-section {
    background: rgba(224, 94, 15, 0.03);
    border-top: 1px solid rgba(224, 94, 15, 0.1);
}

.agents-overview {
    margin-top: 2rem;
}

.agents-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.agent-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.category-header h3 {
    color: var(--accent-orange);
    margin: 0;
}

.category-header p {
    margin: 0.5rem 0 0 0;
    color: var(--text-light);
}

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

.agent-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--highlight-teal);
    transition: transform 0.3s ease;
    position: relative;
}

.agent-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.agent-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-orange);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.agent-card h4 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.agent-description ul {
    list-style: none;
    margin-bottom: 1rem;
}

.agent-description li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.agent-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-teal);
    font-weight: bold;
}

.agent-output {
    background: rgba(77, 154, 136, 0.1);
    border: 1px solid rgba(77, 154, 136, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.agent-output strong {
    color: var(--highlight-teal);
}

/* Technical Section */
.technical-section {
    background: rgba(10, 10, 11, 0.3);
}

.tech-category {
    margin-bottom: 4rem;
}

.tech-category h3 {
    color: var(--accent-orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-category h3 i {
    font-size: 1.5rem;
}

.tech-overview {
    margin-bottom: 2rem;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-top: 3px solid var(--highlight-teal);
}

.metric-name {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.code-example {
    margin: 2rem 0;
}

.code-example h4 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.code-example pre {
    background: #1a1a1a;
    border: 1px solid rgba(77, 154, 136, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-example code {
    color: #f8f8f2;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.checklist-item input[type="checkbox"] {
    accent-color: var(--highlight-teal);
}

.checklist-item i {
    color: var(--success-green);
    font-size: 1.1rem;
}

/* Content Strategy Section */
.content-strategy-section {
    background: rgba(77, 154, 136, 0.02);
}

.strategy-category {
    margin-bottom: 4rem;
}

.strategy-category h3 {
    color: var(--highlight-teal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.pillar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--accent-orange);
}

.pillar-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.pillar h4 {
    color: var(--accent-orange);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pillar-content h5 {
    color: var(--highlight-teal);
    margin: 1.5rem 0 0.5rem 0;
}

.pillar-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.pillar-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pillar-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--highlight-teal);
    font-weight: bold;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem 0;
}

.keyword-tag {
    background: rgba(77, 154, 136, 0.2);
    color: var(--highlight-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: monospace;
}

/* ROI Calculator */
.calculator-section {
    background: rgba(224, 94, 15, 0.05);
    border-top: 1px solid rgba(224, 94, 15, 0.2);
    border-bottom: 1px solid rgba(224, 94, 15, 0.2);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
}

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

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    /* Cross-browser compatibility */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: var(--highlight-teal);
    box-shadow: 0 0 0 2px rgba(77, 154, 136, 0.2);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--highlight-teal);
}

.result-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.result-label {
    font-weight: 600;
    color: var(--text-light);
}

.result-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.result-value.highlight {
    color: var(--accent-orange);
    font-size: 1.4rem;
}

.result-value.success {
    color: var(--success-green);
    font-size: 1.4rem;
}

.roi-breakdown {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-item.highlight {
    font-weight: 700;
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Contact Section */
.contact-section {
    background: rgba(10, 10, 11, 0.4);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--highlight-teal);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.contact-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 0.5rem 0;
}

.contact-hours, .contact-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.audit-form {
    max-width: 800px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(77, 154, 136, 0.2);
}

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

.form-header h3 {
    color: var(--highlight-teal);
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.audit-form-fields input,
.audit-form-fields select,
.audit-form-fields textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
}

.audit-form-fields input:focus,
.audit-form-fields select:focus,
.audit-form-fields textarea:focus {
    outline: none;
    border-color: var(--highlight-teal);
    box-shadow: 0 0 0 2px rgba(77, 154, 136, 0.2);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    border-top: 1px solid rgba(77, 154, 136, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--highlight-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(77, 154, 136, 0.2);
    color: var(--highlight-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--highlight-teal);
    color: var(--text-white);
    transform: translateY(-2px);
}

.contact-info {
    color: var(--text-light);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--highlight-teal);
    width: 16px;
}

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

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cert {
    background: rgba(77, 154, 136, 0.2);
    color: var(--highlight-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Mobile Responsiveness */
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .roi-calculator {
        grid-template-columns: 1fr;
    }
    
    .relationships-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Navigation */
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 48px; /* Better touch target */
        touch-action: manipulation; /* Prevent zoom on tap */
    }
    
    .hero-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grid Layouts */
    .components-grid,
    .analysis-grid,
    .agents-grid,
    .failure-grid,
    .opportunities-grid,
    .pillars-grid,
    .resource-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .costs-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cost-stat {
        padding: 1.5rem 1rem;
    }
    
    .cost-number {
        font-size: 2rem;
    }
    
    /* Calculator */
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 1.5rem;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .audit-form {
        padding: 2rem 1.5rem;
    }
    
    /* Contact */
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Prevent horizontal scroll elements */
    pre, code, .code-example {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-wrap: break-word !important;
    }
    
    img, video {
        max-width: 100% !important;
        height: auto !important;
    }
    
    table {
        width: 100% !important;
        table-layout: fixed !important;
        overflow-x: auto !important;
        display: block !important;
        white-space: nowrap !important;
    }
    
    /* Technical sections */
    .targeting-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .state-compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-comparison {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    /* Code examples */
    .code-example pre {
        font-size: 0.8rem;
        padding: 1rem;
        overflow-x: auto;
    }
    
    /* FAQ */
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-ctas {
        padding: 0 10px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Cards and components */
    .component,
    .agent-card,
    .analysis-card,
    .failure-category,
    .opportunity,
    .pillar {
        padding: 1.5rem 1rem;
    }
    
    /* Cost stats single column on very small screens */
    .costs-stats {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .audit-form {
        padding: 1.5rem 1rem;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Calculator */
    .calculator-form,
    .calculator-results {
        padding: 1rem;
    }
    
    /* Contact */
    .contact-method {
        padding: 1.5rem 1rem;
    }
    
    /* Footer */
    .footer-content {
        text-align: center;
    }
    
    .footer-certifications {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cert {
        font-size: 0.75rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .faq-question {
        min-height: 44px;
    }
}

/* Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--highlight-teal);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--highlight-teal);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000000;
        --text-white: #ffffff;
        --accent-orange: #ff6600;
        --highlight-teal: #00ffcc;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Local SEO Section */
.local-seo-section {
    background: rgba(77, 154, 136, 0.04);
}

.local-category {
    margin-bottom: 4rem;
}

.local-category h3 {
    color: var(--highlight-teal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.targeting-framework {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.targeting-level {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.targeting-level h5 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.targeting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.strategy-elements h6,
.keyword-targets h6 {
    color: var(--highlight-teal);
    margin: 1rem 0 0.5rem 0;
}

.keyword-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.neighborhood-examples ul {
    list-style: none;
}

.neighborhood-examples li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.micro-examples ul {
    list-style: none;
}

.micro-examples li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Compliance Section */
.compliance-section {
    background: rgba(224, 94, 15, 0.04);
}

.compliance-category {
    margin-bottom: 4rem;
}

.compliance-category h3 {
    color: var(--accent-orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-framework {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.law-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--danger-red);
}

.law-category h5 {
    color: var(--danger-red);
    margin-bottom: 1rem;
}

.law-content p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.seo-implications,
.compliance-strategies {
    margin: 1.5rem 0;
}

.seo-implications h6,
.compliance-strategies h6 {
    color: var(--highlight-teal);
    margin-bottom: 0.75rem;
}

.prohibited-list,
.compliant-list {
    list-style: none;
    margin: 1rem 0;
}

.prohibited-list li,
.compliant-list li {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 4px;
}

.prohibited-list li {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-red);
    border-left: 3px solid var(--danger-red);
}

.compliant-list li {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border-left: 3px solid var(--success-green);
}

/* Consumer Psychology Section */
.consumer-psychology-section {
    background: rgba(77, 154, 136, 0.03);
}

.psychology-category {
    margin-bottom: 4rem;
}

.psychology-category h3 {
    color: var(--highlight-teal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.psychological-factors {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.factor-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.factor-group h4 {
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.factor-analysis {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factor-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 2px solid var(--highlight-teal);
}

.factor-item h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.factor-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.importance-score {
    background: var(--success-green);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.seo-opportunity {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.optimization-strategies {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.optimization-strategies h6 {
    color: var(--highlight-teal);
    margin-bottom: 0.5rem;
}

.education-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.education-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.education-opportunities {
    grid-column: 1 / -1;
    background: rgba(77, 154, 136, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight-teal);
}

.education-opportunities h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

/* Advanced FAQ Section */
.advanced-faq-section {
    background: rgba(10, 10, 11, 0.2);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--highlight-teal);
}

.faq-category h3 {
    color: var(--highlight-teal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(77, 154, 136, 0.1);
}

.faq-question h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--highlight-teal);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.state-compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.compliance-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-orange);
}

.compliance-tier h5 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.differentiation-comparison {
    margin: 2rem 0;
}

.comparison-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.comparison-category h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
    text-align: center;
}

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

.us-approach,
.typical-approach {
    padding: 1rem;
    border-radius: 8px;
}

.us-approach {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success-green);
}

.typical-approach {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid var(--danger-red);
}

.us-approach h6 {
    color: var(--success-green);
    margin-bottom: 0.5rem;
}

.typical-approach h6 {
    color: var(--danger-red);
    margin-bottom: 0.5rem;
}

.results-comparison {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(77, 154, 136, 0.1);
    border-radius: 8px;
    border: 1px solid var(--highlight-teal);
}

.results-comparison h5 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
    text-align: center;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-comparison {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    align-items: center;
}

.metric-name {
    font-weight: 600;
    color: var(--text-white);
}

.our-result {
    color: var(--success-green);
    font-weight: 700;
    text-align: center;
}

.typical-result {
    color: var(--danger-red);
    font-weight: 600;
    text-align: center;
}

/* Additional Technical Section Styles */
.link-building-tiers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--success-green);
}

.tier h5 {
    color: var(--success-green);
    margin-bottom: 1rem;
}

.tier-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.authority-sources,
.local-sources,
.partnership-sources {
    margin-bottom: 1rem;
}

.source-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tier-result {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--success-green);
    font-weight: 600;
}

.link-quality-standards {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.quality-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.quality-requirement {
    padding: 1rem;
    background: rgba(77, 154, 136, 0.1);
    border-radius: 6px;
    color: var(--highlight-teal);
    font-size: 0.9rem;
}

.velocity-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.velocity-phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.phase-period {
    color: var(--accent-orange);
    font-weight: 600;
}

.phase-target {
    color: var(--text-light);
}

/* Voice Search Optimization Styles */
.voice-optimization {
    margin-top: 2rem;
}

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

.query-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid var(--accent-orange);
}

.query-category h6 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.voice-query-list {
    list-style: none;
}

.voice-query-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.voice-query-list li::before {
    content: '🎤';
    position: absolute;
    left: 0;
}

.voice-search-schema {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(77, 154, 136, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(77, 154, 136, 0.2);
}

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

.ai-strategy {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight-teal);
}

.ai-strategy h6 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

/* Performance Monitoring Styles */
.monitoring-system {
    margin-top: 2rem;
}

.tracking-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tracking-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--warning-yellow);
}

.tracking-category h5 {
    color: var(--warning-yellow);
    margin-bottom: 1.5rem;
}

.kpi-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kpi-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid var(--accent-orange);
    color: var(--text-light);
}

.kpi-item strong {
    color: var(--accent-orange);
}

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

.attribution-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid var(--highlight-teal);
}

.attribution-item h6 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.dashboard-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--success-green);
}

.dashboard-section h6 {
    color: var(--success-green);
    margin-bottom: 1rem;
}

/* Resources Section */
.resources-section {
    background: rgba(77, 154, 136, 0.05);
}

.resource-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.resource-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--accent-orange);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.category-header h3 {
    color: var(--accent-orange);
    margin: 0;
}

.category-header p {
    margin: 0.5rem 0 0 0;
    color: var(--text-light);
}

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

.resource-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--highlight-teal);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.resource-icon {
    font-size: 2rem;
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.resource-item h4 {
    color: var(--highlight-teal);
    margin-bottom: 1rem;
}

.resource-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.resource-type,
.resource-pages,
.resource-value {
    background: rgba(77, 154, 136, 0.2);
    color: var(--highlight-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-value {
    background: rgba(224, 94, 15, 0.2);
    color: var(--accent-orange);
}

.resource-topics {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.tool-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--success-green);
    text-align: center;
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.tool-item h4 {
    color: var(--success-green);
    margin-bottom: 1rem;
}

.tool-features {
    margin: 1.5rem 0;
    text-align: left;
}

.tool-features ul {
    list-style: none;
}

.tool-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

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

.tool-cta {
    margin-top: 1.5rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.report-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border-top: 4px solid var(--warning-yellow);
    transition: transform 0.3s ease;
}

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

.report-cover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    padding: 2rem;
    text-align: center;
}

.report-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.report-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.report-details {
    padding: 2rem;
}

.report-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-ctas,
    .contact-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}