/* ================================================================
   SMS.MD — Custom Design System
   Primary: var(--bs-primary) | Modern SaaS UI
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLE OVERRIDES (Bootstrap root)
   ---------------------------------------------------------------- */
:root {
    /* Primary brand */
    --bs-primary:              #7888fc;
    --bs-primary-rgb:          120, 136, 252;
    --bs-link-color:           #7888fc;
    --bs-link-hover-color:     #5a6ae8;

    /* Semantic palette */
    --bs-success:              #10b981;
    --bs-success-rgb:          16, 185, 129;
    --bs-warning:              #f59e0b;
    --bs-warning-rgb:          245, 158, 11;
    --bs-info:                 #06b6d4;
    --bs-info-rgb:             6, 182, 212;
    --bs-danger:               #ef4444;
    --bs-danger-rgb:           239, 68, 68;

    /* Neutral scale (cool slate tones) */
    --bs-dark:                 #0f172a;
    --bs-dark-rgb:             15, 23, 42;
    --bs-gray-900:             #0f172a;
    --bs-gray-800:             #1e293b;
    --bs-gray-700:             #334155;
    --bs-gray-600:             #475569;
    --bs-gray-500:             #64748b;
    --bs-gray-400:             #94a3b8;
    --bs-gray-300:             #cbd5e1;
    --bs-gray-200:             #e2e8f0;
    --bs-gray-100:             #f8fafc;
    --bs-light:                #f8fafc;
    --bs-secondary:            #64748b;
    --bs-secondary-rgb:        100, 116, 139;

    /* Body */
    --bs-body-color:           #475569;
    --bs-body-bg:              #ffffff;
    --bs-body-font-family:     "Manrope", sans-serif;
    --bs-body-line-height:     1.7;
    --bs-heading-color:        #0f172a;

    /* Borders */
    --bs-border-color:         #e2e8f0;
    --bs-border-radius:        0.75rem;
    --bs-border-radius-sm:     0.5rem;
    --bs-border-radius-lg:     1rem;
    --bs-border-radius-xl:     1.5rem;

    /* Shadows */
    --bs-box-shadow:           0 4px 24px rgba(120, 136, 252, 0.08);
    --bs-box-shadow-sm:        0 2px 8px rgba(15, 23, 42, 0.06);
    --bs-box-shadow-lg:        0 8px 48px rgba(120, 136, 252, 0.14);

    /* Smooth scrolling */
    scroll-behavior:           smooth;
}

/* ----------------------------------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------------------------------- */
body {
    font-family:    var(--bs-body-font-family);
    color:          var(--bs-body-color);
    line-height:    var(--bs-body-line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family:    "Manrope", sans-serif;
    color:          var(--bs-heading-color);
    font-weight:    700;
    line-height:    1.25;
    letter-spacing: -0.02em;
}

h1, .h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.03em;
}
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3, .h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4, .h4 { font-size: 1.15rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.9rem; }

.lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--bs-gray-600);
}

p { color: var(--bs-body-color); }

a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--bs-link-hover-color); }

/* ----------------------------------------------------------------
   3. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--bs-border-color);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: box-shadow 0.25s;
}
.header-sticky.sticky-top {
    box-shadow: 0 2px 16px rgba(var(--bs-dark-rgb), 0.07);
}
.navbar-brand {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.navbar-brand img { height: 36px; }

.navbar .nav-link {
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--bs-gray-700) !important;
    padding: 1.4rem 0.9rem !important;
    transition: color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--bs-primary) !important;
}

/* Dropdown */
.navbar .dropdown-menu {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--bs-box-shadow-lg);
    padding: 0.5rem;
    min-width: 13rem;
}
.navbar .dropdown-item {
    border-radius: 0.5rem;
    font-size: 0.925rem;
    font-weight: 500;
    padding: 0.55rem 0.9rem;
    color: var(--bs-gray-700);
    transition: background 0.15s, color 0.15s;
}
.navbar .dropdown-item:hover {
    background: rgba(var(--bs-primary-rgb), 0.08);
    color: var(--bs-primary);
}
.nav-brand-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 3px;
    filter: grayscale(1) opacity(0.45);
    flex-shrink: 0;
    transition: filter 0.15s;
}
.dropdown-item:hover .nav-brand-icon {
    filter: grayscale(0) opacity(1);
}
.nav-brand-icon-bi {
    width: 16px;
    height: 16px;
    font-size: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-400);
    transition: color 0.15s;
}
.dropdown-item:hover .nav-brand-icon-bi { color: var(--bs-primary); }

/* CTA in navbar */
.navbar .btn-primary {
    padding: 0.45rem 1.1rem;
    font-size: 0.875rem;
}

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
    font-weight:    600;
    font-size:      0.9rem;
    border-radius:  0.625rem;
    padding:        0.6rem 1.35rem;
    transition:     background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }

.btn-lg {
    font-size:  0.95rem;
    padding:    0.75rem 1.75rem;
    border-radius: 0.75rem;
}
.btn-sm {
    font-size:  0.8rem;
    padding:    0.4rem 0.9rem;
    border-radius: 0.5rem;
}

/* Primary */
.btn-primary {
    --bs-btn-color:               #fff;
    --bs-btn-bg:                  var(--bs-primary);
    --bs-btn-border-color:        var(--bs-primary);
    --bs-btn-hover-color:         #fff;
    --bs-btn-hover-bg:            var(--bs-link-hover-color);
    --bs-btn-hover-border-color:  var(--bs-link-hover-color);
    --bs-btn-focus-shadow-rgb:    120, 136, 252;
    --bs-btn-active-bg:           #4d5fde;
    --bs-btn-active-border-color: #4d5fde;
    --bs-btn-disabled-bg:         var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.35);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.45);
    transform: translateY(-1px);
}

/* Primary soft */
.btn-primary-soft {
    color:            var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-color:     transparent;
    font-weight: 600;
}
.btn-primary-soft:hover,
.btn-primary-soft:focus,
.btn-primary-soft:active {
    color:            #fff;
    background-color: var(--bs-primary);
    border-color:     var(--bs-primary);
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.35);
}

/* Outline primary */
.btn-outline-primary {
    --bs-btn-color:               var(--bs-primary);
    --bs-btn-border-color:        var(--bs-primary);
    --bs-btn-hover-color:         #fff;
    --bs-btn-hover-bg:            var(--bs-primary);
    --bs-btn-hover-border-color:  var(--bs-primary);
    --bs-btn-active-color:        #fff;
    --bs-btn-active-bg:           var(--bs-link-hover-color);
    --bs-btn-active-border-color: var(--bs-link-hover-color);
    --bs-btn-disabled-color:      var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-outline-primary:hover { transform: translateY(-1px); }

/* Outline secondary */
.btn-outline-secondary {
    --bs-btn-color:               var(--bs-gray-600);
    --bs-btn-border-color:        var(--bs-gray-300);
    --bs-btn-hover-color:         var(--bs-gray-800);
    --bs-btn-hover-bg:            var(--bs-gray-100);
    --bs-btn-hover-border-color:  var(--bs-gray-300);
    --bs-btn-active-color:        var(--bs-gray-800);
    --bs-btn-active-bg:           var(--bs-gray-200);
    --bs-btn-active-border-color: var(--bs-gray-300);
    --bs-btn-disabled-color:      var(--bs-gray-400);
    --bs-btn-disabled-border-color: var(--bs-gray-200);
}

/* Dark */
.btn-dark {
    --bs-btn-color:               #fff;
    --bs-btn-bg:                  var(--bs-dark);
    --bs-btn-border-color:        var(--bs-dark);
    --bs-btn-hover-color:         #fff;
    --bs-btn-hover-bg:            var(--bs-gray-800);
    --bs-btn-hover-border-color:  var(--bs-gray-800);
    --bs-btn-active-bg:           var(--bs-gray-700);
}

/* Light */
.btn-light {
    --bs-btn-color:               var(--bs-gray-700);
    --bs-btn-bg:                  var(--bs-light);
    --bs-btn-border-color:        var(--bs-border-color);
    --bs-btn-hover-color:         var(--bs-gray-900);
    --bs-btn-hover-bg:            #f1f5f9;
    --bs-btn-hover-border-color:  var(--bs-gray-300);
}
.btn-outline-light {
    --bs-btn-color:               rgba(255,255,255,0.85);
    --bs-btn-border-color:        rgba(255,255,255,0.35);
    --bs-btn-hover-color:         var(--bs-dark);
    --bs-btn-hover-bg:            #ffffff;
    --bs-btn-hover-border-color:  #ffffff;
}

/* ----------------------------------------------------------------
   5. CARDS
   ---------------------------------------------------------------- */
.card {
    --bs-card-border-radius:       1rem;
    --bs-card-inner-border-radius: 0.875rem;
    --bs-card-border-color:        var(--bs-border-color);
    --bs-card-bg:                  #ffffff;
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--bs-box-shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--bs-box-shadow-lg); }

.card.border-0 { border: none !important; }
.card.shadow-sm {
    box-shadow: 0 1px 4px rgba(var(--bs-dark-rgb),0.06),
                0 4px 12px rgba(var(--bs-dark-rgb),0.04) !important;
}
.card.shadow-sm:hover {
    box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb),0.12),
                0 1px 4px rgba(var(--bs-dark-rgb),0.04) !important;
    transform: translateY(-2px);
}

.card-body { padding: 1.5rem; }
.card.p-4 .card-body,
.card-body.p-4 { padding: 1.5rem !important; }

/* ----------------------------------------------------------------
   6. BACKGROUNDS & SURFACES
   ---------------------------------------------------------------- */
