:root {
    --systesol-bg: #0B1220;
    --systesol-surface: #111A33;
    --systesol-surface-alt: #16223C;
    --systesol-white: #F8FAFB;
    --systesol-gray: #A3B1C2;
    --systesol-gray-dark: #6E8294;
    --systesol-primary: #1C5EFF;
    --systesol-primary-dark: #0E3CCF;
    --systesol-accent: #33D2A4;
    --systesol-accent-soft: rgba(51, 210, 164, 0.16);
    --systesol-radius: 24px;
    --systesol-radius-sm: 14px;
    --systesol-shadow: 0 32px 80px rgba(7, 17, 43, 0.22);
    --systesol-transition: 250ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--systesol-white);
    background: #050913;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.systesol-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(6, 13, 30, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.systesol-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.systesol-brand img {
    height: 42px;
}

.systesol-nav__list,
.systesol-mobile-menu ul,
.systesol-footer__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.systesol-nav__list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.systesol-nav__list a {
    color: var(--systesol-white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.systesol-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.systesol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform var(--systesol-transition), background var(--systesol-transition), color var(--systesol-transition);
}

.systesol-btn:hover {
    transform: translateY(-2px);
}

.systesol-btn--primary {
    background: linear-gradient(135deg, var(--systesol-primary), #1B74FF);
    color: #fff;
}

.systesol-btn--secondary {
    background: rgba(255,255,255,0.08);
    color: var(--systesol-white);
    border: 1px solid rgba(255,255,255,0.12);
}

.systesol-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--systesol-white);
}

.systesol-menu-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: var(--systesol-white);
    padding: 12px 16px;
    cursor: pointer;
    display: none;
}

.systesol-mobile-menu {
    display: none;
}

.systesol-main {
    overflow: hidden;
}

.systesol-hero {
    padding: 96px 24px 80px;
    background: radial-gradient(circle at top left, rgba(29, 115, 255, 0.2), transparent 28%), linear-gradient(180deg, #071122 0%, #090F1F 100%);
}

.systesol-hero__content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.systesol-eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(28, 94, 255, 0.12);
    color: var(--systesol-primary);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.systesol-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 4vw, 4.8rem);
    line-height: 0.95;
    max-width: 670px;
    margin: 0 0 24px;
}

.systesol-description {
    max-width: 640px;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
}

.systesol-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.systesol-hero__visual {
    display: grid;
    place-items: center;
    gap: 24px;
}

.systesol-hero__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--systesol-shadow);
}

.systesol-hero__panel {
    width: 100%;
    min-height: 420px;
    padding: 36px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--systesol-shadow);
    display: grid;
    gap: 20px;
}

.systesol-hero__panel span {
    display: inline-flex;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    color: #EAF1FF;
    font-weight: 600;
}

.systesol-pillars,
.systesol-solutions,
.systesol-purpose,
.systesol-impact,
.systesol-case,
.systesol-knowledge,
.systesol-contact {
    padding: 80px 24px;
}

.systesol-section-head {
    max-width: 920px;
    margin: 0 auto 48px;
    text-align: center;
}

.systesol-section-head h2 {
    font-size: clamp(2.2rem, 2.7vw, 3.3rem);
    margin: 18px auto 16px;
    color: #F8FAFB;
}

.systesol-section-head p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
}

.systesol-pillars__grid,
.systesol-solutions__grid,
.systesol-case__grid,
.systesol-knowledge__grid {
    display: grid;
    gap: 24px;
}

.systesol-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.systesol-solutions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.systesol-card,
.systesol-solution-card,
.systesol-case__grid article,
.systesol-knowledge__grid article {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.systesol-solution-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--systesol-transition), box-shadow var(--systesol-transition);
}

.systesol-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 44px 110px rgba(7,17,43,0.34);
}

.systesol-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(28, 94, 255, 0.18);
    color: var(--systesol-primary);
    font-weight: 800;
    margin-bottom: 22px;
}

.systesol-solution-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(28, 94, 255, 0.14);
    margin-bottom: 20px;
    transition: transform var(--systesol-transition), background var(--systesol-transition);
}

.systesol-solution-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--systesol-primary);
    stroke-width: 1.8;
    fill: none;
}

.systesol-solution-card:hover .systesol-solution-card__icon {
    transform: translateY(-4px);
    background: rgba(28, 94, 255, 0.2);
}

.systesol-card h3,
.systesol-solution-card h3,
.systesol-case__grid article h3,
.systesol-knowledge__grid article h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
}

.systesol-card p,
.systesol-solution-card p,
.systesol-case__grid article p,
.systesol-knowledge__grid article p {
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    margin-bottom: 22px;
}

