/* ==========================================================================
   SOCIAL HIPPO — MODERN THEME LAYER
   Loaded after style.css and the site-specific stylesheets, this file is the
   single source of truth for the visual design system: tokens, typography,
   buttons, cards, forms, navigation, footer, the new homepage components
   (feature grid, marquee, ticker, CTA panel) and motion. Site-specific accent
   overrides (blogging/mailing/searching) keep working because they use
   !important on color properties only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Brand color (unchanged) */
    --sh-yellow: #F9C252;
    --sh-yellow-deep: #FDB913;
    --sh-yellow-dark: #EFB237;
    --sh-yellow-soft: #FCEBC7;
    --sh-yellow-tint: #FFF8EA;
    --sh-amber-text: #C7820A;   /* accessible amber for text links on white */

    /* Neutrals (warm) */
    --sh-ink: #1C1B18;
    --sh-ink-soft: #3F3C36;
    --sh-muted: #6B6862;
    --sh-paper: #FFFFFF;
    --sh-grey: #F3F2F0;
    --sh-line: #E9E6E0;

    /* Product accents (unchanged hues) */
    --sh-red: #D55F70;
    --sh-purple: #7D6DD2;
    --sh-green: #71CCB7;

    /* --- ACCENT ROLE TOKENS ---------------------------------------------
       The whole design system below paints itself with these accent tokens
       instead of literal yellow. They default to the Social Hippo yellow, so
       Social renders exactly as before. Each sub-product (blogging / mailing /
       searching) only has to re-point this small block to its own hue and the
       ticker, feature cards, CTA billboard, focus rings, nav underline,
       calculator selections, links and buttons all re-theme automatically. */
    --sh-accent:        #F9C252;   /* primary fill (buttons, ticker, CTA) */
    --sh-accent-deep:   #FDB913;   /* gradient end / emphasis */
    --sh-accent-dark:   #EFB237;   /* small inline icons */
    --sh-accent-soft:   #FCEBC7;   /* tile borders */
    --sh-accent-tint:   #FFF8EA;   /* tile backgrounds */
    --sh-accent-text:   #C7820A;   /* accent-coloured text/links on white */
    --sh-on-accent:     #1C1B18;   /* text/icon colour on a filled accent surface */
    --sh-accent-rgb:    249, 194, 82;   /* for rgba() focus rings & glows */
    --sh-shadow-accent: 0 8px 24px -6px rgba(var(--sh-accent-rgb), .55);

    /* Shape */
    --sh-radius-sm: 14px;
    --sh-radius: 20px;
    --sh-radius-lg: 28px;
    --sh-radius-xl: 40px;
    --sh-radius-pill: 999px;

    /* Elevation (warm-tinted, layered) */
    --sh-shadow-sm: 0 1px 2px rgba(28, 27, 24, .05), 0 2px 8px rgba(28, 27, 24, .05);
    --sh-shadow: 0 2px 4px rgba(28, 27, 24, .04), 0 10px 24px -6px rgba(28, 27, 24, .10);
    --sh-shadow-lg: 0 4px 8px rgba(28, 27, 24, .05), 0 24px 48px -12px rgba(28, 27, 24, .18);
    --sh-shadow-yellow: 0 8px 24px -6px rgba(var(--sh-accent-rgb), .55);

    /* Type */
    --sh-font-display: 'Bricolage Grotesque', 'Poppins', sans-serif;
    --sh-font-body: 'Figtree', 'Poppins', sans-serif;

    /* Motion */
    --sh-ease: cubic-bezier(.22, .61, .36, 1);
    --sh-ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

/* --------------------------------------------------------------------------
   2. BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
/* The tilted/scaled brand ticker (and other rotated decor) bleed a few px past
   the viewport edge. Clipping horizontally on the root element stops them from
   triggering a page-wide horizontal scrollbar. `clip` (not `hidden`) keeps
   vertical scrolling and sticky positioning intact, and unlike on `body` it
   reliably reaches the viewport. */
html {
    overflow-x: clip;
}

body {
    font-family: var(--sh-font-body);
    color: var(--sh-ink-soft);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sh-font-display);
    color: var(--sh-ink);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
    font-weight: 800;
}

p {
    font-family: var(--sh-font-body);
    color: var(--sh-ink-soft);
}

small {
    color: var(--sh-ink-soft);
}

::selection {
    background: var(--sh-accent);
    color: var(--sh-on-accent);
}

a {
    transition: color .2s var(--sh-ease);
}

a:hover {
    color: var(--sh-accent-text);
}

:focus-visible {
    outline: 3px solid rgba(var(--sh-accent-rgb), .7);
    outline-offset: 2px;
}

/* Section titles get a signature marker bar */
.title h1 {
    margin-bottom: .35em;
}

.title h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 6px;
    margin: 18px auto 0;
    border-radius: var(--sh-radius-pill);
    background: linear-gradient(90deg, var(--sh-accent), var(--sh-accent-deep));
}

.title small,
.title > :not(h1) {
    color: var(--sh-muted);
    font-size: 1.05rem;
}