.bg-light { background-color: var(--bs-light) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.bg-dark { background-color: var(--bs-dark) !important; }

.bg-primary-soft,
.bg-primary.bg-opacity-10 { background-color: rgba(var(--bs-primary-rgb), 0.1) !important; }
.bg-success-soft,
.bg-success.bg-opacity-10 { background-color: rgba(var(--bs-success-rgb), 0.1) !important; }
.bg-warning-soft,
.bg-warning.bg-opacity-10 { background-color: rgba(245, 158, 11, 0.1) !important; }
.bg-info-soft,
.bg-info.bg-opacity-10    { background-color: rgba(6, 182, 212, 0.1) !important; }
.bg-danger-soft,
.bg-danger.bg-opacity-10  { background-color: rgba(239, 68, 68, 0.1) !important; }

/* ----------------------------------------------------------------
   7. TEXT COLORS
   ---------------------------------------------------------------- */
.text-primary { color: var(--bs-primary) !important; }
.text-muted   { color: var(--bs-gray-400) !important; }
.text-secondary { color: var(--bs-secondary) !important; }

/* SVG fill overrides */
.fill-primary { fill: var(--bs-primary); }

/* ----------------------------------------------------------------
   8. SECTIONS — SPACING & LAYOUT
   ---------------------------------------------------------------- */
section {
    padding-top:    4rem;
    padding-bottom: 0;
}
section:last-of-type { padding-bottom: 4rem; }

@media (max-width: 767.98px) {
    section { padding-top: 2.5rem; }
    section:last-of-type { padding-bottom: 2.5rem; }
}

/* pt- overrides for sections that specify their own padding */
.pt-3  { padding-top: 1rem   !important; }
.pt-4  { padding-top: 1.5rem !important; }
.pt-5  { padding-top: 3rem   !important; }
.pt-lg-5 { padding-top: 3rem !important; }
.pt-lg-6 { padding-top: 4rem !important; }
.pb-5  { padding-bottom: 3rem !important; }

@media (max-width: 767.98px) {
    .pt-5  { padding-top: 2rem   !important; }
    .pt-lg-5 { padding-top: 2rem !important; }
    .pt-lg-6 { padding-top: 2.5rem !important; }
}

/* ----------------------------------------------------------------
   9. HERO SECTION
   ---------------------------------------------------------------- */
/* Hero heading SVG underline */
.display-5 {
    font-size: clamp(1.9rem, 5vw, 3rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
}

/* Hero dashboard mockup card */
.hero-mockup .card {
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 20px 60px rgba(var(--bs-primary-rgb),0.15),
                0 4px 16px rgba(var(--bs-dark-rgb),0.08);
}
.hero-mockup .card-header {
    border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
}

/* bg-blur badge */
.bg-blur {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-radius: 1rem !important;
}

/* ----------------------------------------------------------------
   10. STATS BLOCK (homepage)
   ---------------------------------------------------------------- */
.stats-block { background: var(--bs-light); }
.stats-block .display-6 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    font-feature-settings: "tnum";
}

/* Homepage stat cards */
.hm-stats-section {
    padding: 2.5rem 0 3rem;
    background: var(--bs-light);
}

.hm-stat-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hm-stat-card:hover {
    box-shadow: 0 4px 20px rgba(var(--bs-dark-rgb), 0.07);
    border-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* Number */
.hm-stat-num {
    font-size: clamp(1.7rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.45rem;
    color: var(--bs-primary);
    font-feature-settings: "tnum";
}

/* Label */
.hm-stat-label {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* ----------------------------------------------------------------
   11. ACCORDION (FAQ)
   ---------------------------------------------------------------- */
.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bs-gray-800);
    background: var(--bs-light);
    border-radius: 0.75rem !important;
    padding: 1rem 1.25rem;
    transition: background 0.2s, color 0.2s;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.07);
    box-shadow: none;
}
.accordion-button::after {
    filter: none;
    background-size: 1rem;
}
.accordion-button:not(.collapsed)::after {
    filter: none;
}
.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.15);
}
.accordion-item {
    border: 1px solid var(--bs-border-color) !important;
    border-radius: 0.75rem !important;
    overflow: hidden;
    background: #ffffff;
}
.accordion-item.mb-3 { margin-bottom: 0.75rem !important; }
.accordion-body {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    padding: 0.25rem 1.25rem 1.25rem;
    line-height: 1.7;
}

.accordion-icon .accordion-button::before { color: var(--bs-primary); }

/* ----------------------------------------------------------------
   12. BADGE
   ---------------------------------------------------------------- */
.badge {
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.35em 0.7em;
    border-radius: 0.5rem;
}
.badge.bg-primary { background-color: var(--bs-primary) !important; }
.badge.bg-white.text-primary { color: var(--bs-primary) !important; }

/* ----------------------------------------------------------------
   13. FORMS (hero mockup)
   ---------------------------------------------------------------- */
.form-control {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.625rem;
    font-size: 0.875rem;
    color: var(--bs-gray-800);
    padding: 0.6rem 0.9rem;
    background-color: var(--bs-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.15);
    background-color: #fff;
}
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-secondary);
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

/* ----------------------------------------------------------------
   14. PRICING SECTION
   ---------------------------------------------------------------- */
/* Pricing cards on /prices page */
.price-wrap .card {
    border-radius: 1.25rem;
}
.price-wrap .card.border-primary {
    border: 2px solid var(--bs-primary) !important;
}
.price-wrap .plan-price {
    font-size: 2rem !important;
    font-weight: 800;
    color: var(--bs-heading-color);
    letter-spacing: -0.04em;
}
.price-wrap .card.shadow {
    box-shadow: 0 8px 40px rgba(var(--bs-primary-rgb),0.14) !important;
}

/* ----------------------------------------------------------------
   15. ROUNDED VARIANTS
   ---------------------------------------------------------------- */
.rounded-3  { border-radius: 0.75rem  !important; }
.rounded-4  { border-radius: 1rem     !important; }
.rounded-5  { border-radius: 1.5rem   !important; }

/* ----------------------------------------------------------------
   16. CARRIER LOGOS
   ---------------------------------------------------------------- */
.carrier-logo {
    filter: grayscale(30%);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s;
}
.carrier-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ----------------------------------------------------------------
   17. USE CASES & INTEGRATION CARDS
   ---------------------------------------------------------------- */
.use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Integration card hover */
.integration-card {
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.integration-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--bs-primary-rgb), 0.4) !important;
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.12) !important;
}

/* ----------------------------------------------------------------
   18. STEPS (How it works)
   ---------------------------------------------------------------- */

/* Connector line between steps (desktop only) */
.steps-row {
    position: relative;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 64px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(var(--bs-primary-rgb), 0.35) 0,
        rgba(var(--bs-primary-rgb), 0.35) 8px,
        transparent 8px,
        transparent 18px
    );
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 767.98px) {
    .steps-row::before { display: none; }
}

/* Step badge: number circle + icon chip */
.step-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

/* Large gradient number */
.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #a78bfa 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow:
        0 8px 24px rgba(var(--bs-primary-rgb), 0.40),
        0 0 0 8px rgba(var(--bs-primary-rgb), 0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}
.col-md-4:hover .step-num {
    transform: translateY(-3px);
    box-shadow:
        0 14px 32px rgba(var(--bs-primary-rgb), 0.50),
        0 0 0 10px rgba(var(--bs-primary-rgb), 0.12);
}

/* Small icon chip below the number */
.step-icon-chip {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 0.85rem;
    margin-top: -14px; /* overlaps the bottom of step-num */
}

/* ----------------------------------------------------------------
   19. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
    background: var(--bs-dark);
    color: var(--bs-gray-400);
    margin-top: 3rem;
}

.footer-brand img { display: block; opacity: 0.8; width: 15rem }

.footer-desc {
    font-size: 0.875rem;
    color: #7a90a8;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: #8ba0b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--bs-border-color); }

.footer-heading {
    color: #c8d5e3;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #8ba0b8;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.1rem 0;
    display: inline-block;
}
.footer-nav a:hover { color: var(--bs-border-color); }

.footer-bottom {
    border-top: 1px solid #1a2540;
    padding: 0.9rem 0;
    font-size: 0.875rem;
    color: #7a90a8;
}

/* ----------------------------------------------------------------
   20. MISC UTILITIES
   ---------------------------------------------------------------- */

/* Icon containers */
.icon-md {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-xl {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Text primary color on icons */
.text-primary .bi,
.text-primary i { color: var(--bs-primary); }

/* Divider line */
.divider { border-color: var(--bs-border-color); }

/* Back-to-top button */
.back-top {
    background: var(--bs-primary);
    border-radius: 0.625rem;
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb),0.4);
}

/* ----------------------------------------------------------------
   21. RESPONSIVE TWEAKS
   ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
    /* Navbar mobile */
    .navbar-collapse {
        border-top: 1px solid var(--bs-border-color);
        padding: 0.75rem 0;
    }
    .navbar .nav-link {
        padding: 0.65rem 0 !important;
    }
    .navbar .nav-link:last-child { border-bottom: none; }
    .navbar .btn-primary { margin-top: 0.75rem; width: 100%; }
    .navbar .dropdown-menu { box-shadow: none; border: none;  }
}

@media (max-width: 767.98px) {
    /* Hero */
    .display-5 { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; }
    .lead { font-size: 1rem; }

    /* Stats */
    .stats-block .display-6 { font-size: 1.6rem; }
    .hm-stat-card { padding: 1.25rem 0.9rem 1.1rem; }
    .hm-stat-num { font-size: 1.5rem; }
    .hm-stat-label { font-size: 0.74rem; }

    /* Buttons full-width on small screens for CTA sections */
    .hero-cta .btn { width: 100%; justify-content: center; }

    /* Cards */
    .card-body { padding: 1.25rem; }

    /* Section heading */
    h2.fs-2 { font-size: 1.5rem !important; }
}

@media (max-width: 575.98px) {
    .btn-lg { font-size: 0.9rem; padding: 0.7rem 1.35rem; }
}

/* ----------------------------------------------------------------
   22. PRICING PLAN TOGGLE
   ---------------------------------------------------------------- */
.plan-price { font-size: 1.6rem !important; }

/* ----------------------------------------------------------------
   23. CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-icon-box {
    background: rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-icon-box:hover {
    background: rgba(var(--bs-primary-rgb), 0.14);
    box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb),0.1);
}

/* ----------------------------------------------------------------
   24. WHY US SECTION
   ---------------------------------------------------------------- */
.why-us-wrap {
    background: linear-gradient(135deg, #f8f7ff 0%, #f0f4ff 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}
.why-us-wrap .card {
    background: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-us-wrap .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.13) !important;
}
.why-us-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1;
}

/* ----------------------------------------------------------------
   25. INTEGRATION CARDS
   ---------------------------------------------------------------- */
.integration-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.13) !important;
}
.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}
.integration-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}
/* API card icon */
.integration-api-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.25rem;
}
.integration-card-api {
    background: rgba(var(--bs-primary-rgb), 0.05) !important;
}
.integration-card-more {
    background: #f8f9fa !important;
    border: 2px dashed #dee2e6 !important;
    color: #6c757d;
}
.integration-card-more:hover {
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary);
}

/* ----------------------------------------------------------------
   26. PAGE TRANSITIONS & ANIMATION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .btn,
    .nav-link,
    .dropdown-item,
    .accordion-button,
    a { transition-duration: 0.2s; }
}

/* ================================================================
   HERO SECTION — Full redesign
   ================================================================ */

