:root {
    --primary-blue: #2E5C99;
    --secondary-blue: #1E4070;
    --accent-green: #6FB951;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #666666;
}

/* Critical Layout Reset */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Sticky Footer Layout - Critical */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Force correct order */
body > header {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
}

body > main {
    order: 2;
    flex: 1 0 auto;
    width: 100%;
}

body > footer,
body > .footer {
    order: 3;
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.code-font {
    font-family: 'Source Code Pro', monospace;
}

/* --- Glassmorphism Sticky Navbar --- */
.navbar {
    background: rgba(30, 64, 112, 0.75) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(30, 64, 112, 0.97) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-text {
    color: white;
    letter-spacing: 2px;
}

.tech-text {
    color: var(--accent-green);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--accent-green) !important;
    border-bottom: 2px solid var(--accent-green);
}

.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
}

/* --- Animated Hero --- */
.hero-section {
    background: linear-gradient(-45deg, #1E4070, #2E5C99, #1a5c3a, #2E5C99);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    color: white;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-section .d-flex {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-title {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

.content-section:last-of-type {
    padding-bottom: 4rem;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-green);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Info Boxes */
.info-box {
    background: white;
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.info-box ul {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #5ca840);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(111, 185, 81, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(46, 92, 153, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-green), #5ca840);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(111, 185, 81, 0.4);
    background: linear-gradient(135deg, #5ca840, var(--accent-green));
}

.btn-outline-light:hover {
    transform: translateY(-3px);
}

/* Footer Styles - Force bottom position */
footer.footer,
.footer {
    background: #1a1a1a !important;
    color: #b8b8b8 !important;
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--accent-green) !important;
}

.footer .text-muted {
    color: #b8b8b8 !important;
}

.footer a {
    transition: color 0.3s ease;
    color: #b8b8b8 !important;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-green) !important;
}

.footer .contact-info p {
    color: #b8b8b8 !important;
}

.footer .contact-info i {
    color: var(--accent-green) !important;
}

/* Badges and Labels */
.badge-custom {
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Accordion Styles */
.accordion-button {
    background-color: white;
    color: var(--primary-blue);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--accent-green);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(111, 185, 81, 0.25);
}

/* Alert Styles */
.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section:last-of-type {
        padding-bottom: 3rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding-left: 1.5rem;
        padding-top: 4rem;
    }
    
    .step-number {
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* --- Scroll Reveal --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-blue) !important;
}

.text-accent {
    color: var(--accent-green) !important;
}

.bg-light-custom {
    background-color: var(--light-gray) !important;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(46, 92, 153, 0.05), rgba(111, 185, 81, 0.05));
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Logo Styles */
.navbar-brand img {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Gap utility for older browsers */
.gap-3 {
    gap: 1rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .contact-form {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    
    .service-card {
        box-shadow: none !important;
        border: 1px solid var(--medium-gray) !important;
    }
}

/* Navbar logo - no text, just the mark */
.navbar-logo {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 4px 12px rgba(111, 185, 81, 0.5));
}

/* Hero logo - large, animated */
.hero-logo {
    width: 260px;
    height: 260px;
    filter: drop-shadow(0 8px 32px rgba(111, 185, 81, 0.35));
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
    animation: heroLogoIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@media (max-width: 992px) {
    .hero-logo {
        width: 160px;
        height: 160px;
    }
}

/* Partner Services iframe responsiveness */
.partner-referral-iframe {
    display: block;
    width: 100%;
    min-height: 980px;
}

@media (max-width: 992px) {
    .partner-referral-iframe {
        min-height: 1080px;
    }
}

@media (max-width: 768px) {
    .partner-referral-iframe {
        min-height: 1180px;
    }
}

@media (max-width: 576px) {
    .partner-referral-iframe {
        min-height: 1320px;
    }
}

/* ===== 2026 Site Refresh ===== */
:root {
    --brand-900: #0f172a;
    --brand-800: #1e293b;
    --brand-700: #334155;
    --brand-blue: #2563eb;
    --brand-cyan: #0ea5e9;
    --brand-accent: #10b981;
    --surface-0: #f8fafc;
    --surface-1: #ffffff;
    --text-strong: #0b1220;
    --text-body: #334155;
    --ring: rgba(14, 165, 233, 0.45);
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;
    background: radial-gradient(circle at top, #dbeafe 0%, #f8fafc 35%, #eef2ff 100%);
    color: var(--text-body);
}

main {
    width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 5000;
    background: var(--brand-900);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.skip-link:focus {
    left: 1rem;
}

.site-header .navbar {
    background: rgba(15, 23, 42, 0.85) !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar-brand {
    gap: 0.75rem;
}

.brand-wordmark {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.125rem;
}

.navbar-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.navbar-nav .nav-link {
    color: rgba(241, 245, 249, 0.9) !important;
    border-radius: 999px;
    padding: 0.45rem 0.95rem !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
    color: #fff !important;
    background: rgba(37, 99, 235, 0.24);
}

.btn-brand,
.btn-brand:visited {
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.15rem;
    text-decoration: none;
}

.btn-brand:hover,
.btn-brand:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(14, 165, 233, 0.35);
}

.btn-brand-outline,
.btn-brand-outline:visited {
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #e2e8f0;
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus-visible {
    border-color: var(--brand-cyan);
    color: #fff;
    background: rgba(14, 165, 233, 0.16);
}

.hero-section {
    position: relative;
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.96) 40%, rgba(37, 99, 235, 0.84) 100%),
        radial-gradient(circle at 20% 15%, rgba(16, 185, 129, 0.22), transparent 45%);
    color: #f8fafc;
    padding: 7.5rem 0 5.5rem;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% -10%;
    height: 280px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.32), transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.35rem);
    line-height: 1.6;
    max-width: 62ch;
    color: rgba(226, 232, 240, 0.96);
}

.badge-custom {
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.58);
    color: #d1fae5;
    border-radius: 999px;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.content-section {
    padding: 5rem 0;
    background: transparent;
}

.bg-light-custom {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 249, 0.88)) !important;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--text-strong);
    margin-bottom: 1.25rem;
}

