/* Reset and Base Styles - MoveBudda Inspired Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* MoveBudda Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --background-color: #ffffff;
    --background-light: #f8fafc;
    --background-dark: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Typography - MoveBudda Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    line-height: 1.1;
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 700;
}

h3 { 
    font-size: 1.875rem; 
    font-weight: 600;
}

h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
}

.text-large {
    font-size: 1.125rem;
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* Buttons - MoveBudda Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    gap: 8px;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-sm {
    padding: 12px 24px;
    min-height: 44px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 20px 40px;
    min-height: 64px;
    font-size: 1.125rem;
}

/* Header - MoveBudda Style */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

.nav-brand .logo {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand h1 {
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: 0;
}

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

/* Hero Section - MoveBudda Style */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
    text-align: center;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f1f5f9" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f1f5f9" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f1f5f9" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section - MoveBudda Style */
.services-section {
    padding: 5rem 0;
    background: white;
}

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

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

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

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

.service-card.recommended {
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.recommended-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.service-header h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--border-color);
    font-size: 1.25rem;
}

.star.filled {
    color: var(--accent-color);
}

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

.service-pricing {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* States Section - MoveBudda Style */
.states-section {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.state-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

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

.state-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Top 10 LLC Services Section - MoveBudda Style */
.top-10-llc-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
}

.top-10-llc-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.top-10-llc-services p {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.top-10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.top-service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.top-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.top-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.top-service-card.top-1 {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.top-service-card.top-2 {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.top-service-card.top-3 {
    border-color: #d97706;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.rank-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.top-1 .rank-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.top-2 .rank-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #475569 100%);
}

.top-3 .rank-badge {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.top-service-header h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.top-service-pricing {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.top-service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pros-cons-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pros-mini h4,
.cons-mini h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.pros-mini ul,
.cons-mini ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-mini li,
.cons-mini li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.25rem;
}

.pros-mini li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.cons-mini li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.top-service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-service-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Local Businesses Section - MoveBudda Style */
.local-businesses {
    padding: 5rem 0;
    background: white;
}

.top-recommended-service {
    margin-bottom: 3rem;
}

.recommended-badge-large {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.top-service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.top-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

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

.top-service-pricing {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.pros-cons-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros-mini h4,
.cons-mini h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.pros-mini li,
.cons-mini li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.top-service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-service-actions .btn {
    flex: 1;
    min-width: 160px;
}

/* Business Cards - MoveBudda Style */
.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.business-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

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

.business-location p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.business-services h4 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

.business-actions {
    margin-top: 1.5rem;
}

/* About Section - MoveBudda Style */
.about-section {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* CTA Section - MoveBudda Style */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
}

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

.cta-buttons .btn {
    min-width: 160px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Service Hero - MoveBudda Style */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-info h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.service-rating-large {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-rating-large .stars {
    display: flex;
    gap: 4px;
}

.service-rating-large .star {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-rating-large .rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
}

.service-pricing-large {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-weight: 700;
}

.service-description-large {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-actions-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-actions-large .btn {
    min-width: 180px;
}

/* Service Details - MoveBudda Style */
.service-details {
    padding: 5rem 0;
    background: white;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2,
.states-coverage-section h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.5rem;
    min-width: 24px;
}

.feature-text {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 500;
}

.states-coverage-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.state-item a {
    display: block;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--primary-color);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.state-item a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Pros and Cons Section - MoveBudda Style */
.pros-cons-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.pros-cons-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.pros-section h3,
.cons-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li {
    padding: 1rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Service Comparison - MoveBudda Style */
.service-comparison {
    padding: 5rem 0;
    background: white;
}

.service-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-table td {
    color: var(--text-color);
    font-weight: 500;
}

.comparison-table tr:hover {
    background: var(--background-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Related States Section - MoveBudda Style */
.related-states {
    padding: 5rem 0;
    background: var(--background-light);
}

.related-states h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more .btn {
    min-width: 200px;
}

/* Footer - MoveBudda Style */
.footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: block;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #475569;
    color: #94a3b8;
}

/* Breadcrumb - MoveBudda Style */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: left;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb span {
    color: var(--accent-color);
    margin: 0 0.5rem;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 20px rgba(2, 6, 23, 0.08);
    z-index: 1100;
    backdrop-filter: saturate(1.2) blur(6px);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0;
}

.sticky-cta-fomo {
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0;
    }
    .sticky-cta-fomo {
        text-align: center;
        font-weight: 500;
        font-size: 0.95rem;
    }
    .sticky-cta .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }
}

/* Add bottom padding to main to avoid overlap */
.main {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

/* Theme: LegalZoom - adjust primary blues to avoid clashes */
.theme-legalzoom {
    --primary-color: #0ea5e9;   /* sky-500 */
    --primary-dark: #0284c7;    /* sky-600 */
    --primary-light: #38bdf8;   /* sky-400 */
}

/* Info Cards - MoveBudda Style */
.state-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.state-info-cards .info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.state-info-cards .info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-light);
}

.state-info-cards .info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.state-info-cards .info-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design - MoveBudda Style */
@media (max-width: 1024px) {
    .container-wide {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .top-10-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-color);
    transition: var(--transition);
}

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .top-10-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-service-card {
        padding: 2rem;
    }
    
    .pros-cons-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .top-service-actions {
        flex-direction: column;
    }
    
    .top-service-actions .btn {
        width: 100%;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-actions-large {
        flex-direction: column;
        align-items: center;
    }
    
    .service-actions-large .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .business-card,
    .top-service-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 14px 24px;
        min-height: 48px;
        font-size: 0.875rem;
    }
    
    .rank-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        top: -12px;
        right: -12px;
    }
    
    .top-10-llc-services h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-pricing-large {
        font-size: 1.5rem;
    }
    
    .service-description-large {
        font-size: 1.125rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* Mobile Navigation visibility and layout */
@media (max-width: 768px) {
    .nav-menu.active {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 12px 24px;
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0;
        min-width: 100%;
    }
    .dropdown-menu a {
        padding: 12px 0;
        width: 100%;
    }
}