/* ── Keyframes ── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes blobPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%       { transform: scale(1.08) rotate(8deg); }
}
@keyframes smsFadeIn {
    from { opacity: 0; transform: translateX(-16px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%            { transform: translateY(-5px); opacity: 1; }
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Section vertical rhythm ── */
.py-section    { padding-top: 4rem;   padding-bottom: 4rem; }
.py-section-sm { padding-top: 2.5rem; padding-bottom: 2rem; }
.py-section-lg { padding-top: 5.5rem; padding-bottom: 5.5rem; }

@media (max-width: 767.98px) {
    .py-section    { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .py-section-sm { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .py-section-lg { padding-top: 3rem;   padding-bottom: 3rem; }
}

/* ── Section wrapper ── */
.hero-section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0rem;
    background: linear-gradient(160deg, #e4e9ff 0%, #eef1ff 35%, #f7f8ff 65%, #ffffff 100%);
}

/* Blob container clips the decorative blobs without clipping the phone shadow */
.hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 992px) {
    .hero-section { padding-top: 6rem; padding-bottom: 5rem; }
}

/* ── Background blobs ── */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb),0.14) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: blobPulse 10s ease-in-out infinite;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb),0.08) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    animation: blobPulse 14s ease-in-out infinite reverse;
}

/* ── Copy block ── */
.hero-copy {
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.7s ease both;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--bs-primary);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.25);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}
.hero-badge i {
    color: var(--bs-success);
}

/* Title */
.hero-title {
    font-size: clamp(1.87rem, 4.25vw, 2.89rem);
    /*font-size: clamp(2.2rem, 5vw, 3.4rem);*/
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--bs-dark);
    margin-bottom: 1.25rem;
}
.hero-title-accent {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bs-secondary);
    margin-bottom: 2rem;
}
.hero-subtitle strong { color: var(--bs-dark); }

/* Buttons row */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Hint line */
.hero-hint {
    font-size: 0.8rem;
    color: var(--bs-gray-400);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.hero-hint .bi-shield-check { color: var(--bs-success); margin-right: 0.25rem; }

/* Carriers */
.hero-carriers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-carriers-label {
    font-size: 0.78rem;
    color: var(--bs-gray-400);
    font-weight: 500;
}
.hero-carriers img {
    height: 22px;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: opacity 0.2s, filter 0.2s;
}
.hero-carriers img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ── iPhone visual ── */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.8s 0.2s ease both;
}

/* iPhone wrap — floats gently */
.iphone-wrap {
    animation: heroFloat 6s ease-in-out infinite;
    position: relative;
    padding: 10px 20px 30px;
}

/* iPhone frame — 230 px wide, ~430 px tall (iPhone proportions 1:2.05) */
.iphone {
    position: relative;
    width: 270px;
    background: linear-gradient(160deg, #2c2c2e 0%, #1c1c1e 60%, #111114 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 0 0 2px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 22px 55px rgba(0,0,0,0.32),
        0 5px 15px rgba(var(--bs-primary-rgb),0.12);
}

/* Side buttons — scaled to 230 px */
.iphone-btn-vol-up,
.iphone-btn-vol-dn,
.iphone-btn-silent {
    position: absolute;
    left: -3px;
    width: 3px;
    border-radius: 2px 0 0 2px;
    background: linear-gradient(to right, #1c1c1e, #2c2c2e);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.iphone-btn-silent { top: 66px;  height: 24px; }
.iphone-btn-vol-up { top: 104px; height: 33px; }
.iphone-btn-vol-dn { top: 146px; height: 33px; }
.iphone-btn-power  {
    position: absolute;
    right: -3px;
    top: 121px;
    width: 3px;
    height: 52px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(to left, #1c1c1e, #2c2c2e);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Screen */
.iphone-screen {
    background: #f2f2f7;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 410px;
}

/* iOS Navigation bar */
.ios-nav {
    display: flex;
    align-items: center;
    padding: 20px 14px 10px;
    background: rgba(242,242,247,0.95);
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
    gap: 8px;
    flex-shrink: 0;
}
.ios-back {
    background: none;
    border: none;
    padding: 4px 6px 4px 0;
    cursor: default;
    display: flex;
    align-items: center;
}
.ios-nav-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ios-nav-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 2px;
}
.ios-nav-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bs-dark);
    line-height: 1.1;
}
.ios-nav-sub {
    font-size: 0.62rem;
    color: #8e8e93;
}
.ios-nav-actions {
    display: flex;
    align-items: center;
    cursor: default;
}

/* Messages area */
.ios-messages {
    flex: 1;
    padding: 10px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.ios-date-sep {
    text-align: center;
    font-size: 0.65rem;
    color: #8e8e93;
    font-weight: 500;
    padding: 3px 0 8px;
    letter-spacing: 0.01em;
}

/* Bubble wrapper */
.ios-bubble-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4px;
    opacity: 0;
}

/* iOS-style SMS bubble */
.ios-bubble {
    background: #e9e9eb;
    color: var(--bs-dark);
    border-radius: 18px 18px 18px 5px;
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 90%;
    word-break: break-word;
}
.ios-bubble strong { color: var(--bs-dark); font-weight: 700; }

.ios-otp {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #007AFF;
    margin-top: 2px;
}

.ios-bubble-time {
    font-size: 0.6rem;
    color: #8e8e93;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.ios-delivered {
    color: #8e8e93;
    font-size: 0.58rem;
}

/* Staggered fade-in */
.ios-anim-1 { animation: smsFadeIn 0.45s 0.7s ease forwards; }
.ios-anim-2 { animation: smsFadeIn 0.45s 1.4s ease forwards; }
.ios-anim-3 { animation: smsFadeIn 0.45s 2.1s ease forwards; }
.ios-anim-4 { animation: smsFadeIn 0.45s 2.8s ease forwards; }

/* Typing indicator */
.ios-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 9px 12px;
    background: #e9e9eb;
    border-radius: 18px 18px 18px 5px;
    width: 50px;
    opacity: 0;
    animation: smsFadeIn 0.4s 3.5s ease forwards;
}
.ios-typing span {
    width: 6px; height: 6px;
    background: #8e8e93;
    border-radius: 50%;
    animation: typingDot 1.3s ease-in-out infinite;
}
.ios-typing span:nth-child(2) { animation-delay: 0.18s; }
.ios-typing span:nth-child(3) { animation-delay: 0.36s; }

/* iPhone home indicator */
.iphone-home-bar {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f7;
    flex-shrink: 0;
}
.iphone-home-bar::after {
    content: "";
    width: 88px; height: 4px;
    background: var(--bs-dark);
    border-radius: 2px;
    opacity: 0.18;
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
    .hero-section { padding-top: 3.5rem; padding-bottom: 3rem; }
    .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 575.98px) {
    .hero-badge { font-size: 0.75rem; }
    .hero-carriers { gap: 0.75rem; }
    .hero-carriers img { height: 18px; }
}

/* ── Final CTA gradient block ── */
.cta-final {
    background: linear-gradient(135deg, #f8f7ff 0%, #f0f4ff 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}

/* ================================================================
   FONT OVERRIDE — Replace all "Open Sans" / "Poppins" from style.css
   Single font: Manrope (Cyrillic + Latin Extended)
   ================================================================ */

/* ── Font override ──────────────────────────────────────────────
   Force Manrope on all elements. Pseudo-elements (::before/::after)
   are intentionally NOT overridden so that:
   • Bootstrap Icons (sets font-family: bootstrap-icons !important on ::before)
   • Font Awesome dropdown carets (sets font-family: FA on ::after in style.css)
   …all continue to render correctly via their own rules.
   ──────────────────────────────────────────────────────────────── */
* {
    font-family: "Manrope", sans-serif !important;
}

/* Restore monospace */
pre, code, kbd, samp, .font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas,
                 "Liberation Mono", "Courier New", monospace !important;
}

/* Restore Font Awesome on elements (pseudo-elements inherit from parent) */
.fa, .fas, .far, .fal, .fad, .fa-classic, .fa-solid, .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
}
.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

/* ================================================================
   SHARED: INNER PAGE HERO SECTIONS
   One rule set replaces 8×5 = 40 identical CSS blocks
   ================================================================ */

.about-hero-section, .intg-hero-section, .dev-hero-section,
.faq-hero-section, .ct-hero-section, .pr-hero-section,
.intg-list-hero, .pg-hero-section, .pr-intl-hero-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: linear-gradient(160deg, #e4e9ff 0%, #eef1ff 35%, #f7f8ff 65%, #ffffff 100%);
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .about-hero-section, .intg-hero-section, .dev-hero-section,
    .faq-hero-section, .ct-hero-section, .pr-hero-section,
    .intg-list-hero, .pg-hero-section, .pr-intl-hero-section { padding: 3.5rem 0 4rem; }
}

.about-hero-blobs, .intg-hero-blobs, .dev-hero-blobs,
.faq-hero-blobs, .ct-hero-blobs, .pr-hero-blobs,
.intg-list-blobs, .pg-hero-blobs, .pr-intl-hero-blobs {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none; z-index: 0;
}

.about-blob, .intg-blob, .dev-blob,
.faq-blob, .ct-blob, .pr-blob,
.intg-list-blob, .pg-blob, .pr-intl-blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
}

.about-blob-1, .intg-blob-1, .dev-blob-1,
.faq-blob-1, .ct-blob-1, .pr-blob-1,
.intg-list-blob-1, .pg-blob-1, .pr-intl-blob-1 {
    width: 520px; height: 520px;
    background: rgba(var(--bs-primary-rgb), 0.14);
    top: -120px; right: -100px;
    animation: blobPulse 12s ease-in-out infinite;
}

.about-blob-2, .intg-blob-2, .dev-blob-2,
.faq-blob-2, .ct-blob-2, .pr-blob-2,
.intg-list-blob-2, .pg-blob-2, .pr-intl-blob-2 {
    width: 360px; height: 360px;
    background: rgba(var(--bs-purple-rgb), 0.09);
    bottom: -80px; left: -80px;
    animation: blobPulse 16s ease-in-out infinite reverse;
}

/* ----------------------------------------------------------------
   27. ABOUT PAGE
   ---------------------------------------------------------------- */

.about-hero-copy {
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.7s ease both;
}

.about-hero-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--bs-dark);
    margin-bottom: 1.25rem;
}

.about-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--bs-secondary);
    margin-bottom: 0.9rem;
}

/* ── Stats grid ── */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.75s 0.15s ease both;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(var(--bs-primary-rgb), 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.16);
}
.about-stat-card--accent {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb),0.07) 0%, rgba(var(--bs-purple-rgb),0.07) 100%);
}