.section-title::after {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-accent));
}

.service-card,
.info-box,
.highlight-box,
.contact-form,
.process-step,
.accordion-item {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-card {
    padding: 1.75rem;
    border-top: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(30, 41, 59, 0.18);
}

.service-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.service-title,
.text-primary-custom {
    color: var(--text-strong) !important;
}

.info-box {
    border-left: 0;
    border-top: 3px solid rgba(14, 165, 233, 0.5);
}

.highlight-box {
    background: linear-gradient(160deg, rgba(14, 165, 233, 0.08), rgba(16, 185, 129, 0.08));
}

.process-step {
    padding: 1.75rem 1.75rem 1.75rem 5rem;
}

.step-number {
    background: linear-gradient(145deg, var(--brand-accent), var(--brand-cyan));
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.33);
}

.contact-form {
    padding: 2.2rem;
}

.form-control,
.form-select {
    border-radius: 0.7rem;
    border: 1px solid #cbd5e1;
    padding: 0.7rem 0.8rem;
}

.form-control:focus,
.form-select:focus,
.nav-link:focus-visible,
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 0.2rem var(--ring);
}

.btn-primary,
.btn-success {
    border-radius: 999px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.72rem 1.45rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), #1d4ed8);
}

.btn-success {
    background: linear-gradient(135deg, var(--brand-accent), #059669);
}

.btn-primary:hover,
.btn-success:hover {
    transform: translateY(-1px);
}

.site-footer {
    background: linear-gradient(180deg, #0b1220, #0f172a);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.footer-copy {
    color: #cbd5e1;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 0.6rem;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.footer-contact a,
.footer-links a,
.site-footer a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover,
.site-footer a:hover {
    color: #67e8f9;
}

.footer-rule {
    border-color: rgba(148, 163, 184, 0.26);
    margin: 2rem 0 1.35rem;
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 6.5rem;
    }

    .navbar-nav {
        gap: 0.35rem;
        padding: 0.6rem 0;
    }

    .brand-wordmark {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 3.2rem 0;
    }

    .contact-form {
        padding: 1.4rem;
    }

    .process-step {
        padding: 4.5rem 1.2rem 1.2rem;
    }

    .step-number {
        left: 50%;
        top: 1.4rem;
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .btn,
    .contact-form,
    .partner-referral-iframe {
        display: none !important;
    }
}

/* ===== Micro-Polish Pass ===== */
:root {
    --rhythm-1: 0.5rem;
    --rhythm-2: 0.75rem;
    --rhythm-3: 1rem;
    --rhythm-4: 1.5rem;
    --rhythm-5: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.22;
    letter-spacing: -0.01em;
}

h3,
.h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.65rem);
}

h4,
.h4 {
    font-size: clamp(1.1rem, 1.25vw, 1.35rem);
}

h5,
.h5 {
    font-size: clamp(1rem, 1.05vw, 1.1rem);
}

.content-section .lead {
    line-height: 1.72;
    color: #475569;
}

.section-title + p,
.section-title + .lead {
    margin-top: 0.35rem;
}

.content-section .row + .row {
    margin-top: var(--rhythm-4);
}

.service-card,
.info-box,
.contact-form,
.highlight-box {
    height: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: var(--rhythm-3);
    padding: var(--rhythm-5);
}

.service-card .service-title,
.service-card .h5 {
    margin-bottom: 0;
}

.service-card p {
    margin-bottom: 0;
}

.service-card .btn {
    margin-top: auto;
}

.service-icon {
    width: 3.6rem;
    height: 3.6rem;
    flex-shrink: 0;
    margin-bottom: 0.2rem;
}

.service-icon i,
.btn i.bi,
.info-box i.bi,
.process-step i.bi {
    line-height: 1;
    vertical-align: -0.08em;
}

.info-box h4 i.bi,
.info-box h5 i.bi,
.alert-heading i.bi {
    display: inline-flex;
    width: 1.25rem;
    justify-content: center;
    margin-right: 0.28rem;
    font-size: 1.02rem;
}

.process-step h3,
.process-step h4 {
    margin-bottom: var(--rhythm-1);
}

.process-step p {
    line-height: 1.65;
}

.accordion-button {
    font-size: 1rem;
    padding: 1rem 1.15rem;
}

.accordion-body {
    line-height: 1.65;
}

.services-grid .service-card,
.trust-grid .info-box,
.contact-split .highlight-box,
.contact-split .contact-form,
.process-grid .process-step,
.quick-links .btn {
    border-radius: 1rem;
}

.services-grid .service-card .service-description {
    min-height: 4.8rem;
}

.process-grid .process-step + .process-step {
    margin-top: 1rem;
}

.quick-links .btn {
    text-align: center;
}

.trust-grid .info-box h3,
.trust-grid .info-box h4 {
    margin-bottom: 0.35rem;
}

.faq-stack .accordion-item {
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-card,
    .contact-form,
    .highlight-box {
        padding: var(--rhythm-4);
    }

    .content-section .row + .row {
        margin-top: var(--rhythm-3);
    }
}