.inner-title {
    font-weight: 700;
}

.u-title, .text-uline, .pakket, .ques-form-titel, .general, .factur-en {
    border-bottom-color: var(--sh-accent);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.navbar-nav .nav-item .nav-link {
    font-family: var(--sh-font-body);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--sh-ink);
    border-bottom: 0;
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: var(--sh-radius-pill);
    background: var(--sh-accent-deep);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s var(--sh-ease);
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--sh-ink);
}

.home .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
}

.login-btn.btn {
    font-weight: 700;
    box-shadow: var(--sh-shadow-sm);
}

/* Sub-product logos are dark-on-transparent PNGs; on the dark hero header
   render them white so they read like Social's dedicated white logo. */
.navbar-brand img.brand-logo-invert {
    filter: brightness(0) invert(1);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
/* Every button centers its caption with flexbox — the legacy stylesheet used
   one-sided padding hacks (.bgyellow, .btn-calc) that pushed captions off
   center; those are neutralized below. */
.btn:not(.btn-link):not(.language-btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.btn {
    font-family: var(--sh-font-body);
    font-weight: 700;
    line-height: 1.2;
    border-radius: var(--sh-radius-pill);
    letter-spacing: .05em;
    transition: transform .2s var(--sh-ease), box-shadow .2s var(--sh-ease),
                background-color .2s var(--sh-ease), border-color .2s var(--sh-ease),
                color .2s var(--sh-ease), filter .2s var(--sh-ease);
}

.btn-primary,
.btn.bgyellow,
.bglogin {
    background-color: var(--sh-accent);
    border-color: var(--sh-accent);
}

.bglogin {
    color: var(--sh-on-accent);
}

.btn-primary {
    height: 52px;
    padding: 0 38px;
    border-radius: var(--sh-radius-pill);
    color: var(--sh-on-accent);
    box-shadow: var(--sh-shadow-accent), inset 0 1.5px 0 rgba(255, 255, 255, .45);
}

.btn.bgyellow,
.btn.btn-calc {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.btn.btn-calc {
    height: 56px;
}

.btn:not(.language-btn):hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-shadow);
}

.btn-primary:hover,
.btn.bgyellow:hover {
    color: var(--sh-on-accent);
    filter: brightness(.97);
    box-shadow: 0 12px 28px -6px rgba(var(--sh-accent-rgb), .65), inset 0 1.5px 0 rgba(255, 255, 255, .45);
}

.btn:active {
    transform: translateY(0);
    filter: brightness(.94);
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: 0 0 0 4px rgba(var(--sh-accent-rgb), .35) !important;
}

/* Ink button — used on yellow surfaces */
.btn-ink {
    background: var(--sh-ink);
    color: #fff;
    border: 0;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 38px;
    box-shadow: 0 10px 24px -8px rgba(28, 27, 24, .45);
}

.btn-ink:hover {
    background-color: #2C2A25;
    color: #fff;
}

.btn-ink:focus, .btn-ink:active {
    background-color: var(--sh-ink) !important;
    color: #fff;
}

.banner-btn {
    border-width: 2px;
    font-weight: 700;
    padding: 14px 34px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, .06);
}

.banner-btn:hover {
    color: var(--sh-ink) !important;
    box-shadow: var(--sh-shadow-accent);
}

.policy-inner .btn-primary {
    box-shadow: none;
}

/* Warning button → accent. Used as the calculator order CTA (on the white mobile
   bar) and the invoice download button; it is not a semantic "caution" button, so
   it follows the product accent like the other primary actions. */
.btn-warning,
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning:focus-visible,
.btn-warning.active,
.btn-warning:disabled {
    background-color: var(--sh-accent);
    border-color: var(--sh-accent);
    color: var(--sh-on-accent);
}

.btn-warning:hover {
    background-color: var(--sh-accent-dark);
    border-color: var(--sh-accent-dark);
}

/* --------------------------------------------------------------------------
   5. HERO / BANNER
   -------------------------------------------------------------------------- */
section.banner {
    padding-top: 230px;
    padding-bottom: 170px;
    overflow: hidden;
}

section.banner:after {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E"),
        radial-gradient(1000px 600px at 88% 15%, rgba(var(--sh-accent-rgb), .26), transparent 60%),
        linear-gradient(115deg, rgba(16, 14, 10, .95) 0%, rgba(16, 14, 10, .8) 45%, rgba(16, 14, 10, .55) 100%);
    background-color: transparent;
}

.banner-text .hero-eyebrow,
.banner-text > p {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: .22em;
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--sh-accent-deep);
    margin-bottom: 22px;
}

.banner-text .hero-eyebrow::before,
.banner-text > p::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: var(--sh-accent-deep);
    flex: none;
}

