/* ============================================================
   Service Detail  —  lean enhancements
   Reuses existing site classes (.about-header-area, .heading2,
   .works-content-box, .service-header-area, .accordion-flush etc).
   Only adds what those classes don't already provide.
   Inherits Figtree from main.css.
   ============================================================ */

:root {
    --svc-primary: #4E2FDA;
    --svc-pink: #FB3189;
    --svc-pink-hot: #FF0A54;
    --svc-navy: #081120;
    --svc-line: #e6e3f5;
    --svc-grad: linear-gradient(135deg, #4E2FDA 0%, #FB3189 100%);
    --svc-grad-warm: linear-gradient(135deg, #FB3189 0%, #FF0A54 100%);
}

/* ============================================================
   Section badge (replaces default .heading2 h5 styling)
   Used on light sections (intro, feature_grid, services_included,
   why_us, faq). Dark sections use .svc-process-tag / .svc-results-tag.
   Maximum specificity to beat existing .heading2 h5 rules.
   ============================================================ */
h5.svc-badge,
.heading2 h5.svc-badge,
.about-content-area.heading2 h5.svc-badge,
.service-header-area.heading2 h5.svc-badge,
.svc-feature-section .service-header-area h5.svc-badge,
.svc-included-section .service-header-area h5.svc-badge,
.svc-why-section .service-header-area h5.svc-badge,
.svc-faq-section .service-header-area h5.svc-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(78,47,218,0.08) !important;
    color: var(--svc-primary) !important;
    font-family: inherit !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(78,47,218,0.18) !important;
    margin: 0 0 1.1rem !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    box-shadow: 0 4px 14px rgba(78,47,218,0.08) !important;
}
h5.svc-badge::after,
.heading2 h5.svc-badge::after,
.service-header-area.heading2 h5.svc-badge::after,
.about-content-area.heading2 h5.svc-badge::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}
h5.svc-badge::before,
.heading2 h5.svc-badge::before {
    content: "" !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background: var(--svc-grad) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 4px rgba(78,47,218,0.16) !important;
    flex-shrink: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    transform: none !important;
}

/* Center-align the badge inside center-aligned section headers */
.service-header-area.text-center h5.svc-badge,
.service-header-area.text-center.heading2 h5.svc-badge {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Dark-section badges */
h5.svc-process-tag,
.heading2 h5.svc-process-tag,
.service-header-area.heading2 h5.svc-process-tag,
h5.svc-results-tag,
.heading2 h5.svc-results-tag,
.service-header-area.heading2 h5.svc-results-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: inherit !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 50px !important;
    margin: 0 0 1.1rem !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
}
h5.svc-process-tag,
.heading2 h5.svc-process-tag {
    background: rgba(196,181,253,0.12) !important;
    color: #c4b5fd !important;
    border: 1px solid rgba(196,181,253,0.25) !important;
}
h5.svc-results-tag,
.heading2 h5.svc-results-tag {
    background: rgba(251,191,36,0.14) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(251,191,36,0.3) !important;
}
h5.svc-process-tag::after,
h5.svc-results-tag::after,
.heading2 h5.svc-process-tag::after,
.heading2 h5.svc-results-tag::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}
h5.svc-process-tag::before,
h5.svc-results-tag::before,
.heading2 h5.svc-process-tag::before,
.heading2 h5.svc-results-tag::before {
    content: "" !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    transform: none !important;
}
h5.svc-process-tag::before,
.heading2 h5.svc-process-tag::before {
    background: #c4b5fd !important;
    box-shadow: 0 0 0 4px rgba(196,181,253,0.2) !important;
}
h5.svc-results-tag::before,
.heading2 h5.svc-results-tag::before {
    background: #fbbf24 !important;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.2) !important;
}

