:root {
    --primary: #48a75b;
    --primary-dark: #3d8f4e;
    --primary-light: #5bc976;
    --warning: #ffc333;
    --dark: #25313E;
    --text: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

.navbar {
    padding: 1.25rem 0;
    background: white !important;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.navbar-brand img {
    max-height: 36px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    background: white;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text) !important;
    transition: color 0.2s;
}

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

.dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.5rem;
}

.dropdown-item {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.btn-outline-primary {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-outline-primary:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-success {
    border: 1px solid var(--primary);
    color: white;
    background: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-outline-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.hero-section {
    background: white;
    color: var(--text);
    padding: 3rem 0;
}

.hero-section .container {
    max-width: 1200px;
}

/* Page Header */
.page-header {
    background: white;
    border-bottom: 3px solid var(--primary);
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Highlight Cards */
.features-highlight {
    padding: 3rem 0;
    background: var(--bg-alt);
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

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

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.highlight-card .card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.highlight-card .card-link:hover {
    color: var(--dark);
}

.hero-badge {
    display: inline-block;
    background: rgba(72, 167, 91, 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(72, 167, 91, 0.2);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    max-width: 520px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-hero-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 420px;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-left: 2px solid var(--primary);
    padding-left: 0.75rem;
    transition: all 0.2s;
}

.stat-item:hover {
    border-left-color: var(--primary-dark);
    transform: translateX(2px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    opacity: 0.9;
}

.services-section {
    padding: 5rem 0;
    background: var(--bg);
}

.services-section .container,
.pricing-section .container,
.contact-section .container {
    max-width: 1200px;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

.service-card {
    background: var(--bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

.service-card:hover {
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    transition: transform 0.2s;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.icon-primary {
    background: rgba(72, 167, 91, 0.1);
    color: var(--primary);
}

.icon-success {
    background: rgba(72, 167, 91, 0.1);
    color: var(--primary);
}

.icon-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.icon-warning {
    background: rgba(255, 195, 51, 0.1);
    color: var(--warning);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.pricing-card {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    height: 100%;
    transition: all 0.2s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

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

.pricing-featured {
    background: white;
    border: 1.5px solid var(--primary);
    position: relative;
    box-shadow: 0 2px 8px rgba(72, 167, 91, 0.08);
}

.pricing-featured:hover {
    box-shadow: 0 4px 12px rgba(72, 167, 91, 0.12);
    transform: translateY(-2px);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.625rem;
}

.pricing-header {
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.375rem;
    text-align: center;
}

.pricing-volume {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-price {
    margin-bottom: 0.25rem;
    text-align: center;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 0.25rem;
}

.pricing-desc {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    flex: 1;
    margin-bottom: 0.875rem;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 0.375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-pricing {
    background: var(--primary);
    border: 1.5px solid var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-pricing:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-pricing-featured {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

.btn-pricing-featured:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pricing-note {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.pricing-note h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-note .text-success {
    color: var(--primary) !important;
}

/* Pricing Comparison Table */
.pricing-comparison {
    margin: 4rem 0 3rem;
    padding: 0 1rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
}

.comparison-table thead th {
    padding: 1.25rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.comparison-table thead th:first-child {
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-table thead th.featured-col {
    background: var(--primary);
    position: relative;
}

.comparison-table tbody tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: var(--bg-alt);
}

.comparison-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text);
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    border-right: 1px solid var(--border);
}

.comparison-table tbody td.featured-col {
    background: rgba(72, 167, 91, 0.05);
    font-weight: 600;
}

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

.comparison-table .text-success {
    color: var(--primary);
    font-size: 1.125rem;
}

.comparison-table .text-muted {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Pricing Calculator */
.pricing-calculator {
    background: var(--bg-alt);
    border: none;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
    box-shadow: none;
}

.calculator-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.375rem;
}

.calculator-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.calculator-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.calculator-form .form-control {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s;
}

.calculator-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(72, 167, 91, 0.08);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.result-card {
    background: white;
    padding: 0.875rem 0.75rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.2s;
    min-width: 0;
    overflow: hidden;
}

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

.result-card.highlight {
    background: linear-gradient(135deg, rgba(72, 167, 91, 0.08) 0%, rgba(72, 167, 91, 0.03) 100%);
    border-color: var(--primary);
}

.result-label {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-value {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.result-value.savings {
    color: var(--primary);
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
}

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

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

/* Compact Pricing Section for Home - Updated */
.pricing-section-compact {
    padding: 4rem 0 !important;
    background: var(--bg-alt) !important;
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: white !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-row {
    display: grid !important;
    grid-template-columns: 2fr 1.5fr 1fr !important;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(72, 167, 91, 0.02);
}

.pricing-row-featured {
    background: linear-gradient(90deg, rgba(72, 167, 91, 0.04), rgba(72, 167, 91, 0.02));
    border-left: 3px solid var(--primary);
}

.pricing-row-featured:hover {
    background: linear-gradient(90deg, rgba(72, 167, 91, 0.06), rgba(72, 167, 91, 0.03));
}

.pricing-col-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plan-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 0.25rem;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.plan-volume {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-col-price {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-save {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(72, 167, 91, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.pricing-col-action {
    text-align: right;
}

.btn-simple {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-simple:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

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

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

.pricing-footer {
    text-align: center;
    margin-top: 2rem;
}

.pricing-footer p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.pricing-footer i {
    color: var(--primary);
    margin-right: 0.25rem;
}

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

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

@media (max-width: 767.98px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .pricing-col-price {
        align-items: flex-start;
    }
    
    .pricing-col-action {
        text-align: left;
    }
    
    .btn-simple {
        width: 100%;
        text-align: center;
    }
}


.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
}

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

.cta-section .container {
    max-width: 1200px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-cta {
    background: white;
    border: none;
    color: var(--primary);
    padding: 1rem 2.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--bg-alt);
    color: var(--primary-dark);
}

.contact-section {
    padding: 4rem 0 5rem;
    background: var(--bg-alt);
}

.contact-card {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: transform 0.2s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.contact-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
}

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

/* Clean Contact Section */
.contact-section-clean {
    padding: 4rem 0;
    background: var(--bg);
}

.contact-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 1.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    flex: 0 0 auto;
    width: 220px;
}

.contact-item:hover {
    border-color: var(--primary);
    background: rgba(72, 167, 91, 0.02);
    transform: translateY(-4px);
}

.contact-icon-clean {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(72, 167, 91, 0.15), rgba(72, 167, 91, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    width: 100%;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 991.98px) {
    body {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section,
    .pricing-section,
    .cta-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        max-height: 32px;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 0;
        border-top: 1px solid var(--border);
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background: var(--bg-alt);
        color: var(--primary) !important;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        background: var(--bg-alt);
        margin-left: 1rem;
        padding: 0.5rem;
    }
    
    .navbar-nav .dropdown-item {
        font-size: 13px;
        padding: 0.625rem 1rem;
        margin-bottom: 0.25rem;
    }
    
    .btn-outline-success {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 15px;
        text-align: center;
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .btn-hero-primary {
        box-shadow: 0 4px 12px rgba(72, 167, 91, 0.25);
    }
    
    .btn-hero-primary:active {
        transform: scale(0.98);
    }
    
    .btn-hero-outline {
        background: white;
        border: 1px solid var(--border);
    }
    
    .btn-hero-outline:active {
        transform: scale(0.98);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0;
        padding-left: 0.5rem;
        text-align: left;
        border-left-width: 2px;
    }
    
    .stat-value {
        font-size: 1.375rem;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 2rem;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-title {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-link {
        font-size: 13px;
    }
    
    .contact-section-clean {
        padding: 3rem 0;
    }
    
    .contact-section-clean .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-section-clean .section-title {
        font-size: 1.5rem;
    }
    
    .contact-section-clean .section-subtitle {
        font-size: 14px;
    }
    
    .contact-list {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
    }
    
    .contact-icon-clean {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 0.25rem;
        text-align: left;
    }
    
    .contact-label {
        font-size: 10px;
    }
    
    .contact-value {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Footer Mobile Optimization */
    .footer-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-section .row {
        text-align: center;
    }
    
    .footer-section .col-md-4,
    .footer-section .col-md-2 {
        margin-bottom: 2rem;
    }
    
    .footer-brand .footer-logo {
        max-height: 32px;
        margin-bottom: 0.75rem;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 12px;
    }
    
    .footer-company {
        font-size: 11px;
    }
}

.features-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.features-section .container {
    max-width: 1200px;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    transition: transform 0.2s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.integration-section {
    padding: 5rem 0;
    background: white;
}

.integration-section .container {
    max-width: 1200px;
}

.integration-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.integration-list {
    list-style: none;
    padding: 0;
}

.integration-list li {
    font-size: 15px;
    padding: 0.75rem 0;
    color: var(--text);
}

.integration-list li i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 18px;
}

.code-example {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.code-example pre {
    margin: 0;
}

.code-example code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.integration-logos {
    margin-top: 4rem;
}

.integration-logos h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
}

.integration-badge {
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    height: 100%;
}

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

.integration-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.integration-badge span {
    font-size: 13px;
    font-weight: 600;
}

.solutions-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.solutions-section .container {
    max-width: 1200px;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100%;
    text-align: center;
    transition: all 0.2s;
}

.solution-card:hover {
    border-color: var(--primary);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.solution-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.solution-features li {
    padding: 0.625rem 0;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-features i {
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

.solution-card .btn {
    padding: 0.75rem 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 13px;
    color: var(--text);
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 12px;
}

.pricing-note {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.testimonials-section .container {
    max-width: 1200px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    border: 1px solid var(--border);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 16px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.contact-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-section {
    background: var(--dark);
    padding: 4rem 0 2rem;
    color: white;
}

.footer-section .container {
    max-width: 1200px;
}

.footer-brand .footer-logo {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-copyright,
.footer-credits {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.375rem 0 0 0;
}

.footer-company strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.footer-credits i {
    font-size: 12px;
    margin: 0 0.25rem;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.625rem 1.25rem;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.dropdown-item i {
    width: 20px;
    color: var(--text-light);
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0 3rem;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-section {
    padding: 5rem 0;
}

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

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.value-card,
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100%;
    text-align: center;
    transition: all 0.2s;
}

.value-card:hover,
.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Page */
.faq-section {
    padding: 5rem 0;
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.faq-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.2s;
}

.faq-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(72, 167, 91, 0.1), rgba(72, 167, 91, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1.125rem;
    color: var(--primary);
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2.5rem;
}

.faq-cta p {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 14px;
}

/* FAQ Page Styles */
.faq-category {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #3d8f4f 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    margin-bottom: 0.75rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767.98px) {
    .faq-category {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .faq-item {
        padding: 1rem 0;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-card {
        padding: 1.25rem;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
    }
    
    .faq-icon i {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        font-size: 13px;
    }
}

/* Blog Page */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 13px;
    color: var(--text-light);
}

.blog-category {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.pagination .page-link {
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.5rem 0.875rem;
    margin: 0 0.25rem;
    border-radius: 6px;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

.pagination .page-link:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

/* Legal Pages (Terms & Privacy) */
.legal-section {
    padding: 5rem 0;
    background: var(--bg);
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.legal-intro {
    background: var(--bg-alt);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 3rem;
}

.legal-intro p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--text);
    line-height: 1.7;
}

.legal-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-section-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.legal-section-item h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.legal-section-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 1rem;
}

.legal-section-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section-item ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-section-item ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section-item ul li strong {
    color: var(--text);
    font-weight: 600;
}

.legal-section-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.legal-section-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.contact-list li {
    padding: 0.5rem 0;
    font-size: 15px;
}

.contact-list li strong {
    color: var(--text);
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.legal-footer {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.legal-footer p {
    margin: 0.5rem 0;
    font-size: 14px;
    color: var(--text-light);
}

.legal-footer p strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section-item h2 {
        font-size: 1.25rem;
    }
}

/* Documentation Page */
.docs-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 2.5rem 0;
    color: white;
}

.docs-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.docs-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.docs-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.docs-content {
    padding: 3rem 0;
    background: var(--bg-alt);
}

.docs-sidebar {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.docs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav li {
    margin-bottom: 0.25rem;
}

.docs-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.docs-nav a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.docs-body {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.docs-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.docs-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.docs-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.feature-item {
    background: var(--bg-alt);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.api-base {
    background: var(--dark);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.api-base h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: rgba(255,255,255,0.7);
}

.base-url {
    background: rgba(0,0,0,0.3);
    color: var(--primary-light);
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    display: inline-block;
}

.step-card {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-alt);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.375rem;
}

.step-content p {
    font-size: 13px;
    margin: 0;
}

.step-content {
    flex: 1;
}

.alert-box {
    padding: 0.875rem 1.125rem;
    border-radius: 8px;
    border-left: 3px solid;
    margin: 1rem 0;
    font-size: 14px;
}

.alert-box.warning {
    background: #fff3cd;
    border-color: #ffc333;
    color: #856404;
}

.alert-box i {
    margin-right: 0.5rem;
}

.alert-box strong {
    font-weight: 600;
}

.info-table table,
.params-table table,
.response-table table,
.limits-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 13px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.info-table th,
.params-table th,
.response-table th,
.limits-table th {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--text);
    border-bottom: 2px solid var(--border);
}

.info-table td,
.params-table td,
.response-table td,
.limits-table td {
    padding: 0.75rem 1rem;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.info-table tr:last-child td,
.params-table tr:last-child td,
.response-table tr:last-child td,
.limits-table tr:last-child td {
    border-bottom: none;
}

.info-table tbody tr:hover,
.params-table tbody tr:hover,
.response-table tbody tr:hover,
.limits-table tbody tr:hover {
    background: #fafafa;
}

.response-table tr.success td:first-child {
    color: var(--primary);
    font-weight: 600;
}

.response-table tr.error td:first-child {
    color: #dc3545;
    font-weight: 600;
}

.info-table td code,
.params-table td code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 12px;
    color: #d63384;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    border: 1px solid #ffe0f0;
    font-weight: 500;
}

/* Code Blocks - Dark Theme like VS Code */
pre {
    background: #0d1117 !important;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.25rem 0;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

pre code {
    background: transparent !important;
    color: #e6edf3 !important;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    display: block;
    padding: 0;
    border: none;
    white-space: pre;
    overflow-x: auto;
}

/* Override Highlight.js default styles */
.hljs {
    background: #0d1117 !important;
    color: #e6edf3 !important;
    padding: 0 !important;
}

/* Inline code */
code {
    background: #f6f8fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 12px;
    color: #d73a49;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    border: 1px solid #e1e4e8;
    font-weight: 500;
}

/* Code syntax highlighting - GitHub Dark Theme */
/* Override Highlight.js colors with GitHub Dark theme */
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-link {
    color: #ff7b72 !important;
    font-weight: 600;
}

.hljs-string,
.hljs-doctag {
    color: #a5d6ff !important;
}

.hljs-title,
.hljs-name,
.hljs-type,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
    color: #7ee787 !important;
}

.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-template-variable,
.hljs-variable {
    color: #79c0ff !important;
}

.hljs-comment,
.hljs-meta {
    color: #8b949e !important;
    font-style: italic;
}

.hljs-function {
    color: #d2a8ff !important;
}

.hljs-params {
    color: #ffa657 !important;
}

.hljs-class {
    color: #7ee787 !important;
}

.hljs-operator {
    color: #ff7b72 !important;
}

.hljs-symbol,
.hljs-bullet,
.hljs-code {
    color: #79c0ff !important;
}

.hljs-regexp {
    color: #7ee787 !important;
}

.language-php .hljs-keyword,
.language-python .hljs-keyword,
.language-javascript .hljs-keyword,
.language-csharp .hljs-keyword,
.language-ruby .hljs-keyword,
.language-go .hljs-keyword,
.language-java .hljs-keyword,
.language-bash .hljs-keyword {
    color: #ff7b72;
    font-weight: 600;
}

.language-php .hljs-string,
.language-python .hljs-string,
.language-javascript .hljs-string,
.language-csharp .hljs-string,
.language-ruby .hljs-string,
.language-go .hljs-string,
.language-java .hljs-string,
.language-bash .hljs-string,
.language-json .hljs-string {
    color: #a5d6ff;
}

.language-php .hljs-variable,
.language-python .hljs-variable,
.language-javascript .hljs-variable,
.language-ruby .hljs-variable,
.language-go .hljs-variable {
    color: #ffa657;
}

.language-php .hljs-function,
.language-python .hljs-function,
.language-javascript .hljs-function,
.language-csharp .hljs-function,
.language-ruby .hljs-function,
.language-go .hljs-function,
.language-java .hljs-function {
    color: #d2a8ff;
}

.language-php .hljs-comment,
.language-python .hljs-comment,
.language-javascript .hljs-comment,
.language-csharp .hljs-comment,
.language-ruby .hljs-comment,
.language-go .hljs-comment,
.language-java .hljs-comment,
.language-bash .hljs-comment {
    color: #8b949e;
    font-style: italic;
}

.language-csharp .hljs-class,
.language-java .hljs-class,
.language-go .hljs-type {
    color: #7ee787;
}

.language-javascript .hljs-built_in,
.language-csharp .hljs-built_in,
.language-java .hljs-built_in,
.language-go .hljs-built_in {
    color: #79c0ff;
}

.language-ruby .hljs-symbol,
.language-ruby .hljs-title {
    color: #79c0ff;
}

.language-go .hljs-number,
.language-java .hljs-number,
.language-csharp .hljs-number {
    color: #79c0ff;
}

.language-json .hljs-attr {
    color: #79c0ff;
}

.language-json .hljs-number,
.language-json .hljs-literal {
    color: #79c0ff;
}

.language-bash .hljs-built_in {
    color: #79c0ff;
}

.language-php .hljs-operator,
.language-python .hljs-operator {
    color: #ff7b72;
}

/* Code tabs */
.code-tabs {
    margin: 1.5rem 0;
    background: #0d1117;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.tab-nav {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #30363d;
    background: #161b22;
}

.tab-nav li {
    padding: 0.75rem 1.5rem;
    font-size: 13px;
    font-weight: 600;
    color: #7d8590;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    background: transparent;
}

.tab-nav li:hover {
    color: #c9d1d9;
    background: rgba(255,255,255,0.03);
}

.tab-nav li.active {
    color: #e6edf3;
    border-bottom-color: #ff7b72;
    background: rgba(255,123,114,0.1);
}

.tab-content {
    display: none;
    background: #0d1117;
}

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

.tab-content pre {
    margin: 0;
    border-top: none;
}

.endpoint-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    background: #f8f9fa;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-family: 'Consolas', 'Monaco', monospace;
}

.endpoint-badge .method {
    font-size: 11px;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.endpoint-badge .method.post {
    background: #28a745;
    color: white;
    box-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
}

.endpoint-badge .method.get {
    background: #007bff;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 123, 255, 0.3);
}

.endpoint-badge .path {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    letter-spacing: -0.3px;
}

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

.support-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

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

.support-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.support-card a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.support-card a:hover {
    text-decoration: underline;
}

.docs-footer-info {
    text-align: center;
    padding: 2rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}

.docs-footer-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .docs-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section */
    .hero {
        min-height: 40vh !important;
        padding: 3rem 0 !important;
    }
    
    /* Stats Cards */
    .stats-section .row {
        gap: 1rem;
    }
    
    /* Pricing Cards */
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    /* Contact Cards */
    .contact-cards {
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .docs-body {
        padding: 2rem 1.5rem;
    }
    
    .docs-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.875rem 0;
    }
    
    .navbar-brand img {
        max-height: 32px;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    /* Sections Spacing */
    section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
    }
    
    /* Page Header */
    .page-header {
        padding: 2.5rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Cards */
    .service-card,
    .feature-card,
    .resource-card {
        margin-bottom: 1rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .pricing-name {
        font-size: 1.25rem !important;
    }
    
    .price-value {
        font-size: 2.5rem !important;
    }
    
    .pricing-features li {
        font-size: 13px;
        margin-bottom: 0.75rem;
    }
    
    .btn-pricing {
        padding: 0.75rem 1.5rem;
        font-size: 13px;
    }
    
    .pricing-note {
        padding: 1.5rem;
        margin-top: 2rem !important;
    }
    
    .pricing-note h4 {
        font-size: 1.125rem;
    }
    
    /* Pricing Comparison Table Mobile */
    .pricing-comparison {
        margin: 2rem 0;
        padding: 0;
    }
    
    .comparison-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table thead th {
        padding: 0.875rem 0.5rem;
        font-size: 12px;
    }
    
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 12px;
    }
    
    .comparison-table tbody td:first-child {
        font-size: 11px;
    }
    
    /* Pricing Calculator Mobile */
    .pricing-calculator {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .calculator-title {
        font-size: 1.125rem;
    }
    
    .calculator-subtitle {
        font-size: 0.8125rem;
    }
    
    .calculator-form .form-control {
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
    }
    
    .calculator-results {
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
    }
    
    .result-card {
        padding: 0.75rem 0.625rem;
        min-width: 0;
    }
    
    .result-label {
        font-size: 8px;
        margin-bottom: 0.375rem;
    }
    
    .result-value {
        font-size: clamp(0.875rem, 4vw, 1rem);
        line-height: 1.2;
    }
    
    .result-value.savings {
        font-size: clamp(1rem, 4.5vw, 1.125rem);
    }
    
    /* Contact Section */
    .contact-cards {
        grid-template-columns: 1fr !important;
    }
    
    .contact-card {
        padding: 1.5rem !important;
    }
    
    /* Footer */
    footer .footer-links h5 {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    footer .footer-links ul {
        margin-bottom: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    /* FAQ */
    .faq-category {
        margin-bottom: 2rem;
    }
    
    /* Blog */
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    /* Documentation */
    .tab-nav {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .tab-nav li {
        font-size: 11px;
        padding: 0.375rem 0.625rem;
    }
    
    .tab-content pre {
        padding: 1rem;
        font-size: 12px;
    }
    
    .endpoint-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Tables */
    .info-table table,
    .params-table table,
    .response-table table,
    .limits-table table {
        font-size: 12px;
    }
    
    .info-table th,
    .params-table th,
    .response-table th,
    .limits-table th,
    .info-table td,
    .params-table td,
    .response-table td,
    .limits-table td {
        padding: 0.5rem 0.625rem;
    }
}

@media (max-width: 575.98px) {
    /* Extra small devices */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btn {
        font-size: 13px !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Stats Cards */
    .stat-card h3 {
        font-size: 1.75rem !important;
    }
    
    /* Feature Grid */
    .feature-grid {
        gap: 0.75rem;
    }
    
    /* Step Cards */
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary) !important;
    border: none !important;
    color: white !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(72, 167, 91, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back-to-top:hover {
    background: #3d8f4f !important;
    box-shadow: 0 6px 20px rgba(72, 167, 91, 0.4);
    transform: translateY(-3px);
}

.btn-back-to-top:active {
    transform: translateY(-1px);
}

.btn-back-to-top i {
    font-size: 1.125rem;
}

@media (max-width: 767.98px) {
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .btn-back-to-top i {
        font-size: 1rem;
    }
}