.banner-text h1 {
    font-size: clamp(2.6rem, 1.4rem + 5vw, 5rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.02em;
    max-width: 13em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.hero-actions .btn {
    margin-top: 0 !important;
}

.hero-cta {
    height: 56px;
    font-size: 15px;
}

/* --------------------------------------------------------------------------
   6. BRAND TICKER (platform marquee strip under the hero)
   -------------------------------------------------------------------------- */
.brand-ticker {
    background: linear-gradient(100deg, var(--sh-accent), var(--sh-accent-deep));
    transform: rotate(-1.2deg) scale(1.02);
    margin: -28px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: var(--sh-shadow);
}

.brand-ticker-track {
    display: flex;
    width: max-content;
    /* 12 identical groups; -50% shifts exactly 6 groups, so the loop is seamless.
       Half the track (6 groups) is wide enough to cover ultra-wide screens, so the
       strip never runs out / shows a gap. Duration scales with width to keep speed. */
    animation: sh-marquee 168s linear infinite;
}

.brand-ticker-group {
    display: flex;
    align-items: center;
    padding: 14px 0;
}

/* Text tickers (Blogging / Mailing / Searching topic words) */
.brand-ticker-group span {
    font-family: var(--sh-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .04em;
    color: var(--sh-on-accent);
    white-space: nowrap;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 36px;
}

.brand-ticker-group span::after {
    content: "✦";
    font-size: .8em;
    opacity: .55;
}

/* Inline SVG brand logos (Simple Icons artwork), all black —
   Social ticker. Flat on the band, no tile/background. */
.brand-ticker-group .brand-logo {
    width: 30px;
    height: 30px;
    margin: 0 22px;
    flex: none;
    fill: #1a1a1a;
}

/* --------------------------------------------------------------------------
   7. FEATURE GRID (replaces the old slick carousel)
   -------------------------------------------------------------------------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 56px 0 48px;
}

/* Four-up variant for "what's included" / "how it works" rows */
.feature-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid.cols-4 { grid-template-columns: 1fr; }
}

.feature-card {
    background: var(--sh-paper);
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-lg);
    padding: 34px 30px;
    box-shadow: var(--sh-shadow-sm);
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease), border-color .3s var(--sh-ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: auto;
    width: 56px;
    height: 5px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--sh-accent), var(--sh-accent-deep));
    opacity: 0;
    transition: opacity .3s var(--sh-ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--sh-accent-rgb), .8);
    box-shadow: var(--sh-shadow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--sh-accent-tint);
    border: 1px solid var(--sh-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform .3s var(--sh-ease-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-icon i {
    font-size: 32px;
    line-height: 1;
    color: var(--sh-ink);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p,
.feature-card small {
    font-size: 15px;
    color: var(--sh-muted);
    line-height: 1.6;
    display: block;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. MARQUEE (auto-scrolling card wall, "Waarom Social Hippo?")
   -------------------------------------------------------------------------- */
.marquee {
    overflow: hidden;
    margin: 56px 0 48px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    /* 4 identical groups; -50% shifts exactly 2 groups, so the loop is seamless */
    animation: sh-marquee 110s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 28px;
    padding-right: 28px;
}

.marquee .feature-card {
    width: 340px;
    flex: none;
}

@keyframes sh-marquee {
    to { transform: translateX(-50%); }
}

@media (max-width: 575px) {
    .marquee .feature-card { width: 280px; }
}

/* --------------------------------------------------------------------------
   9. ADVISE CTA PANEL (yellow gradient billboard)
   -------------------------------------------------------------------------- */
.advise-cta {
    background: linear-gradient(115deg, var(--sh-accent) 0%, var(--sh-accent-deep) 100%);
    border-radius: var(--sh-radius-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-shadow-lg);
}

.advise-cta::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    top: -240px;
    right: -120px;
}

.advise-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    bottom: -110px;
    left: 38%;
}

.advise-cta .row {
    position: relative;
    z-index: 1;
}

.advise-cta h1 {
    color: var(--sh-on-accent);
}

.advise-cta p {
    color: var(--sh-on-accent);
    opacity: .82;
    font-size: 1.1rem;
    max-width: 38em;
}

.advise-cta .img-part img {
    max-height: 300px;
    filter: drop-shadow(0 20px 30px rgba(28, 27, 24, .25));
}

@media (max-width: 767px) {
    .advise-cta { padding: 36px 28px; }
    .advise-cta .img-part { display: none; }
}

/* --------------------------------------------------------------------------
   10. SECTION BACKDROPS
   -------------------------------------------------------------------------- */
.receive-section.bg-gry,
.soc-hippo.bg-gry {
    background-image: radial-gradient(rgba(28, 27, 24, .05) 1px, transparent 1.5px);
    background-size: 26px 26px;
}

/* --------------------------------------------------------------------------
   11. CARDS & SURFACES (global)
   -------------------------------------------------------------------------- */
.border-y {
    border: 1.5px solid rgba(var(--sh-accent-rgb), .55) !important;
}

.border-y2 {
    border: 3px solid var(--sh-accent);
}

.border-gry {
    border: 1.5px solid var(--sh-line);
}

.border-gry2 {
    border: 3px solid var(--sh-grey);
}

/* Legacy slide-box (still used if any page keeps a slick slider) */
.slide-box {
    background: var(--sh-paper);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow-sm);
}

.top-icon {
    background: var(--sh-accent-tint);
    box-shadow: var(--sh-shadow-sm);
}

.soc-hippo .top-icon {
    background: var(--sh-accent-tint);
}

/* Product/service cards */
.service-box {
    background: var(--sh-paper);
    border-width: 2px;
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow-sm);
    padding: 40px 32px;
    height: auto;
    min-height: 370px;
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-shadow);
}