/* Center-align dark badges in center-aligned headers */
.service-header-area.text-center h5.svc-process-tag,
.service-header-area.text-center h5.svc-results-tag {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================================
   Tighten section gaps  —  reduce top/bottom padding so sections
   feel cohesive instead of disconnected blocks.
   ============================================================ */
.svc-hero-band.about-header-area {
    padding: 110px 0 60px !important;
}
.svc-feature-section,
.svc-included-section,
.svc-why-section,
.svc-faq-section {
    padding: 70px 0 !important;
}
.about1-section-area.svc-feature-section,
.about1-section-area.svc-why-section,
.about1-section-area.bg-white {
    padding: 70px 0 !important;
}
.svc-process-section,
.svc-results-section {
    padding: 80px 0 !important;
}
@media (max-width: 991px) {
    .svc-hero-band.about-header-area { padding: 90px 0 50px !important; }
    .svc-feature-section, .svc-included-section, .svc-why-section,
    .svc-faq-section, .about1-section-area.bg-white { padding: 55px 0 !important; }
    .svc-process-section, .svc-results-section { padding: 60px 0 !important; }
}
@media (max-width: 767px) {
    .svc-hero-band.about-header-area { padding: 70px 0 40px !important; }
}

/* Highlight word inline gradient text (used by all section h1/h2). */
.svc-hi {
    background: var(--svc-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.svc-hi-light {
    background: linear-gradient(90deg, #c4b5fd, #FB3189);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.svc-hi-warm {
    background: var(--svc-grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================================
   HERO (extends .about-header-area)
   ============================================================ */
.svc-hero-band .about-inner-header { max-width: 880px; margin: 0 auto; }
.svc-hero-band .about-inner-header h1 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0.4rem 0 0.8rem;
}
.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78,47,218,0.08);
    color: var(--svc-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(78,47,218,0.18);
    margin-bottom: 1rem;
}
.svc-hero-badge i { font-size: 0.7rem; color: var(--svc-pink); }

.svc-hero-band .svc-hero-crumb {
    display: inline-block;
    margin-top: 0.4rem;
}
.svc-hero-desc {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5168;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.svc-hero-btns {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}
.svc-hero-btns .header-btn2 {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--svc-navy);
    font-weight: 600;
    padding: 0.78rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid var(--svc-line);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.svc-hero-btns .header-btn2:hover { border-color: var(--svc-primary); color: var(--svc-primary); }

.svc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.svc-hero-stat {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(78,47,218,0.05);
    position: relative;
    overflow: hidden;
}
.svc-hero-stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--svc-grad);
}
.svc-hero-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    background: var(--svc-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.svc-hero-stat span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #5a607a;
}

/* ============================================================
   INTRO — bullets + comparison table
   ============================================================ */
.svc-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.svc-bullets li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.55;
}
.svc-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--svc-grad);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(78,47,218,0.25);
}

