:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #06b6d4;
    --accent: #60a5fa;
    --dark: #0f172a;
    --darker: #020617;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg-light: #eff6ff;
    --bg-white: #ffffff;
    --critical: #dc2626;
    --high: #ea580c;
    --medium: #ca8a04;
    --border: #e5e7eb;
    
    /* Gradient backgrounds - Tech Blue Theme */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-light: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #06b6d4 100%);
}

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

/* Visually hidden class for SEO - accessible to screen readers but hidden visually */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form validation styling */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

/* Highlight the checkbox label when invalid */
.form-check-input.is-invalid + .form-check-label {
    color: #dc3545;
    font-weight: 500;
}

.form-check-input.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-check-input.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Strong error banner at top of form */
#formErrorSummary {
    border-left: 4px solid #dc3545;
    background-color: #fff5f5;
    border-radius: 6px;
    padding: 1rem 1.25rem;
}

#formErrorSummary .alert-heading {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#formErrorSummaryList {
    padding-left: 1.25rem;
    margin-top: 0.25rem;
}

#formErrorSummaryList li {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.blog-card-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.blog-card-title a {
    color: #0f172a;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: #2563eb;
}
.blog-card-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border-radius: 12px;
}
.cta-box h3 {
    color: #fff;
    font-weight: 700;
}

/* Article Styles */
article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}
article pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
}
article code {
    background: #f1f5f9;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
article pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}
article ol, article ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
article li {
    margin-bottom: 0.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-white) !important;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--primary);
    color: var(--bg-white) !important;
    border-radius: 8px;
    padding: 0.5rem 1.25rem !important;
    border: 2px solid var(--primary);
}

.btn-nav:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.hero {
    background: var(--gradient-dark);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
    background: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
    color: var(--bg-white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.error-display {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.error-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.error-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--critical);
    margin-bottom: 0.5rem;
}

.error-message {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.error-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.error-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.error-tag {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* User-friendly error list */
.error-list-user {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.error-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--critical);
}

.error-item i {
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.error-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.error-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}

.error-footer i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.error-footer span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.stats-bar {
    background: var(--bg-white);
    padding: 3rem 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 16px 16px 0 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

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

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

.errors-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.error-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.error-card.critical::before {
    background: var(--critical);
}

.error-card.high::before {
    background: var(--high);
}

.error-card.medium::before {
    background: var(--medium);
}

.error-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.error-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.error-card:hover .error-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.error-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.error-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.severity-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--critical);
}

.severity-badge.high {
    background: rgba(234, 88, 12, 0.1);
    color: var(--high);
}

.severity-badge.medium {
    background: rgba(202, 138, 4, 0.1);
    color: var(--medium);
}

.errors-note {
    color: var(--text-light);
    font-size: 1.125rem;
}

.process-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.process-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    height: 100%;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}

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

.pricing-card:not(.featured) .pricing-header {
    border-color: var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

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

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-header p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.pricing-card:not(.featured) .pricing-features li {
    border-bottom: 1px solid var(--border);
}

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

.pricing-features i {
    color: var(--secondary);
    font-size: 1.125rem;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
}

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

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-guarantee i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.pricing-guarantee strong {
    display: block;
    color: var(--dark);
}

.pricing-guarantee p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Service Price Cards */
.diagnosis-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--bg-white);
}

.diagnosis-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.diagnosis-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.diagnosis-content p {
    margin: 0;
    opacity: 0.9;
}

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

.service-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-white);
}

.service-price-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-price-card > p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.service-features li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    margin-right: 0.5rem;
}

.maintenance-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border);
}

.maintenance-section h3 {
    color: var(--dark);
    font-weight: 700;
}

.trust-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.trust-features {
    margin-top: 2rem;
}

.trust-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.trust-feature:hover .trust-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(5deg);
}

.trust-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

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

.trust-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
}

.certification-card {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--bg-white);
}

.cert-badge {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--bg-white);
}

.certification-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certification-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.cert-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cert-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-card {
    background: var(--secondary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--bg-white);
}

.guarantee-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

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

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 0 0.125rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.5;
}

.carousel-indicators button.active {
    background: var(--primary);
    opacity: 1;
}

.faq-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
}