.about-stat-num {
    font-size: clamp(1.55rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 0.45rem;
    font-feature-settings: "tnum";
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--bs-secondary);
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 575.98px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-stat-card { padding: 1.1rem 0.9rem; }
    .about-stat-num { font-size: 1.4rem; }
}

/* ── Photo gallery ── */
.about-gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1rem;
    align-items: start;
}

.about-gallery-main .about-gallery-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1.25rem;
    display: block;
    box-shadow: 0 8px 32px rgba(var(--bs-dark-rgb),0.1);
}

.about-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2.5rem;
}

.about-gallery-side .about-gallery-img {
    width: 100%;
    height: 197px;
    object-fit: cover;
    border-radius: 1.25rem;
    display: block;
    box-shadow: 0 4px 20px rgba(var(--bs-dark-rgb),0.08);
}

@media (max-width: 767.98px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }
    .about-gallery-main .about-gallery-img {
        height: 260px;
    }
    .about-gallery-side {
        flex-direction: row;
        padding-top: 0;
    }
    .about-gallery-side .about-gallery-img {
        height: 155px;
        flex: 1;
    }
}

/* ── Values cards ── */
.about-value-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.13) !important;
}

/* ── Offer wrap ── */
.about-offer-wrap {
    background: linear-gradient(135deg, #f8f7ff 0%, #f0f4ff 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}

/* ── Breadcrumb bar ── */
.about-breadcrumb-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--bs-border-color);
    padding: 0.55rem 0;
}
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    margin: 0;
}

/* ── Advantage cards ── */
.about-adv-card {
    background: #ffffff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.about-adv-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    box-shadow: 0 12px 36px rgba(var(--bs-primary-rgb), 0.13);
    transform: translateY(-3px);
}
.about-adv-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.875rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}
.about-adv-icon--green { background: rgba(var(--bs-success-rgb), 0.1); color: var(--bs-success); }
.about-adv-icon--purple { background: rgba(124, 92, 191, 0.12); color: #7c5cbf; }
.about-adv-icon--orange { background: rgba(var(--bs-warning-rgb), 0.12); color: var(--bs-warning); }
.about-adv-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.75rem;
}
.about-adv-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.about-adv-check { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.75rem; }

/* ── Industries section ── */
.about-industries-section {
    background: linear-gradient(135deg, #f8f7ff 0%, #f0f4ff 100%);
}
.about-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991.98px) { .about-industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .about-industry-grid { grid-template-columns: 1fr; } }

.about-industry-card {
    background: #ffffff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.about-industry-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.35);
    box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-2px);
}
.about-industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.about-industry-icon--green  { background: rgba(var(--bs-success-rgb), 0.1);  color: var(--bs-success); }
.about-industry-icon--red    { background: rgba(var(--bs-danger-rgb), 0.1);   color: var(--bs-danger); }
.about-industry-icon--purple { background: rgba(var(--bs-purple-rgb), 0.12);  color: #7c5cbf; }
.about-industry-icon--orange { background: rgba(var(--bs-warning-rgb), 0.12); color: var(--bs-warning); }
.about-industry-title { font-size: 0.95rem; font-weight: 700; color: var(--bs-dark); margin-bottom: 0.4rem; }
.about-industry-desc  { font-size: 0.83rem; color: var(--bs-secondary); line-height: 1.55; margin: 0; }

/* ── Delivery process steps ── */
.about-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 767.98px) { .about-process-steps { grid-template-columns: 1fr; } }

.about-process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1.5px solid var(--bs-border-color);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.about-process-step:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.3);
    box-shadow: 0 6px 24px rgba(var(--bs-primary-rgb), 0.09);
}
.about-process-num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--bs-primary);
    line-height: 1;
    opacity: 0.35;
    flex-shrink: 0;
    min-width: 2.5rem;
    padding-top: 0.1rem;
}
.about-process-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.4rem;
}

/* ── Stats row (4-column horizontal) ── */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 767.98px) {
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── Timeline ── */
.about-timeline {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 4.25rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 1px;
    background: var(--bs-border-color);
}
.about-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.1rem 0;
}
.about-tl-year {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--bs-primary);
    min-width: 2.75rem;
    text-align: right;
    flex-shrink: 0;
    padding-top: 0.15rem;
    letter-spacing: -0.02em;
}
.about-tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-primary);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2.5px rgba(var(--bs-primary-rgb), 0.3);
    flex-shrink: 0;
    margin-top: 0.35rem;
}
.about-tl-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.2rem;
}
.about-tl-body p {
    font-size: 0.83rem;
    color: var(--bs-secondary);
    margin: 0;
    line-height: 1.55;
}

/* ── Clients marquee ── */
.about-clients-section {
    padding: 3rem 0 3.5rem;
    background: var(--bs-light);
    overflow: hidden;
}
.about-clients-header {
    text-align: center;
    margin-bottom: 2rem;
}
.about-clients-label {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-secondary);
    margin-bottom: 0.4rem;
}
.about-clients-sub {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-bottom: 0;
}
.about-clients-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.about-clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: aboutMarquee 38s linear infinite;
}
.about-clients-viewport:hover .about-clients-track {
    animation-play-state: paused;
}
@keyframes aboutMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.about-clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    flex-shrink: 0;
}
.about-clients-logo {
    height: 34px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.3s ease;
    display: block;
}
.about-clients-viewport:hover .about-clients-logo {
    filter: grayscale(100%) opacity(0.75);
}
.about-clients-item:hover .about-clients-logo {
    filter: grayscale(0%) opacity(1);
}
@media (max-width: 575.98px) {
    .about-clients-item { padding: 0 1.75rem; }
    .about-clients-logo { height: 28px; }
}

/* ── Product highlight block ── */
.about-highlight-wrap {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.06) 0%, rgba(var(--bs-purple-rgb), 0.09) 100%);
    border: 1.5px solid rgba(var(--bs-primary-rgb), 0.18);
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
}
@media (max-width: 767.98px) {
    .about-highlight-wrap { padding: 2rem 1.5rem; }
}
.about-highlight-lead {
    font-size: 1.05rem;
    color: var(--bs-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}
.about-mod-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    transition: background 0.2s, box-shadow 0.2s;
}
.about-mod-feature + .about-mod-feature {
    margin-top: 0.875rem;
}
.about-mod-feature:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb), 0.1);
}
.about-mod-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-mod-feature h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.25rem;
}
.about-mod-feature p {
    font-size: 0.83rem;
    color: var(--bs-secondary);
    margin: 0;
    line-height: 1.55;
}

/* ── Mission callout box ── */
.about-mission-box {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.07) 0%, rgba(var(--bs-purple-rgb), 0.07) 100%);
    border: 1.5px solid rgba(var(--bs-primary-rgb), 0.15);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
}
.about-mission-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--bs-dark);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* ── Feature items (legacy, kept for compatibility) ── */
.about-feature {
    padding: 0.85rem;
    border-radius: 0.75rem;
    transition: background 0.2s;
}
.about-feature:hover {
    background: rgba(var(--bs-primary-rgb), 0.06);
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 0.625rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1rem;
}

/* ----------------------------------------------------------------
   28. INTEGRATION VIEW PAGE
   ---------------------------------------------------------------- */

/* ── Breadcrumb bar (sits tight below navbar) ── */
.intg-breadcrumb-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--bs-border-color);
    padding: 0.55rem 0;
}
.intg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    margin: 0;
}
.intg-breadcrumb a {
    color: var(--bs-secondary);
    text-decoration: none;
    transition: color 0.15s;
}
.intg-breadcrumb a:hover { color: var(--bs-primary); }
.intg-breadcrumb span { color: var(--bs-dark); font-weight: 600; }
.intg-breadcrumb .bi { font-size: 0.6rem; color: var(--bs-gray-300); }

/* Copy */
.intg-hero-copy { position: relative; z-index: 1; animation: heroFadeUp 0.7s ease both; }

.intg-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}
.intg-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--bs-secondary);
    margin-bottom: 1.75rem;
}
.intg-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Connection visual ── */
.intg-connect-visual {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.75s 0.15s ease both;
}

/* Cards */
.intg-connect-card {
    background: #ffffff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.18);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    width: 170px;
    box-shadow:
        0 4px 24px rgba(var(--bs-primary-rgb), 0.1),
        0 1px 4px rgba(var(--bs-dark-rgb), 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}
.intg-connect-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(var(--bs-primary-rgb), 0.18),
        0 2px 8px rgba(var(--bs-dark-rgb), 0.06);
}
.intg-connect-card--partner {
    background: linear-gradient(160deg, rgba(var(--bs-primary-rgb),0.03) 0%, rgba(var(--bs-purple-rgb),0.06) 100%);
    border-color: rgba(var(--bs-primary-rgb), 0.22);
}

.intg-connect-img {
    max-height: 52px;
    max-width: 110px;
    object-fit: contain;
}

.intg-connect-fallback-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bs-primary), #a78bfa);
    color: white;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.intg-connect-card-desc {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.intg-connect-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bs-success);
    background: rgba(var(--bs-success-rgb), 0.08);
    border: 1px solid rgba(var(--bs-success-rgb), 0.2);
    border-radius: 2rem;
    padding: 0.2rem 0.65rem;
}
.intg-connect-status::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--bs-success);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Bridge */
.intg-connect-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.25rem;
    flex: 1;
    min-width: 80px;
}

.intg-bridge-rail {
    width: 100%;
    height: 3px;
    background: rgba(var(--bs-primary-rgb), 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.intg-bridge-pulse {
    position: absolute;
    top: 0; left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bs-primary) 40%, #a78bfa, transparent);
    border-radius: 2px;
    animation: bridgeFlow 1.8s ease-in-out infinite;
}
.intg-bridge-pulse--reverse {
    animation: bridgeFlowReverse 1.8s ease-in-out infinite;
    animation-delay: 0.9s;
}

@keyframes bridgeFlow {
    0%   { left: -50%; }
    100% { left: 110%; }
}
@keyframes bridgeFlowReverse {
    0%   { left: 110%; transform: scaleX(-1); }
    100% { left: -50%; transform: scaleX(-1); }
}

.intg-bridge-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: #ffffff;
    border: 1.5px solid rgba(var(--bs-primary-rgb), 0.3);
    border-radius: 2rem;
    padding: 0.25rem 0.7rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.12);
}