.svc-comparison-table {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--svc-line);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(78,47,218,0.08);
}
.svc-ct-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    background: var(--svc-navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
}
.svc-ct-header > div { padding: 1rem 1.1rem; }
.svc-ct-header > div:last-child { background: var(--svc-grad); }
.svc-ct-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    border-bottom: 1px solid var(--svc-line);
    font-size: 0.91rem;
}
.svc-ct-row:last-child { border-bottom: none; }
.svc-ct-row > div { padding: 0.95rem 1.1rem; }
.svc-ct-row:nth-child(even) { background: #faf9ff; }
.svc-ct-label { font-weight: 700; color: #1a1a2e; }
.svc-ct-old { color: #5a607a; }
.svc-ct-new {
    color: var(--svc-primary);
    font-weight: 700;
    background: rgba(78,47,218,0.04);
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.svc-feature-section { background: #fff; }
.svc-feature-section .service-header-area { margin-bottom: 2.5rem; }
.svc-feature-card {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    width: 100%;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.svc-feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--svc-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.svc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(78,47,218,0.12);
    border-color: rgba(78,47,218,0.18);
}
.svc-feature-card:hover::before { transform: scaleX(1); }
.svc-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(78,47,218,0.1), rgba(251,49,137,0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background .3s;
}
.svc-feature-icon i {
    font-size: 1.5rem;
    color: var(--svc-primary);
    transition: color .3s, transform .3s;
}
.svc-feature-card:hover .svc-feature-icon { background: var(--svc-grad); }
.svc-feature-card:hover .svc-feature-icon i { color: #fff; transform: scale(1.1); }
.svc-feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--svc-navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.svc-feature-card p {
    color: #5a607a;
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SERVICES INCLUDED — self-contained card, no dependency on
   existing-site .works-header-area scoped rules.
   ============================================================ */
.svc-included-section .service-header-area { margin-bottom: 2.5rem; }
.svc-included-box {
    background: #fff !important;
    border: 1px solid var(--svc-line) !important;
    border-radius: 16px !important;
    padding: 1.8rem !important;
    height: 100%;
    transition: box-shadow .3s, transform .3s, border-color .3s !important;
}
.svc-included-box:hover {
    background: #fff !important;
    border-color: rgba(78,47,218,0.18) !important;
    box-shadow: 0 16px 40px rgba(78,47,218,0.12) !important;
    transform: translateY(-4px) !important;
}
.svc-included-box .icons {
    position: static !important;
    width: 56px !important;
    height: 56px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, rgba(78,47,218,0.1), rgba(251,49,137,0.1)) !important;
    border-radius: 14px !important;
    transition: background .3s !important;
}
.svc-included-box .icons i {
    font-size: 1.4rem;
    color: var(--svc-primary) !important;
    transition: color .3s, transform .3s;
}
.svc-included-box .content {
    padding-left: 0 !important;
}
.svc-included-box .content a {
    font-size: 1.07rem;
    font-weight: 700;
    color: var(--svc-navy) !important;
    margin-bottom: 0.4rem;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color .3s !important;
}
.svc-included-box .content p {
    color: #5a607a !important;
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
    opacity: 1 !important;
    transition: color .3s !important;
}
/* Hover: icon container fills with purple gradient, icon turns white,
   text stays its normal color (override any existing-site hover rules). */
.svc-included-box:hover .icons {
    background: var(--svc-grad) !important;
}
.svc-included-box:hover .icons i {
    color: #fff !important;
    transform: scale(1.08);
}
.svc-included-box:hover .content a {
    color: var(--svc-primary) !important;
}
.svc-included-box:hover .content p {
    color: #5a607a !important;
    opacity: 1 !important;
}

/* ============================================================
   WHY US
   ============================================================ */
.svc-why-section { background: #faf9ff; }
.svc-why-section .service-header-area { margin-bottom: 2.5rem; }
.svc-why-card {
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 16px;
    padding: 2rem 1.7rem;
    width: 100%;
    box-shadow: 0 4px 18px rgba(78,47,218,0.05);
    transition: box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden;
}
.svc-why-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -25%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251,49,137,0.08), transparent 65%);
    pointer-events: none;
}
.svc-why-card:hover {
    box-shadow: 0 18px 48px rgba(78,47,218,0.14);
    transform: translateY(-4px);
}
.svc-why-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--svc-grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}
.svc-why-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--svc-navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.svc-why-card p {
    color: #5a607a;
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   PROCESS — dark band
   ============================================================ */
.svc-process-section {
    background: var(--svc-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.svc-process-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78,47,218,0.30), transparent 65%);
    pointer-events: none;
}
.svc-process-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,49,137,0.22), transparent 65%);
    pointer-events: none;
}
.svc-process-section .container { position: relative; z-index: 2; }
.svc-process-section .service-header-area { margin-bottom: 3rem; }
.svc-process-h2 { color: #fff !important; }
.svc-process-tag { color: #c4b5fd !important; }
.svc-process-intro { color: rgba(255,255,255,0.7) !important; }

.svc-process-strip { position: relative; }
.svc-process-strip::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 20%, rgba(255,255,255,0.12) 80%, transparent);
    z-index: 1;
}
.svc-process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 2rem 1.6rem 1.7rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: background .3s, transform .3s, border-color .3s;
    position: relative;
    z-index: 2;
}
.svc-process-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,181,253,0.3);
    transform: translateY(-4px);
}
.svc-process-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--svc-grad);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 12px 28px rgba(78,47,218,0.5);
    border: 4px solid var(--svc-navy);
    letter-spacing: -0.02em;
}
.svc-process-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.svc-process-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   RESULTS — dark band
   ============================================================ */