/* Equal-height cross-sell cards: the Bootstrap .row already stretches the
   columns to equal height, so make each card fill its column (instead of the
   content-based height: auto above) and lay it out as a flex column. Pinning
   the button with margin-top: auto lines the three CTAs up at the bottom
   regardless of how long each description is, and overrides the inconsistent
   mt-5 utilities the markup puts on some of the buttons. */
.service-part .service-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-part .service-box .btn {
    margin-top: auto !important;
}

.service-box .btn {
    color: #fff;
}

/* Cross-sell cards keep each product's own brand colour regardless of the page
   accent (these win over the token-based .btn-primary background via specificity). */
.service-box .btn.bg-red    { background-color: var(--sh-red);    border-color: var(--sh-red);    color: #fff; }
.service-box .btn.bg-purple { background-color: var(--sh-purple); border-color: var(--sh-purple); color: #fff; }
.service-box .btn.bg-green  { background-color: var(--sh-green);  border-color: var(--sh-green);  color: var(--sh-ink); }
.service-box .btn.bgyellow  { background-color: var(--sh-yellow); border-color: var(--sh-yellow); color: var(--sh-ink); }

.service-box h3 i { font-size: 30px; margin-right: 10px; vertical-align: -5px; }
.service-box.border-red h3 i    { color: var(--sh-red); }
.service-box.border-purple h3 i { color: var(--sh-purple); }
.service-box.border-green h3 i  { color: var(--sh-green); }
.service-box.border-y h3 i      { color: var(--sh-accent-dark); }

/* Step sections (homepage "Hoe werkt het?", the how-it-works page) get large,
   accent-coloured icons — bigger than the compact feature-card icons and with
   the glyph in the product accent rather than ink. */
.step-box .feature-icon,
.sidestep-text-top .feature-icon {
    width: 104px;
    height: 104px;
    border-radius: var(--sh-radius-lg);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.step-box .feature-icon i,
.sidestep-text-top .feature-icon i {
    font-size: 52px;
    color: var(--sh-accent);
}

/* --------------------------------------------------------------------------
   HOW-IT-WORKS — numbered process steps
   -------------------------------------------------------------------------- */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin: 56px 0 44px;
}

@media (max-width: 991px) {
    .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 575px) {
    .hiw-steps { grid-template-columns: 1fr; }
}

.hiw-step {
    position: relative;
    background: var(--sh-paper);
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-lg);
    padding: 38px 30px 32px;
    box-shadow: var(--sh-shadow-sm);
    overflow: hidden;
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease), border-color .3s var(--sh-ease);
}

.hiw-step:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--sh-accent-rgb), .8);
    box-shadow: var(--sh-shadow);
}

/* Big faded step number watermark in the corner */
.hiw-step-num {
    position: absolute;
    top: 6px;
    right: 22px;
    font-family: var(--sh-font-display);
    font-weight: 800;
    font-size: 84px;
    line-height: 1;
    color: var(--sh-accent);
    opacity: .13;
    pointer-events: none;
}

.hiw-step .feature-icon {
    width: 84px;
    height: 84px;
    border-radius: var(--sh-radius);
    margin-bottom: 20px;
}

.hiw-step .feature-icon i {
    font-size: 42px;
    color: var(--sh-accent);
}

.hiw-step h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.hiw-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--sh-muted);
    margin: 0;
}

/* Generic panels used on account/contact/intake pages */
.login-form-in,
.your-pack-part,
.package-part,
.package-part-right {
    border: 1.5px solid rgba(var(--sh-accent-rgb), .55);
    border-radius: var(--sh-radius-lg);
    background: var(--sh-paper);
    box-shadow: var(--sh-shadow-sm);
}

.login-form-top {
    border: 1.5px solid rgba(var(--sh-accent-rgb), .55);
    border-radius: var(--sh-radius);
    background: var(--sh-paper);
    box-shadow: var(--sh-shadow-sm);
    transition: box-shadow .25s var(--sh-ease);
}

.login-form-top:hover {
    box-shadow: var(--sh-shadow);
}

.facturen, .downlad-table, .ques-form-right, .profile-part-text, .profile-part1 {
    border-radius: var(--sh-radius);
}

.blog-box {
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease);
    border-radius: var(--sh-radius);
}

.blog-box:hover {
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   11b. BLOG OVERVIEW (Index)
   -------------------------------------------------------------------------- */
.blog-overview {
    padding: clamp(48px, 7vw, 96px) 0;
}

.blog-overview-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 64px);
}

.blog-eyebrow {
    display: inline-block;
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sh-accent-text);
    background: var(--sh-accent-tint);
    border: 1.5px solid var(--sh-accent-soft);
    border-radius: var(--sh-radius-pill);
    padding: 6px 16px;
    margin-bottom: 18px;
}

