/* =====================================================================
   Системные Технологии Казахстан — Professional theme
   ===================================================================== */

:root {
    /* Brand */
    --ink:        #0b1b34;   /* near-black navy for text */
    --navy-900:   #061227;
    --navy-800:   #0b1b34;
    --brand-700:  #0e3f99;
    --brand-600:  #1656c9;   /* primary */
    --brand-500:  #2f74e8;
    --brand-100:  #e7f0fe;
    --brand-50:   #f2f7ff;
    --accent:     #16a34a;   /* green accent */
    --accent-600: #15803d;

    /* AI / ST Magic Vision */
    --ai-700:     #6d28d9;
    --ai-500:     #9333ea;
    --ai-400:     #c026d3;
    --ai-grad:    linear-gradient(135deg, #6d28d9 0%, #9333ea 45%, #c026d3 100%);

    /* Neutrals */
    --muted:      #5b6b80;
    --line:       #e6ecf4;
    --bg-soft:    #f5f8fc;
    --white:      #ffffff;

    --radius:     18px;
    --radius-sm:  12px;
    --shadow-sm:  0 1px 2px rgba(11,27,52,.06), 0 4px 14px rgba(11,27,52,.06);
    --shadow-md:  0 10px 30px rgba(11,27,52,.10);
    --shadow-lg:  0 24px 60px rgba(11,27,52,.16);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-primary);
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 { letter-spacing: -.02em; line-height: 1.15; }
a { text-decoration: none; }
section { scroll-margin-top: 80px; }

/* ---------- Reusable section helpers ---------- */
.section { padding: 100px 0; }
.section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-600);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
}
.section-lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 640px;
}
.bg-soft { background: var(--bg-soft); }

