/* ============================================
   SLEEK WEB HOST — LIGHT-BLUE REDESIGN
   Color Palette:
     Primary   #4173D6  (blue-600-ish, CTA buttons)
     Secondary #2D57B0  (blue-700-ish, hover)
     Light bg  #EDF2FC  (soft light, section backgrounds)
     Card bg   #DBEAFE  (blue-100)
     Dark      #232D42  (blue-800, footer/dark sections)
     Hero dark #0B1220  (deep navy)
   WCAG AA: all text/bg combos ≥ 4.5:1
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --blue-primary:   #4173D6;
    --blue-secondary: #2D57B0;
    --blue-light:     #EDF2FC;
    --blue-card:      #DBEAFE;
    --blue-mid:       #3B82F6;
    --blue-dark:      #232D42;
    --blue-deepnav:   #0B1220;
    --blue-border:    #BFDBFE;
    --blue-accent-bg: #F0F7FF;
    --text-dark:      #1e293b;
    --text-muted:     #4b5563;
}

/* General Styles */
html { scroll-behavior: smooth; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ============================================
   GLOBAL TAILWIND COLOR OVERRIDES
   Override compiled Tailwind primary/secondary
   (loaded after tailwind.css so specificity wins)
   ============================================ */

/* PRIMARY = blue-primary */
.bg-primary          { background-color: var(--blue-primary)   !important; }
.text-primary        { color: var(--blue-primary)              !important; }
.border-primary      { border-color: var(--blue-primary)       !important; }
.ring-primary        { --tw-ring-color: var(--blue-primary)    !important; }
.from-primary        { --tw-gradient-from: var(--blue-primary) var(--tw-gradient-from-position) !important;
                       --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }

.bg-primary\/5       { background-color: rgba(65,115,214,.05)  !important; }
.bg-primary\/10      { background-color: rgba(65,115,214,.10)  !important; }
.bg-primary\/20      { background-color: rgba(65,115,214,.20)  !important; }
.border-primary\/10  { border-color:     rgba(65,115,214,.10)  !important; }
.hover\:border-primary:hover  { border-color: var(--blue-primary) !important; }
.hover\:border-primary\/30:hover { border-color: rgba(65,115,214,.30) !important; }
.hover\:bg-primary:hover      { background-color: var(--blue-primary) !important; }
.hover\:bg-primary\/20:hover  { background-color: rgba(65,115,214,.20) !important; }
.hover\:text-primary:hover    { color: var(--blue-primary) !important; }
.focus\:ring-primary:focus    { --tw-ring-color: var(--blue-primary) !important; }
.focus\:ring-primary\/50:focus { --tw-ring-color: rgba(65,115,214,.50) !important; }
.peer-checked\:bg-primary     { background-color: var(--blue-primary) !important; }
.peer:checked ~ .peer-checked\:bg-primary { background-color: var(--blue-primary) !important; }
.placeholder-primary\/50::placeholder { color: rgba(65,115,214,.5) !important; }

/* SECONDARY = blue-secondary */
.bg-secondary, .bg-second       { background-color: var(--blue-secondary) !important; }
.text-secondary, .text-second   { color: var(--blue-secondary)            !important; }
.border-secondary                { border-color: var(--blue-secondary)     !important; }
.to-second, .to-secondary        { --tw-gradient-to: var(--blue-secondary) var(--tw-gradient-to-position) !important; }
.from-secondary                  { --tw-gradient-from: var(--blue-secondary) var(--tw-gradient-from-position) !important; }
.bg-secondary\/20                { background-color: rgba(45,87,176,.20) !important; }
.hover\:bg-second:hover,
.hover\:bg-secondary:hover       { background-color: var(--blue-secondary) !important; }
.hover\:text-second:hover,
.hover\:text-secondary:hover     { color: var(--blue-secondary) !important; }

/* THIRD / FOURTH overrides → deep navy */
.bg-third   { background-color: var(--blue-deepnav) !important; }
.from-fourth { --tw-gradient-from: var(--blue-dark) var(--tw-gradient-from-position) !important; }
.text-\[\#A0153E\] { color: var(--blue-secondary)  !important; }
.text-\[\#FF204E\] { color: var(--blue-primary)    !important; }
.bg-\[\#FF204E\]   { background-color: var(--blue-primary) !important; }
.bg-\[\#A0153E\]   { background-color: var(--blue-secondary) !important; }
.bg-\[\#FF204E\]\/10 { background-color: rgba(65,115,214,.10) !important; }
.bg-\[\#A0153E\]\/10 { background-color: rgba(45,87,176,.10) !important; }
.border-\[\#FF204E\] { border-color: var(--blue-primary) !important; }
.from-\[\#FF204E\]   { --tw-gradient-from: var(--blue-primary) var(--tw-gradient-from-position) !important; }
.from-\[\#FF204E\]\/5 { --tw-gradient-from: rgba(65,115,214,.05) var(--tw-gradient-from-position) !important; }
.to-\[\#A0153E\]     { --tw-gradient-to: var(--blue-secondary) var(--tw-gradient-to-position) !important; }
.to-\[\#A0153E\]\/5  { --tw-gradient-to: rgba(45,87,176,.05) var(--tw-gradient-to-position) !important; }
.hover\:bg-\[\#FF204E\]:hover  { background-color: var(--blue-primary) !important; }
.hover\:bg-\[\#A0153E\]:hover  { background-color: var(--blue-secondary) !important; }
.hover\:bg-\[\#FF204E\]\/5:hover { background-color: rgba(65,115,214,.05) !important; }
.hover\:bg-\[\#e61e46\]:hover  { background-color: var(--blue-secondary) !important; }
.hover\:text-red-400:hover  { color: var(--blue-primary) !important; }
.hover\:text-red-500:hover  { color: var(--blue-secondary) !important; }
.focus\:ring-\[\#FF204E\]:focus { --tw-ring-color: var(--blue-primary) !important; }

/* Red backgrounds → blue equivalents */
.bg-red-50  { background-color: var(--blue-light) !important; }
.bg-red-400 { background-color: var(--blue-mid)   !important; }
.bg-red-500 { background-color: var(--blue-primary) !important; }
.text-red-500 { color: var(--blue-primary) !important; }
.to-red-600 { --tw-gradient-to: var(--blue-secondary) var(--tw-gradient-to-position) !important; }

/* Dark hero → light blue hero */
.hero-clip-path {
    background: linear-gradient(135deg, #0B1220 0%, #232D42 60%, #4173D6 100%) !important;
}

/* Orange accent on Economy card → light blue */
.bg-orange-50 { background-color: var(--blue-light) !important; }

/* ============================================
   NAVBAR
   ============================================ */
.nav-link {
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 2px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--blue-primary);
}

.active {
    color: var(--blue-primary) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--blue-primary);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(65,115,214,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s, transform 0.22s;
    border-top: 2px solid var(--blue-primary);
    border-radius: 0 0 10px 10px;
}

.group:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    color: #1e293b;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-link:hover {
    background-color: var(--blue-light);
    color: var(--blue-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-slide {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-slide-right {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-slide       { animation: fade-slide 0.7s ease-out forwards; }
.animate-fade-slide-right { animation: fade-slide-right 0.7s ease-out forwards; }

/* Scroll-triggered fade-in (JS adds .revealed) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(65,115,214,.12);
    text-align: center;
    border: 1px solid var(--blue-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(65,115,214,.22);
    transform: translateY(-4px);
}

/* ============================================
   PRICE DISPLAY
   ============================================ */
.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--blue-primary);
}

.buy-btn {
    display: inline-block;
    background: var(--blue-primary);
    color: white;
    padding: 11px 22px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.25s ease, box-shadow 0.25s;
    margin-top: 28px;
    letter-spacing: .02em;
}

.buy-btn:hover {
    background: var(--blue-secondary);
    box-shadow: 0 4px 16px rgba(45,87,176,.35);
}

/* ============================================
   TAB NAVIGATION
   ============================================ */
.tab-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--blue-light);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    color: var(--blue-dark);
}

.tab-label i { font-size: 22px; }

/* Active Tab */
input[type="radio"]:checked ~ .tab-label {
    background: var(--blue-primary);
    color: white;
}

.tab-label:hover { background: var(--blue-card); }

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fade-slide 0.3s ease-in-out;
}

/* Show Active Panel */
#sleekweb:checked ~ .tab-content #sleekweb-content,
#aws:checked ~ .tab-content #aws-content,
#google:checked ~ .tab-content #google-content {
    display: block;
}

#managed:checked ~ .tab-content #managed-content,
#unmanaged:checked ~ .tab-content #unmanaged-content {
    display: block;
}

/* Feature Boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* ============================================
   VPS / PROJECT CARDS
   ============================================ */
.vps-card,
.vps-project-card {
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(65,115,214,.12);
    text-align: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide 0.5s ease-in-out forwards;
    border: 1px solid var(--blue-border);
}

.vps-card:hover,
.vps-project-card:hover {
    box-shadow: 0 8px 28px rgba(65,115,214,.22);
    transform: scale(1.04);
}

.vps-icon {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.vps-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--blue-dark);
}

.vps-text {
    color: #64748b;
    font-size: 1rem;
    margin-top: 5px;
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */
.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    padding: 24px;
    background: var(--blue-light);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(65,115,214,.10);
    border: 1px solid var(--blue-border);
}

.testimonial-text {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 10px;
    line-height: 1.7;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border: 1px solid var(--blue-border);
    box-shadow: 0 2px 8px rgba(65,115,214,.07);
}

.faq-item:hover {
    background: var(--blue-light);
    border-color: var(--blue-primary);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue-dark);
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    color: #4b5563;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding-top: 10px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
    color: var(--blue-primary);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ============================================
   FEATURE ITEMS (autoscaling section etc.)
   ============================================ */
.custom-feature-item {
    padding: 18px 22px;
    border-left: 4px solid var(--blue-primary);
    background: var(--blue-light);
    border-radius: 0 10px 10px 0;
    transition: background 0.2s;
}
.custom-feature-item:hover { background: var(--blue-card); }

.custom-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--blue-primary);
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
    text-decoration: none;
}
.custom-btn-primary:hover {
    background: var(--blue-secondary);
    box-shadow: 0 6px 20px rgba(45,87,176,.35);
    transform: translateY(-2px);
}

.custom-img-hover { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.custom-img-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(65,115,214,.18);
}

/* Gradient text – blue version */
.gradient-text {
    background: linear-gradient(90deg, #60a5fa, #4173D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-bg {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
}

/* Floating image animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.floating { animation: float 3.5s ease-in-out infinite; }

/* Pulse dot */
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(65,115,214,.6); }
    50%       { box-shadow: 0 0 0 8px rgba(65,115,214,0); }
}
.pulse { animation: pulse-dot 2s infinite; }

/* Section badge labels */
.section-badge {
    display: inline-block;
    background: var(--blue-card);
    color: var(--blue-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

/* ============================================
   BLOG CONTENT (prose)
   ============================================ */
.prose h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.25;
    color: var(--blue-dark);
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--blue-dark);
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--blue-dark);
}

.prose p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
}

.prose ul { list-style-type: disc;    padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose ol { list-style-type: decimal; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

.prose a { color: var(--blue-primary); text-decoration: underline; }
.prose a:hover { color: var(--blue-secondary); }

.prose img {
    border-radius: 0.5rem;
    margin: 1rem 0;
    max-width: 100%;
    height: auto;
}

.prose blockquote {
    padding-left: 1rem;
    border-left: 4px solid var(--blue-border);
    color: #6b7280;
    font-style: italic;
    margin: 1.5rem 0;
    background: var(--blue-light);
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
}

.prose strong { font-weight: 700; }

.prose code {
    background-color: var(--blue-light);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
    color: var(--blue-dark);
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose thead { background-color: var(--blue-card); }

.prose th,
.prose td {
    border: 1px solid var(--blue-border);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.prose tr:nth-child(even) { background-color: var(--blue-light); }

/* ============================================
   FEATURE BOX (used in VPS page etc.)
   ============================================ */
.feature-box {
    background: rgba(255,255,255,.08);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--blue-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(65,115,214,.40);
    z-index: 999;
    transition: background 0.22s, transform 0.22s;
}
#back-to-top:hover { background: var(--blue-secondary); transform: translateY(-3px); }
#back-to-top.visible { display: flex; }

/* ============================================
   COOKIE BAR
   ============================================ */
#cookie-bar {
    background: var(--blue-dark);
    color: #e2e8f0;
    border-top: 3px solid var(--blue-primary);
}
#cookie-bar a { color: #93c5fd; text-decoration: underline; }
#cookie-bar button { background: var(--blue-primary); color: white; border-radius: 6px; padding: 6px 18px; font-weight: 600; transition: background .2s; }
#cookie-bar button:hover { background: var(--blue-secondary); }
/*This is the blog section */
.prose h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.25;
  }

  .prose h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .prose h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .prose p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #374151; /* text-gray-700 */
    line-height: 1.75;
  }

  .prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .prose ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .prose li {
    margin-bottom: 0.5rem;
  }

  .prose a {
    color: #2563eb; /* text-blue-600 */
    text-decoration: underline;
  }

  .prose img {
    border-radius: 0.5rem;
    margin: 1rem 0;
    max-width: 100%;
    height: auto;
  }

  .prose blockquote {
    padding-left: 1rem;
    border-left: 4px solid #d1d5db; /* border-gray-300 */
    color: #6b7280; /* text-gray-500 */
    font-style: italic;
    margin: 1.5rem 0;
  }

  .prose strong {
    font-weight: bold;
  }

  .prose code {
    background-color: #f3f4f6; /* bg-gray-100 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
  }

    /* Tables inside blog content */
    .prose table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
    }

    .prose thead {
        background-color: #f3f4f6; /* bg-gray-100 */
    }

    .prose th,
    .prose td {
        border: 1px solid #d1d5db; /* border-gray-300 */
        padding: 0.75rem 1rem;
        text-align: left;
        vertical-align: top;
    }

    .prose tr:nth-child(even) {
        background-color: #f9fafb; /* bg-gray-50 */
    }
/* ============================================
   SECTION ALTERNATING BACKGROUNDS
   ============================================ */
/* .gradient-bg is used for blue CTA banners (home/other pages) */
.gradient-bg {
    background: linear-gradient(135deg, #4173D6 0%, #2D57B0 100%);
}

/* .gradient-bgs is the alternate light section background */
.gradient-bgs {
    background: #EDF2FC;
}

/* ============================================
   FEATURE CARD HOVER (Premium features section)
   ============================================ */
.feature-card {
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid #BFDBFE !important;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(65,115,214,.18) !important;
    border-color: #4173D6 !important;
}

.feature-icon-badge {
    box-shadow: inset 0 0 0 1px rgba(65,115,214,.15);
}

.feature-icon-badge i {
    font-size: 1.45rem;
    line-height: 1;
}

.feature-card--featured {
    border-color: #4173D6 !important;
    box-shadow: 0 16px 34px rgba(65,115,214,.20) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.feature-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, #4173D6 0%, #2D57B0 100%);
    padding: 4px 9px;
    border-radius: 999px;
}

.feature-icon-badge--featured {
    background: rgba(65,115,214,.16) !important;
}

/* ============================================
   DOMAIN SEARCH BAR
   ============================================ */
.domain-search-bar {
    border: 2px solid #4173D6;
    border-radius: 9999px;
    overflow: hidden;
}
.domain-search-bar input:focus {
    outline: none;
}

/* ============================================
   PRICING TOGGLE SWITCH — BLUE
   ============================================ */
/* .peer:checked ~ .peer-checked:bg-primary already overridden globally */

/* ============================================
   PRICING CARDS — FEATURED (Economy)
   ============================================ */
.pricing-featured {
    border-color: #4173D6 !important;
    background: #EDF2FC !important;
}
.pricing-featured-badge {
    background: #4173D6;
    color: white;
}

/* ============================================
   ONE-CLICK INSTALL APP GRID
   ============================================ */
.install-app-card {
    background: white;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.install-app-card:hover {
    border-color: #4173D6;
    box-shadow: 0 4px 16px rgba(65,115,214,.15);
    transform: translateY(-2px);
}

/* ============================================
   SECTION HEADING ACCENT LINE
   ============================================ */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4173D6;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ============================================
   HEADER / NAVBAR — REFINED SYSTEM
   ============================================ */
:root {
    --site-header-offset: 82px;
}

.site-header {
    border-top: 4px solid var(--blue-primary);
    box-shadow: 0 6px 22px rgba(15, 31, 92, 0.09);
}

.site-header__promo {
    background: #1e3a8a;
}

.site-header__promo-inner {
    min-height: 42px;
}

.site-header__utility-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-header__utility-link:hover {
    color: #bfdbfe;
}

.site-header__utility-links {
    gap: 1.1rem !important;
}

.site-header__utility-links .site-header__utility-link + .site-header__utility-link {
    margin-left: 0.2rem;
}

.site-nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.site-nav__inner {
    min-height: 82px;
}

.site-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.site-nav .nav-link i {
    color: var(--blue-primary);
    font-size: 0.76rem;
    width: 0.95rem;
    text-align: center;
}

.site-nav .nav-link span {
    white-space: nowrap;
    line-height: 1.1;
}

.site-nav .nav-link svg {
    width: 0.78rem;
    height: 0.78rem;
    stroke-width: 1.8;
}

.site-nav .nav-link:hover {
    color: var(--blue-primary);
    background: #eff6ff;
    border-color: #dbeafe;
}

.site-nav .nav-link.active,
.site-nav .active.nav-link {
    color: var(--blue-primary) !important;
    background: #eff6ff;
    border-color: #bfdbfe;
    border-bottom: 0;
}

.site-nav__item {
    position: relative;
}

.site-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 230px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 31, 92, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.18s ease;
    overflow: hidden;
    z-index: 80;
}

.site-nav__item.has-dropdown:hover .site-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 0.9rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.site-dropdown__link i {
    color: var(--blue-primary);
    width: 16px;
    text-align: center;
}

.site-dropdown__link:hover,
.site-dropdown__link.active {
    background: #eff6ff;
    color: var(--blue-primary);
    border-bottom: 0;
}

.site-client-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #1d6fe1 0%, #1558b8 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.05rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-client-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(45, 87, 176, 0.28);
}

.site-mobile-menu {
    border-top: 1px solid #dbeafe;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 31, 92, 0.1);
}

.site-mobile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: #1f2937;
}

.site-mobile-link i {
    color: var(--blue-primary);
    width: 16px;
    text-align: center;
}

.site-mobile-submenu {
    border-left: 2px solid #bfdbfe;
    margin-left: 0.25rem;
    margin-bottom: 0.75rem;
    padding-left: 0.8rem;
}

.site-mobile-sublink {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: #475569;
}

.site-mobile-sublink:hover {
    color: var(--blue-primary);
}

.site-footer {
    padding-top: 4.2rem !important;
    padding-bottom: 2rem !important;
}

.site-footer .container {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.site-footer__policy-links {
    row-gap: 0.65rem;
    column-gap: 1.1rem !important;
}

.site-footer__policy-links li {
    position: relative;
}

.site-footer__policy-links li + li {
    padding-left: 0.9rem;
}

.site-footer__policy-links li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    transform: translateY(-50%);
    background: rgba(148, 163, 184, 0.55);
}

body {
    padding-top: var(--site-header-offset);
}

#site-main > section:first-child {
    margin-top: 0 !important;
}

@media (min-width: 768px) {
    :root {
        --site-header-offset: 126px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 3.2rem !important;
    }

    .site-footer .container {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

/* ---- Trust / Feature Cards ---- */
.trust-cards-section {
    width: 100%;
}

.trust-card {
    min-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
}

.trust-card--dark1 {
    background-color: #0F2C6E;
}

.trust-card--dark2 {
    background-color: #232D42;
}

.trust-card--highlight {
    background-color: #2563EB;
}

.trust-card--light {
    background-color: #ffffff;
    border-right: none;
}

@media (max-width: 767px) {
    .trust-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .trust-card--light {
        border-bottom: 1px solid #BFDBFE;
    }
}