/* Tablet: hero copy + visual stack, visual centers */
@media (max-width: 991.98px) {
    .intg-hero-section { padding: 4rem 0 5rem; }
    .intg-hero-title { font-size: clamp(1.75rem, 5vw, 2.4rem); }
    .intg-hero-lead { font-size: 1rem; margin-bottom: 1.5rem; }
    .intg-connect-visual { justify-content: center; }
}

/* Phone */
@media (max-width: 767.98px) {
    .intg-hero-section { padding: 3.5rem 0 4rem; }
    .about-hero-section { padding: 3.5rem 0 4rem; }
    .dev-hero-section { padding: 3.5rem 0 4rem; }
    .intg-hero-title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .intg-hero-actions .btn { flex: 1; justify-content: center; }
    .intg-connect-visual { gap: 0.6rem; }
    .intg-connect-card { padding: 1.5rem 1.25rem; width: 130px; gap: 0.6rem; }
    .intg-connect-img { max-height: 40px; max-width: 90px; }
    .intg-connect-card-desc { font-size: 0.7rem; }
    .intg-connect-bridge { min-width: 44px; gap: 0.4rem; }
    .intg-bridge-badge { font-size: 0.6rem; padding: 0.18rem 0.5rem; }
}

/* Small phones */
@media (max-width: 425px) {
    .intg-connect-card { width: 140px; padding: 1.25rem 1rem; }
    .intg-connect-img { max-height: 34px; max-width: 76px; }
    .intg-connect-card-desc { font-size: 0.65rem; }
    .intg-connect-bridge { min-width: 36px; }
    .intg-bridge-rail { display: none; }
}

/* ── Content area (CKEditor output) ── */
.intg-content {
    font-size: 0.975rem;
    line-height: 1.8;
    color: var(--bs-body-color);
}
.intg-content > *:first-child { margin-top: 0 !important; }

.intg-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--bs-dark);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(var(--bs-primary-rgb), 0.14);
}
.intg-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
}
.intg-content p { margin-bottom: 1rem; }
.intg-content ul, .intg-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.intg-content li { margin-bottom: 0.45rem; }
.intg-content strong { color: var(--bs-gray-800); font-weight: 600; }
.intg-content a { color: var(--bs-primary); }
.intg-content .btn { color: var(--bs-btn-color, #fff) !important; }

/* Feature grid inside content */
.intg-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.75rem 0;
}
.intg-feature-card {
    background: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.intg-feature-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    box-shadow: 0 4px 18px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-2px);
}
.intg-feature-icon {
    width: 40px; height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.625rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.intg-feature-card h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.3rem;
}
.intg-feature-card p {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Numbered steps inside content */
.intg-steps {
    list-style: none !important;
    padding: 0 !important;
    margin: 1.75rem 0 !important;
    counter-reset: intg-step;
}
.intg-steps > li {
    display: flex !important;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
    counter-increment: intg-step;
    margin-bottom: 0 !important;
}
.intg-steps > li:last-child { border-bottom: none; }
.intg-steps > li::before {
    content: counter(intg-step);
    min-width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #a78bfa 100%);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.38);
}

/* Note box inside content */
.intg-note {
    background: rgba(var(--bs-primary-rgb), 0.06);
    border-left: 3px solid var(--bs-primary);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}
.intg-note p { margin-bottom: 0; color: var(--bs-body-color); }

/* Price card (Altegio non-standard pricing) */
.intg-price-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    margin: 1.75rem 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.intg-price-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.3);
    box-shadow: 0 4px 18px rgba(var(--bs-primary-rgb), 0.08);
}

.intg-price-card__info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    padding: 1.35rem 1.5rem;
}

.intg-price-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.intg-price-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.3rem;
}

.intg-price-card__text {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    margin-bottom: 0;
    line-height: 1.55;
}

.intg-price-card__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.35rem 1.75rem;
    background: rgba(var(--bs-primary-rgb), 0.07);
    border-left: 1px solid rgba(var(--bs-primary-rgb), 0.12);
    min-width: 140px;
    flex-shrink: 0;
    align-self: stretch;
}

.intg-price-card__num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.intg-price-card__sub {
    font-size: 0.7rem;
    color: var(--bs-secondary);
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .intg-price-card {
        flex-direction: column;
    }
    .intg-price-card__price-wrap {
        border-left: none;
        border-top: 1px solid rgba(var(--bs-primary-rgb), 0.12);
        width: 100%;
        padding: 1rem 1.5rem;
        flex-direction: row;
        gap: 0.75rem;
        align-items: baseline;
        text-align: left;
    }
    .intg-price-card__sub { white-space: normal; }
}

/* Screenshot inside content */
.intg-screenshot {
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(var(--bs-dark-rgb), 0.1);
    margin: 2rem 0;
    border: 1px solid var(--bs-border-color);
}
.intg-screenshot img { width: 100%; display: block; }

/* ----------------------------------------------------------------
   29. API NAV LINK
   ---------------------------------------------------------------- */
.nav-link-api {
    color: var(--bs-primary) !important;
    font-weight: 600;
}
.nav-link-api:hover { color: var(--bs-link-hover-color) !important; }

/* ----------------------------------------------------------------
   30. LANGUAGE SWITCHER
   ---------------------------------------------------------------- */
.lang-switcher { display: flex; align-items: center; margin-left: 0.5rem; }

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    border: 1.5px solid rgba(var(--bs-primary-rgb), 0.35);
    background: transparent;
    color: var(--bs-gray-700);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
    white-space: nowrap;
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
    background: rgba(var(--bs-primary-rgb), 0.09);
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.15);
}

.lang-btn-icon {
    font-size: 0.95rem;
    opacity: 0.75;
}
.lang-btn:hover .lang-btn-icon,
.lang-btn[aria-expanded="true"] .lang-btn-icon { opacity: 1; }

.lang-btn-code {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
}

.lang-btn-chevron {
    font-size: 0.65rem;
    opacity: 0.55;
    transition: transform 0.2s;
}
.lang-btn[aria-expanded="true"] .lang-btn-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}

/* Dropdown */
.lang-dropdown {
    min-width: 150px;
    padding: 0.4rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.875rem;
    box-shadow: 0 8px 30px rgba(var(--bs-dark-rgb), 0.1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.5rem;
    color: var(--bs-gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.lang-option:hover {
    background: rgba(var(--bs-primary-rgb), 0.07);
    color: var(--bs-primary);
}
.lang-option.active {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-weight: 700;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.lang-name { flex: 1; }

.lang-check {
    font-size: 0.85rem;
    color: var(--bs-primary);
    margin-left: auto;
}

/* Mobile — inside collapsed navbar */
@media (max-width: 1199.98px) {
    .navbar-collapse .lang-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        padding-bottom: 0.75rem;
    }
    .navbar-collapse .lang-btn {
        padding: 0.4rem 0.9rem;
    }
    .navbar-collapse .lang-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--bs-border-color);
        margin-top: 0.35rem !important;
    }
}

/* ----------------------------------------------------------------
   31. DEVELOPERS PAGE
   ---------------------------------------------------------------- */

.dev-hero-copy { position: relative; z-index: 1; }

.dev-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}

.dev-hero-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dev-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.dev-stat { display: flex; flex-direction: column; }
.dev-stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1.2;
}
.dev-stat-label { font-size: 0.75rem; color: var(--bs-secondary); }
.dev-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--bs-border-color);
    flex-shrink: 0;
}

.dev-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.dev-docs-btn { position: relative; }
.dev-docs-soon {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--bs-warning);
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Terminal widget */
.dev-terminal {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(var(--bs-dark-rgb), 0.16), 0 4px 16px rgba(var(--bs-dark-rgb), 0.08);
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--bs-dark);
}

.dev-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bs-gray-800);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dev-terminal-dots { display: flex; gap: 6px; }
.dev-terminal-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--bs-body-color);
}
.dev-terminal-dots span:nth-child(1) { background: var(--bs-danger); }
.dev-terminal-dots span:nth-child(2) { background: var(--bs-warning); }
.dev-terminal-dots span:nth-child(3) { background: var(--bs-success); }

.dev-terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: var(--bs-secondary);
}

.dev-terminal-body { padding: 1.25rem; }

.dev-terminal-response {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.dev-terminal-response-label {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

/* Code blocks */
.dev-code-block,
.dev-code-full {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--bs-border-color);
    margin: 0;
    white-space: pre;
    overflow-x: auto;
    background: transparent;
}
.dev-code-response { color: var(--bs-gray-400); }

/* Syntax colours */
.dc-comment { color: var(--bs-body-color); font-style: italic; }
.dc-kw      { color: var(--bs-primary); }
.dc-str     { color: #86efac; }
.dc-val     { color: #fde68a; }
.dc-prop    { color: #7dd3fc; }
.dc-num     { color: #f9a8d4; }
.dc-var     { color: #c084fc; }
.dc-key     { color: #fb923c; }

/* Capabilities grid */
.dev-caps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) { .dev-caps-grid { grid-template-columns: repeat(4, 1fr); } }

.dev-cap-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.dev-cap-card:hover {
    box-shadow: 0 8px 30px rgba(var(--bs-primary-rgb), 0.12);
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    transform: translateY(-2px);
}
.dev-cap-icon {
    width: 2.5rem; height: 2.5rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.625rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
}
.dev-cap-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.4rem;
}
.dev-cap-card p {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    margin: 0;
    line-height: 1.55;
}

/* Code section */
.dev-code-section { background: var(--bs-light); }

.dev-code-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 8px 40px rgba(var(--bs-dark-rgb), 0.06);
}

.dev-lang-tabs {
    display: flex;
    background: var(--bs-gray-800);
    padding: 0.75rem 1rem 0;
    gap: 0.25rem;
    overflow-x: auto;
}
.dev-lang-tab {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-secondary);
    background: transparent;
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.dev-lang-tab:hover { color: var(--bs-gray-400); background: rgba(255,255,255,0.05); }
.dev-lang-tab.active { background: var(--bs-dark); color: var(--bs-border-color); }

.dev-example-tabs {
    display: flex;
    background: var(--bs-dark);
    padding: 0.5rem 1.25rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow-x: auto;
}
.dev-example-tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bs-body-color);
    background: transparent;
    border: 1px solid transparent;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.dev-example-tab:hover { color: var(--bs-gray-400); }
.dev-example-tab.active {
    background: rgba(var(--bs-primary-rgb), 0.15);
    color: var(--bs-primary);
    border-color: rgba(var(--bs-primary-rgb), 0.3);
}

.dev-code-panels { background: var(--bs-dark); padding: 1.5rem; }
.dev-code-panel { display: none; }
.dev-code-panel.active { display: block; }

/* Getting started */
.dev-start-section { background: var(--bs-light); }

.dev-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .dev-steps-grid { grid-template-columns: repeat(3, 1fr); } }

.dev-step-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    position: relative;
    transition: box-shadow 0.2s;
}
.dev-step-card:hover { box-shadow: 0 12px 40px rgba(var(--bs-primary-rgb), 0.1); }

.dev-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(var(--bs-primary-rgb), 0.1);
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-variant-numeric: tabular-nums;
}