.blog-overview-head h1 {
    font-family: var(--sh-font-display);
    line-height: 1.08;
    margin-bottom: 14px;
}

.blog-overview-intro {
    font-size: 1.125rem;
    color: var(--sh-muted);
    margin-bottom: 0;
}

.blog-grid {
    --bs-gutter-y: 30px;
}

/* Card — the whole card is a single link */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--sh-paper);
    border: 1.5px solid var(--sh-line);
    border-radius: var(--sh-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--sh-shadow-sm);
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease),
                border-color .3s var(--sh-ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--sh-accent);
    box-shadow: var(--sh-shadow-lg);
    color: inherit;
    text-decoration: none;
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--sh-grey);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--sh-ease);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sh-font-body);
    font-size: .82rem;
    font-weight: 600;
    color: var(--sh-muted);
    margin-bottom: 12px;
}

.blog-card-date i {
    color: var(--sh-accent-deep);
    font-size: 1rem;
}

.blog-card-title {
    font-family: var(--sh-font-display);
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: .95rem;
    color: var(--sh-muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-family: var(--sh-font-body);
    font-weight: 700;
    color: var(--sh-accent-text);
}

.blog-card-link i {
    transition: transform .25s var(--sh-ease);
}

.blog-card:hover .blog-card-link i {
    transform: translateX(4px);
}

.blog-empty {
    padding: 60px 0;
    color: var(--sh-muted);
    font-size: 1.1rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: clamp(40px, 5vw, 64px);
}

.blog-page-num,
.blog-page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--sh-radius-sm);
    border: 1.5px solid var(--sh-line);
    background: var(--sh-paper);
    font-family: var(--sh-font-body);
    font-weight: 700;
    color: var(--sh-ink);
    text-decoration: none;
    transition: transform .2s var(--sh-ease), border-color .2s var(--sh-ease),
                background-color .2s var(--sh-ease), color .2s var(--sh-ease);
}

.blog-page-num:hover,
.blog-page-arrow:not(.disabled):hover {
    border-color: var(--sh-accent);
    transform: translateY(-2px);
    color: var(--sh-ink);
    text-decoration: none;
}

.blog-page-num.active {
    background: var(--sh-accent);
    border-color: var(--sh-accent);
    color: var(--sh-ink);
    box-shadow: var(--sh-shadow-accent);
}

.blog-page-arrow.disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   11c. BLOG ARTICLE (Show / detail) — wrapper styled; body HTML comes from DB
   -------------------------------------------------------------------------- */
.blog-article-page {
    padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 7vw, 96px);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 14px;
    border-radius: var(--sh-radius-pill);
    border: 1.5px solid var(--sh-line);
    background: var(--sh-paper);
    font-family: var(--sh-font-body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--sh-ink);
    text-decoration: none;
    margin-bottom: clamp(24px, 3vw, 40px);
    box-shadow: var(--sh-shadow-sm);
    transition: border-color .25s var(--sh-ease), color .25s var(--sh-ease),
                box-shadow .25s var(--sh-ease);
}

.blog-back-link i {
    color: var(--sh-accent-deep);
    font-size: 1rem;
    transition: transform .25s var(--sh-ease);
}

.blog-back-link:hover {
    border-color: var(--sh-accent);
    color: var(--sh-ink);
    text-decoration: none;
    box-shadow: var(--sh-shadow);
}

.blog-back-link:hover i {
    transform: translateX(-3px);
}

.blog-article-head {
    max-width: 960px;
    margin: 0 auto clamp(24px, 3vw, 36px);
    text-align: center;
}

.blog-article-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sh-font-body);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--sh-accent-text);
    background: var(--sh-accent-tint);
    border: 1.5px solid var(--sh-accent-soft);
    border-radius: var(--sh-radius-pill);
    padding: 6px 16px;
    margin-bottom: 18px;
}

.blog-article-date i {
    color: var(--sh-accent-deep);
    font-size: 1rem;
}

.blog-article-title {
    font-family: var(--sh-font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    margin: 0;
}

.blog-article-hero {
    max-width: 1100px;
    margin: 0 auto clamp(32px, 4vw, 56px);
    border-radius: var(--sh-radius-lg);
    overflow: hidden;
    box-shadow: var(--sh-shadow-lg);
    aspect-ratio: 16 / 8;
}

.blog-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reading column — styles whatever HTML is stored in the DB body */
.blog-article-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--sh-font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--sh-ink-soft);
}

.blog-article-content > *:first-child {
    margin-top: 0;
}

.blog-article-content p {
    margin: 0 0 1.4em;
    font-size: 1.2rem !important;
    text-align: left;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    font-family: var(--sh-font-display);
    color: var(--sh-ink);
    line-height: 1.2;
    margin: 1.8em 0 .6em;
    text-align: left;
}

.blog-article-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.blog-article-content h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.blog-article-content h4 { font-size: 1.2rem; }