/* ---------- Utility top bar ---------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,.78);
    font-size: .86rem;
    padding: .5rem 0;
}
.topbar a { color: rgba(255,255,255,.78); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .sep { opacity: .35; margin: 0 .5rem; }

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 1px 0 var(--line);
    padding: .65rem 0;
    transition: box-shadow .25s ease, padding .25s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-brand img { height: 44px; width: auto; }
.navbar .custom-logo-link { display: inline-block; margin-right: 1rem; }
.navbar .custom-logo { height: 44px; width: auto; }
.navbar .nav-link {
    font-weight: 600;
    font-size: .98rem;
    color: var(--ink) !important;
    margin: 0 .35rem;
    padding: .5rem .25rem !important;
    position: relative;
    transition: color .2s ease;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: .25rem; right: .25rem; bottom: .2rem;
    height: 2px;
    background: var(--brand-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.navbar .nav-link:hover { color: var(--brand-600) !important; }
.navbar .nav-link:hover::after { transform: scaleX(1); }
.navbar .dropdown-menu {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: .5rem;
    margin-top: .4rem;
}
.navbar .dropdown-item {
    border-radius: 8px;
    font-weight: 500;
    padding: .55rem .75rem;
}
.navbar .dropdown-item:hover { background: var(--brand-50); color: var(--brand-700); }
.navbar .dropdown-item .badge-ai {
    font-size: .6rem; font-weight: 700; letter-spacing: .04em;
    color: #fff; background: var(--ai-grad);
    padding: .12rem .4rem; border-radius: 6px; margin-left: .4rem;
    vertical-align: middle;
}
.nav-cta {
    margin-left: .75rem;
    background: var(--brand-600);
    color: #fff !important;
    border-radius: 10px;
    padding: .55rem 1.1rem !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--brand-700); color: #fff !important; }

/* ---------- Buttons ---------- */
.btn {
    padding: .8rem 1.6rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 12px;
    border: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-lg { padding: .95rem 2rem; font-size: 1.02rem; }
.btn-primary { background: var(--brand-600); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,86,201,.28); }
.btn-success { background: var(--accent); }
.btn-success:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,163,74,.28); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.7); color:#fff; }
.btn-outline-light:hover { background:#fff; color: var(--ink); transform: translateY(-2px); }
.btn-ai { background: var(--ai-grad); color:#fff; }
.btn-ai:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(147,51,234,.35); }
.btn-soft { background: var(--brand-100); color: var(--brand-700); }
.btn-soft:hover { background: var(--brand-600); color:#fff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(6,18,39,.96) 0%, rgba(14,63,153,.88) 55%, rgba(22,86,201,.78) 100%),
        url('../images/index.jpg');
    background-size: cover;
    background-position: center;
}
.hero::after {
    content: '';
    position: absolute;
    width: 760px; height: 760px;
    right: -200px; top: -220px;
    background: radial-gradient(circle, rgba(192,38,211,.35), transparent 62%);
    filter: blur(10px);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: #eaf1ff;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .85rem; font-weight: 600;
    backdrop-filter: blur(6px);
    margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 .grad {
    background: linear-gradient(90deg, #7dd3fc, #c084fc, #f0abfc);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 1.25rem; color: rgba(255,255,255,.9); max-width: 640px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 2.4rem;
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats .num { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ---------- About / stats ---------- */
.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.25rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .ic {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    background: var(--brand-50); color: var(--brand-600);
    font-size: 1.4rem;
}
.stat-card h3 { color: var(--brand-700); font-weight: 800; font-size: 2.2rem; margin-bottom: .25rem; }
.stat-card p { color: var(--muted); font-weight: 600; margin: 0; }

.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; color: var(--ink); }
.about-list li i { color: var(--accent); margin-top: .35rem; }

/* ---------- Solution cards ---------- */
.solution-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.solution-card .ic {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
    color: #fff; font-size: 1.5rem; margin-bottom: 1.25rem;
    transition: transform .25s ease;
}
.solution-card:hover .ic { transform: scale(1.06) rotate(-3deg); }
.solution-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.solution-card p { color: var(--muted); margin-bottom: 1.1rem; font-size: .98rem; }
.solution-link { color: var(--brand-600); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .4rem; }
.solution-link i { transition: transform .2s ease; }
.solution-card:hover .solution-link i { transform: translateX(4px); }

/* ---------- Product cards ---------- */
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.product-head .ic {
    width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-50); color: var(--brand-600); font-size: 1.35rem;
}
.product-card h3 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.product-card p.lead-sm { color: var(--muted); font-size: .98rem; }
.feature-list { list-style: none; margin: 1rem 0 1.25rem; }
.feature-list li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .55rem; font-size: .96rem; }
.feature-list li i { color: var(--accent); margin-top: .3rem; }
.product-link { font-weight: 600; color: var(--brand-600); display: inline-flex; align-items: center; gap: .4rem; }
.product-link:hover { color: var(--brand-700); }

/* AI accented product card */
.product-card.is-ai { border-color: rgba(147,51,234,.25); background: linear-gradient(180deg, #faf5ff, #ffffff 60%); }
.product-card.is-ai .product-head .ic { background: rgba(147,51,234,.12); color: var(--ai-500); }
.product-card.is-ai .feature-list li i { color: var(--ai-500); }
.product-card.is-ai .product-link { color: var(--ai-500); }

.tag {
    display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px;
}
.tag-new { background: var(--ai-grad); color: #fff; }
.tag-flag { background: var(--brand-100); color: var(--brand-700); }

/* ---------- ST Magic Vision spotlight ---------- */
.mv {
    position: relative;
    color: #fff;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(192,38,211,.45), transparent 60%),
                linear-gradient(160deg, #1a0b3a 0%, #2a0f4f 45%, #120a2e 100%);
    overflow: hidden;
}
.mv::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(700px 400px at 10% 110%, rgba(99,102,241,.35), transparent 60%);
    pointer-events:none;
}
.mv .container { position: relative; z-index: 2; }
.mv-eyebrow { color: #e9d5ff; }
.mv .section-title { color: #fff; }
.mv-sub { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 620px; }
.mv-figure {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.12);
}
.mv-figure img { width: 100%; display: block; }

.mv-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.mv-metric {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    padding: 1.3rem 1rem;
    backdrop-filter: blur(6px);
}
.mv-metric .num { font-size: 1.9rem; font-weight: 800; background: linear-gradient(90deg,#f0abfc,#a5b4fc); -webkit-background-clip:text; background-clip:text; color: transparent; }
.mv-metric .lbl { font-size: .85rem; color: rgba(255,255,255,.75); }

.mv-feature {
    display: flex; gap: .9rem; align-items: flex-start;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    height: 100%;
    transition: background .25s ease, transform .25s ease;
}
.mv-feature:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.mv-feature .ic {
    width: 42px; height: 42px; min-width: 42px; border-radius: 11px;
    display:flex; align-items:center; justify-content:center;
    background: var(--ai-grad); color:#fff; font-size: 1.05rem;
}
.mv-feature h5 { font-size: 1rem; font-weight: 700; margin: 0 0 .15rem; color:#fff; }
.mv-feature p { font-size: .88rem; color: rgba(255,255,255,.72); margin: 0; }

.mv-steps { counter-reset: step; display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.mv-step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: 1.3rem 1.1rem;
}
.mv-step::before {
    counter-increment: step; content: '0' counter(step);
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(90deg,#f0abfc,#a5b4fc); -webkit-background-clip:text; background-clip:text; color: transparent;
    display: block; margin-bottom: .5rem;
}
.mv-step h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
.mv-step p { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }
.mv-step .when { color:#e9d5ff; font-size:.75rem; font-weight:600; }

/* ---------- ST Magic Vision landing page ---------- */
.lp-hero { padding-top: 130px; padding-bottom: 90px; }
.lp-back { color: #e9d5ff; font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; }
.lp-back:hover { color: #fff; }

.lp-feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.4rem 1.3rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.lp-feature .ic {
    width: 48px; height: 48px; border-radius: 13px; margin-bottom: .9rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(147,51,234,.1); color: var(--ai-500); font-size: 1.2rem;
}
.lp-feature h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.lp-feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Case cards (problem → solution → benefit) */
.lp-case {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-case:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.lp-case .row-block { padding: 1.15rem 1.4rem; border-bottom: 1px solid var(--line); }
.lp-case .row-block:last-child { border-bottom: none; }
.lp-case .lbl { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.lp-case .lbl-problem { color: #dc2626; }
.lp-case .lbl-solution { color: var(--brand-600); }
.lp-case .lbl-benefit { color: var(--accent-600); }
.lp-case .row-benefit { background: linear-gradient(180deg, #f4fbf6, #fff); }
.lp-case p { margin: 0; font-size: .95rem; color: var(--ink); }
.lp-case .big { font-weight: 800; font-size: 1.15rem; }

/* Pricing / model strip */
.lp-model {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem 1.4rem; height: 100%;
}
.lp-model .tagk { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--ai-500); text-transform: uppercase; }
.lp-model h5 { font-weight: 700; font-size: 1.1rem; margin: .3rem 0 .4rem; }
.lp-model p { color: var(--muted); font-size: .92rem; margin: 0; }

.lp-cta {
    background: var(--ai-grad); color: #fff; border-radius: var(--radius);
    padding: 3rem 2rem; text-align: center;
}
.lp-cta h2 { color: #fff; font-weight: 800; }
.lp-cta p { color: rgba(255,255,255,.9); }
.lp-cta .btn-light { background: #fff; color: var(--ai-700); }
.lp-cta .btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.2); }

/* ---------- Partners / Clients ---------- */
.partner-logo {
    filter: grayscale(100%);
    opacity: .65;
    transition: all .3s ease;
    max-height: 64px; width: auto;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; }

.client-logo-wrapper {
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    min-height: 96px;
    transition: all .3s ease;
}
.client-logo-wrapper:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.client-logo { filter: grayscale(100%); opacity: .7; transition: all .3s ease; max-height: 56px; width: auto; }
.client-logo-wrapper:hover .client-logo { filter: grayscale(0); opacity: 1; }

/* ---------- Contacts ---------- */
.contacts { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; }
.contact-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 2rem 1.5rem; height: 100%;
    text-align: center;
    transition: transform .25s ease, background .25s ease;
}
.contact-item:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.contact-item .ic {
    width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 1rem;
    display:flex; align-items:center; justify-content:center;
    background: var(--ai-grad); color:#fff; font-size: 1.4rem;
}
.contact-item h4 { font-weight: 700; margin-bottom: .6rem; }
.contact-item p, .contact-item a { color: rgba(255,255,255,.82); }
.contact-item a:hover { color: #fff; }
.social-links a { display:inline-flex; width:42px; height:42px; border-radius:12px; align-items:center; justify-content:center; background: rgba(255,255,255,.08); color:#fff; margin: 0 .25rem; transition: all .25s ease; }
.social-links a:hover { background: var(--ai-grad); transform: translateY(-3px); }

.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2.2rem; }
.contact-form .form-control {
    background: rgba(255,255,255,.96);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: .85rem 1rem;
    color: var(--ink);
}
.contact-form .form-control:focus { background: #fff; border-color: var(--brand-500); box-shadow: 0 0 0 .2rem rgba(47,116,232,.25); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 3rem 0 2rem; }
footer.site-footer a { color: rgba(255,255,255,.7); transition: color .2s; }
footer.site-footer a:hover { color: #fff; }
footer.site-footer h6 { color:#fff; font-weight:700; letter-spacing:.04em; text-transform:uppercase; font-size:.82rem; margin-bottom:1rem; }
footer.site-footer ul { list-style:none; }
footer.site-footer li { margin-bottom:.5rem; font-size:.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.5rem; font-size: .88rem; }

/* ---------- Back to top ---------- */
#backToTop {
    width: 48px; height: 48px; border-radius: 14px;
    display: none; align-items: center; justify-content: center;
    background: var(--brand-600); color:#fff;
    box-shadow: var(--shadow-md);
}
#backToTop:hover { background: var(--brand-700); transform: translateY(-4px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Loader ---------- */
.loading { position: fixed; inset: 0; background: #fff; display: flex; justify-content: center; align-items: center; z-index: 9999; }
.spinner { width: 46px; height: 46px; border: 4px solid var(--brand-100); border-top-color: var(--brand-600); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eef2f7; }
::-webkit-scrollbar-thumb { background: var(--brand-600); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-700); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .mv-metrics { grid-template-columns: repeat(2, 1fr); }
    .mv-steps { grid-template-columns: repeat(2, 1fr); }
    .navbar .nav-link::after { display: none; }
    .nav-cta { margin: .5rem 0 0; display: inline-block; }
}
@media (max-width: 575px) {
    .hero { min-height: 88vh; }
    .hero-stats { gap: 1.4rem; }
    .hero-stats .num { font-size: 1.6rem; }
    .mv-metrics { grid-template-columns: 1fr 1fr; }
    .mv-steps { grid-template-columns: 1fr; }
    .btn-lg { padding: .8rem 1.4rem; }
}