.dev-step-icon {
    width: 3rem; height: 3rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dev-step-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.625rem;
}
.dev-step-card p {
    font-size: 0.875rem;
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.65;
}

/* Status list */
.dev-status-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.dev-status-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
}
.dev-status-item i { font-size: 1.1rem; flex-shrink: 0; }
.dev-status-item strong { display: block; font-size: 0.875rem; font-weight: 700; font-family: monospace; }
.dev-status-item span  { display: block; font-size: 0.78rem; color: var(--bs-secondary); }

.dev-status-delivered { background: rgba(var(--bs-success-rgb), 0.07); border-color: rgba(var(--bs-success-rgb), 0.2); }
.dev-status-delivered i { color: var(--bs-success); }
.dev-status-delivered strong { color: #065f46; }

.dev-status-queued { background: rgba(245, 158, 11, 0.07); border-color: rgba(245, 158, 11, 0.2); }
.dev-status-queued i { color: var(--bs-warning); }
.dev-status-queued strong { color: #78350f; }

.dev-status-failed { background: rgba(239, 68, 68, 0.07); border-color: rgba(239, 68, 68, 0.2); }
.dev-status-failed i { color: var(--bs-danger); }
.dev-status-failed strong { color: #7f1d1d; }

.dev-status-rejected { background: rgba(var(--bs-secondary-rgb), 0.07); border-color: rgba(var(--bs-secondary-rgb), 0.2); }
.dev-status-rejected i { color: var(--bs-secondary); }
.dev-status-rejected strong { color: var(--bs-gray-700); }

/* Params table */
.dev-params-table-wrap {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 12px rgba(var(--bs-dark-rgb),0.04);
}
.dev-params-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.dev-params-table thead tr { background: var(--bs-light); }
.dev-params-table th {
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    border-bottom: 1px solid var(--bs-border-color);
}
.dev-params-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--bs-gray-700);
    vertical-align: top;
}
.dev-params-table tbody tr:last-child td { border-bottom: none; }
.dev-params-table tbody tr:hover td { background: var(--bs-light); }
.dev-params-table code {
    background: rgba(var(--bs-primary-rgb), 0.08);
    color: var(--bs-primary);
    padding: 0.15rem 0.45rem;
    border-radius: 0.3rem;
    font-size: 0.82rem;
}

.dev-badge-req {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2rem;
}
.dev-badge-opt {
    display: inline-block;
    background: #f1f5f9;
    color: var(--bs-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 2rem;
}

/* Use case cards */
.dev-usecase-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.dev-usecase-card:hover {
    box-shadow: 0 12px 40px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-3px);
}
.dev-usecase-icon {
    width: 3rem; height: 3rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dev-usecase-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.625rem;
}
.dev-usecase-card p {
    font-size: 0.875rem;
    color: var(--bs-body-color);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.dev-usecase-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dev-usecase-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    background: #f1f5f9;
    color: var(--bs-body-color);
    padding: 2px 10px;
    border-radius: 2rem;
}

/* Mobile */
@media (max-width: 767.98px) {
    .dev-caps-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .dev-cap-card { padding: 1.25rem 1rem; }
    .dev-params-table th:nth-child(2),
    .dev-params-table td:nth-child(2) { display: none; }
}
@media (max-width: 424.98px) {
    .dev-caps-grid { grid-template-columns: 1fr; }
    .dev-hero-stats { gap: 0.75rem; }
}

/* Anchor Nav */
.dev-anchor-nav {
    position: sticky;
    top: 68px;
    z-index: 190;
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 8px rgba(var(--bs-dark-rgb), 0.05);
}
.dev-anchor-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.dev-anchor-list::-webkit-scrollbar { display: none; }
.dev-anchor-link {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--bs-secondary);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.dev-anchor-link:hover { color: var(--bs-primary); }
.dev-anchor-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
}

/* ----------------------------------------------------------------
   32. FAQ PAGE
   ---------------------------------------------------------------- */

.faq-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--bs-dark);
    margin-bottom: 0.875rem;
    position: relative; z-index: 1;
}
.faq-hero-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    position: relative; z-index: 1;
}
.faq-hero-link { color: var(--bs-primary); font-weight: 600; text-decoration: none; }
.faq-hero-link:hover { color: var(--bs-link-hover-color); text-decoration: underline; }

.faq-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(var(--bs-primary-rgb),0.2);
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    position: relative; z-index: 1;
}
.faq-hstat { display: flex; flex-direction: column; align-items: center; }
.faq-hstat-num { font-size: 1.3rem; font-weight: 800; color: var(--bs-primary); line-height: 1.2; }
.faq-hstat-label { font-size: 0.72rem; color: var(--bs-secondary); }
.faq-hstat-div { width: 1px; height: 2rem; background: var(--bs-border-color); }

/* Body */
.faq-body-section { background: #fff; }

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 90px;
}
.faq-sidebar-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bs-gray-400);
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
}
.faq-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.faq-sidebar-nav li { margin-bottom: 2px; }
.faq-sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-body-color);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
}
.faq-sidebar-link:hover { background: var(--bs-light); color: var(--bs-primary); }
.faq-sidebar-link.active {
    background: rgba(var(--bs-primary-rgb),0.08);
    color: var(--bs-primary);
    font-weight: 700;
    border-left-color: var(--bs-primary);
}

.faq-sidebar-cta {
    background: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
}
.faq-sidebar-cta p {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    margin-bottom: 0.625rem;
}

/* Category */
.faq-category { margin-bottom: 3rem; }

.faq-cat-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}
.faq-cat-icon {
    width: 2.5rem; height: 2.5rem;
    background: rgba(var(--bs-primary-rgb),0.1);
    border-radius: 0.625rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.faq-cat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin: 0;
}

/* Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:has(.faq-btn:not(.collapsed)) {
    border-color: rgba(var(--bs-primary-rgb),0.4);
    box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb),0.08);
}

.faq-question { margin: 0; }

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--bs-dark);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: var(--bs-body-font-family);
    line-height: 1.5;
}
.faq-btn:not(.collapsed) {
    background: rgba(var(--bs-primary-rgb),0.04);
    color: var(--bs-primary);
}
.faq-btn:hover { background: var(--bs-light); }

.faq-chevron {
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--bs-gray-400);
    transition: transform 0.25s;
}
.faq-btn:not(.collapsed) .faq-chevron { color: var(--bs-primary); }

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    background: rgba(var(--bs-primary-rgb),0.02);
    font-size: 0.9rem;
    color: var(--bs-body-color);
    line-height: 1.75;
    border-top: 1px solid rgba(var(--bs-primary-rgb),0.1);
    padding-top: 1rem;
}
.faq-answer p {
    margin-bottom: 0;
}
.faq-answer a { color: var(--bs-primary); }
.faq-answer a:hover { color: var(--bs-link-hover-color); }
.faq-answer ul { padding-left: 1.25rem; }
.faq-answer li { margin-bottom: 0.35rem; }
.faq-answer code {
    background: rgba(var(--bs-primary-rgb),0.1);
    color: var(--bs-primary);
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.85em;
}

/* Mobile */
@media (max-width: 767.98px) {
    .faq-hero-section { padding: 3.5rem 0 4rem; }
}

@media (max-width: 991.98px) {
    .faq-sidebar { position: static; margin-bottom: 2rem; }
    .faq-sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    .faq-sidebar-nav li { margin: 0; }
    .faq-sidebar-link {
        padding: 0.4rem 0.75rem;
        border: 1px solid var(--bs-border-color);
        border-left: 2px solid transparent;
        border-radius: 2rem;
        font-size: 0.8rem;
    }
    .faq-sidebar-link.active {
        border-color: rgba(var(--bs-primary-rgb),0.4);
        border-left-color: rgba(var(--bs-primary-rgb),0.4);
    }
    .faq-sidebar-cta { display: none; }
    .faq-hero-stats { padding: 0.6rem 1.25rem; gap: 1rem; }
}

/* ----------------------------------------------------------------
   33. CONTACTS PAGE
   ---------------------------------------------------------------- */

.ct-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--bs-dark);
    margin-bottom: 0.875rem;
    position: relative; z-index: 1;
}
.ct-hero-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative; z-index: 1;
}

/* Channels */
.ct-channels-section {
    padding: 2.5rem 0 0;
}

.ct-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 992px) { .ct-channels-grid { grid-template-columns: repeat(4, 1fr); } }

.ct-channel-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 16px rgba(var(--bs-dark-rgb), 0.04);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.ct-channel-card:hover {
    box-shadow: 0 8px 32px rgba(var(--bs-primary-rgb),0.13);
    transform: translateY(-2px);
    border-color: rgba(var(--bs-primary-rgb),0.3);
    text-decoration: none;
    color: inherit;
}

.ct-channel-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.ct-channel-icon--phone    { background: rgba(var(--bs-success-rgb), 0.12); color: var(--bs-success); }
.ct-channel-icon--telegram { background: rgba(0, 136, 204, 0.12);  color: #0088cc; }
.ct-channel-icon--email    { background: rgba(var(--bs-primary-rgb), 0.12);  color: var(--bs-primary); }
.ct-channel-icon--social   { background: rgba(59, 89, 152, 0.12);  color: #3b5998; }

.ct-channel-body { flex: 1; min-width: 0; }
.ct-channel-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bs-gray-500);
    margin-bottom: 0.15rem;
}
.ct-channel-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bs-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ct-channel-meta {
    font-size: 0.78rem;
    color: var(--bs-gray-500);
    margin-top: 0.1rem;
}

.ct-channel-arrow {
    font-size: 0.85rem;
    color: var(--bs-gray-300);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}
.ct-channel-card:hover .ct-channel-arrow {
    color: var(--bs-primary);
    transform: translateX(3px);
}

/* Form */
.ct-form-wrap {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(var(--bs-dark-rgb), 0.06);
}

.ct-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bs-dark);
    margin-bottom: 0.375rem;
}
.ct-form-sub {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-bottom: 1.75rem;
}

.ct-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.ct-req { color: var(--bs-primary); }