.blog-article-content a {
    color: var(--sh-accent-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 600;
}

.blog-article-content a:hover {
    color: var(--sh-accent-deep);
}

.blog-article-content strong,
.blog-article-content b {
    color: var(--sh-ink);
    font-weight: 700;
}

.blog-article-content img,
.blog-article-content iframe,
.blog-article-content video {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2em auto;
    border-radius: var(--sh-radius);
}

.blog-article-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 1.4em;
    padding-left: 1.3em;
}

.blog-article-content li {
    margin-bottom: .5em;
    padding-left: .25em;
}

.blog-article-content li::marker {
    color: var(--sh-accent-deep);
}

.blog-article-content blockquote {
    margin: 1.8em 0;
    padding: 1em 1.4em;
    border-left: 4px solid var(--sh-accent);
    background: var(--sh-accent-tint);
    border-radius: 0 var(--sh-radius-sm) var(--sh-radius-sm) 0;
    font-style: italic;
    color: var(--sh-ink-soft);
}

.blog-article-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-article-content hr {
    border: 0;
    border-top: 1.5px solid var(--sh-line);
    margin: 2.4em 0;
}

.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    font-size: 1rem;
}

.blog-article-content th,
.blog-article-content td {
    border: 1.5px solid var(--sh-line);
    padding: 10px 14px;
    text-align: left;
}

.blog-article-content th {
    background: var(--sh-grey);
    font-weight: 700;
    color: var(--sh-ink);
}

/* Prev / next footer */
.blog-article-nav {
    max-width: 900px;
    margin: clamp(40px, 5vw, 64px) auto 0;
    padding-top: clamp(24px, 3vw, 36px);
    border-top: 1.5px solid var(--sh-line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.blog-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--sh-radius);
    border: 1.5px solid var(--sh-line);
    background: var(--sh-paper);
    font-family: var(--sh-font-body);
    font-weight: 700;
    color: var(--sh-ink);
    text-decoration: none;
    box-shadow: var(--sh-shadow-sm);
    transition: transform .25s var(--sh-ease), border-color .25s var(--sh-ease),
                box-shadow .25s var(--sh-ease);
}

.blog-nav-btn:hover {
    transform: translateY(-3px);
    border-color: var(--sh-accent);
    box-shadow: var(--sh-shadow);
    color: var(--sh-ink);
    text-decoration: none;
}

.blog-nav-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.blog-nav-next span {
    text-align: right;
}

.blog-nav-btn small {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--sh-muted);
}

.blog-nav-btn i {
    color: var(--sh-accent-deep);
    font-size: 1.2rem;
}

@media (max-width: 575.98px) {
    .blog-nav-btn span {
        display: none;
    }

    .blog-article-nav {
        justify-content: space-between;
    }
}

/* FAQ accordions */
.faq .accordion-item {
    border-radius: var(--sh-radius-sm);
    background: var(--sh-paper);
    border: 1.5px solid var(--sh-line);
    box-shadow: var(--sh-shadow-sm);
    transition: border-color .25s var(--sh-ease);
}

.faq .accordion-item.active,
.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--sh-accent);
}

.faq .accordion-button {
    font-weight: 600;
    font-family: var(--sh-font-body);
    background: transparent;
    border-radius: var(--sh-radius-sm);
}

/* --------------------------------------------------------------------------
   12. CALCULATOR & SELECTION BOXES
   -------------------------------------------------------------------------- */
.soc-box, .num-box, .cam-box, .ex-services-box-inner {
    background: var(--sh-paper);
    border: 1.5px solid var(--sh-line);
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow-sm);
    transition: transform .22s var(--sh-ease), box-shadow .22s var(--sh-ease),
                border-color .22s var(--sh-ease), background-color .22s var(--sh-ease);
}

.soc-box:hover, .num-box:hover, .cam-box:hover, .ex-services-box-inner:hover {
    transform: translateY(-3px);
    border-color: var(--sh-accent);
    box-shadow: var(--sh-shadow);
}

.check-btn:checked + label.soc-box,
.soc-box.selected,
.num-check-btn:checked + label.num-box,
.num-box.selected,
.cam-check-btn:checked + label.cam-box,
.ex-services-btn:checked + label {
    border-color: var(--sh-accent);
    background: var(--sh-accent-tint);
    box-shadow: 0 0 0 3px rgba(var(--sh-accent-rgb), .3), var(--sh-shadow-sm);
}

.num-check-btn:checked + label h2,
.num-check-btn:checked + label small,
.cam-check-btn:checked + label.cam-box h2 {
    color: var(--sh-accent-text);
}

.soc-box2 {
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
}

.cam-box2, .lang-box {
    border-radius: var(--sh-radius);
}

.mobile-card {
    border-top: 0;
    border-radius: var(--sh-radius) var(--sh-radius) 0 0;
    box-shadow: 0 -10px 30px rgba(28, 27, 24, .14);
}

/* Mobile/tablet fixes (everything below the lg breakpoint, where the desktop
   nav and the right-hand .side-menu price panel both appear at >=992px). */