.contact-section {
    background: var(--gradient-dark);
    padding: 6rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-tag {
    background: rgba(37, 99, 235, 0.3);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--bg-white);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    color: var(--bg-white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: var(--dark);
    color: var(--bg-white);
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-form .btn-primary {
    margin-top: 1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-disclaimer i {
    margin-right: 0.25rem;
}

.footer {
    background: var(--darker);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.25rem;
}

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

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

.footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.footer ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer ul li i {
    color: rgba(255, 255, 255, 0.4);
    margin-right: 0.5rem;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

/* Contact section - icon + text on same line, white, with link */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    color: #ffffff;
}

.footer-contact-item > i {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: keep-all;
}

.footer-contact-link:hover {
    color: var(--primary) !important;
}

.footer-contact-text {
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout Page Styles */
.checkout-header {
    background: var(--gradient-dark);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.checkout-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.checkout-section {
    background: var(--bg-light);
    padding: 4rem 0 6rem;
}

.checkout-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.checkout-card h3 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.checkout-card h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.order-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.order-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.order-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.order-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.order-empty {
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed var(--border);
}

.order-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.order-total span:last-child {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-description-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.service-description-box h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-description-box p {
    color: var(--text-light);
    margin: 0;
}

.access-confirmation {
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.access-confirmation h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.access-confirmation h5 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.access-confirmation .form-check-label {
    font-size: 0.9375rem;
    color: var(--text);
}

.guarantee-box {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-box i {
    font-size: 1.5rem;
}

.trust-badges {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
}

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

.trust-badge-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Checkout Form Styles */
.checkout-section .form-control,
.checkout-section .form-select {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
}

.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    color: var(--text);
}

.checkout-section .form-control::placeholder {
    color: var(--text-light);
}

.checkout-section .form-label {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.875rem;
}

.checkout-section .form-text {
    color: var(--text-light);
    font-size: 0.8125rem;
}

.checkout-section .form-check-input {
    border-color: var(--border);
}

.checkout-section .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkout-section .form-check-input.is-invalid {
    border-color: var(--critical);
}

.checkout-section .invalid-feedback {
    color: var(--critical);
    font-size: 0.8125rem;
}

/* PayPal Button Container */
#paypal-button {
    min-height: 45px;
}

/* Success Message */
.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--dark);
}

.alert-success h5 {
    color: var(--secondary);
    font-weight: 700;
}

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

/* Select Service Message */
#selectServiceMessage {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991.98px) {
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
}
}

/* Error Reference Table */
.error-reference-section {
    background: var(--bg-light);
}

.error-reference-table {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.error-reference-table .table {
    margin-bottom: 0;
}

.error-reference-table thead th {
    background: var(--dark);
    color: var(--bg-white);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.error-reference-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--border);
}

.error-reference-table .error-message {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    color: var(--critical);
    background: rgba(220, 38, 38, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--critical);
}

.error-reference-table .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.error-reference-table .btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

.error-reference-note {
    color: var(--text-light);
}

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

.error-reference-note a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .error-reference-table {
        padding: 1rem;
    }
    
    .error-reference-table .table {
        font-size: 0.875rem;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-accent);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header .section-tag {
    background: rgba(15, 23, 42, 0.6);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Payment Flow Banner */
.payment-flow-banner {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.payment-flow-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.payment-flow-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-flow-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.payment-flow-content p {
    margin: 0;
    opacity: 0.9;
}

/* Contact Page Refund Note */
.refund-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.refund-note i {
    color: var(--accent);
}

/* Services Preview */
.services-preview {
    background: var(--bg-white);
}

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

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-preview-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-white);
}

.service-preview-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

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

.service-preview-card .link-primary {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pricing Preview */
.pricing-preview {
    background: var(--bg-light);
}

.price-preview-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-preview-card.featured {
    border-color: var(--primary);
    border-width: 2px;
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-preview-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.price-preview-card p {
    color: var(--text-light);
    margin: 0;
}

/* Testimonial Card Simple */
.testimonial-card-simple {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.testimonial-card-simple .testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-card-simple .testimonial-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-card-simple p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author-simple strong {
    display: block;
    color: var(--dark);
}

.testimonial-author-simple span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 16px 0 0 16px;
}

.service-detail-card.critical::before {
    background: var(--critical);
}

.service-detail-card.high::before {
    background: var(--high);
}

.service-detail-card.medium::before {
    background: var(--medium);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-detail-card .service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-detail-card > p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

/* Pricing Detail Cards */
.pricing-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-detail-card.popular {
    border-color: var(--primary);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-white);
}

.pricing-detail-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.pricing-detail-card ul li {
    padding: 0.375rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.pricing-detail-card ul li:last-child {
    border-bottom: none;
}

/* Maintenance Cards */
.maintenance-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    position: relative;
}

.maintenance-card.featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--bg-white);
}

.maintenance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.maintenance-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.maintenance-card.featured .maintenance-price {
    color: var(--bg-white);
}

.maintenance-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.maintenance-card.featured .maintenance-price span {
    color: rgba(255, 255, 255, 0.6);
}

.maintenance-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.maintenance-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.maintenance-card.featured ul li {
    border-color: rgba(255, 255, 255, 0.1);
}

.maintenance-card ul li i {
    color: var(--secondary);
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label-large {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* About Page Images */
.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.about-secondary-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-step {
    align-items: flex-start;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Page */
.contact-cards-section {
    background: var(--bg-light);
}

.contact-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--bg-white);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

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

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

/* Quick Help Section */
.contact-help-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

/* Expect Section */
.expect-section {
    background: var(--bg-white);
}

.expect-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.expect-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
}

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

.expect-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.expect-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Info Section */
.info-section {
    background: var(--bg-light);
}

.info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-icon.refund {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.info-card li i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.contact-note i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-note p {
    margin: 0;
    color: var(--text);
}

.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .trust-visual {
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-visual > div {
        flex: 1;
        min-width: 250px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .error-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 140px 0 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-trust {
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .trust-feature {
        flex-direction: column;
        text-align: center;
    }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}