.ct-input {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-family: var(--bs-body-font-family);
    color: var(--bs-dark);
    background: var(--bs-light);
    border: 1.5px solid var(--bs-border-color);
    border-radius: 0.625rem;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.ct-input:focus {
    background: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb),0.12);
}
.ct-input::placeholder { color: var(--bs-gray-400); }

.ct-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ct-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.ct-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.ct-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb),0.3);
}

.ct-form-note {
    font-size: 0.75rem;
    color: var(--bs-gray-500);
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}
.ct-form-note a { color: var(--bs-secondary); }
.ct-form-note a:hover { color: var(--bs-primary); }

/* Info cards (sidebar) */
.ct-info-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.ct-info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.ct-info-card-header h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin: 0;
}

.ct-info-icon {
    width: 2.25rem; height: 2.25rem;
    background: rgba(var(--bs-primary-rgb),0.1);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--bs-primary);
    font-size: 1rem;
}
.ct-info-icon--loc  { background: rgba(239, 68, 68, 0.1); color: var(--bs-danger); }
.ct-info-icon--faq  { background: rgba(245, 158, 11, 0.1); color: var(--bs-warning); }

.ct-hours { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.ct-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.ct-hours-day { color: var(--bs-body-color); }
.ct-hours-time { font-weight: 700; color: var(--bs-dark); }
.ct-hours-weekend .ct-hours-day { color: var(--bs-gray-500); }
.ct-hours-closed { color: var(--bs-gray-500) !important; font-weight: 500 !important; }

.ct-response-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--bs-success);
    background: rgba(var(--bs-success-rgb),0.08);
    border: 1px solid rgba(var(--bs-success-rgb),0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
}

.ct-addr {
    font-size: 0.875rem;
    color: var(--bs-body-color);
    line-height: 1.65;
    margin-bottom: 0.875rem;
}
.ct-map-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
}
.ct-map-link:hover { color: var(--bs-link-hover-color); text-decoration: underline; }

.ct-quicklinks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.1rem;
}
.ct-quicklinks a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-body-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
    transition: color 0.15s;
}
.ct-quicklinks a:hover { color: var(--bs-primary); }
.ct-quicklinks .bi { font-size: 0.7rem; color: var(--bs-primary); }

/* Map */
.ct-map-section { padding-bottom: 0; }
.ct-map-section .container { padding-bottom: 0; }

.ct-map-wrap {
    position: relative;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    border-bottom: none;
    box-shadow: 0 -4px 30px rgba(var(--bs-dark-rgb), 0.06);
    height: 420px;
}

.ct-map-iframe {
    width: 100%;
    height: calc(100% + 80px);
    display: block;
    filter: grayscale(0.15) contrast(1.02);
    margin-bottom: -80px;
}

.ct-map-pin {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}
.ct-map-pin-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--bs-border-color);
    border-radius: 2rem;
    padding: 0.45rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bs-dark);
    box-shadow: 0 4px 16px rgba(var(--bs-dark-rgb),0.1);
    backdrop-filter: blur(8px);
}
.ct-map-logo {
    height: 24px;
    width: auto;
    max-width: 80px;
    display: block;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 767.98px) {
    .ct-channels-grid { grid-template-columns: 1fr; }
    .ct-form-wrap { padding: 1.5rem; }
    .ct-channel-card { padding: 1rem; gap: 0.875rem; }
    .ct-map-wrap { height: 300px; }
}
@media (max-width: 424.98px) {
    .ct-channel-icon { width: 2.5rem; height: 2.5rem; font-size: 1.1rem; }
}

/* ================================================================
   34. PRICES PAGE  (pr-*)
   ================================================================ */

.pr-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--bs-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.pr-hero-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}
.pr-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.5rem;
}
.pr-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-link-hover-color);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.25);
    border-radius: 2rem;
    padding: 0.35rem 0.875rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.pr-hero-chips .bi { color: var(--bs-primary); font-size: 0.85rem; }

/* Pricing cards section */
.pr-cards-section {
    padding: 5rem 0 3rem;
    background: #fff;
}
.pr-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}
.pr-card {
    background: #ffffff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.pr-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    box-shadow: 0 12px 40px rgba(var(--bs-primary-rgb), 0.12);
    transform: translateY(-3px);
}
.pr-card--featured {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 32px rgba(var(--bs-primary-rgb), 0.18);
    background: linear-gradient(155deg, #f0f2ff 0%, #ffffff 60%);
}
.pr-card--featured:hover {
    box-shadow: 0 16px 48px rgba(var(--bs-primary-rgb), 0.25);
}
.pr-card-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--bs-primary), #a78bfa);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.875rem;
    border-radius: 2rem;
    white-space: nowrap;
}
.pr-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}
.pr-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.pr-card-icon--std  { background: rgba(var(--bs-primary-rgb),0.12); color: var(--bs-primary); }
.pr-card-icon--int  { background: rgba(var(--bs-success-rgb),0.12);  color: var(--bs-success); }
.pr-card-icon--intl { background: rgba(6,182,212,0.12);   color: var(--bs-info); }

.pr-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin: 0;
    line-height: 1.3;
}
.pr-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.pr-price-val {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bs-dark);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pr-price-unit {
    font-size: 1rem;
    font-weight: 500;
}
.pr-card-desc {
    font-size: 0.85rem;
    color: var(--bs-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex-shrink: 0;
}
.pr-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pr-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bs-gray-700);
}
.pr-card-features .bi {
    color: var(--bs-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Integration list variant */
.pr-card-features--integrations li {
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.pr-card-features--integrations li:last-child { border-bottom: none; }
.pr-card-features--integrations a {
    color: var(--bs-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.15s;
}
.pr-card-features--integrations a:hover { color: var(--bs-primary); }
.pr-int-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.pr-card-btn { margin-top: auto; }

/* VAT note */
.pr-vat-note {
    font-size: 0.82rem;
    color: var(--bs-secondary);
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--bs-light);
    border-radius: 0.875rem;
    border: 1px solid var(--bs-border-color);
}
.pr-vat-note a { color: var(--bs-primary); text-decoration: none; }
.pr-vat-note a:hover { text-decoration: underline; }

/* Billing principles */
.pr-billing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.pr-billing-card {
    background: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.pr-billing-card:hover {
    border-color: rgba(var(--bs-primary-rgb),0.3);
    box-shadow: 0 6px 24px rgba(var(--bs-primary-rgb),0.08);
}
.pr-billing-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(var(--bs-primary-rgb),0.1);
    color: var(--bs-primary);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.pr-billing-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}
.pr-billing-card p {
    font-size: 0.85rem;
    color: var(--bs-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Fragment section */
.pr-fragment-section { padding-bottom: 4rem; }
.pr-fragment-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--bs-secondary);
    line-height: 1.7;
}
.pr-fragment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
}
.pr-fragment-card {
    background: #fff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pr-fragment-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.35);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.09);
}
.pr-fragment-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}
.pr-fragment-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}
.pr-fragment-row:last-child { border-bottom: none; }
.pr-fragment-row-label {
    font-size: 0.85rem;
    color: var(--bs-secondary);
}
.pr-fragment-row-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
}
.pr-fragment-note {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(var(--bs-primary-rgb), 0.06);
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    color: var(--bs-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.pr-fragment-note i { color: var(--bs-primary); margin-top: 0.1rem; flex-shrink: 0; }

/* FAQ section */
.pr-faq-section { background: var(--bs-light); }

/* Mobile */
@media (max-width: 991.98px) {
    .pr-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pr-billing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
    .pr-cards-section { padding: 3rem 0 2rem; }
    .pr-billing-grid { grid-template-columns: 1fr; }
    .pr-hero-chips { gap: 0.5rem; }
    .pr-hero-chips span { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
}

/* ================================================================
   34b. INTERNATIONAL PRICING PAGE  (pr-intl-*)
   ================================================================ */

.pr-intl-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--bs-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.pr-intl-hero-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.pr-intl-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.pr-intl-hero-chips span {
    background: rgba(var(--bs-primary-rgb), 0.08);
    color: var(--bs-primary);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 2rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.pr-intl-hero-chips .bi { color: var(--bs-primary); font-size: 0.85rem; }

/* Notice */
.pr-intl-notice-section { padding: 2.5rem 0 0; }
.pr-intl-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(var(--bs-primary-rgb), 0.06);
    border: 1.5px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}
.pr-intl-notice-icon {
    font-size: 1.3rem;
    color: var(--bs-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.pr-intl-notice strong {
    display: block;
    color: var(--bs-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.pr-intl-notice p { margin: 0; color: var(--bs-body-color); font-size: 0.9rem; }

/* Search */
.pr-intl-search { position: relative; }
.pr-intl-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-secondary);
    font-size: 0.9rem;
    pointer-events: none;
}
.pr-intl-search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.25rem;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 0.625rem;
    font-size: 0.875rem;
    color: var(--bs-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.pr-intl-search-input:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}
.pr-intl-search-input::placeholder { color: var(--bs-secondary); }

/* Table */
.pr-intl-table-wrap {
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}
.pr-intl-table { width: 100%; border-collapse: collapse; }
.pr-intl-table thead tr { background: var(--bs-light); }
.pr-intl-table th {
    padding: 0.75rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1.5px solid var(--bs-border-color);
    white-space: nowrap;
}
.pr-intl-table td {
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    color: var(--bs-body-color);
    border-bottom: 1px solid var(--bs-border-color);
}
.pr-intl-table tbody tr:last-child td { border-bottom: none; }
.pr-intl-table tbody tr:hover td { background: var(--bs-light); }
.pr-intl-table td:nth-child(2) {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--bs-secondary);
    width: 80px;
}
.pr-intl-table td:nth-child(3) {
    font-weight: 600;
    color: var(--bs-dark);
    white-space: nowrap;
    width: 120px;
}

/* Disclaimer */
.pr-intl-disclaimer {
    background: var(--bs-light);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    color: var(--bs-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.pr-intl-disclaimer .bi { flex-shrink: 0; font-size: 0.9rem; margin-top: 0.1rem; }

.pr-intl-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--bs-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767.98px) {
    .pr-intl-hero-chips { gap: 0.5rem; }
    .pr-intl-hero-chips span { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
    .pr-intl-notice { flex-direction: column; gap: 0.75rem; }
    .pr-intl-search { margin-top: 1rem; }
}

/* ================================================================
   35. INTEGRATIONS LIST PAGE  (intg-list-*)
   ================================================================ */

.intg-list-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--bs-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.intg-list-lead {
    font-size: 1.05rem;
    color: var(--bs-body-color);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Hero logos strip */
.intg-list-hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.intg-list-hero-logo {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: 0 2px 12px rgba(var(--bs-dark-rgb),0.07);
    backdrop-filter: blur(6px);
    transition: transform 0.2s, box-shadow 0.2s;
}
.intg-list-hero-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),0.18);
}
.intg-list-hero-logo img {
    max-width: 2rem;
    max-height: 2rem;
    object-fit: contain;
}
.intg-list-hero-logo--api {
    background: rgba(var(--bs-primary-rgb),0.1);
    border-color: rgba(var(--bs-primary-rgb),0.3);
    color: var(--bs-primary);
    font-size: 1.2rem;
}

/* Intro section */
.intg-list-intro {
    padding: 4rem 0 2rem;
    background: var(--bs-light);
}
.intg-list-intro-card {
    background: #fff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.intg-list-intro-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    box-shadow: 0 12px 36px rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-3px);
}
.intg-list-intro-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.intg-list-intro-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 0.875rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.1rem;
}
.intg-list-intro-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0;
}
.intg-list-intro-card p {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Cards section */
.intg-list-section {
    padding: 5rem 0 4rem;
    background: #fff;
}
.intg-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Card */
.intg-list-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.intg-list-card:hover {
    border-color: rgba(var(--bs-primary-rgb),0.45);
    box-shadow: 0 12px 36px rgba(var(--bs-primary-rgb),0.13);
    transform: translateY(-4px);
    color: inherit;
    text-decoration: none;
}
.intg-list-card--api {
    border-style: dashed;
    border-color: rgba(var(--bs-primary-rgb),0.3);
    background: linear-gradient(155deg, #f5f6ff 0%, #fff 60%);
}
.intg-list-card--api:hover {
    border-style: solid;
    border-color: var(--bs-primary);
}

/* Card logo area */
.intg-list-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 1.5rem;
    background: var(--bs-light);
    border-bottom: 1px solid #f1f5f9;
    min-height: 6rem;
}
.intg-list-card-logo img {
    max-height: 2.5rem;
    max-width: 10.5rem;
    object-fit: contain;
}
.intg-list-card-logo--api {
    background: rgba(var(--bs-primary-rgb),0.06);
    border-bottom-color: rgba(var(--bs-primary-rgb),0.1);
    color: var(--bs-primary);
    font-size: 2rem;
}

/* Card body */
.intg-list-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.25rem 1.5rem 1.5rem;
}
.intg-list-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.625rem;
}
.intg-list-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-dark);
    line-height: 1.3;
}
.intg-list-tag {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(var(--bs-primary-rgb),0.1);
    color: var(--bs-link-hover-color);
    border: 1px solid rgba(var(--bs-primary-rgb),0.2);
    border-radius: 2rem;
    padding: 0.15rem 0.55rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.intg-list-tag--api {
    background: rgba(var(--bs-primary-rgb),0.12);
    color: var(--bs-primary);
    border-color: rgba(var(--bs-primary-rgb),0.3);
}
.intg-list-card-desc {
    font-size: 0.85rem;
    color: var(--bs-secondary);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

/* Card footer */
.intg-list-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.875rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.intg-list-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-primary);
}
.intg-list-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-gray-400);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s, gap 0.2s;
}
.intg-list-card:hover .intg-list-more {
    color: var(--bs-primary);
    gap: 0.5rem;
}