@media (max-width: 991.98px) {
    /* Keep the price + order footer visible right up to 992px. It used to show
       only <=767px, while the right-hand .side-menu (d-lg-block) appears only at
       >=992px — so at 768-991px neither was visible and the price and START NU
       button were both unreachable. */
    .mobile-card {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        min-width: 320px;
        height: 80px;
        padding-left: 20px;
        background: #fff;
        z-index: 30;
    }
    .mobile-card .amount { line-height: 45px; font-size: 2.5rem !important; }
    .mobile-card .amount .label { font-size: 1.5rem; }
    .mobile-card .btn-order { color: #fff; margin-top: 15px; width: 90%; }

    /* Centre the collapsed mobile menu items. The ul carries .ml-auto
       (margin-left:auto !important from bootstrap-compat) which pushed it to the
       right; override it and make the ul full-width so align-items can centre the
       items across the screen. */
    .main-menu .navbar-nav {
        width: 100%;
        margin-left: 0 !important;
        align-items: center;
        text-align: center;
    }

    /* On the homepage the nav text is white over the dark hero, but the collapsed
       mobile menu sits on a white panel, so the hover colour would be white-on-
       white. Keep hover text dark on mobile. */
    .home .navbar-nav .nav-item .nav-link:hover {
        color: var(--sh-ink);
    }
}

/* Step indicators */
.step-box hr {
    border-color: var(--sh-accent-deep);
    border-top-width: 3px;
    width: 56px;
}

/* Calculator progress badge — themed numbered circle that replaces the legacy
   yellow step SVGs so the progress tracker follows each product's accent. */
.package-page .step-num {
    width: 92px;
    height: 92px;
    border-radius: var(--sh-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: var(--sh-font-display);
    font-weight: 800;
    font-size: 38px;
    background: var(--sh-grey);
    color: var(--sh-muted);
    border: 1px solid var(--sh-line);
}

.package-page .step-box.active .step-num,
.package-page .step-box.completed .step-num {
    background: var(--sh-accent);
    color: var(--sh-on-accent);
    border-color: var(--sh-accent);
    box-shadow: var(--sh-shadow-accent);
}

/* --------------------------------------------------------------------------
   13. FORMS
   -------------------------------------------------------------------------- */
.form-control, .form-select {
    border: 1.5px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    padding: 10px 16px;
    font-family: var(--sh-font-body);
    transition: border-color .2s var(--sh-ease), box-shadow .2s var(--sh-ease);
}

.form-control:focus, .form-select:focus {
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 4px rgba(var(--sh-accent-rgb), .25);
}

/* Select2 dropdowns (calculator referer, etc.) → match the modern form fields
   instead of the default plain/grey widget. */
.select2-container .select2-selection--single {
    height: 46px;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    background: var(--sh-paper);
    padding: 0 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    color: var(--sh-ink-soft);
    font-family: var(--sh-font-body);
    padding-left: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}

.select2-container--open .select2-selection--single,
.select2-container--focus .select2-selection--single {
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 4px rgba(var(--sh-accent-rgb), .25);
}

.select2-dropdown {
    border: 1.5px solid var(--sh-accent);
    border-radius: var(--sh-radius-sm);
    box-shadow: var(--sh-shadow);
    overflow: hidden;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted {
    background-color: var(--sh-accent);
    color: var(--sh-on-accent);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--sh-accent-tint);
    color: var(--sh-ink);
}

.select2-search--dropdown .select2-search__field {
    border: 1.5px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    padding: 8px 10px;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--sh-accent);
    outline: none;
}

.contact-form {
    border-radius: var(--sh-radius-lg);
}

.contact-form form label h5,
.login-form label h5 {
    font-family: var(--sh-font-body);
    font-weight: 600;
    font-size: 15px;
}

/* --------------------------------------------------------------------------
   14. SLIDER DOTS (legacy sliders on other pages)
   -------------------------------------------------------------------------- */
.slick-dots li button:before {
    width: 11px !important;
    height: 11px !important;
    background: #DDD9D2;
    transition: background-color .2s var(--sh-ease), transform .2s var(--sh-ease);
}

.slick-dots li.slick-active button:before {
    background: var(--sh-accent-deep) !important;
    transform: scale(1.25);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
footer {
    border-radius: 48px 48px 0 0;
    padding-top: 76px;
}

footer h6 {
    font-family: var(--sh-font-display);
    font-weight: 700;
    letter-spacing: 0;
}

.footer-centerpart ul li a,
.links a {
    color: var(--sh-ink);
    transition: color .2s var(--sh-ease);
}

.footer-centerpart ul li a:hover,
.links a:hover {
    color: var(--sh-accent-text);
}

ul.f-soc li a {
    display: inline-block;
    transition: transform .2s var(--sh-ease);
}

ul.f-soc li a:hover {
    transform: translateY(-3px);
}

ul.f-soc li a i {
    font-size: 21px;
    line-height: 1;
    color: var(--sh-ink);
}

ul.f-soc li a:hover i {
    color: var(--sh-accent-text);
}

/* Inline phone/email icons in the footer contact lists */
.footer-centerpart ul li a i {
    font-size: 16px;
    margin-right: 6px;
    vertical-align: -0.15em;
    color: var(--sh-accent-dark);
}

/* --------------------------------------------------------------------------
   15b. CONTACT PAGE
   Brings the legacy contact layout in line with the homepage design system:
   an eyebrow kicker + marker headline, feature-card-style info tiles, and a
   panelled form. Selectors are scoped to .contact-page so the same .ready /
   .contact-icon markup elsewhere is untouched.
   -------------------------------------------------------------------------- */
.contact-page {
    padding: clamp(40px, 6vw, 84px) 0;
}

/* Header — mirrors the homepage hero: eyebrow pill + marker headline */
.contact-hero {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sh-accent-text);
    background: var(--sh-accent-tint);
    border: 1.5px solid var(--sh-accent-soft);
    border-radius: var(--sh-radius-pill);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.contact-eyebrow i {
    font-size: 1.05em;
    line-height: 1;
}

.contact-hero h1 {
    line-height: 1.08;
    margin-bottom: 0;
}

.contact-hero h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 6px;
    margin: 22px auto 0;
    border-radius: var(--sh-radius-pill);
    background: linear-gradient(90deg, var(--sh-accent), var(--sh-accent-deep));
}

/* Info tiles — adopt the feature-card surface, hover lift and top accent */
.contact-page .contact-icon {
    position: relative;
    overflow: hidden;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--sh-radius);
    background: var(--sh-paper);
    box-shadow: var(--sh-shadow-sm);
    transition: transform .3s var(--sh-ease), box-shadow .3s var(--sh-ease),
                border-color .3s var(--sh-ease);
}

