/* ERC Defense Site - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --accent: #3b82f6;
    --danger: #dc2626;
    --danger-light: #fef2f2;
    --success: #16a34a;
    --text: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #fdfdfd;
    --bg-gray: #f9fafb;
    --bg-dark: #0a0a0a;
    --border: rgba(0,0,0,0.08);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-sm {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container, .container-sm {
        padding: 0 1.5rem;
    }
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Border Utility */
.border-subtle {
    border: 1px solid var(--border);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== */
/* NAVIGATION           */
/* ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 70px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .nav {
        height: 80px;
    }
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 1.5rem;
    }
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

@media (min-width: 640px) {
    .nav-logo {
        font-size: 1.25rem;
    }
}

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

/* Desktop Nav Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Nav CTA area */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .nav-cta {
        gap: 1rem;
    }
}

.nav-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-phone:hover {
    color: var(--text);
}

@media (min-width: 768px) {
    .nav-phone {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 45;
    padding: 1.5rem;
    overflow-y: auto;
}

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

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
}

.mobile-menu-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-cta a {
    border-bottom: none;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    padding: 0.5rem 0;
}

.mobile-phone:hover {
    color: var(--primary);
}

/* ==================== */
/* NAV DROPDOWNS        */
/* ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

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

.nav-dropdown-trigger svg {
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.active .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.15s;
}

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

/* Mega Menu */
.nav-dropdown-mega {
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.25rem;
}

.nav-dropdown-col {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 0 0 0.5rem 0;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
}

.nav-dropdown-mega a {
    padding: 0.4rem 0;
    font-size: 0.8rem;
}

/* Mobile Accordion */
.mobile-accordion {
    border-bottom: 1px solid var(--border);
}

.mobile-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.mobile-accordion-trigger::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s;
}

.mobile-accordion.active .mobile-accordion-trigger::after {
    content: '−';
}

.mobile-accordion-content {
    display: none;
    padding-bottom: 1rem;
}

.mobile-accordion.active .mobile-accordion-content {
    display: block;
}

.mobile-accordion-content a {
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: none !important;
}

.mobile-accordion-content a:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .nav-dropdown-mega {
        min-width: 500px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-dropdown {
        display: none;
    }
}

/* ==================== */
/* BUTTONS              */
/* ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .btn {
        padding: 0.625rem 1.5rem;
    }
}

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

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

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

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

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

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

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.8125rem;
}

@media (min-width: 640px) {
    .btn-lg {
        padding: 1.25rem 2.5rem;
        font-size: 0.875rem;
    }
}

/* ==================== */
/* URGENT BANNER        */
/* ==================== */
.urgent-banner {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--danger);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

@media (min-width: 768px) {
    .urgent-banner {
        top: 80px;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
}

.urgent-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* ==================== */
/* SECTIONS             */
/* ==================== */
.section {
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 1.5rem;
    }
}

.section-sm {
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .section-sm {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-sm {
        padding: 4rem 1.5rem;
    }
}

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

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-tag {
        padding: 0.375rem 1rem;
        margin-bottom: 1.5rem;
    }
}