.svc-results-section {
    background: var(--svc-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.svc-results-section::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(251,49,137,0.18), transparent 60%);
    pointer-events: none;
}
.svc-results-section .container { position: relative; z-index: 2; }
.svc-results-section .service-header-area { margin-bottom: 3rem; }
.svc-results-h2 { color: #fff !important; }
.svc-results-tag { color: #fbbf24 !important; }
.svc-results-intro { color: rgba(255,255,255,0.7) !important; }

.svc-result-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 2.2rem 1.7rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: transform .3s, border-color .3s;
}
.svc-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251,49,137,0.35);
}
.svc-result-num {
    display: block;
    font-size: clamp(2.3rem, 3.6vw, 3rem);
    font-weight: 800;
    background: var(--svc-grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.7rem;
    letter-spacing: -0.03em;
}
.svc-result-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================================
   FAQ — minor styling on top of Bootstrap accordion
   ============================================================ */
.svc-faq-section .service-header-area { margin-bottom: 2.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .svc-process-strip::before { display: none; }
    .svc-process-section, .svc-results-section { padding: 70px 0; }
}
@media (max-width: 767px) {
    .svc-hero-band .about-inner-header h1 { font-size: 1.85rem; }
    .svc-hero-stats { grid-template-columns: 1fr; }
    .svc-hero-btns { flex-direction: column; }
    .svc-hero-btns .header-btn1, .svc-hero-btns .header-btn2 { width: 100%; justify-content: center; text-align: center; }
    .svc-ct-header, .svc-ct-row { font-size: 0.78rem; }
    .svc-ct-header > div, .svc-ct-row > div { padding: 0.6rem 0.5rem; }
    .svc-process-num { width: 52px; height: 52px; font-size: 1rem; }
    .svc-process-section, .svc-results-section { padding: 60px 0; }
}
@media (max-width: 575px) {
    .svc-hero-stat strong { font-size: 1.45rem; }
    .svc-result-num { font-size: 2rem; }
    .svc-why-num { font-size: 2rem; }
}

/* ============================================================
   INTRO right-side image (alternative to comparison table)
   ============================================================ */
.svc-intro-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(78,47,218,0.12);
}
.svc-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.svc-intro-image::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(78,47,218,0.04));
    pointer-events: none;
}

/* ============================================================
   DEFENSIVE BUTTON + ICON HOVER OVERRIDES
   Prevent existing-site rules from making text/icons invisible.
   ============================================================ */

/* Secondary hero button must stay visible on white hero. */
.svc-hero-btns .header-btn2 {
    background: transparent !important;
    color: var(--svc-navy) !important;
    border: 1.5px solid var(--svc-line) !important;
    padding: 0.78rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s !important;
}
.svc-hero-btns .header-btn2:hover,
.svc-hero-btns .header-btn2:focus {
    background: var(--svc-primary) !important;
    color: #fff !important;
    border-color: var(--svc-primary) !important;
    transform: translateY(-2px) !important;
}
.svc-hero-btns .header-btn2 span {
    background: rgba(78,47,218,0.12) !important;
    color: var(--svc-primary) !important;
}
.svc-hero-btns .header-btn2:hover span {
    background: #fff !important;
    color: var(--svc-primary) !important;
}

/* Primary hero button (header-btn1) — ensure span+icon stay visible. */
.svc-hero-btns .header-btn1 {
    background: var(--svc-grad) !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(78,47,218,0.32);
    transition: transform 0.25s, box-shadow 0.25s !important;
}
.svc-hero-btns .header-btn1:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 38px rgba(78,47,218,0.42);
    color: #fff !important;
}
.svc-hero-btns .header-btn1 span,
.svc-hero-btns .header-btn1:hover span {
    background: #fff !important;
    color: var(--svc-primary) !important;
}
.svc-hero-btns .header-btn1 span i,
.svc-hero-btns .header-btn1:hover span i {
    color: var(--svc-primary) !important;
}

/* Ensure ALL FA icons inside any svc-* component stay color-visible.
   Defensive against any framework/site rule turning them invisible. */
.svc-feature-card h3, .svc-feature-card p,
.svc-why-card h3, .svc-why-card p,
.svc-included-box .content a, .svc-included-box .content p {
    opacity: 1 !important;
}