.contact-page .contact-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 48px;
    height: 5px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--sh-accent), var(--sh-accent-deep));
    opacity: 0;
    transition: opacity .3s var(--sh-ease);
}

.contact-page .contact-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--sh-accent-rgb), .85) !important;
    box-shadow: var(--sh-shadow);
}

.contact-page .contact-icon:hover::before {
    opacity: 1;
}

/* Icon tile — rounded square with the brand tint, like .feature-icon */
.contact-page .con-phone {
    flex: none;
}

.contact-page .phone-radius {
    border-radius: 16px !important;
    background: var(--sh-accent-tint);
    border: 1.5px solid var(--sh-accent-soft) !important;
    padding: 0;
    transition: transform .3s var(--sh-ease-bounce);
}

.contact-page .contact-icon:hover .phone-radius {
    transform: scale(1.08) rotate(-4deg);
}

.contact-page .con-phone span i {
    color: var(--sh-ink);
}

/* Text block — display font on the label, amber hover on links */
.contact-page .name-no {
    margin-left: 0;
}

.contact-page .name-no h6 {
    font-family: var(--sh-font-display);
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--sh-ink);
}

.contact-page .name-no a {
    color: var(--sh-ink-soft);
    font-weight: 600;
}

.contact-page .name-no a:hover {
    color: var(--sh-accent-text);
}

/* Form panel — lift it onto a clean white card with a soft shadow */
.contact-page .contact-form {
    background: var(--sh-paper);
    box-shadow: var(--sh-shadow);
}

/* --------------------------------------------------------------------------
   16. MOTION (progressive enhancement, respects reduced motion)
   -------------------------------------------------------------------------- */
/* Keyframes animate the standalone `translate` property so they never fight
   `transform`-based hover lifts or the calculator's scaled step boxes. */
@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
        .step-section:not(.package-page) .step-box,
        .service-box,
        .blog-box,
        .job-part,
        .feature-grid .feature-card,
        .contact-page .contact-icon,
        .advise-cta,
        .title {
            animation: sh-rise .7s var(--sh-ease) both;
            animation-timeline: view();
            animation-range: entry 0% entry 38%;
        }
    }
}

@keyframes sh-rise {
    from {
        opacity: 0;
        translate: 0 26px;
    }
    to {
        opacity: 1;
        translate: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .marquee-track, .brand-ticker-track {
        animation: none !important;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   ICONS — Phosphor (bold) is the single icon library across the site.
   Use <i class="ph-bold ph-{name}"></i>. Helpers below replace the
   Font-Awesome utilities that were previously relied upon (spin + stacked
   circle badge) so existing layouts keep working.
   -------------------------------------------------------------------------- */
[class^="ph-"],
[class*=" ph-"] {
    line-height: 1;
    vertical-align: -0.125em; /* optical baseline alignment next to text */
}

/* Spinner (replaces fa-spin) */
@keyframes ph-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.ph-spin {
    display: inline-block;
    animation: ph-spin .9s linear infinite;
}

/* Circle badge icon (replaces fa-stack circle background pattern).
   Markup: <span class="icon-circle"><i class="ph-bold ph-..."></i></span> */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    border-radius: var(--sh-radius-pill);
    background: var(--sh-accent);
    color: var(--sh-on-accent);
    flex: 0 0 auto;
}
.icon-circle i {
    font-size: 1.25em;
    line-height: 1;
    vertical-align: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ph-spin { animation-duration: .01ms; }
}