.section-tag-danger {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 42rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* ==================== */
/* HERO                 */
/* ==================== */
.hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 9rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .highlight {
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta-group {
        margin-bottom: 2.5rem;
    }
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .hero-trust-badges {
        gap: 1rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ==================== */
/* LEAD FORM            */
/* ==================== */
.lead-form-card {
    background: white;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
}

@media (min-width: 640px) {
    .lead-form-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .lead-form-card {
        padding: 2.5rem;
    }
}

.lead-form-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .lead-form-badge {
        top: -1rem;
        right: 2rem;
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
}

/* ==================== */
/* FORMS                */
/* ==================== */
.form-group {
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .form-group {
        margin-bottom: 1rem;
    }
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .form-input {
        padding: 1rem 1.25rem;
    }
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--text);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .form-submit {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
}

.form-submit:hover {
    background: var(--primary);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Success/Error */
.form-success {
    padding: 1.5rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 4px;
    text-align: center;
}

.form-success h3 {
    color: #166534;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #15803d;
    font-size: 0.875rem;
}

.form-error {
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== */
/* STATS BAR            */
/* ==================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}

@media (min-width: 640px) {
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-item .stat-number {
        font-size: 3rem;
    }
}

.stat-item .stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .stat-item .stat-label {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

/* ==================== */
/* CARDS                */
/* ==================== */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .card {
        padding: 2rem;
    }
}

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

.card-dark {
    background: var(--bg-dark);
    color: white;
    border-color: rgba(255,255,255,0.1);
}

.card-danger {
    background: var(--danger-light);
    border-color: rgba(220, 38, 38, 0.2);
}

.card-primary {
    background: var(--primary);
    color: white;
    border: none;
}

/* ==================== */
/* BENTO GRID           */
/* ==================== */
.bento-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bento-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .bento-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-span-2 {
        grid-column: span 2;
    }
}

/* ==================== */
/* SERVICE CARDS        */
/* ==================== */
.service-card {
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(29, 78, 216, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .service-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .service-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .service-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 1.25rem;
    }
}

.service-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .service-desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
    .service-list li {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
}

.service-list li span {
    color: var(--primary);
}

/* ==================== */
/* COMPARISON TABLE     */
/* ==================== */
.comparison-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

@media (min-width: 640px) {
    .comparison-table {
        font-size: 0.875rem;
    }
}

.comparison-table thead {
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    padding: 1rem;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (min-width: 640px) {
    .comparison-table th {
        padding: 1.5rem 2rem;
        font-size: 0.625rem;
    }
}

.comparison-table th:nth-child(2) {
    color: var(--primary);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-gray);
}

@media (min-width: 640px) {
    .comparison-table td {
        padding: 1.5rem 2rem;
    }
}

.comparison-table td:first-child {
    font-weight: 700;
}

.comparison-table td:nth-child(2) {
    color: var(--primary);
    font-weight: 600;
}

.comparison-table td:nth-child(3) {
    color: var(--text-light);
}

/* ==================== */
/* PROCESS STEPS        */
/* ==================== */
.process-step {
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .process-step {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .process-step {
        padding: 2rem;
    }
}

.process-step:hover {
    border-color: var(--primary);
}

.process-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .process-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .process-number {
        font-size: 2.5rem;
    }
}

.process-title {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .process-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 1.125rem;
    }
}

.process-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .process-desc {
        font-size: 0.875rem;
    }
}

/* ==================== */
/* TESTIMONIALS         */
/* ==================== */
.testimonial-card {
    padding: 1.25rem;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 4px;
}

@media (min-width: 640px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

@media (min-width: 640px) {
    .testimonial-stars {
        margin-bottom: 1.5rem;
    }
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

@media (min-width: 640px) {
    .testimonial-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.25rem;
    height: 2.25rem;
    background: #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .testimonial-avatar {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.8125rem;
}

@media (min-width: 640px) {
    .testimonial-name {
        font-size: 0.875rem;
    }
}

.testimonial-role {
    font-size: 0.6875rem;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .testimonial-role {
        font-size: 0.75rem;
    }
}

/* ==================== */
/* FAQ ACCORDION        */
/* ==================== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .faq-item {
        margin-bottom: 1rem;
    }
}

.faq-item summary {
    list-style: none;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.9375rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-item summary {
        padding: 1.25rem 1.5rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .faq-item summary {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: var(--text-light);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item[open] summary span {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer {
    padding: 3rem 1rem 2rem;
    background: white;
    border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

/* Large Footer Grid */
.footer-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 900px) {
    .footer-grid-large {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1100px) {
    .footer-grid-large {
        grid-template-columns: 1.5fr repeat(7, 1fr);
        gap: 1.5rem;
    }
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
}

.footer-contact-info a {
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-brand {
    max-width: 20rem;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .footer-brand p {
        font-size: 0.875rem;
        margin-top: 1rem;
    }
}

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

@media (min-width: 640px) {
    .footer-links-group {
        grid-template-columns: repeat(3, auto);
        gap: 3rem;
    }
}

.footer-links h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

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

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

@media (min-width: 640px) {
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

@media (min-width: 640px) {
    .footer-links a {
        font-size: 0.875rem;
    }
}

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

.footer-disclaimer {
    background: var(--bg-gray);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-disclaimer {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

.footer-disclaimer h5 {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
    .footer-disclaimer h5 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

.footer-disclaimer p {
    font-size: 0.6875rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .footer-disclaimer p {
        font-size: 0.75rem;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 2rem;
        font-size: 0.75rem;
    }
}

/* ==================== */
/* UTILITY CLASSES      */
/* ==================== */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Grid utilities with responsive */
.grid {
    display: grid;
}

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

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

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .sm\:grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .md\:grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Process grid on desktop */
@media (min-width: 1024px) {
    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
}

@media (min-width: 1024px) {
    body.menu-open {
        overflow: auto;
    }
}

/* ==================== */
/* SEO PAGE STYLES      */
/* ==================== */
.hero-sm {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #eef2f9 0%, #f8fafc 100%);
}

@media (min-width: 768px) {
    .hero-sm {
        padding-top: 12rem;
        padding-bottom: 5rem;
    }
}

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

.hero-content-center .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content-center .hero-title {
        font-size: 3.5rem;
    }
}

.hero-content-center .hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-content-center .hero-cta-group {
    justify-content: center;
}

/* Content Prose Styles */
.content-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

.content-prose h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.content-prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-prose p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-prose strong {
    color: var(--text);
    font-weight: 600;
}

.content-prose ul,
.content-prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-prose li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.content-prose li strong {
    color: var(--text);
}

.content-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-prose a:hover {
    color: var(--primary-dark);
}

.content-prose blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Lead Text */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .lead-text {
        font-size: 1.375rem;
    }
}

/* Callout Boxes */
.callout {
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.callout p {
    margin: 0;
    font-size: 1rem;
}

.callout-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.callout-tip {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.callout-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.callout-info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

/* Takeaways Box */
.takeaways-box {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.takeaways-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.takeaways-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.takeaways-box li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.takeaways-box li:before {
    content: "\\2713";
    position: absolute;
    left: 0;
    color: #86efac;
    font-weight: bold;
}

/* Related Pages Grid */
.related-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    display: block;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.related-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

/* FAQ Icon */
.faq-icon {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    transition: transform 0.2s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer styling */
.faq-answer p {
    margin: 0;
}