.systesol-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid rgba(28,94,255,0.18);
    color: var(--systesol-primary);
    background: rgba(28,94,255,0.06);
    font-weight: 700;
    transition: transform var(--systesol-transition), background var(--systesol-transition), border-color var(--systesol-transition);
    width: fit-content;
}

.systesol-link:hover {
    background: rgba(28,94,255,0.16);
    border-color: rgba(28,94,255,0.3);
    transform: translateY(-2px);
}


.systesol-card--highlight {
    background: linear-gradient(180deg, rgba(26, 48, 84, 0.95), rgba(21, 36, 76, 0.9));
    border-color: rgba(28, 94, 255, 0.22);
}

.systesol-card--highlight .systesol-card__cta {
    color: var(--systesol-accent);
}

.systesol-integrator {
    padding: 72px 24px;
    background: linear-gradient(180deg, #09132D 0%, #07101F 100%);
}

.systesol-integrator__content {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.systesol-integrator h2 {
    font-size: clamp(2.1rem, 3vw, 3rem);
    margin: 0 auto 18px;
    max-width: 760px;
}

.systesol-integrator p {
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    max-width: 760px;
    margin: 0 auto;
}

.systesol-solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.systesol-solution-card ul li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.systesol-purpose__overview {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.systesol-purpose__pillars {
    display: grid;
    gap: 18px;
}

.systesol-purpose__pillars div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.systesol-purpose__pillars h3 {
    margin: 0 0 12px;
}

.systesol-purpose__pillars p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}

.systesol-impact {
    background: rgba(255,255,255,0.03);
}

.systesol-impact__intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.systesol-impact__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.systesol-impact__grid div {
    padding: 28px;
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.systesol-impact__grid strong {
    display: block;
    font-size: 2.35rem;
    margin-bottom: 10px;
    color: var(--systesol-accent);
}

.systesol-case__grid,
.systesol-knowledge__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.systesol-contact {
    background: linear-gradient(180deg, #020712 0%, #081423 100%);
}

.systesol-contact__frame {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.systesol-contact__info {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.systesol-contact__info li {
    color: rgba(255,255,255,0.8);
}

.systesol-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.systesol-form {
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.systesol-form label {
    display: grid;
    gap: 10px;
    color: rgba(255,255,255,0.86);
    font-size: 0.95rem;
}

.systesol-form input,
.systesol-form select,
.systesol-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.systesol-form input:focus,
.systesol-form select:focus,
.systesol-form textarea:focus {
    outline: none;
    border-color: var(--systesol-primary);
    box-shadow: 0 0 0 4px rgba(28, 94, 255, 0.14);
}

.systesol-form__checkbox {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}

.systesol-form__checkbox input {
    width: 20px;
    height: 20px;
}

.systesol-footer {
    padding: 48px 24px 28px;
    background: linear-gradient(180deg, #081A38 0%, #0E2550 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.systesol-footer__inner {
    max-width: 1180px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.systesol-brand-footer img {
    height: 32px;
}

.systesol-footer__inner h3 {
    margin-bottom: 18px;
    font-size: 1rem;
}

.systesol-footer__inner p,
.systesol-footer__inner li {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.systesol-footer__inner ul li {
    margin-bottom: 12px;
}

.systesol-footer__verse {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}

.systesol-footer__verse a {
    color: var(--systesol-primary);
    text-decoration: underline;
}

.systesol-footer__bar {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
}

.systesol-footer__bar p {
    margin: 0;
    min-width: 180px;
    flex: 1 1 0;
}


@media (max-width: 1080px) {
    .systesol-hero__content,
    .systesol-purpose__overview,
    .systesol-contact__frame,
    .systesol-pillars__grid,
    .systesol-case__grid,
    .systesol-knowledge__grid,
    .systesol-footer__inner {
        grid-template-columns: 1fr;
    }

    .systesol-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .systesol-header__inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .systesol-menu-toggle {
        display: inline-flex;
    }

    .systesol-nav {
        display: none;
    }

    .systesol-mobile-menu {
        display: none;
        background: rgba(5, 9, 24, 0.98);
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .systesol-mobile-menu.open {
        display: block;
    }

    .systesol-mobile-menu ul {
        display: grid;
        gap: 1px;
    }

    .systesol-mobile-menu a {
        display: block;
        padding: 16px 24px;
        color: var(--systesol-white);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 720px) {
    .systesol-header__inner,
    .systesol-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .systesol-hero__panel {
        min-height: 320px;
    }

    .systesol-solutions__grid {
        grid-template-columns: 1fr;
    }

    .systesol-btn {
        width: 100%;
    }
}

.systesol-error {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.18);
}

/* Service image styling */
.service-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Card hover and motion */
.systesol-solution-card {
    transition: transform var(--systesol-transition), box-shadow var(--systesol-transition);
}
.systesol-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 44px 110px rgba(7,17,43,0.34);
}

/* Livelier hero with soft illustration */
.systesol-hero {
    position: relative;
    overflow: visible;
}
.systesol-hero::after {
    content: '';
    position: absolute;
    right: -6%;
    top: 6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(30,160,255,0.12), transparent 40%), linear-gradient(135deg, rgba(43,118,230,0.06), transparent 50%);
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
}

/* Subtle floating effect for hero panel */
.systesol-hero__panel {
    animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Make buttons and CTAs more prominent on mobile */
@media (max-width: 720px) {
    .systesol-hero__panel { min-height: 260px; padding: 22px; }
    .service-image { height: 140px; }
}

/* Compatibility: map site-* classes (new templates) to systesol styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(6,13,30,0.98) 40%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 18px rgba(2,8,20,0.45);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.site-header__brand a {
    color: var(--systesol-white);
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
}

/* Larger logo images when present */
.systesol-brand img,
.site-header__brand img,
.systesol-brand img[alt*="SYSTESOL"],
.site-header__brand img[alt*="SYSTESOL"] {
    height: 56px;
    width: auto;
    display: block;
}

/* Enlarge logo further for new branding */
.site-brand img {
    height: 72px;
    width: auto;
    display: block;
}

/* Company name styling: two-line elegant layout */
.site-company-name {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.15;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.site-company-line1 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--systesol-primary);
    text-transform: uppercase;
}

.site-company-line2 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--systesol-accent);
    text-transform: uppercase;
}

/* Brand group: logo + company name */
.site-header__brand-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__brand-group .site-brand {
    display: inline-flex;
}

/* If header uses text-only brand, emphasize the text as logo */
.site-header__brand a {
    font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    color: #FFFFFF;
}

/* Header background tweak to improve logo contrast */
.site-header {
    background: linear-gradient(90deg, rgba(21, 51, 116, 0.95) 0%, rgba(10, 20, 48, 0.95) 100%);
    box-shadow: 0 6px 18px rgba(2, 8, 20, 0.45);
}
.site-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.site-nav a {
    color: var(--systesol-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--systesol-transition);
}
.site-nav a:hover {
    color: var(--systesol-primary);
}

/* Highlight WhatsApp links/buttons in header as green */
.site-header a[href*="wa.me"],
.systesol-actions a[href*="wa.me"] {
    background: #25D366;
    color: #fff !important;
    border: none;
    padding: 8px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}
.site-header a[href*="wa.me"] svg,
.systesol-actions a[href*="wa.me"] svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Ensure mobile menu header contrast */
@media (max-width: 1080px) {
    .site-header {
        background: linear-gradient(180deg, rgba(6,13,30,0.98), rgba(6,13,30,0.98));
        flex-wrap: wrap;
    }
    .site-header__brand-group {
        width: 100%;
        order: 1;
    }
    .site-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 12px 16px;
    }
    .site-nav a {
        font-size: 0.85rem;
    }
    .site-company-line1,
    .site-company-line2 {
        font-size: 0.65rem;
    }
    .site-brand img {
        height: 56px;
    }
}
.site-nav__cta,
.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--systesol-primary), #1B74FF);
    color: #fff;
    font-weight: 700;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}
.btn--secondary {
    background: rgba(255,255,255,0.08);
    color: var(--systesol-white);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--systesol-white);
}
.hero {
    padding: 64px 24px 48px;
    background: linear-gradient(180deg, #071122 0%, #090F1F 100%);
}
.hero--service .hero__content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(28, 94, 255, 0.12);
    color: var(--systesol-primary);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* WhatsApp specific styles: icon and button in green */
.whatsapp-icon svg,
.whatsapp-icon {
    color: #25D366;
    fill: #25D366;
    stroke: none;
}
.btn--whatsapp,
.systesol-btn--whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
}
.btn--whatsapp svg,
.systesol-btn--whatsapp svg {
    fill: #ffffff;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.btn--whatsapp:hover,
.systesol-btn--whatsapp:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

/* Small utilities used by the new templates */
.grid { display: grid; gap: 18px; }
.grid--2x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3x2 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-image { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37,211,102,0.22);
    z-index: 9999;
    transition: transform var(--systesol-transition), box-shadow var(--systesol-transition);
}
.whatsapp-float:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(37,211,102,0.28); }
.whatsapp-float svg { width: 22px; height: 22px; fill: #ffffff; }