/* Request banner */
.intg-list-request {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #f0f2ff 0%, #f8f9ff 100%);
    border: 1.5px solid rgba(var(--bs-primary-rgb),0.2);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
}
.intg-list-request-icon {
    font-size: 1.75rem;
    color: var(--bs-primary);
    flex-shrink: 0;
    line-height: 1;
}
.intg-list-request-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-dark);
    display: block;
    margin-bottom: 0.2rem;
}
.intg-list-request-text p {
    font-size: 0.85rem;
    color: var(--bs-secondary);
    margin: 0;
}

/* Mobile */
@media (max-width: 991.98px) {
    .intg-list-grid { grid-template-columns: repeat(2, 1fr); }
    .intg-list-request { flex-wrap: wrap; }
    .intg-list-request .btn { width: 100%; text-align: center; }
}
@media (max-width: 767.98px) {
    .intg-list-section { padding: 3rem 0 2.5rem; }
    .intg-list-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .intg-list-request { padding: 1.25rem 1.25rem; gap: 1rem; }
    .intg-list-request-icon { font-size: 1.4rem; }
}

/* ================================================================
   36. TEXT PAGE  (pg-*)
   ================================================================ */

.pg-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--bs-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

/* Content section */
.pg-content-section {
    padding: 4rem 0 5rem;
    background: #fff;
}

/* Prose content — all CKEditor-generated HTML */
.pg-content {
    font-size: 0.975rem;
    color: var(--bs-body-color);
    line-height: 1.8;
}

.pg-content > *:first-child { margin-top: 0 !important; }
.pg-content > *:last-child  { margin-bottom: 0 !important; }

.pg-content h1,
.pg-content h2,
.pg-content h3,
.pg-content h4,
.pg-content h5,
.pg-content h6 {
    color: var(--bs-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
}
.pg-content h2 { font-size: 1.5rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 0.5rem; }
.pg-content h3 { font-size: 1.2rem; }
.pg-content h4 { font-size: 1.05rem; }

.pg-content p { margin-bottom: 1.1rem; }

.pg-content a {
    color: var(--bs-primary);
    text-decoration: underline;
    text-decoration-color: rgba(var(--bs-primary-rgb),0.35);
    text-underline-offset: 3px;
    transition: color 0.15s, text-decoration-color 0.15s;
}
.pg-content a:hover {
    color: var(--bs-link-hover-color);
    text-decoration-color: var(--bs-link-hover-color);
}

.pg-content strong { color: var(--bs-gray-800); font-weight: 600; }
.pg-content em     { color: var(--bs-gray-700); }

.pg-content ul,
.pg-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.pg-content li {
    margin-bottom: 0.45rem;
    line-height: 1.7;
}
.pg-content ul li::marker { color: var(--bs-primary); }
.pg-content ol li::marker { color: var(--bs-primary); font-weight: 600; }

.pg-content blockquote {
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(var(--bs-primary-rgb),0.05);
    border-left: 4px solid var(--bs-primary);
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--bs-gray-700);
    font-style: italic;
}
.pg-content blockquote p { margin-bottom: 0; }

.pg-content code {
    background: rgba(var(--bs-primary-rgb),0.1);
    color: var(--bs-primary);
    padding: 0.15rem 0.45rem;
    border-radius: 0.3rem;
    font-size: 0.875em;
    font-family: "JetBrains Mono", "Fira Code", monospace;
}
.pg-content pre {
    background: var(--bs-dark);
    color: var(--bs-border-color);
    padding: 1.5rem;
    border-radius: 1rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.65;
}
.pg-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

.pg-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.pg-content table th {
    background: var(--bs-light);
    color: var(--bs-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--bs-border-color);
    text-align: left;
}
.pg-content table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--bs-body-color);
    vertical-align: top;
}
.pg-content table tr:last-child td { border-bottom: none; }
.pg-content table tr:hover td { background: var(--bs-light); }

.pg-content hr {
    border: none;
    border-top: 1px solid var(--bs-border-color);
    margin: 2.5rem 0;
}

.pg-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1rem 0;
}

/* Mobile */
@media (max-width: 767.98px) {
    .pg-content-section { padding: 2.5rem 0 3rem; }
    .pg-content h2 { font-size: 1.3rem; }
    .pg-content table { display: block; overflow-x: auto; }
}


/* ----------------------------------------------------------------
   37. WORDPRESS INTEGRATION PAGE
   ---------------------------------------------------------------- */

/* Download banner */
.wp-install-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bs-light);
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
}
.wp-install-download-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(var(--bs-primary-rgb),0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bs-primary);
}
.wp-install-download-info { flex: 1; }
.wp-install-download-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bs-dark);
}
.wp-install-download-meta {
    font-size: 0.78rem;
    color: var(--bs-gray-400);
    margin-top: 0.15rem;
}
.wp-install-download-btn { flex-shrink: 0; }

/* Screenshots inside steps */
/* Step content: 2 columns (text + screenshot) */
.wp-step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.wp-screenshot {
    border-radius: 0.875rem;
    overflow: hidden;
    border: 1.5px solid var(--bs-border-color);
    box-shadow: 0 2px 12px rgba(var(--bs-dark-rgb),0.06);
}
.wp-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}
.wp-lightbox-trigger {
    cursor: zoom-in;
    transition: opacity 0.15s;
}
.wp-lightbox-trigger:hover { opacity: 0.9; }

/* Lightbox */
.wp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.wp-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}
.wp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.88);
    backdrop-filter: blur(4px);
}
.wp-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1400px);
    max-height: 94vh;
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.2s;
}
.wp-lightbox.is-open .wp-lightbox-content { transform: scale(1); }
.wp-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 94vh;
    width: auto;
    height: auto;
}
.wp-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.wp-lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* Events grid */
.wp-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}
.wp-events-group {
    background: var(--bs-light);
    border: 1.5px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.25rem;
}
.wp-events-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bs-primary);
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.wp-events-list {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.wp-events-list li {
    font-size: 0.875rem;
    color: var(--bs-body-color);
    line-height: 1.5;
}
.wp-events-list li strong { color: var(--bs-dark); }

@media (max-width: 767.98px) {
    .wp-step-content { grid-template-columns: 1fr; }
    .wp-events-grid { grid-template-columns: 1fr; }
    .wp-install-download { flex-wrap: wrap; gap: 0.75rem; }
    .wp-install-download-btn { width: 100%; text-align: center; }
}

/* ----------------------------------------------------------------
   COOKIE BANNER
   ---------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    background: #fff;
    border-top: 1px solid var(--bs-border-color);
    box-shadow: 0 -4px 24px rgba(var(--bs-dark-rgb), 0.07);
    padding: 0.875rem 0;
}
.cookie-banner-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1;
    margin: 0;
    font-size: 0.875rem;
    color: var(--bs-body-color);
    min-width: 220px;
}
.cookie-banner-link {
    color: var(--bs-primary);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 0.25rem;
}
.cookie-banner-link:hover { color: var(--bs-link-hover-color); text-decoration: underline; }
.cookie-banner-btn {
    flex-shrink: 0;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 0.625rem;
    padding: 0.4rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
}
.cookie-banner-btn:hover { background: var(--bs-link-hover-color); }
@media (max-width: 575.98px) {
    .cookie-banner-inner { gap: 0.75rem; }
    .cookie-banner-btn { width: 100%; text-align: center; padding: 0.5rem; }
}
