/* ========================================
   MOBILELINK - Clean Professional CSS
   ======================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #6366f1;
    
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #111827;
    
    --border: #e5e7eb;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    height: 65px;
    width: auto;
    border-radius: var(--radius-sm);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.2s;
}

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

.header-cta {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-gray);
    border-color: var(--text-light);
}

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

.btn-white:hover {
    background: var(--bg-gray);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 155px 0 80px;
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 50%, #f5f0ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-text {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0;
}

.section-gray {
    background: var(--bg-gray);
}

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

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-text {
    font-size: 18px;
    color: var(--text-medium);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(99,102,241,0.03));
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    font-size: 14px;
    color: var(--text-medium);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ===== TABS (Case Studies) ===== */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--text-light);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tab-panel {
    display: none;
}

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

.case-content {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.case-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.case-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-content p {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 32px;
}

.case-metrics {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.metric-text {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-text {
    font-size: 14px;
    color: var(--text-medium);
}

.discount {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: var(--radius-full);
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
}

.plan-price .amount.custom {
    font-size: 28px;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.plan-features {
    text-align: left;
    margin-bottom: 24px;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-medium);
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
}

.contact-icon {
    font-size: 20px;
}

.contact-form {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 32px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 280px;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: 135px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-medium);
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

.dropdown-menu li a.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ===== MARKETING POLÍTICO SECTION ===== */
.section-political {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2847 100%);
    color: white;
}

.section-political .section-tag {
    color: #fbbf24;
}

.section-political .section-title {
    color: white;
}

.section-political .section-text {
    color: rgba(255,255,255,0.8);
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.highlight-content p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.political-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.political-card {
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.political-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.political-card.featured {
    background: rgba(255,255,255,0.15);
    border-color: rgba(251, 191, 36, 0.5);
}

.political-card .badge {
    background: #fbbf24;
    color: #1e3a5f;
}

.political-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.political-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.political-card ul {
    margin-bottom: 16px;
}

.political-card li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.political-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

.card-metric {
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    margin-top: 16px;
}

.metric-big {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
}

.experience-box {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 32px;
}

.experience-box h3 {
    margin-bottom: 32px;
    font-size: 24px;
}

.experience-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.exp-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fbbf24;
}

.exp-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* ===== AGENTES IA GRID ===== */
.ia-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.ia-agent-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.ia-agent-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ia-agent-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(99,102,241,0.03));
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.agent-icon {
    font-size: 32px;
}

.agent-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.agent-desc {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.agent-benefits h4,
.agent-usecases h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.agent-benefits ul {
    margin-bottom: 16px;
}

.agent-benefits li {
    font-size: 13px;
    color: var(--text-medium);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.agent-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.agent-usecases {
    margin-bottom: 16px;
}

.agent-usecases .tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-gray);
    color: var(--text-medium);
    font-size: 12px;
    border-radius: var(--radius-full);
    margin-right: 6px;
    margin-bottom: 6px;
}

.agent-metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

.am-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.am-text {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.service-detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.service-detail-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.service-detail-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-detail-header p {
    font-size: 16px;
    color: var(--text-medium);
}

.service-subsections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.subsection-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: 24px;
}

.subsection-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.subsection-card ul li {
    font-size: 14px;
    color: var(--text-medium);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.subsection-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== POLITICAL PRICING BOX ===== */
.political-pricing {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2847 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.political-pricing h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.political-pricing p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* ===== CONTACT SERVICES ===== */
.contact-services {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.contact-services h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-services li {
    font-size: 14px;
    color: var(--text-medium);
    padding: 6px 0;
}

/* ===== FORM SELECT ===== */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== FEATURES GRID 6 COLUMNS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
    .political-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid {
        gap: 32px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
        background: transparent;
    }
}

@media (max-width: 768px) {
    .political-services {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .agent-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .ia-agents-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
